/* ========================================
   See & Hire — Design System (Vanilla CSS)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* -------- CSS Custom Properties -------- */
:root {
  --bg: hsl(220, 20%, 6%);
  --fg: hsl(210, 40%, 95%);

  --card: hsl(220, 18%, 10%);
  --card-fg: hsl(210, 40%, 95%);

  --primary: hsl(239, 84%, 67%);
  --primary-fg: hsl(0, 0%, 100%);

  --secondary: hsl(217, 33%, 17%);
  --secondary-fg: hsl(210, 40%, 95%);

  --muted: hsl(217, 33%, 17%);
  --muted-fg: hsl(215, 20%, 65%);

  --accent: hsl(172, 66%, 50%);
  --accent-fg: hsl(0, 0%, 100%);

  --destructive: hsl(0, 84%, 60%);

  --border: hsl(217, 20%, 18%);
  --input: hsl(217, 20%, 18%);
  --ring: hsl(239, 84%, 67%);

  --coral: hsl(16, 85%, 61%);
  --linkedin: hsl(210, 100%, 40%);
  --yellow: hsl(48, 96%, 53%);

  --radius: 0.75rem;
  --container: 1400px;
}

/* -------- Reset & Base -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* -------- Typography -------- */
.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------- Animations -------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: hsla(220, 18%, 10%, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-brand a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 36px;
  width: auto;
  border-radius: 0.5rem;
  transition: filter 0.3s;
}

.header-logo:hover {
  filter: drop-shadow(0 0 8px hsla(239, 84%, 67%, 0.4));
}

.footer-logo {
  height: 28px;
  width: auto;
  border-radius: 0.375rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-badge {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: hsla(239, 84%, 67%, 0.1);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .header-badge {
    display: inline-flex;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--fg);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.mobile-toggle {
  display: flex;
  color: var(--fg);
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 1.5rem 1.5rem;
  background: hsla(220, 18%, 10%, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.3s ease-out;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--fg);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================
   HERO
   ============================ */
.hero {
  padding: 7rem 0 5rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    padding: 9rem 0 7rem;
  }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob--1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(239, 84%, 67%, 0.1);
  filter: blur(120px);
}

.hero-blob--2 {
  bottom: 0;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: hsla(172, 66%, 50%, 0.1);
  filter: blur(100px);
}

.hero-blob--3 {
  top: 50%;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: hsla(16, 85%, 61%, 0.08);
  filter: blur(80px);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

/* Hero Text */
.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(239, 84%, 67%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
  }
}

/* Store buttons */
.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .store-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .store-buttons {
    justify-content: flex-start;
  }
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--fg);
  color: var(--bg);
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
  transform: scale(1.05);
}

.store-btn:active {
  transform: scale(0.95);
}

.store-btn__label-sm {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.store-btn__label-lg {
  font-size: 1rem;
  font-weight: 600;
  margin-top: -2px;
}

/* Hero Phone Mockup */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-phone-wrap {
    justify-content: flex-end;
  }
}

.hero-phone {
  position: relative;
  width: 20rem;
}

@media (min-width: 768px) {
  .hero-phone {
    width: 24rem;
  }
}

/* Floating stat cards */
.stat-card {
  position: absolute;
  background: hsla(220, 18%, 10%, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-card--1 {
  top: -1.5rem;
  left: -4rem;
}

.stat-card--2 {
  top: 33%;
  right: -5rem;
}

.stat-card--3 {
  bottom: -1rem;
  left: -3rem;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon--accent {
  background: hsla(172, 66%, 50%, 0.2);
  color: var(--accent);
}

.stat-icon--primary {
  background: hsla(239, 84%, 67%, 0.2);
  color: var(--primary);
}

.stat-icon--coral {
  background: hsla(16, 85%, 61%, 0.2);
  color: var(--coral);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.stat-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
}

/* Glowing ring */
.phone-glow {
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, hsla(239, 84%, 67%, 0.3), hsla(172, 66%, 50%, 0.2), hsla(16, 85%, 61%, 0.2));
  filter: blur(20px);
  z-index: 0;
}

/* Phone frame */
.phone-frame {
  background: var(--card);
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid hsla(217, 20%, 18%, 0.5);
  padding: 0.75rem;
  position: relative;
  z-index: 10;
}

.phone-screen {
  background: linear-gradient(135deg, hsla(239, 84%, 67%, 0.1), hsla(172, 66%, 50%, 0.1));
  border-radius: 2rem;
  overflow: hidden;
}

/* Status bar inside phone */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.5rem;
}

.status-bar__time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
}

.status-bar__icons {
  display: flex;
  gap: 0.25rem;
}

.status-bar__icon {
  width: 1rem;
  height: 0.5rem;
  background: hsla(210, 40%, 95%, 0.3);
  border-radius: 2px;
}

/* Video card inside phone */
.video-card {
  padding: 1rem;
}

.video-card__preview {
  background: linear-gradient(135deg, hsla(239, 84%, 67%, 0.2), hsla(172, 66%, 50%, 0.1), hsla(16, 85%, 61%, 0.1));
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.video-card__play {
  width: 4rem;
  height: 4rem;
  background: hsla(220, 18%, 10%, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-card__duration {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: hsla(220, 18%, 10%, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
}

.video-card__ai-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: hsla(172, 66%, 50%, 0.9);
  border-radius: 9999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-fg);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.video-card__info {
  padding: 1rem;
}

.video-card__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.video-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.video-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.video-card__role {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.skill-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 500;
}

.skill-tag--primary {
  background: hsla(239, 84%, 67%, 0.1);
  color: var(--primary);
}

.skill-tag--accent {
  background: hsla(172, 66%, 50%, 0.1);
  color: var(--accent);
}

.skill-tag--coral {
  background: hsla(16, 85%, 61%, 0.1);
  color: var(--coral);
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.star-rating svg.filled {
  color: var(--yellow);
  fill: var(--yellow);
}

.star-rating svg.empty {
  color: var(--muted-fg);
}

.star-rating span {
  font-size: 10px;
  color: var(--muted-fg);
  margin-left: 0.25rem;
}

.btn-primary {
  width: 100%;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 0.75rem;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Phone decorative blobs */
.phone-deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.phone-deco-blob--1 {
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: hsla(239, 84%, 67%, 0.15);
}

.phone-deco-blob--2 {
  bottom: -2.5rem;
  left: -2.5rem;
  width: 12rem;
  height: 12rem;
  background: hsla(172, 66%, 50%, 0.15);
}

.video-card__inner {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid hsla(217, 20%, 18%, 0.3);
}

/* ============================
   APP SCREENSHOTS
   ============================ */
.screenshots {
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .screenshots {
    padding: 7rem 0;
  }
}

.screenshots-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.screenshots-blob--1 {
  top: 25%;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: hsla(239, 84%, 67%, 0.08);
  filter: blur(100px);
}

.screenshots-blob--2 {
  bottom: 0;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: hsla(172, 66%, 50%, 0.08);
  filter: blur(100px);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(239, 84%, 67%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto;
}

/* Screenshot carousel row */
.screenshots-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  justify-content: flex-start;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.screenshots-row::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .screenshots-row {
    gap: 2rem;
    justify-content: center;
  }
}

.screenshot-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.screenshot-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

/* Small phone frame */
.phone-sm {
  background: var(--card);
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid hsla(217, 20%, 18%, 0.5);
  padding: 0.625rem;
  width: 14rem;
}

@media (min-width: 768px) {
  .phone-sm {
    width: 16rem;
  }
}

.phone-sm__screen {
  background: linear-gradient(135deg, hsla(239, 84%, 67%, 0.05), hsla(172, 66%, 50%, 0.05));
  border-radius: 1.5rem;
  overflow: hidden;
}

.phone-sm .status-bar {
  padding: 0.75rem 1rem 0.25rem;
}

.phone-sm .status-bar__time {
  font-size: 10px;
}

.phone-sm .status-bar__icon {
  width: 0.75rem;
  height: 0.375rem;
}

/* AI Search screen */
.ai-search {
  padding: 0.75rem;
}

.ai-search__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  padding: 0.25rem;
  margin-bottom: 0.5rem;
}

.chat-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.chat-msg--right {
  justify-content: flex-end;
}

.chat-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: hsla(239, 84%, 67%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-bubble {
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 10px;
  color: var(--fg);
}

.chat-bubble--ai {
  background: hsla(239, 84%, 67%, 0.1);
  border-top-left-radius: 2px;
}

.chat-bubble--user {
  background: var(--primary);
  color: var(--primary-fg);
  border-top-right-radius: 2px;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(217, 33%, 17%, 0.5);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 10px;
  color: var(--muted-fg);
}

.chat-input span {
  flex: 1;
}

/* Video Pitch screen */
.pitch-screen {
  padding: 0.75rem;
}

.pitch-screen__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  padding: 0.25rem;
  margin-bottom: 0.5rem;
}

.pitch-preview {
  background: linear-gradient(135deg, hsla(239, 84%, 67%, 0.15), hsla(172, 66%, 50%, 0.1), hsla(16, 85%, 61%, 0.1));
  border-radius: 0.75rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pitch-camera {
  width: 3rem;
  height: 3rem;
  background: hsla(220, 18%, 10%, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.pitch-timer {
  font-size: 10px;
  color: var(--fg);
  font-weight: 600;
}

.pitch-rec-dot {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 8px;
  height: 8px;
  background: hsl(0, 84%, 60%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.pitch-recording-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: hsla(220, 18%, 10%, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pitch-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
  align-items: center;
}

.pitch-ctrl-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
}

.pitch-ctrl-btn--record {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(0, 84%, 60%);
  color: #fff;
}

.pitch-ctrl-btn--record>div {
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 2px;
}

/* Candidate Profiles screen */
.candidates-screen {
  padding: 0.75rem;
}

.candidates-screen__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  padding: 0.25rem;
  margin-bottom: 0.5rem;
}

.candidate-card {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid hsla(217, 20%, 18%, 0.3);
  overflow: hidden;
}

.candidate-video {
  background: linear-gradient(135deg, hsla(172, 66%, 50%, 0.2), hsla(239, 84%, 67%, 0.1));
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.candidate-play {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(220, 18%, 10%, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.candidate-dur {
  position: absolute;
  bottom: 0.375rem;
  left: 0.5rem;
  background: hsla(220, 18%, 10%, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 500;
  color: var(--fg);
}

.candidate-info {
  padding: 0.625rem;
}

.candidate-info__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.candidate-info__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 9px;
}

.candidate-info__name {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg);
}

.candidate-info__role {
  font-size: 9px;
  color: var(--muted-fg);
}

.star-rating-sm {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 0.5rem;
}

.star-rating-sm svg {
  width: 8px;
  height: 8px;
}

.star-rating-sm span {
  font-size: 9px;
  color: var(--muted-fg);
  margin-left: 0.25rem;
}

.skill-tags-sm {
  display: flex;
  gap: 0.25rem;
}

.skill-tags-sm span {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 9999px;
  font-weight: 500;
}

/* Video Interview screen */
.interview-screen {
  padding: 0.75rem;
}

.interview-screen__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg);
  padding: 0.25rem;
  margin-bottom: 0.5rem;
}

.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

.interview-tile {
  background: linear-gradient(135deg, hsla(239, 84%, 67%, 0.2), hsla(172, 66%, 50%, 0.1));
  border-radius: 0.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.interview-tile--alt {
  background: linear-gradient(135deg, hsla(172, 66%, 50%, 0.2), hsla(16, 85%, 61%, 0.1));
}

.interview-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 9px;
}

.interview-avatar--you {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.interview-avatar--hr {
  background: linear-gradient(135deg, var(--coral), var(--accent));
}

.interview-status {
  position: absolute;
  bottom: 0.25rem;
  left: 0.25rem;
  background: hsla(220, 18%, 10%, 0.8);
  border-radius: 9999px;
  padding: 2px 6px;
  font-size: 8px;
  color: var(--fg);
}

.interview-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.interview-ctrl {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}

.interview-ctrl--end {
  background: hsl(0, 84%, 60%);
  color: #fff;
}

/* ============================
   FEATURES
   ============================ */
.features {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .features {
    padding: 7rem 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 70rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon--primary {
  background: hsla(239, 84%, 67%, 0.1);
  color: var(--primary);
}

.feature-icon--accent {
  background: hsla(172, 66%, 50%, 0.1);
  color: var(--accent);
}

.feature-icon--coral {
  background: hsla(16, 85%, 61%, 0.1);
  color: var(--coral);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
  padding: 5rem 0;
  background: hsla(239, 84%, 67%, 0.05);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 7rem 0;
  }
}

.tab-toggle {
  display: inline-flex;
  background: var(--card);
  border-radius: 9999px;
  padding: 0.375rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

.tab-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  color: var(--muted-fg);
}

.tab-btn:hover {
  color: var(--fg);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 20rem;
  margin: 0 auto;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-fg);
  transition: color 0.2s, background 0.2s;
}

.social-link:hover {
  color: var(--primary);
  background: hsla(239, 84%, 67%, 0.1);
}

.footer-heading {
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fg);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: var(--muted-fg);
}

.newsletter-input:focus {
  border-color: var(--ring);
}

.newsletter-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.newsletter-btn:hover {
  opacity: 0.9;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* ============================
   CONTENT PAGES (About, Contact, Privacy, Terms)
   ============================ */
.page-content {
  padding: 7rem 0 5rem;
}

.page-content .container {
  max-width: 48rem;
}

.page-content h1 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-content h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .page-content h1 {
    font-size: 3rem;
  }
}

.page-content .page-date {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.prose-section {
  margin-bottom: 2rem;
}

.prose-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.prose-section p {
  color: var(--muted-fg);
  line-height: 1.7;
}

/* About page */
.about-hero {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.about-hero p {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.values-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
}

.vision-section {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.vision-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.vision-section p {
  color: var(--muted-fg);
  line-height: 1.7;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.form-group input,
.form-group textarea {
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-fg);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ring);
}

.contact-submit {
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 0.75rem;
  padding: 0.625rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-submit:hover {
  opacity: 0.9;
}

.contact-sidebar {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  align-self: flex-start;
}

.contact-sidebar h3 {
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--fg);
}

.contact-link svg {
  flex-shrink: 0;
}

/* 404 page */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--muted);
}

.not-found h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.25rem;
  color: var(--muted-fg);
  margin-bottom: 1rem;
}

.not-found a {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.not-found a:hover {
  opacity: 0.9;
}

/* -------- Utility -------- */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}