/*
 * Career Quiver — Marketing Site
 * Design: Design 05 (Gradient Modern) + Design 06 (Archery messaging)
 * Accessibility: WCAG 2.2 AA throughout
 */

:root {
  /* Brand palette */
  --quiver-deep:  #312E81;  /* 11.42:1 on white */
  --quiver-900:   #3730A3;
  --quiver-core:  #4F46E5;  /* 6.29:1 on white — AA */
  --quiver-hover: #4338CA;  /* 7.39:1 on white — for hover states */
  --quiver-mid:   #6366F1;  /* dark-mode decorative only */
  --quiver-light: #A5B4FC;  /* decorative */
  --quiver-pale:  #EEF2FF;
  --quiver-50:    #EEF2FF;

  /* Amber — restricted to decorative/non-CTA use */
  --aim:          #B45309;  /* 5.02:1 on white */
  --aim-dark:     #92400E;  /* 7.09:1 on white — AAA */
  --aim-warm:     #F59E0B;  /* decorative/icon tints only */
  --aim-pale:     #FEF3C7;

  /* Neutrals */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  /* Semantic */
  --success:       #047857;  /* 5.48:1 on white — AA */
  --success-light: #D1FAE5;
  --success-text:  #065F46;
  --error:         #DC2626;
  --error-light:   #FEE2E2;

  /* Dark section ink */
  --ink: #1A1A2E;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: white;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-head); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--quiver-deep);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────────────────────
   GRADIENT HERO SECTION
   ───────────────────────────────────────────────────────── */
.gradient-hero-bg {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 30%, #4F46E5 65%, #7C3AED 100%);
  position: relative;
  overflow: hidden;
}
.gradient-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(250,204,21,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(129,140,248,0.25) 0%, transparent 40%);
  pointer-events: none;
}
.gradient-mesh {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 48px, rgba(255,255,255,0.025) 48px, rgba(255,255,255,0.025) 49px),
    repeating-linear-gradient(90deg,  transparent, transparent 48px, rgba(255,255,255,0.025) 48px, rgba(255,255,255,0.025) 49px);
  pointer-events: none;
}
.target-rings {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.055;
}
.t-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ─────────────────────────────────────────────────────────
   NAV — glassmorphism
   ───────────────────────────────────────────────────────── */
nav {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s;
}
.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.10);
}
.nav-active {
  color: white !important;
  background: rgba(255,255,255,0.15) !important;
  border-bottom: 2px solid rgba(255,255,255,0.7) !important;
  border-radius: 6px 6px 0 0 !important;
  font-weight: 600 !important;
}
.nav-login {
  background: rgba(255,255,255,0.10) !important;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  font-weight: 600 !important;
}
.nav-cta {
  background: white !important;
  color: var(--quiver-deep) !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}
.nav-cta:hover {
  background: var(--quiver-pale) !important;
  color: var(--quiver-deep) !important;
}

/* Mobile hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─────────────────────────────────────────────────────────
   HERO — two column
   ───────────────────────────────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 56px 88px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
}
.hero-overline::before {
  content: '→';
  color: white;
  font-size: 0.75rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aim-warm);
  box-shadow: 0 0 6px rgba(245,158,11,0.6);
  flex-shrink: 0;
}
h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.05;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
h1 .target-word {
  position: relative;
  display: inline;
}
h1 .target-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.075rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
}
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--quiver-deep);
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: var(--font-head);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.btn-primary-dark:hover {
  background: var(--quiver-pale);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  transition: all 0.15s;
  margin-left: 10px;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.10);
  color: white;
}
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.hero-no-card {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
}
.hero-trust {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.trust-pill {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
}
.hero-quiver-terms {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.qt {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qt-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--quiver-light);
  flex-shrink: 0;
}
.qt-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
}

/* ── GLASS CARD ─────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}
.gc-header {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.gc-dots { display: flex; gap: 6px; }
.gc-d { width: 10px; height: 10px; border-radius: 50%; }
.gc-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
}
.gc-body { padding: 24px; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.ba-card {
  background: white;
  border-radius: 8px;
  padding: 14px;
}
.ba-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--slate-900);
  margin-bottom: 3px;
  font-family: var(--font-head);
}
.ba-role {
  font-size: 0.65rem;
  color: var(--slate-500);
  margin-bottom: 10px;
  font-family: var(--font-mono);
}
.ba-line {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 4px;
  background: var(--slate-200);
}
.ba-line.full { width: 100%; }
.ba-line.w80  { width: 80%; }
.ba-line.w60  { width: 60%; }
.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 8px;
  font-family: var(--font-mono);
}
.ba-risk   { background: var(--error-light);   color: #7F1D1D; }
.ba-strong { background: var(--success-light);  color: var(--success-text); }
.ba-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.gc-ats-row {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.gc-ats-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gc-ats-val {
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  font-family: var(--font-head);
}
.gc-ats-badge {
  font-size: 0.65rem;
  background: rgba(52,211,153,0.18);
  color: #6EE7B7;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-mono);
}
.gc-score-display {
  text-align: center;
  padding: 14px 0;
}
.gc-score-n {
  font-family: var(--font-mono);
  font-size: 3.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 0 32px rgba(129,140,248,0.4);
}
.gc-score-tier {
  margin-top: 8px;
  display: inline-block;
  background: var(--success-light);
  color: var(--success-text);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.gc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.gc-btn {
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8125rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
  font-family: var(--font-head);
}
.gc-btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.gc-btn-outline:hover { background: rgba(255,255,255,0.08); }
.gc-btn-filled {
  background: white;
  color: var(--quiver-deep);
}
.gc-btn-filled:hover { background: var(--quiver-pale); }

/* ─────────────────────────────────────────────────────────
   LOGO STRIP
   ───────────────────────────────────────────────────────── */
.logo-strip {
  padding: 20px 56px;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: white;
  flex-wrap: wrap;
}
.ls-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  font-family: var(--font-mono);
}
.ls-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--slate-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   SECTION DEFAULTS
   ───────────────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
section { padding: 88px 0; }
.s-white { background: white; }
.s-muted { background: var(--slate-50); }
.s-dark  { background: var(--ink); }

.overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiver-core);
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--quiver-deep);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-600);
  max-width: 600px;
}

/* ─────────────────────────────────────────────────────────
   ARCHERY METHOD — Nock / Draw / Aim / Loose
   ───────────────────────────────────────────────────────── */
.qs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}
.qs-step {
  padding: 32px 28px;
  border-right: 1px solid var(--slate-200);
  position: relative;
  background: white;
  transition: background 0.2s;
}
.qs-step:hover { background: var(--quiver-50); }
.qs-step:last-child { border-right: none; }
.qs-step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--slate-400);
  font-weight: 500;
}
.qs-term {
  font-family: var(--font-head);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--quiver-deep);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.qs-action {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--quiver-core);
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.qs-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.65;
}
.qs-connector {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--quiver-core);
}

/* ─────────────────────────────────────────────────────────
   STATS SECTION — dark background
   ───────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.s-dark .overline { color: rgba(255,255,255,0.5); }
.s-dark h2 { color: white; }
.stat-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--quiver-mid);
  border-radius: 12px;
  padding: 28px;
}
.stat-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   FEATURES — card grid
   ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feat-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.feat-card:hover {
  border-color: var(--quiver-light);
  box-shadow: 0 8px 24px rgba(79,70,229,0.08);
  transform: translateY(-2px);
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--quiver-core), #7C3AED);
  border-radius: 16px 16px 0 0;
}
.feat-card.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--quiver-pale) 0%, white 60%);
  border-color: rgba(99,102,241,0.2);
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--quiver-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.7;
}
.feat-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
}
.feat-badge.pro     { background: var(--aim-pale); color: var(--aim); }
.feat-badge.free    { background: var(--success-light); color: var(--success-text); }
.feat-badge.premium { background: var(--quiver-50);  color: var(--quiver-core); }

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.test-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}
.test-card::after {
  content: '\201C';
  position: absolute;
  bottom: -20px;
  right: 12px;
  font-size: 8rem;
  color: var(--quiver-pale);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.test-stars {
  color: var(--aim-warm);
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.test-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-600);
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.test-person { display: flex; align-items: center; gap: 10px; }
.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--quiver-core), var(--quiver-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.test-name  { font-weight: 700; font-size: 0.875rem; color: var(--quiver-deep); }
.test-role  { font-size: 0.75rem; color: var(--slate-500); }

/* ─────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.price-card {
  background: white;
  border: 2px solid var(--slate-200);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.2s;
}
.price-card:hover:not(.featured) {
  border-color: var(--quiver-light);
  box-shadow: 0 4px 16px rgba(79,70,229,0.06);
}
.price-card.featured {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  border-color: transparent;
  color: white;
  position: relative;
  box-shadow: 0 8px 40px rgba(49,46,129,0.35);
  transform: scale(1.02);
}
.price-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--quiver-deep);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(49,46,129,0.25);
  font-family: var(--font-mono);
}
.price-tier {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}
.price-card.featured .price-tier { color: rgba(255,255,255,0.55); }
.price-amount {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--quiver-deep);
  line-height: 1;
}
.price-amount small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-500);
}
.price-card.featured .price-amount { color: white; }
.price-card.featured .price-amount small { color: rgba(255,255,255,0.55); }
.price-desc {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin: 8px 0 18px;
}
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }
.price-list { list-style: none; margin-bottom: 22px; }
.price-list li {
  font-size: 0.82rem;
  color: var(--slate-600);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.price-card.featured .price-list li { color: rgba(255,255,255,0.82); }
.price-list li::before {
  content: '→';
  font-weight: 700;
  color: var(--quiver-core);
  flex-shrink: 0;
}
.price-card.featured .price-list li::before { color: var(--quiver-light); }
.price-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 2px solid var(--slate-200);
  color: var(--quiver-core);
  transition: all 0.15s;
  font-family: var(--font-head);
}
.price-btn:hover {
  border-color: var(--quiver-core);
  background: var(--quiver-pale);
}
.price-btn.cta {
  background: white;
  color: var(--quiver-deep);
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.price-btn.cta:hover { background: var(--quiver-pale); }
.price-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 18px;
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────
   FINAL CTA — gradient dark
   ───────────────────────────────────────────────────────── */
.final-section {
  position: relative;
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #4F46E5 100%);
  padding: 100px 56px;
  text-align: center;
  overflow: hidden;
}
.final-section::before {
  content: '→';
  position: absolute;
  font-size: 22rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  font-family: var(--font-head);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}
.final-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}
.final-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
}
.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--quiver-deep);
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: all 0.2s;
  position: relative;
  font-family: var(--font-head);
}
.btn-final:hover {
  background: var(--quiver-pale);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}
.final-sub-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
footer {
  background: #0C0F1A;
  color: rgba(255,255,255,0.55);
  padding: 56px;
}
.foot-grid {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-brand {
  font-family: var(--font-head);
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(99,102,241,0.3);
  border: 1px solid rgba(129,140,248,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.foot-desc { font-size: 0.82rem; line-height: 1.6; }
.foot-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-head);
}
.foot-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.foot-col a:hover { color: white; }
.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────────────────
   FLOATING THEME TOGGLE FAB
   ───────────────────────────────────────────────────────── */
.theme-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  background: white;
  color: var(--slate-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, color 0.15s;
  padding: 0;
}
.theme-fab:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  color: var(--slate-800);
}
.theme-fab .icon-sun  { display: none; }
.theme-fab .icon-moon { display: block; }
.theme-fab.is-dark .icon-sun  { display: block; }
.theme-fab.is-dark .icon-moon { display: none; }

/* ─────────────────────────────────────────────────────────
   DARK MODE — Design 04 color system
   Activated by: [data-theme="dark"] on <html>
   ───────────────────────────────────────────────────────── */
[data-theme="dark"] {
  --quiver-core:  #818CF8;
  --quiver-deep:  #A5B4FC;
  --quiver-pale:  #1E1B4B;
  --quiver-50:    #1E1B4B;
  --quiver-light: #A5B4FC;
  --slate-200:    #334155;
  --slate-50:     #0C0F1A;
  --ink:          #0C0F1A;
  --success-light: rgba(52,211,153,0.15);
  --success-text:  #6EE7B7;
  --error-light:   rgba(248,113,113,0.15);
  --aim-pale:      rgba(245,158,11,0.1);
  --aim:           #FCD34D;
}
[data-theme="dark"] body {
  background: #0C0F1A;
  color: #CBD5E1;
}
[data-theme="dark"] h2 { color: white; }
[data-theme="dark"] .lead { color: #94A3B8; }

[data-theme="dark"] nav {
  background: rgba(7,6,15,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(129,140,248,0.10);
}

[data-theme="dark"] .s-white  { background: #0F172A; }
[data-theme="dark"] .s-muted  { background: #0C0F1A; }
[data-theme="dark"] .s-dark   { background: #0C0F1A; }

[data-theme="dark"] .logo-strip {
  background: #0F172A;
  border-color: #1E293B;
}
[data-theme="dark"] .ls-name { color: #475569; }

[data-theme="dark"] .overline { color: #818CF8; }

[data-theme="dark"] .qs-grid  { border-color: #1E293B; }
[data-theme="dark"] .qs-step  {
  background: #0F172A;
  border-right-color: #1E293B;
}
[data-theme="dark"] .qs-step:hover  { background: #1E293B; }
[data-theme="dark"] .qs-term        { color: white; }
[data-theme="dark"] .qs-desc        { color: #94A3B8; }
[data-theme="dark"] .qs-connector   {
  background: #1E293B;
  border-color: #334155;
  color: #818CF8;
}

[data-theme="dark"] .s-dark .overline { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .stat-card { border-left-color: #818CF8; }

[data-theme="dark"] .feat-card {
  background: #1E293B;
  border-color: #334155;
}
[data-theme="dark"] .feat-card:hover {
  border-color: #818CF8;
  box-shadow: 0 8px 24px rgba(129,140,248,0.10);
}
[data-theme="dark"] .feat-card.wide {
  background: linear-gradient(135deg, #1E1B4B 0%, #1E293B 60%);
  border-color: rgba(129,140,248,0.2);
}
[data-theme="dark"] .feat-card h3 { color: white; }
[data-theme="dark"] .feat-card p  { color: #94A3B8; }
[data-theme="dark"] .feat-icon {
  background: rgba(129,140,248,0.12);
}
[data-theme="dark"] .feat-badge.pro     { background: rgba(245,158,11,0.12);  color: #FCD34D; }
[data-theme="dark"] .feat-badge.free    { background: rgba(52,211,153,0.12);  color: #6EE7B7; }
[data-theme="dark"] .feat-badge.premium { background: rgba(129,140,248,0.12); color: #A5B4FC; }

[data-theme="dark"] .test-card {
  background: #0F172A;
  border-color: #1E293B;
  border-top: 2px solid #818CF8;
}
[data-theme="dark"] .test-card::after { color: #1E293B; }
[data-theme="dark"] .test-quote       { color: #94A3B8; }
[data-theme="dark"] .test-name        { color: white; }
[data-theme="dark"] .test-role        { color: #64748B; }

[data-theme="dark"] .price-card:not(.featured) {
  background: #0F172A;
  border-color: #1E293B;
}
[data-theme="dark"] .price-card:not(.featured):hover {
  border-color: #818CF8;
  box-shadow: 0 4px 16px rgba(129,140,248,0.08);
}
[data-theme="dark"] .price-amount { color: white; }
[data-theme="dark"] .price-amount small { color: #64748B; }
[data-theme="dark"] .price-desc  { color: #64748B; }
[data-theme="dark"] .price-list li { color: #94A3B8; }
[data-theme="dark"] .price-list li::before { color: #818CF8; }
[data-theme="dark"] .price-tier  { color: #475569; }
[data-theme="dark"] .price-btn   {
  border-color: #334155;
  color: #818CF8;
}
[data-theme="dark"] .price-btn:hover {
  background: #1E293B;
  border-color: #818CF8;
}
[data-theme="dark"] .price-card.featured {
  box-shadow: 0 8px 40px rgba(129,140,248,0.25), 0 0 0 1px rgba(129,140,248,0.15);
}
[data-theme="dark"] .price-pop {
  background: #818CF8;
  color: white;
}
[data-theme="dark"] .price-btn.cta {
  background: #818CF8;
  color: #0C0F1A;
}
[data-theme="dark"] .price-btn.cta:hover {
  background: #A5B4FC;
}
[data-theme="dark"] .price-note { color: #475569; }

[data-theme="dark"] .ba-card {
  background: #1E293B;
}
[data-theme="dark"] .ba-title { color: white; }
[data-theme="dark"] .ba-line  { background: #334155; }
[data-theme="dark"] .ba-risk  { background: rgba(248,113,113,0.15); color: #FCA5A5; }
[data-theme="dark"] .ba-strong{ background: rgba(52,211,153,0.15);  color: #6EE7B7; }

[data-theme="dark"] .gc-score-n {
  color: #6EE7B7;
  text-shadow: 0 0 24px rgba(52,211,153,0.5), 0 0 60px rgba(52,211,153,0.2);
}
[data-theme="dark"] .gc-score-tier {
  background: rgba(52,211,153,0.15);
  color: #6EE7B7;
}

/* Hero gradient — darker in dark mode */
[data-theme="dark"] .gradient-hero-bg {
  background: linear-gradient(135deg,
    #07060F 0%,
    #0D0B1F 25%,
    #1A1545 55%,
    #2A1F6B 80%,
    #3B2080 100%
  );
}
[data-theme="dark"] .gradient-hero-bg::before {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(250,204,21,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 10% 80%, rgba(129,140,248,0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 0%,  rgba(79,70,229,0.12)  0%, transparent 50%);
}

[data-theme="dark"] .nav-cta {
  background: #818CF8 !important;
  color: #07060F !important;
  box-shadow: 0 2px 8px rgba(129,140,248,0.3) !important;
}
[data-theme="dark"] .nav-cta:hover {
  background: #A5B4FC !important;
  color: #07060F !important;
}

[data-theme="dark"] .btn-primary-dark {
  background: #818CF8;
  color: #07060F;
  box-shadow: 0 4px 20px rgba(129,140,248,0.35);
}
[data-theme="dark"] .btn-primary-dark:hover {
  background: #A5B4FC;
  color: #07060F;
  box-shadow: 0 8px 28px rgba(129,140,248,0.45);
}

[data-theme="dark"] .btn-ghost-dark {
  border-color: rgba(129,140,248,0.35);
  color: rgba(255,255,255,0.90);
}
[data-theme="dark"] .btn-ghost-dark:hover {
  background: rgba(129,140,248,0.12);
  border-color: rgba(129,140,248,0.5);
  color: white;
}

[data-theme="dark"] .hero-badge {
  background: rgba(79,70,229,0.20);
  border-color: rgba(129,140,248,0.22);
}

[data-theme="dark"] .trust-pill {
  background: rgba(79,70,229,0.15);
  border-color: rgba(129,140,248,0.18);
}

[data-theme="dark"] .glass-card {
  background: rgba(10,9,30,0.65);
  border-color: rgba(129,140,248,0.20);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(129,140,248,0.10);
}
[data-theme="dark"] .gc-ats-row {
  background: rgba(129,140,248,0.07);
  border-color: rgba(129,140,248,0.11);
}
[data-theme="dark"] .gc-btn-filled,
[data-theme="dark"] a.gc-btn.gc-btn-filled {
  background: #818CF8;
  color: #07060F;
  border: none;
}
[data-theme="dark"] .gc-btn-filled:hover,
[data-theme="dark"] a.gc-btn.gc-btn-filled:hover {
  background: #A5B4FC;
  color: #07060F;
}

[data-theme="dark"] .btn-final {
  background: #818CF8;
  color: #07060F;
  box-shadow: 0 6px 24px rgba(129,140,248,0.35);
}
[data-theme="dark"] .btn-final:hover {
  background: #A5B4FC;
  color: #07060F;
  box-shadow: 0 10px 32px rgba(129,140,248,0.45);
}

[data-theme="dark"] .theme-fab {
  background: #1E293B;
  border-color: #334155;
  color: #94A3B8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
[data-theme="dark"] .theme-fab:hover {
  background: #334155;
  border-color: #475569;
  color: #CBD5E1;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — mobile breakpoints
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
  .qs-step:nth-child(2) { border-right: none; }
  .qs-connector { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 48px;
    gap: 40px;
  }
  h1 { font-size: 2.5rem; }
  .target-rings { display: none; }

  .wrap { padding: 0 24px; }
  section { padding: 64px 0; }

  .qs-grid { grid-template-columns: 1fr; }
  .qs-step { border-right: none; border-bottom: 1px solid var(--slate-200); }
  .qs-step:last-child { border-bottom: none; }
  [data-theme="dark"] .qs-step { border-bottom-color: #1E293B; }

  .stats-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.wide { grid-column: span 1; }
  .test-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }

  .final-section { padding: 64px 24px; }
  .final-section h2 { font-size: 2rem; }

  footer { padding: 40px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 8px; }

  .logo-strip { gap: 24px; padding: 16px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO — used on inner pages (features, pricing, about)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 30%, #4F46E5 65%, #7C3AED 100%);
  padding: 96px 56px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(250,204,21,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(129,140,248,0.2) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
}
.page-hero .overline {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, #07060F 0%, #0D0B1F 25%, #1A1545 55%, #2A1F6B 80%, #3B2080 100%);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES PAGE
   ═══════════════════════════════════════════════════════════ */

/* Feature deep-dive rows — alternating layout */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-200);
}
.feature-row:last-of-type { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-copy h2 {
  font-size: 1.875rem;
  color: var(--quiver-deep);
  margin-bottom: 16px;
}
.feature-copy p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.feature-copy p:last-of-type { margin-bottom: 0; }

/* Feature visual mockup card */
.feature-visual {
  background: var(--quiver-pale);
  border-radius: 20px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99,102,241,0.15);
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, transparent 60%);
}
/* Dark gradient variant for the detection feature */
.feature-visual.dark-vis {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  border-color: rgba(129,140,248,0.2);
}

/* Comparison table */
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--slate-50);
  border-bottom: 2px solid var(--slate-200);
  white-space: nowrap;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.cq-col {
  background: var(--quiver-pale);
  color: var(--quiver-deep);
}
.comparison-table td {
  padding: 13px 20px;
  text-align: center;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-600);
  vertical-align: middle;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--slate-700);
}
.comparison-table td.cq-col {
  background: rgba(238,242,255,0.4);
  font-weight: 700;
  color: var(--quiver-deep);
}
.comparison-table tr:last-child td { border-bottom: none; }
.check { color: var(--success); font-size: 1.1rem; }
.partial { color: var(--aim); font-size: 0.8rem; font-weight: 600; }
.cross { color: var(--slate-300); font-size: 1rem; }
.table-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 12px;
  font-family: var(--font-mono);
}

[data-theme="dark"] .comparison-table th {
  background: #1E293B;
  border-bottom-color: #334155;
  color: white;
}
[data-theme="dark"] .comparison-table th.cq-col {
  background: #1E1B4B;
  color: #A5B4FC;
}
[data-theme="dark"] .comparison-table td {
  border-bottom-color: #1E293B;
  color: #94A3B8;
}
[data-theme="dark"] .comparison-table td:first-child { color: #CBD5E1; }
[data-theme="dark"] .comparison-table td.cq-col {
  background: rgba(30,27,75,0.4);
  color: #A5B4FC;
}
[data-theme="dark"] .comparison-table-wrap { border-color: #1E293B; }
[data-theme="dark"] .feature-row { border-bottom-color: #1E293B; }
[data-theme="dark"] .feature-copy h2 { color: white; }
[data-theme="dark"] .feature-copy p { color: #94A3B8; }
[data-theme="dark"] .feature-visual {
  background: #1E293B;
  border-color: rgba(129,140,248,0.15);
}

/* Feature score display mockup */
.score-mockup {
  text-align: center;
}
.score-mockup .score-num {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--quiver-deep);
  line-height: 1;
}
.score-mockup .score-label {
  display: inline-block;
  margin-top: 8px;
  background: var(--success-light);
  color: var(--success-text);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.score-dims {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.score-dim {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--slate-600);
  font-family: var(--font-mono);
}
.score-bar-bg {
  flex: 1;
  height: 6px;
  background: var(--slate-200);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--quiver-core), var(--quiver-mid));
  border-radius: 3px;
}

/* Detection mockup */
.detect-mockup {
  width: 100%;
}
.detect-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.detect-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.detect-val {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-head);
}
.detect-badge {
  font-size: 0.65rem;
  background: rgba(52,211,153,0.2);
  color: #6EE7B7;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-mono);
}
.detect-rules {
  list-style: none;
  margin-top: 14px;
}
.detect-rules li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
}
.detect-rules li::before {
  content: '→';
  color: #818CF8;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════ */

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 0;
}
.billing-toggle span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-500);
  font-family: var(--font-head);
}
.billing-toggle span.active {
  color: var(--quiver-deep);
}
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--slate-200);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.toggle-switch.is-annual {
  background: var(--quiver-core);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch.is-annual .toggle-knob {
  transform: translateX(24px);
}
.annual-save-badge {
  display: inline-block;
  background: var(--success-light);
  color: var(--success-text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
}

/* FAQ accordion */
.faq-list {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--quiver-deep);
  gap: 16px;
}
.faq-question:hover { color: var(--quiver-core); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--slate-400);
  transition: transform 0.2s;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.75;
}
.faq-item.is-open .faq-answer { display: block; }

/* Trust signals row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  font-family: var(--font-head);
}
.trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* B2B callout */
.b2b-callout {
  background: var(--quiver-pale);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin-top: 64px;
}
.b2b-callout h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 12px;
}
.b2b-callout p {
  font-size: 0.95rem;
  color: var(--slate-600);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--quiver-deep);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid rgba(99,102,241,0.25);
  transition: all 0.2s;
  font-family: var(--font-head);
}
.btn-secondary:hover {
  border-color: var(--quiver-core);
  background: var(--quiver-pale);
}

[data-theme="dark"] .faq-question { color: white; }
[data-theme="dark"] .faq-question:hover { color: #818CF8; }
[data-theme="dark"] .faq-item { border-bottom-color: #1E293B; }
[data-theme="dark"] .faq-answer { color: #94A3B8; }
[data-theme="dark"] .trust-item { color: #94A3B8; }
[data-theme="dark"] .b2b-callout {
  background: #1E293B;
  border-color: rgba(129,140,248,0.2);
}
[data-theme="dark"] .b2b-callout h3 { color: white; }
[data-theme="dark"] .b2b-callout p { color: #94A3B8; }
[data-theme="dark"] .btn-secondary {
  background: #0F172A;
  color: #A5B4FC;
  border-color: rgba(129,140,248,0.25);
}
[data-theme="dark"] .btn-secondary:hover {
  background: #1E293B;
  border-color: #818CF8;
}
[data-theme="dark"] .billing-toggle span.active { color: #A5B4FC; }
[data-theme="dark"] .toggle-switch { background: #334155; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.belief-card {
  background: var(--quiver-pale);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(99,102,241,0.15);
}
.belief-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}
.belief-card p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.75;
}
.belief-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--quiver-core);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* Team / founder section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 800px;
}
.team-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--quiver-core), #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.team-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 3px;
}
.team-info .team-title {
  font-size: 0.78rem;
  color: var(--quiver-core);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.team-info p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Privacy note */
.privacy-note {
  background: var(--slate-50);
  border-left: 3px solid var(--quiver-core);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-top: 48px;
}
.privacy-note h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 8px;
}
.privacy-note p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.75;
}

[data-theme="dark"] .belief-card {
  background: #1E293B;
  border-color: rgba(129,140,248,0.15);
}
[data-theme="dark"] .belief-card h3 { color: white; }
[data-theme="dark"] .belief-card p { color: #94A3B8; }
[data-theme="dark"] .team-info h4 { color: white; }
[data-theme="dark"] .team-info p { color: #94A3B8; }
[data-theme="dark"] .privacy-note { background: #1E293B; border-left-color: #818CF8; }
[data-theme="dark"] .privacy-note h4 { color: white; }
[data-theme="dark"] .privacy-note p { color: #94A3B8; }

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.blog-featured {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.blog-featured-img {
  background: linear-gradient(135deg, #1E1B4B 0%, #4F46E5 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.blog-featured-body {
  padding: 40px;
}
.blog-featured-body .overline { color: var(--quiver-core); }
.blog-featured-body h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-featured-body p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-meta {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.read-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--quiver-core);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { color: var(--quiver-deep); }

/* Category filter chips */
.blog-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-chip {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  text-decoration: none;
  transition: all 0.15s;
  font-family: var(--font-head);
}
.cat-chip:hover, .cat-chip.active {
  background: var(--quiver-core);
  color: white;
  border-color: var(--quiver-core);
}

/* Article grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: all 0.2s;
}
.article-card:hover {
  border-color: var(--quiver-light);
  box-shadow: 0 8px 24px rgba(79,70,229,0.08);
  transform: translateY(-2px);
}
.article-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.article-body {
  padding: 20px;
}
.article-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--quiver-core);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.article-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}
.article-card p {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Blog sidebar */
.blog-sidebar {
  position: sticky;
  top: 88px;
}
.sidebar-email {
  background: var(--quiver-pale);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(99,102,241,0.15);
  margin-bottom: 24px;
}
.sidebar-email h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 8px;
}
.sidebar-email p {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.email-input {
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: white;
  color: var(--slate-700);
  transition: border-color 0.15s;
}
.email-input:focus {
  outline: none;
  border-color: var(--quiver-core);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}
.email-submit {
  padding: 10px;
  background: var(--quiver-core);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-head);
  transition: background 0.15s;
}
.email-submit:hover { background: var(--quiver-hover); }
.email-privacy {
  font-size: 0.7rem;
  color: var(--slate-400);
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* Popular topics sidebar widget */
.sidebar-topics {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-topics h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 14px;
}
.topic-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-100);
  text-decoration: none;
  color: var(--slate-600);
  font-size: 0.82rem;
  transition: color 0.15s;
}
.topic-link:last-child { border-bottom: none; }
.topic-link:hover { color: var(--quiver-core); }
.topic-count {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--slate-300);
}

[data-theme="dark"] .blog-featured { background: #0F172A; border-color: #1E293B; }
[data-theme="dark"] .blog-featured-body h2 { color: white; }
[data-theme="dark"] .blog-featured-body p { color: #94A3B8; }
[data-theme="dark"] .article-card { background: #0F172A; border-color: #1E293B; }
[data-theme="dark"] .article-card:hover { border-color: #818CF8; }
[data-theme="dark"] .article-card h3 { color: white; }
[data-theme="dark"] .article-card p { color: #64748B; }
[data-theme="dark"] .cat-chip { border-color: #334155; color: #94A3B8; }
[data-theme="dark"] .sidebar-email { background: #1E293B; border-color: rgba(129,140,248,0.15); }
[data-theme="dark"] .sidebar-email h4 { color: white; }
[data-theme="dark"] .sidebar-email p { color: #94A3B8; }
[data-theme="dark"] .sidebar-topics { background: #0F172A; border-color: #1E293B; }
[data-theme="dark"] .sidebar-topics h4 { color: white; }
[data-theme="dark"] .topic-link { color: #64748B; border-bottom-color: #1E293B; }
[data-theme="dark"] .topic-link:hover { color: #818CF8; }
[data-theme="dark"] .email-input {
  background: #1E293B;
  border-color: #334155;
  color: #CBD5E1;
}

/* ═══════════════════════════════════════════════════════════
   ATS GUIDE PAGE
   ═══════════════════════════════════════════════════════════ */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
.guide-toc {
  position: sticky;
  top: 88px;
  background: var(--quiver-pale);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(99,102,241,0.15);
}
.guide-toc h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 14px;
  font-family: var(--font-head);
}
.toc-link {
  display: block;
  font-size: 0.82rem;
  color: var(--slate-600);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(99,102,241,0.1);
  transition: color 0.15s;
  line-height: 1.4;
}
.toc-link:last-child { border-bottom: none; }
.toc-link:hover { color: var(--quiver-core); }

.guide-content h2 {
  font-size: 1.75rem;
  color: var(--quiver-deep);
  margin-bottom: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--slate-200);
}
.guide-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.guide-content h3 {
  font-size: 1.2rem;
  color: var(--quiver-deep);
  margin-bottom: 12px;
  margin-top: 32px;
}
.guide-content p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 16px;
}
.guide-content ul {
  list-style: none;
  margin-bottom: 16px;
}
.guide-content ul li {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.75;
  padding: 4px 0;
  display: flex;
  gap: 10px;
}
.guide-content ul li::before {
  content: '→';
  color: var(--quiver-core);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Inline CTA block (blog / guide article end) */
.inline-cta {
  background: linear-gradient(135deg, var(--quiver-pale) 0%, white 60%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px;
  padding: 36px;
  margin: 48px 0;
}
.inline-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 8px;
}
.inline-cta p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--quiver-core);
  color: white;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-head);
}
.btn-cta:hover {
  background: var(--quiver-hover);
  transform: translateY(-1px);
}

/* Platform cards (ATS guide) */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.platform-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 20px;
}
.platform-name {
  font-weight: 700;
  color: var(--quiver-deep);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.platform-share {
  font-size: 0.7rem;
  color: var(--quiver-core);
  font-family: var(--font-mono);
  margin-bottom: 10px;
}
.platform-tips {
  list-style: none;
}
.platform-tips li {
  font-size: 0.78rem;
  color: var(--slate-600);
  padding: 3px 0;
  display: flex;
  gap: 6px;
  line-height: 1.5;
}
.platform-tips li::before {
  content: '·';
  color: var(--quiver-core);
  flex-shrink: 0;
  font-weight: 700;
}

[data-theme="dark"] .guide-toc { background: #1E293B; border-color: rgba(129,140,248,0.15); }
[data-theme="dark"] .guide-toc h4 { color: white; }
[data-theme="dark"] .toc-link { color: #94A3B8; border-bottom-color: rgba(129,140,248,0.08); }
[data-theme="dark"] .toc-link:hover { color: #818CF8; }
[data-theme="dark"] .guide-content h2 { color: white; border-top-color: #1E293B; }
[data-theme="dark"] .guide-content h3 { color: white; }
[data-theme="dark"] .guide-content p { color: #94A3B8; }
[data-theme="dark"] .guide-content ul li { color: #94A3B8; }
[data-theme="dark"] .inline-cta { background: #1E293B; border-color: rgba(129,140,248,0.2); }
[data-theme="dark"] .inline-cta h3 { color: white; }
[data-theme="dark"] .inline-cta p { color: #94A3B8; }
[data-theme="dark"] .platform-card { background: #0F172A; border-color: #1E293B; }
[data-theme="dark"] .platform-name { color: white; }
[data-theme="dark"] .platform-tips li { color: #94A3B8; }

/* ═══════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-code {
  font-family: var(--font-mono);
  font-size: 6rem;
  font-weight: 700;
  color: var(--quiver-pale);
  line-height: 1;
  margin-bottom: 24px;
}
.error-page h1 {
  font-size: 2rem;
  color: var(--quiver-deep);
  margin-bottom: 16px;
}
.error-page p {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto 36px;
}

[data-theme="dark"] .error-code { color: #1E293B; }
[data-theme="dark"] .error-page h1 { color: white; }
[data-theme="dark"] .error-page p { color: #64748B; }

/* ═══════════════════════════════════════════════════════════
   ADDITIONAL RESPONSIVE — new pages
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; }
  .belief-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 24px 56px; }
  .page-hero h1 { font-size: 2.25rem; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .article-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-cats { gap: 6px; }
  .error-code { font-size: 4rem; }
  .hiw-row { grid-template-columns: 1fr; gap: 40px; }
  .hiw-row-reverse { direction: ltr; }
  .hiw-step-strip { flex-direction: column; gap: 0; padding: 24px 20px; }
  .hiw-strip-arrow { transform: rotate(90deg); margin: 4px auto; }
  .hiw-step-section { padding-top: 56px; padding-bottom: 56px; }
  .hiw-output-grid { grid-template-columns: 1fr; }
  .hiw-score-circle { width: 80px; height: 80px; }
  .hiw-score-number { font-size: 1.75rem; }
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS PAGE
   ───────────────────────────────────────────────────────────── */

/* Step strip navigation */
.hiw-step-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--quiver-pale);
  padding: 20px 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(79,70,229,0.1);
}
.hiw-strip-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s;
}
.hiw-strip-step:hover {
  background: rgba(79,70,229,0.08);
}
.hiw-strip-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--quiver-core);
  letter-spacing: 0.08em;
}
.hiw-strip-term {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--quiver-deep);
}
.hiw-strip-label {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
}
.hiw-strip-arrow {
  font-size: 1.2rem;
  color: var(--quiver-core);
  opacity: 0.4;
  padding: 0 4px;
}

/* Step section layout */
.hiw-step-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.hiw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hiw-row-reverse {
  direction: rtl;
}
.hiw-row-reverse > * {
  direction: ltr;
}

/* Step badge */
.hiw-step-badge {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.hiw-step-badge-dark .hiw-step-num-lg {
  color: rgba(255,255,255,0.35);
}
.hiw-step-badge-dark .hiw-step-term-lg {
  color: rgba(255,255,255,0.9);
}
.hiw-step-num-lg {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--quiver-core);
  letter-spacing: 0.1em;
}
.hiw-step-term-lg {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--quiver-deep);
  letter-spacing: -0.02em;
}

/* Copy column */
.hiw-copy h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--quiver-deep);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hiw-copy .lead {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hiw-copy p {
  font-size: 0.975rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Bullet list */
.hiw-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hiw-bullets li {
  display: flex;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--slate-600);
  line-height: 1.65;
}
.hiw-bullets li strong {
  color: var(--quiver-deep);
}
.hiw-bullet-icon {
  color: var(--quiver-core);
  font-size: 0.65rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.hiw-bullets-dark li {
  color: rgba(255,255,255,0.7);
}
.hiw-bullets-dark li strong {
  color: rgba(255,255,255,0.95);
}

/* Note callout */
.hiw-note {
  background: var(--quiver-pale);
  border-left: 3px solid var(--quiver-core);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
}
.hiw-note strong { color: var(--quiver-deep); }
.hiw-note-dark {
  background: rgba(255,255,255,0.06);
  border-left-color: rgba(129,140,248,0.6);
  color: rgba(255,255,255,0.65);
}
.hiw-note-dark strong { color: rgba(255,255,255,0.9); }

/* Visual card */
.hiw-visual { display: flex; align-items: center; justify-content: center; }
.hiw-vis-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 420px;
}
.hiw-vis-card-dark {
  background: #0F0E1A;
  border-color: rgba(255,255,255,0.1);
}
.hiw-vis-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.hiw-vis-header-dark {
  background: rgba(255,255,255,0.04);
  border-bottom-color: rgba(255,255,255,0.08);
}
.hiw-vis-dots { display: flex; gap: 6px; }
.hiw-vis-dot { width: 12px; height: 12px; border-radius: 50%; }
.hiw-vis-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate-400);
  letter-spacing: 0.04em;
}
.hiw-vis-body { padding: 20px; }

/* Step 1 — Profile visual */
.hiw-profile-section { }
.hiw-profile-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--quiver-core);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.hiw-profile-role {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--quiver-deep);
}
.hiw-profile-company {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.hiw-profile-bullets { display: flex; flex-direction: column; gap: 5px; }
.hiw-profile-line {
  height: 6px;
  background: var(--slate-200);
  border-radius: 3px;
}
.hiw-skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hiw-skill-chip {
  background: var(--quiver-pale);
  color: var(--quiver-deep);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(79,70,229,0.15);
}
.hiw-skill-more {
  background: var(--slate-100);
  color: var(--slate-400);
  border-color: transparent;
}
.hiw-profile-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
}
.hiw-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  flex-shrink: 0;
}

/* Step 2 — Job analysis visual */
.hiw-url-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.hiw-url-icon { font-size: 0.85rem; }
.hiw-url-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--slate-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hiw-analysis-section { margin-bottom: 12px; }
.hiw-analysis-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--quiver-core);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.hiw-req-list { display: flex; flex-direction: column; gap: 7px; }
.hiw-req-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--slate-600);
}
.hiw-req-item span:nth-child(2) { flex: 1; }
.hiw-req-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hiw-req-dot-match { background: #34D399; }
.hiw-req-dot-gap { background: var(--aim); }
.hiw-req-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.hiw-req-badge-match {
  background: rgba(52,211,153,0.12);
  color: #065F46;
}
.hiw-req-badge-gap {
  background: rgba(245,158,11,0.12);
  color: #92400E;
}
.hiw-analysis-gap-note {
  font-size: 0.75rem;
  color: var(--slate-500);
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  padding: 8px 12px;
  line-height: 1.5;
}

/* Step 3 — Detection visual (dark) */
.hiw-detect-result {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}
.hiw-detect-platform {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.hiw-detect-confidence {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hiw-detect-conf-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.hiw-detect-conf-fill {
  height: 100%;
  background: linear-gradient(90deg, #34D399, #6EE7B7);
  border-radius: 3px;
}
.hiw-detect-conf-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #6EE7B7;
  white-space: nowrap;
  font-weight: 700;
}
.hiw-detect-source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.hiw-detect-rules { margin-bottom: 12px; }
.hiw-detect-rule-header {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.hiw-detect-rule {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.5;
}
.hiw-detect-rule-check {
  color: #34D399;
  font-weight: 700;
  flex-shrink: 0;
}
.hiw-detect-warning {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  padding: 8px 12px;
}

/* Step 4 — Output / score visual */
.hiw-output-score {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.hiw-score-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--quiver-deep), var(--quiver-core));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-score-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hiw-score-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hiw-score-dims { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.hiw-score-dim { display: flex; flex-direction: column; gap: 3px; }
.hiw-dim-label { font-size: 0.7rem; color: var(--slate-500); }
.hiw-dim-bar {
  height: 5px;
  background: var(--slate-100);
  border-radius: 3px;
  overflow: hidden;
}
.hiw-dim-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--quiver-core), var(--quiver-mid));
  border-radius: 3px;
}
.hiw-dim-fill-full {
  background: #34D399;
}
.hiw-output-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.hiw-output-btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
}
.hiw-output-btn-primary {
  background: var(--quiver-core);
  color: white;
}
.hiw-output-btn-primary:hover { background: var(--quiver-deep); }
.hiw-output-btn-secondary {
  background: var(--slate-50);
  color: var(--quiver-deep);
  border: 1px solid var(--slate-200);
}
.hiw-output-btn-secondary:hover { background: var(--quiver-pale); }
.hiw-output-formats {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hiw-format-chip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--quiver-pale);
  color: var(--quiver-deep);
}

/* Output summary grid */
.hiw-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hiw-output-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.15s;
}
.hiw-output-card:hover {
  box-shadow: 0 4px 20px rgba(79,70,229,0.1);
}
.hiw-output-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.hiw-output-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--quiver-deep);
  margin-bottom: 8px;
}
.hiw-output-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* Dark mode — how it works */
[data-theme="dark"] .hiw-step-strip {
  background: rgba(255,255,255,0.04);
  border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .hiw-strip-term { color: #C7D2FE; }
[data-theme="dark"] .hiw-strip-label { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .hiw-step-term-lg { color: #C7D2FE; }
[data-theme="dark"] .hiw-copy h2 { color: #E0E7FF; }
[data-theme="dark"] .hiw-copy .lead { color: rgba(255,255,255,0.65); }
[data-theme="dark"] .hiw-copy p { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .hiw-bullets li { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .hiw-bullets li strong { color: #E0E7FF; }
[data-theme="dark"] .hiw-note { background: rgba(255,255,255,0.05); border-left-color: var(--quiver-core); color: rgba(255,255,255,0.6); }
[data-theme="dark"] .hiw-note strong { color: #E0E7FF; }
[data-theme="dark"] .hiw-vis-card { background: #1A1830; border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .hiw-vis-header { background: rgba(255,255,255,0.04); border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .hiw-profile-role { color: #E0E7FF; }
[data-theme="dark"] .hiw-profile-line { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .hiw-skill-chip { background: rgba(79,70,229,0.2); color: #C7D2FE; border-color: rgba(79,70,229,0.3); }
[data-theme="dark"] .hiw-profile-status { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .hiw-url-input { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .hiw-url-text { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .hiw-req-item { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .hiw-output-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .hiw-output-card h3 { color: #E0E7FF; }
[data-theme="dark"] .hiw-output-card p { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .hiw-dim-bar { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .hiw-dim-label { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .hiw-output-btn-secondary { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #C7D2FE; }

/* Responsive — how it works */
@media (max-width: 1024px) {
  .hiw-output-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hiw-row { grid-template-columns: 1fr; gap: 40px; }
  .hiw-row-reverse { direction: ltr; }
  .hiw-step-strip { flex-direction: column; gap: 0; padding: 24px 20px; }
  .hiw-strip-arrow { transform: rotate(90deg); margin: 4px auto; }
  .hiw-step-section { padding-top: 56px; padding-bottom: 56px; }
  .hiw-output-grid { grid-template-columns: 1fr; }
  .hiw-score-circle { width: 80px; height: 80px; }
  .hiw-score-number { font-size: 1.75rem; }
  .hiw-copy h2 { font-size: 1.75rem; }
  .hiw-step-term-lg { font-size: 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────
   COMING SOON / WAITLIST COMPONENTS
   ───────────────────────────────────────────────────────────── */

/* Coming soon badge — used across pages */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.coming-soon-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FBD26A;
  flex-shrink: 0;
  animation: cs-pulse 2s infinite;
}
@keyframes cs-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Waitlist form — in final-section */
.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 12px;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--quiver-deep);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.waitlist-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 2px 8px rgba(0,0,0,0.12);
}
.waitlist-btn {
  padding: 13px 24px;
  border-radius: 10px;
  border: none;
  background: white;
  color: var(--quiver-deep);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.waitlist-btn:hover {
  background: var(--quiver-pale);
  transform: translateY(-1px);
}

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

/* btn-secondary — used on homepage for secondary navigation CTAs */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--quiver-core);
  background: transparent;
  color: var(--quiver-core);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-secondary:hover {
  background: var(--quiver-pale);
  color: var(--quiver-deep);
}
[data-theme="dark"] .btn-secondary {
  border-color: rgba(129,140,248,0.5);
  color: #C7D2FE;
}
[data-theme="dark"] .btn-secondary:hover {
  background: rgba(79,70,229,0.15);
  color: white;
}

