/* ============================================================
   SourcAI — global styles
   Design tokens, reset, layout primitives, component styles.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0E27;
  --bg-grad: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(194,59,176,0.18), transparent 60%),
             radial-gradient(ellipse 60% 40% at 100% 10%, rgba(91,46,166,0.15), transparent 55%),
             #0A0E27;
  --surface: #12172E;
  --surface-2: #1A2040;
  --surface-3: #222A52;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  --text: #F5F7FA;
  --text-muted: #9BA3B8;
  --text-dim: #6B7390;

  --accent-grad: linear-gradient(135deg, #5B2EA6 0%, #C23BB0 50%, #FF3D9A 100%);
  --accent: #C23BB0;
  --accent-dim: #7A3A95;
  --teal: #00D4B3;
  --teal-soft: rgba(0,212,179,0.14);

  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 24px 60px -24px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 60px rgba(194,59,176,0.25);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --maxw-narrow: 860px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 16px; color: var(--text-muted); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}
.grad-text {
  background: var(--accent-grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-shift 8s ease-in-out infinite;
}
@keyframes grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}
.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header .lead { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent-grad);
  color: white;
  box-shadow: 0 4px 24px rgba(194,59,176,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(194,59,176,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost { color: var(--text); background: transparent; }
.btn-ghost:hover { color: white; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10,14,39,0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
}
.nav-brand-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Convert the purple figure to white so it reads on the dark nav,
     then add a purple glow to keep the brand accent. */
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(194,59,176,0.75));
}
/* On light backgrounds (footer is darker, but some surfaces are light),
   a variant is available via .nav-brand-logo.on-light if needed later. */
.nav-brand-logo.on-light img { filter: none; }
.nav-brand-text .grad-text { font-weight: 800; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
}
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 960px) {
  /* Closed mobile nav: only the brand and the hamburger are visible.
     The CTAs (Log in, Sign up / Start free trial) collapse into the open
     menu so they're reachable without crowding the bar on phones. */
  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  .nav.open .nav-inner { flex-wrap: wrap; }
  .nav.open .nav-brand { order: 1; }
  .nav.open .nav-toggle { order: 2; }
  .nav.open .nav-inner > nav { order: 3; flex: 1 1 100%; }
  .nav.open .nav-ctas { order: 4; flex: 1 1 100%; }

  .nav.open .nav-inner > nav {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav.open .nav-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
    padding: 16px 0 8px;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav-ctas .btn-ghost,
  .nav.open .nav-ctas .btn-primary {
    display: inline-flex;
    justify-content: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 120px;
  background: var(--bg-grad);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 72px 0 80px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,212,179,0.2);
}
.hero h1 { margin-bottom: 24px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}
.hero-caption {
  font-size: 0.875rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-caption svg { width: 16px; height: 16px; color: var(--teal); }
.hero-aside {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.hero-aside a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.hero-aside a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ---------- Product mockup ---------- */
.mockup {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  padding: 16px;
  overflow: hidden;
}
.mockup.no-aspect { aspect-ratio: auto; }
.mockup-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.mockup::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: var(--accent-grad);
  opacity: 0.25;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-topbar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-topbar .dot:nth-child(1) { background: #FF5F57; }
.mockup-topbar .dot:nth-child(2) { background: #FEBC2E; }
.mockup-topbar .dot:nth-child(3) { background: #28C840; }
.mockup-topbar .url {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.mockup-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.flow-step {
  background: var(--surface-3);
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.flow-step.active {
  background: linear-gradient(145deg, rgba(194,59,176,0.18), rgba(91,46,166,0.1));
  border-color: var(--accent-dim);
}
.flow-step .step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-weight: 700;
}
.flow-step .step-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}
.mockup-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.candidate-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.candidate-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-grad);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: var(--font-display);
}
.candidate-info { flex: 1; min-width: 0; }
.candidate-name { font-size: 0.8125rem; color: var(--text); font-weight: 600; }
.candidate-role { font-size: 0.6875rem; color: var(--text-dim); }
.candidate-score {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 3px 8px;
  border-radius: 6px;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 0.9375rem; }

/* ---------- Logo marquee ---------- */
.logo-strip { padding: 56px 0; text-align: center; }
.logo-strip .eyebrow { color: var(--text-dim); }
.logo-marquee {
  display: flex;
  gap: 64px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  margin-top: 24px;
}
.logo-marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 32s linear infinite;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  opacity: 0.6;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }
.logo-item .dot-mark {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--text-dim);
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(194,59,176,0.18), rgba(91,46,166,0.1));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { margin: 0; font-size: 0.9375rem; }

/* ---------- Process section (Prepare/Identify/Engage/Report) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}
.process-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.process-card .step-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.process-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.process-card p { font-size: 0.875rem; margin: 0; }

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: 40px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .who { text-align: left; }
.testimonial-author .name { font-weight: 700; color: var(--text); font-size: 0.9375rem; }
.testimonial-author .role { font-size: 0.8125rem; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #1F0B3A 0%, #2B0F3D 50%, #3A0A3D 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(194,59,176,0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(91,46,166,0.3), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { max-width: 640px; margin: 0 auto 16px; }
.cta-band .lead { margin: 0 auto 32px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(194,59,176,0.08), var(--surface));
  box-shadow: 0 0 0 1px rgba(194,59,176,0.3), var(--shadow-glow);
  position: relative;
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-amount .per {
  display: block;
  margin-top: 8px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-desc { color: var(--text-muted); font-size: 0.9375rem; min-height: 44px; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.4;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--teal-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M6 10l3 3 5-6' fill='none' stroke='%2300D4B3' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.price-card .btn { margin-top: 8px; justify-content: center; }

/* ---------- Comparison table (Pricing page) ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  background: var(--surface-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text-muted); }
.compare-table .check { color: var(--teal); font-weight: 700; }
.compare-table .dash { color: var(--text-dim); }

/* ---------- Forms (Contact) ---------- */
.form {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.form-field input, .form-field textarea, .form-field select {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-self: start; }

/* ---------- Cards grid (customers, resources) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.story-card-image {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  background-size: cover;
  background-position: center;
  position: relative;
}
.story-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,14,39,0.6));
}
.story-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.story-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.story-card h3 { font-size: 1.125rem; margin: 0; }
.story-card p { margin: 0; font-size: 0.9375rem; }
.story-card .read-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
  display: inline-flex;
  gap: 4px;
}
.story-card .read-more:hover { color: var(--accent); }

/* ---------- Two-col content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* ---------- Platform detail ---------- */
.stage-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.stage-detail:last-child { border-bottom: none; }
.stage-detail.reverse { direction: rtl; }
.stage-detail.reverse > * { direction: ltr; }
.stage-detail .price-features { margin-top: 24px; }
.two-col .price-features { margin-top: 24px; }
.btns-start { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px) { .pricing-grid-2 { grid-template-columns: 1fr; } }
.price-features-link { text-decoration: underline; }
.faq-grid { display: grid; gap: 20px; }
.legal-prose { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }
.legal-prose p { margin: 0 0 16px; }
.legal-prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.legal-prose h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}
.legal-prose ul {
  margin: 0 0 16px;
  padding-left: 24px;
}
.legal-prose li { margin-bottom: 6px; }
.legal-prose strong { color: var(--text); }
.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover { color: var(--text); }
.legal-prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
@media (max-width: 960px) {
  .stage-detail, .stage-detail.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}
.stage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stage-visual {
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stage-visual.has-image { padding: 14px; }
.stage-visual-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.stage-visual.portrait .stage-visual-image { max-height: 520px; object-fit: contain; }
.stage-visual::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: var(--accent-grad);
  opacity: 0.18;
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
}
.viz-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text);
  position: relative;
}
.viz-row .bar {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.viz-row .bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--fill, 60%);
  background: var(--accent-grad);
}
.viz-row .val { color: var(--text-muted); font-family: ui-monospace, monospace; font-size: 0.75rem; }

/* ---------- Team (About) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card { text-align: center; }
.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 2px solid var(--border-strong);
}
.team-card .name { font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card .role { font-size: 0.875rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 96px;
  background: rgba(0,0,0,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.875rem; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.footer-bottom .links { display: flex; gap: 20px; }
.social-links { display: flex; gap: 8px; align-items: center; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color 200ms ease, background 200ms ease;
}
.social-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.social-links svg { width: 18px; height: 18px; display: block; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 96px 0 64px;
  background: var(--bg-grad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent 75%);
  pointer-events: none;
}
.page-header h1 { max-width: 820px; margin: 0 auto 20px; }
.page-header .lead { margin: 0 auto; }

/* ---------- Founding customer offer card ---------- */
.offer-band {
  padding-top: 32px;
  padding-bottom: 32px;
}
.offer-card {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(194,59,176,0.35), rgba(91,46,166,0.1) 40%, transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.offer-card::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 70%;
  height: 140%;
  background: var(--accent-grad);
  opacity: 0.12;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.offer-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.offer-header h2 { margin: 10px 0 16px; }
.offer-header .lead { margin: 0 auto; }
.offer-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.offer-item:hover {
  border-color: rgba(194,59,176,0.3);
  background: rgba(255,255,255,0.035);
  transform: translateY(-2px);
}
.offer-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(194,59,176,0.1);
  color: var(--accent);
}
.offer-icon svg { width: 20px; height: 20px; }
.offer-item h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  line-height: 1.3;
}
.offer-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.offer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.offer-foot {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .offer-card { padding: 40px 24px; }
  .offer-grid { grid-template-columns: 1fr; gap: 12px; }
  .offer-header { margin-bottom: 28px; }
}

/* ---------- Hero stage carousel ---------- */
.hero-mockup { --stage-duration: 4000ms; }
.hero-mockup .stage-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.stage-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.stage-pill:hover { color: var(--text); border-color: var(--border-strong); }
.stage-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.stage-pill .stage-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: color 200ms ease;
}
.stage-pill.is-active {
  color: var(--text);
  border-color: rgba(194,59,176,0.4);
  background: rgba(194,59,176,0.08);
}
.stage-pill.is-active .stage-num { color: var(--accent); }
.stage-pill .stage-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.stage-pill.is-active .stage-fill {
  animation: stageFill var(--stage-duration, 4000ms) linear forwards;
}
.hero-mockup.is-paused .stage-pill.is-active .stage-fill {
  animation-play-state: paused;
}
@keyframes stageFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.stage-viewport {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 1464 / 1024;
  background: var(--surface);
  z-index: 1;
}
.stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 600ms ease, transform 4000ms ease-out;
  will-change: opacity, transform;
}
.stage-image.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 640px) {
  .stage-pill { padding: 7px 8px; font-size: 0.7rem; }
  .stage-pill .stage-name { display: none; }
  .stage-pill .stage-num { font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-image { transition: opacity 120ms linear; transform: none; }
  .stage-pill .stage-fill { animation: none !important; transform: scaleX(1); }
  .stage-pill:not(.is-active) .stage-fill { display: none; }
}

/* ---------- Job Seekers — nav variant ---------- */
.nav-links a.nav-link-alt {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(194,59,176,0.08);
  color: var(--text);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease;
}
.nav-links a.nav-link-alt:hover {
  background: rgba(194,59,176,0.16);
  border-color: rgba(194,59,176,0.45);
}
.nav-links a.nav-link-alt.active::after { display: none; }

/* ---------- Job Seekers — coded hero mockup frames ---------- */
.stage-mock {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px;
  background: linear-gradient(155deg, var(--surface), var(--surface-2));
  color: var(--text);
}
.seeker-mock {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 0;
}
.seeker-mock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.seeker-mock-eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}
.seeker-mock-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}
.seeker-mock-chip {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.seeker-mock-chip-grad {
  color: white;
  background: var(--accent-grad);
}

/* — 01 Match — */
.seeker-mock-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.seeker-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.seeker-mock-row-meta { min-width: 0; }
.seeker-mock-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 2px;
}
.seeker-mock-row-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.seeker-mock-score {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 6px;
}

/* — 02 Tailor — */
.seeker-mock-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.seeker-mock-pane {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seeker-mock-pane-h {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.seeker-mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}
.seeker-mock-line.short { width: 65%; }
.seeker-mock-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
}
.seeker-mock-tag-good {
  color: var(--teal);
  background: var(--teal-soft);
  border-color: rgba(0,212,179,0.25);
}
.seeker-mock-tag-warn {
  color: #FFB663;
  background: rgba(255,182,99,0.1);
  border-color: rgba(255,182,99,0.25);
}

/* — 03 Apply — */
.seeker-mock-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.seeker-mock-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.seeker-mock-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-shrink: 0;
}
.seeker-mock-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text);
  text-align: right;
}
.seeker-mock-value-grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* — 04 Prep — */
.seeker-mock-prep-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.seeker-mock-prep-item {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.seeker-mock-prep-item strong { color: var(--text); font-weight: 700; }
.seeker-mock-prep-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent-grad);
}

/* ---------- Job Seekers — feature-section illustration tiles ---------- */
.seeker-illus {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  color: var(--accent);
}
.seeker-illus::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: var(--accent-grad);
  opacity: 0.18;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.seeker-illus svg {
  position: relative;
  width: 38%;
  height: 38%;
  color: var(--text);
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(194,59,176,0.45));
}

/* ---------- Audience tag in nav/footer logo ---------- */
.nav-brand-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(194,59,176,0.12);
  border: 1px solid rgba(194,59,176,0.28);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  line-height: 1;
}
.nav-brand-tag.tag-seekers {
  background: rgba(0,212,179,0.12);
  border-color: rgba(0,212,179,0.3);
  color: var(--teal);
}
@media (max-width: 540px) {
  .nav-brand-tag { display: none; }
}

/* ---------- Footer audience-switch row ---------- */
.audience-switch {
  text-align: center;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.audience-switch a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
  margin-left: 6px;
}
.audience-switch a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ---------- Audience chooser landing ---------- */
.chooser {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 64px 0 96px;
  background: var(--bg-grad);
  overflow: hidden;
}
.chooser::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}
.chooser-inner {
  position: relative;
  width: 100%;
  text-align: center;
}
.chooser-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.chooser-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-grad);
}
.chooser h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}
.chooser .lead {
  margin: 0 auto 56px;
  max-width: 600px;
}
.chooser-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .chooser-cards { grid-template-columns: 1fr; gap: 20px; }
  .chooser { min-height: auto; padding: 48px 0 64px; }
}
.chooser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  isolation: isolate;
}
.chooser-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(194,59,176,0.45), rgba(91,46,166,0.15) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}
.chooser-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 70%;
  height: 130%;
  background: var(--accent-grad);
  opacity: 0;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: -1;
}
.chooser-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194,59,176,0.4);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6), 0 0 60px rgba(194,59,176,0.18);
}
.chooser-card:hover::before { opacity: 1; }
.chooser-card:hover::after { opacity: 0.22; }
.chooser-card.card-seekers:hover {
  border-color: rgba(0,212,179,0.35);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6), 0 0 60px rgba(0,212,179,0.16);
}
.chooser-card.card-seekers::after { background: linear-gradient(135deg, var(--teal) 0%, #5B2EA6 80%); }
.chooser-card .chooser-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(194,59,176,0.18), rgba(91,46,166,0.1));
  border: 1px solid var(--border-strong);
  color: var(--accent);
}
.chooser-card.card-seekers .chooser-icon {
  background: linear-gradient(145deg, rgba(0,212,179,0.18), rgba(0,212,179,0.06));
  color: var(--teal);
}
.chooser-card .chooser-icon svg { width: 28px; height: 28px; }
.chooser-card .chooser-eyebrow-line {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.chooser-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 4px;
}
.chooser-card p {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.chooser-card .chooser-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  transition: gap 200ms ease, color 200ms ease;
}
.chooser-card .chooser-go svg { width: 14px; height: 14px; }
.chooser-card:hover .chooser-go { gap: 10px; color: var(--accent); }
.chooser-card.card-seekers:hover .chooser-go { color: var(--teal); }

/* Below-fold brand strip on the chooser page */
.chooser-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.chooser-strip p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Skip-chooser link for returning visitors */
.chooser-skip {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  display: none;
}
.chooser-skip a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
  margin-left: 4px;
}
.chooser-skip.is-shown { display: block; }

/* Hide the chooser nav (chooser is its own clean page) */
.chooser-nav .nav-inner { padding: 18px 24px; }
.chooser-nav .nav-links,
.chooser-nav .nav-ctas .btn-primary { display: none; }
.chooser-nav .nav-ctas .btn-ghost { color: var(--text-muted); }
