/* =========================================================================
   Vervotech · Distribution Dreams 2026
   Landing page : brand-accurate palette
   ========================================================================= */

:root {
  /* Brand colors (from vervotech.com) */
  --brand-blue: #0022FF;
  --royal-blue: #083AAE;
  --deep-violet: #003FBD;
  --brand-purple: #9540FF;
  --magenta: #B500F7;
  --teal: #00E8FF;

  /* Surfaces */
  --bg-black: #000000;
  --bg: #FFFFFF;
  --bg-tint: #F6FFFF;
  --bg-blue-tint: #D6E9FF;
  --surface: #FAFBFF;

  /* Text */
  --ink: #0A0F1E;
  --body: #333333;
  --muted: #7A7A7A;
  --line: #E5E9F2;
  --line-dark: rgba(255, 255, 255, 0.10);

  /* Persona accents */
  --p-agentic: #0022FF;
  --p-signal: #00E8FF;
  --p-experience: #9540FF;
  --p-corporate: #F5B800;
  --p-brand: #B500F7;
  --p-rails: #003FBD;

  /* Gradients */
  --grad-brand: linear-gradient(226deg, #083AAE 0%, #9540FF 100%);
  --grad-pricing: linear-gradient(139deg, #003FBD 0%, #B500F7 100%);
  --grad-radial: radial-gradient(
    1200px 600px at 80% -10%,
    rgba(149, 64, 255, 0.35) 0%,
    rgba(0, 34, 255, 0.15) 40%,
    rgba(0, 0, 0, 0) 70%
  );

  /* Type scale (fluid) */
  --fs-xs: clamp(11px, 0.7vw + 8px, 13px);
  --fs-sm: clamp(13px, 0.4vw + 12px, 15px);
  --fs-base: clamp(15px, 0.3vw + 14px, 17px);
  --fs-lg: clamp(17px, 0.6vw + 15px, 20px);
  --fs-xl: clamp(22px, 1vw + 19px, 28px);
  --fs-2xl: clamp(28px, 1.6vw + 22px, 40px);
  --fs-3xl: clamp(36px, 2.8vw + 26px, 56px);
  --fs-hero: clamp(44px, 4.5vw + 28px, 88px);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-32: 128px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(8, 18, 60, 0.04), 0 2px 8px rgba(8, 18, 60, 0.04);
  --shadow-md: 0 8px 24px rgba(8, 18, 60, 0.08), 0 2px 6px rgba(8, 18, 60, 0.05);
  --shadow-lg: 0 24px 60px rgba(8, 18, 60, 0.14), 0 8px 20px rgba(8, 18, 60, 0.08);
  --shadow-glow: 0 0 0 1px rgba(149, 64, 255, 0.35), 0 20px 60px rgba(0, 34, 255, 0.35);

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   Typography
   ========================================================================= */
body {
  font-family: "Segoe UI", "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-base);
  color: var(--body);
  background: var(--bg);
}
h1, h2, h3, h4, h5 {
  font-family: "Segoe UI", "Poppins", system-ui, sans-serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: var(--fs-hero); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-xl); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-lg); font-weight: 600; }
p  { font-size: var(--fs-base); color: var(--body); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.7); }

.lede { font-size: var(--fs-lg); color: var(--body); line-height: 1.5; max-width: 64ch; }
.muted { color: var(--muted); }

/* =========================================================================
   Layout primitives
   ========================================================================= */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.section { padding-block: clamp(64px, 8vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 12px rgba(8, 18, 60, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav-brand__logo {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .nav-brand__logo { height: 30px; }
}
.nav-links { display: none; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--body); transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-blue); }
.nav-cta {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 34, 255, 0.3); }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 34, 255, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(149, 64, 255, 0.35);
}
.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}
.btn--ghost-dark:hover { background: rgba(255, 255, 255, 0.14); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn svg { width: 16px; height: 16px; }

/* =========================================================================
   Hero : black with gradient glow + grid
   ========================================================================= */
.hero {
  position: relative;
  background: var(--bg-black);
  color: white;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 180px) clamp(100px, 10vw, 160px);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-radial);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 {
  color: white;
  margin: 20px auto 24px;
  max-width: 14ch;
  background: linear-gradient(180deg, #FFFFFF 0%, #B6C5FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 36px;
  max-width: 60ch;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 12px var(--teal);
}

/* =========================================================================
   Section headers
   ========================================================================= */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 12px 0 16px; }
.section-head p { color: var(--muted); font-size: var(--fs-lg); }

/* =========================================================================
   Personas section: editorial taxonomy (numbered, asymmetric)
   ========================================================================= */
.personas-section {
  padding: clamp(72px, 9vw, 128px) 0 clamp(72px, 9vw, 128px);
  background:
    radial-gradient(1200px 600px at 100% 0%, rgba(149, 64, 255, 0.05), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(0, 34, 255, 0.04), transparent 55%),
    var(--bg);
  position: relative;
}
.personas-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(8, 58, 174, 0.04) 1px, transparent 1px);
  background-size: 96px 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, black 40%, transparent);
}
.personas-section > .container { position: relative; z-index: 1; }

.personas-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(8px, 2vw, 24px);
}
.personas-head__left .eyebrow { color: var(--brand-purple); }
.personas-head__left h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.personas-head__right {
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 46ch;
  justify-self: end;
}
@media (max-width: 820px) {
  .personas-head { grid-template-columns: 1fr; align-items: start; }
  .personas-head__right { justify-self: start; }
}

/* The list itself: 12 col grid, asymmetric placement */
.personas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}

.persona {
  --p-color: var(--brand-blue);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 3.2vw, 44px) clamp(20px, 2.4vw, 32px);
  border-top: 1px solid var(--line);
  background: transparent;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
  isolation: isolate;
  cursor: default;
}

/* Asymmetric placement on desktop: split into uneven rows of 2 */
@media (min-width: 960px) {
  .persona:nth-child(1) { grid-column: 1 / span 7; }
  .persona:nth-child(2) { grid-column: 8 / span 5; border-left: 1px solid var(--line); }
  .persona:nth-child(3) { grid-column: 1 / span 5; }
  .persona:nth-child(4) { grid-column: 6 / span 7; border-left: 1px solid var(--line); }
  .persona:nth-child(5) { grid-column: 1 / span 7; }
  .persona:nth-child(6) { grid-column: 8 / span 5; border-left: 1px solid var(--line); }
}
@media (max-width: 959px) {
  .persona { grid-column: 1 / -1; }
}

/* Last row keeps a closing bottom border */
.persona:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (max-width: 959px) {
  .persona:nth-last-child(-n+2) { border-bottom: none; }
  .persona:last-child { border-bottom: 1px solid var(--line); }
}

/* Big numeral as structural element */
.persona__index {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-feature-settings: "tnum" 1;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--p-color);
  opacity: 0.85;
  transition: color 0.45s var(--ease), opacity 0.45s var(--ease), transform 0.45s var(--ease);
  min-width: 1.6ch;
}

.persona__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.persona__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p-color);
  transition: color 0.45s var(--ease);
}

.persona__name {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  transition: color 0.45s var(--ease);
}

.persona__line {
  color: var(--body);
  font-size: var(--fs-md);
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
  transition: color 0.45s var(--ease);
}

.persona__signal {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in oklab, var(--p-color) 35%, var(--line));
  transition: border-color 0.45s var(--ease);
}
.persona__signal-num {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--p-color);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
  transition: color 0.45s var(--ease);
}
.persona__signal-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.45s var(--ease);
}

.persona__rule { display: none; }

/* Sealed name: tactile lozenge that hides the persona name pre-quiz */
.persona__name--sealed {
  display: flex;
  align-items: center;
  margin: 4px 0 0;
}
.persona__seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border: 1px dashed color-mix(in oklab, var(--p-color) 55%, var(--line));
  border-radius: 999px;
  background: color-mix(in oklab, var(--p-color) 6%, white);
  color: var(--p-color);
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    color 0.45s var(--ease);
}
.persona__seal svg {
  width: 13px;
  height: 13px;
  flex: none;
}

/* Hover keeps the sealed lozenge legible on the flooded color */
.persona:hover .persona__seal {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

/* Hover: persona color floods the cell */
.persona:hover {
  background: var(--p-color);
  color: white;
}
.persona:hover .persona__index,
.persona:hover .persona__tag,
.persona:hover .persona__name,
.persona:hover .persona__line,
.persona:hover .persona__signal-num,
.persona:hover .persona__signal-label {
  color: white;
}
.persona:hover .persona__index { opacity: 1; transform: translateY(-2px); }
.persona:hover .persona__signal {
  border-top-color: rgba(255, 255, 255, 0.45);
}

/* CTA below the list */
.personas-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(36px, 4vw, 56px);
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: var(--fs-md);
  text-decoration: none;
  background: white;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.personas-cta svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.personas-cta:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
}
.personas-cta:hover svg { transform: translateX(3px); }

/* =========================================================================
   Thesis + stats
   ========================================================================= */
.thesis {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
}
.thesis-quote {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(26px, 2.4vw + 18px, 44px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 40px;
}
.thesis-quote span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.stat__num {
  display: block;
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(32px, 2.4vw + 18px, 44px);
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label { font-size: 14px; color: var(--muted); line-height: 1.5; }
.stat__source { display: block; margin-top: 10px; font-size: 11px; color: var(--muted); }
.stat__source a { color: inherit; text-decoration: underline; text-decoration-color: var(--line); }

/* =========================================================================
   How it works
   ========================================================================= */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.howto-step {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid var(--line);
  position: relative;
}
.howto-step__num {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.howto-step h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.howto-step p { font-size: 14.5px; color: var(--muted); }

/* =========================================================================
   Quiz widget
   ========================================================================= */
.quiz {
  background: linear-gradient(180deg, var(--bg-black) 0%, #0A0E24 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-radial);
  opacity: 0.6;
  pointer-events: none;
}
.quiz .section-head h2 { color: white; }
.quiz .section-head p { color: rgba(255, 255, 255, 0.65); }
.quiz .eyebrow { color: var(--teal); }

.quiz-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  max-width: 820px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quiz-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.quiz-progress__bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-inline: 20px;
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress__fill {
  height: 100%;
  background: var(--grad-brand);
  transition: width 0.5s var(--ease);
  width: 10%;
}

.quiz-q {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(22px, 1.6vw + 16px, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: white;
  margin-bottom: 28px;
}
.quiz-q__note {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.quiz-options { display: grid; gap: 10px; margin-bottom: 28px; }
.quiz-opt {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
  transition: all 0.2s var(--ease);
  width: 100%;
}
.quiz-opt:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(149, 64, 255, 0.5);
  transform: translateY(-1px);
}
.quiz-opt.selected {
  background: linear-gradient(226deg, rgba(8, 58, 174, 0.25) 0%, rgba(149, 64, 255, 0.25) 100%);
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 1px var(--brand-purple), 0 12px 32px rgba(149, 64, 255, 0.25);
}
.quiz-opt__letter {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.quiz-opt.selected .quiz-opt__letter {
  background: white;
  color: var(--brand-blue);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.quiz-nav__back {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.quiz-nav__back:hover { color: white; }
.quiz-nav__back:disabled { opacity: 0.3; cursor: not-allowed; }

/* Quiz start state */
.quiz-start { text-align: center; padding-block: 20px; }
.quiz-start p { color: rgba(255, 255, 255, 0.7); margin-bottom: 28px; max-width: 52ch; margin-inline: auto; }

/* Quiz result state */
.quiz-result { text-align: left; }
.quiz-result__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.quiz-result__name {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(32px, 3vw + 16px, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quiz-result__line {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 52ch;
  line-height: 1.4;
}
.quiz-result__sections { display: grid; gap: 22px; margin-bottom: 28px; }
.quiz-result__sec h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.quiz-result__sec p { color: rgba(255, 255, 255, 0.9); font-size: 15.5px; line-height: 1.55; }
.quiz-result__playbook { list-style: none; padding: 0; margin: 0; }
.quiz-result__playbook li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.quiz-result__playbook li::before {
  content: ""; flex: 0 0 8px; width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}
.quiz-result__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.quiz-result__stat strong {
  display: block;
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.quiz-result__stat span { font-size: 13px; color: rgba(255, 255, 255, 0.65); line-height: 1.4; }
.quiz-result__vervo {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--grad-brand);
  border-radius: var(--r-md);
  color: white;
}
.quiz-result__vervo h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
.quiz-result__vervo p { color: white; font-size: 15px; line-height: 1.5; }

.quiz-result__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* =========================================================================
   Report teaser
   ========================================================================= */
.report-teaser {
  background: var(--bg-tint);
}
.report-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .report-split { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.report-split h2 { margin-bottom: 20px; }
.report-split p { color: var(--muted); font-size: var(--fs-lg); line-height: 1.55; margin-bottom: 32px; }
.report-toc {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  gap: 2px;
}
.report-toc li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--body);
}
.report-toc li span {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--brand-blue);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.report-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  background: var(--grad-pricing);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px;
  color: white;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}
.report-visual:hover { transform: rotate(0deg) scale(1.02); }
.report-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(0, 232, 255, 0.25), transparent 55%);
}
.report-visual__eyebrow {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.report-visual__title {
  position: relative;
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: clamp(28px, 2vw + 16px, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: auto;
  max-width: 14ch;
}
.report-visual__meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 40px;
}
.report-visual__pages {
  font-family: "Segoe UI", sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* =========================================================================
   Credibility
   ========================================================================= */
.credibility { text-align: center; }
.credibility-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.credibility-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  opacity: 0.7;
  align-items: center;
}
.credibility-logos span {
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--line); }
details.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 4px;
}
details.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: "Segoe UI", "Poppins", sans-serif;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--brand-blue); }
details.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--brand-blue);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { padding: 0 0 24px 0; color: var(--muted); max-width: 65ch; line-height: 1.6; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.final-cta {
  background: var(--bg-black);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-radial);
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  color: white;
  max-width: 18ch;
  margin: 0 auto 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #B6C5FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta p { color: rgba(255, 255, 255, 0.7); max-width: 52ch; margin: 0 auto 36px; font-size: var(--fs-lg); }

/* =========================================================================
   Footer
   ========================================================================= */
footer.site-footer {
  background: var(--bg-black);
  color: rgba(255, 255, 255, 0.6);
  padding-block: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.footer-inner a { color: inherit; transition: color 0.2s; }
.footer-inner a:hover { color: white; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-logo {
  height: 32px;
  width: auto;
  /* invert the blue logo to white-ish on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-copy { max-width: 36ch; }

/* Report gate copy below button */
.report-gate-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* =========================================================================
   Modal : email gate
   ========================================================================= */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFade 0.25s var(--ease) both;
}
@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 32, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 80px rgba(8, 18, 60, 0.4);
  animation: modalRise 0.35s var(--ease) both;
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: var(--bg-tint); color: var(--ink); }
.modal__close svg { width: 18px; height: 18px; }

.modal__body { display: block; }
.modal__body[hidden] { display: none !important; }
.modal__body .eyebrow { color: #1470b3; }
.modal__body h3 {
  font-size: clamp(22px, 1.6vw + 14px, 28px);
  margin: 12px 0 8px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.modal__sub {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.modal__form { display: grid; gap: 16px; }
.modal__field { display: grid; gap: 6px; }
.modal__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal__form input[type="email"] {
  appearance: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.modal__form input[type="email"]:focus {
  outline: none;
  border-color: #1470b3;
  box-shadow: 0 0 0 4px rgba(20, 112, 179, 0.12);
}
.modal__form input[type="email"][aria-invalid="true"] {
  border-color: #d23a3a;
  box-shadow: 0 0 0 4px rgba(210, 58, 58, 0.10);
}
.modal__error {
  font-size: 13px;
  color: #d23a3a;
  min-height: 1em;
}
.btn--block { width: 100%; }
.modal__legal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}
.modal__textlink {
  display: block;
  margin: 16px auto 0;
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  background: none;
  border: 0;
  cursor: pointer;
}
.modal__textlink:hover { color: var(--ink); }

.modal__body--success { text-align: center; }
.modal__check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(226deg, #083AAE 0%, #9540FF 100%);
  color: white;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 32px rgba(149, 64, 255, 0.3);
  animation: checkPop 0.5s var(--ease) both;
}
@keyframes checkPop {
  from { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  to   { transform: scale(1);   opacity: 1; }
}
.modal__check svg { width: 30px; height: 30px; }
.modal__body--success #successEmail {
  color: #1470b3;
  font-weight: 600;
  word-break: break-all;
}

/* =========================================================================
   Utilities & animation
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile responsive tweaks */
@media (max-width: 640px) {
  .hero { padding-block: 72px; }
  .nav-links { display: none; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn--lg { padding: 16px 26px; font-size: 15px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .section { padding-block: 64px; }
}
