/* ═══════════════════════════════════════════════ */
/*  LUMEN AI FUNNEL — premium design system          */
/* ═══════════════════════════════════════════════ */

:root {
  --ink: #0c0c10;
  --ink-soft: #2a2a35;
  --ink-mid: #5a5a6e;
  --ink-light: #8a8a9c;
  --line: #ececf2;
  --line-strong: #d8d8e0;
  --bg: #ffffff;
  --bg-soft: #fafafb;
  --bg-card: #ffffff;
  --accent: #6128db;
  --accent-2: #8b5cf6;
  --accent-soft: rgba(97, 40, 219, 0.08);
  --accent-glow: rgba(97, 40, 219, 0.18);
  --gradient: linear-gradient(135deg, #6128db, #8b5cf6);
  --gradient-text: linear-gradient(135deg, #6128db, #a855f7);
  --gradient-soft: linear-gradient(135deg, rgba(97,40,219,0.07), rgba(168,85,247,0.04));
  --shadow-sm: 0 1px 2px rgba(12, 12, 16, 0.04), 0 0 0 1px rgba(12, 12, 16, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(12, 12, 16, 0.04), 0 2px 4px -1px rgba(12, 12, 16, 0.03), 0 0 0 1px rgba(12, 12, 16, 0.05);
  --shadow-lg: 0 20px 40px -12px rgba(12, 12, 16, 0.10), 0 0 0 1px rgba(12, 12, 16, 0.04);
  --shadow-xl: 0 30px 60px -15px rgba(12, 12, 16, 0.14), 0 0 0 1px rgba(12, 12, 16, 0.04);
  --shadow-cta: 0 12px 24px -8px rgba(97, 40, 219, 0.35), 0 4px 8px -2px rgba(97, 40, 219, 0.18);
  --shadow-cta-hover: 0 18px 32px -8px rgba(97, 40, 219, 0.45), 0 6px 12px -2px rgba(97, 40, 219, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

/* Metric-matched fallback so layout doesn't shift when Inter loads in */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.20%;
  descent-override: 22.48%;
  line-gap-override: 0.00%;
  size-adjust: 107.40%;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial Italic'), local('Arial');
  ascent-override: 90.20%;
  descent-override: 22.48%;
  line-gap-override: 0.00%;
  size-adjust: 107.40%;
  font-weight: 100 900;
  font-style: italic;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--accent-soft); color: var(--accent); }

/* (Quiz screen system removed — page is now a single landing with inline form) */

/* ═══════════════════════════════════════════════ */
/*  Animations                                       */
/* ═══════════════════════════════════════════════ */

.anim-target {
  will-change: transform, opacity, filter;
}

/* Default state — hidden */
.anim-slide-up .anim-target,
.anim-fade-in .anim-target,
.anim-zoom-in .anim-target {
  opacity: 0;
}

.anim-slide-up .anim-target {
  transform: translateY(36px);
  filter: blur(2px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-in .anim-target {
  filter: blur(1px);
  transition:
    opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-zoom-in .anim-target {
  transform: scale(0.94) translateY(20px);
  filter: blur(2px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-target.anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: var(--anim-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .anim-target {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ═══════════════════════════════════════════════ */
/*  Nav                                              */
/* ═══════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: -0.005em;
  transition: transform 0.18s ease, background 0.18s ease;
}

.nav__cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════ */
/*  Hero                                             */
/* ═══════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 40px 24px 72px;
  overflow: hidden;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
}

.hero__bg-orb--a {
  width: 480px; height: 480px;
  top: -120px; left: -160px;
  background: radial-gradient(circle, rgba(97, 40, 219, 0.35), transparent 70%);
}

.hero__bg-orb--b {
  width: 560px; height: 560px;
  top: 60px; right: -200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.22), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.005em;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
  font-size: clamp(33px, 5.4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 21ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero__title-highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  padding-right: 0.12em;
  margin-right: -0.04em;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 40px;
  letter-spacing: -0.005em;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__sublabel {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: center;
  color: var(--ink-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__meta svg { color: var(--ink-light); }

/* ═══════════════════════════════════════════════ */
/*  Buttons                                          */
/* ═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 60%);
  pointer-events: none;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta-hover);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--large {
  padding: 20px 36px;
  font-size: 17px;
}

.btn svg {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover svg {
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════════ */
/*  Section system                                   */
/* ═══════════════════════════════════════════════ */

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════ */
/*  Proof — How it works                             */
/* ═══════════════════════════════════════════════ */

.proof {
  position: relative;
  padding: 80px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof__steps {
  display: grid;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.proof__step {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.proof__step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.proof__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  border: 1px solid var(--accent-soft);
}

.proof__step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.proof__step p {
  color: var(--ink-mid);
  line-height: 1.65;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════ */
/*  Learnings                                        */
/* ═══════════════════════════════════════════════ */

.learnings {
  padding: 100px 24px;
  max-width: 920px;
  margin: 0 auto;
}

.learnings__list {
  display: grid;
  gap: 0;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  overflow: hidden;
}

.learnings__list li {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  position: relative;
  padding-left: 64px;
  transition: background 0.2s ease;
}

.learnings__list li:last-child { border-bottom: none; }
.learnings__list li:hover { background: var(--bg-soft); }

.learnings__list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 1px solid var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236128db' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══════════════════════════════════════════════ */
/*  Proof quote                                      */
/* ═══════════════════════════════════════════════ */

.proof-quote {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #1a0d2e 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}

.proof-quote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 60%);
  filter: blur(60px);
}

.proof-quote__mark {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-family: 'Inter', serif;
}

.proof-quote blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.022em;
  max-width: 760px;
  margin: 0 auto 24px;
}

.proof-quote cite {
  position: relative;
  z-index: 1;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════ */
/*  Who                                              */
/* ═══════════════════════════════════════════════ */

.who {
  padding: 100px 24px;
}

.who__grid {
  display: grid;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.who__col {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.who__col--yes { border-top: 3px solid var(--accent); }
.who__col--no { border-top: 3px solid var(--ink-light); }

.who__col h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.who__col ul li {
  padding: 12px 0 12px 32px;
  color: var(--ink-soft);
  position: relative;
  line-height: 1.55;
  font-size: 15px;
}

.who__col--yes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236128db' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.who__col--no ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(138, 138, 156, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238a8a9c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══════════════════════════════════════════════ */
/*  Final CTA                                        */
/* ═══════════════════════════════════════════════ */

.cta {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(97, 40, 219, 0.10), transparent 65%),
    radial-gradient(ellipse 40% 30% at 30% 80%, rgba(168, 85, 247, 0.06), transparent 65%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 28px;
  padding: 64px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}

.cta__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 28px;
  color: var(--ink);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.cta__price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.cta__price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__price-note {
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: -0.005em;
}

.buy-form {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: left;
}

.buy-form__row {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  grid-template-columns: 1fr;
}

.buy-form input {
  display: block;
  width: 100%;
  border: 1.5px solid var(--line);
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: white;
  transition: all 0.18s ease;
  -webkit-appearance: none;
  box-shadow: var(--shadow-sm);
}

.buy-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm), 0 0 0 4px var(--accent-soft);
}

.buy-form__submit {
  width: 100%;
  margin-top: 4px;
}

.buy-form__error {
  margin-top: 12px;
  font-size: 13px;
  color: #dc2626;
  text-align: center;
  min-height: 18px;
}

.cta__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 500;
}

.cta__trust svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .buy-form__row { grid-template-columns: 1fr 1fr; }
  .cta__trust { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
}

/* ═══════════════════════════════════════════════ */
/*  Footer                                           */
/* ═══════════════════════════════════════════════ */

.foot {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.foot__mark {
  height: 22px;
  width: auto;
  margin: 0 auto 8px;
  opacity: 0.55;
}

.foot p {
  color: var(--ink-light);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════ */
/*  Quiz                                             */
/* ═══════════════════════════════════════════════ */

.screen--quiz {
  background: var(--bg);
  padding: 60px 24px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen--quiz::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 40, 219, 0.10), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.quiz {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: quizIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes quizIn {
  from { opacity: 0; transform: translateY(16px); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.quiz__progress {
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 36px;
}

.quiz__progress span {
  display: block;
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz__step {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.quiz__q {
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}

.quiz__hint {
  color: var(--ink-mid);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.quiz__opt {
  display: block;
  width: 100%;
  background: white;
  border: 1.5px solid var(--line);
  padding: 22px 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  transition: all 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quiz__opt::after {
  content: '→';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-light);
  font-size: 18px;
  transition: all 0.2s ease;
}

.quiz__opt:hover {
  border-color: var(--accent);
  background: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), 0 0 0 4px var(--accent-soft);
}

.quiz__opt:hover::after {
  color: var(--accent);
  transform: translateY(-50%) translateX(2px);
}

.quiz__opt:active {
  transform: scale(0.99);
}

.quiz__textarea,
.quiz__input {
  display: block;
  width: 100%;
  border: 1.5px solid var(--line);
  padding: 20px 22px;
  border-radius: 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: white;
  margin-top: 16px;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  resize: vertical;
  box-shadow: var(--shadow-sm);
}

.quiz__input { font-size: 17px; }

.quiz__textarea:focus,
.quiz__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm), 0 0 0 4px var(--accent-soft);
}

.quiz__continue {
  margin-top: 28px;
  width: 100%;
}

/* ═══════════════════════════════════════════════ */
/*  Result                                           */
/* ═══════════════════════════════════════════════ */

.screen--result {
  background: var(--bg);
  padding: 60px 24px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen--result::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(97, 40, 219, 0.10), transparent 65%);
  pointer-events: none;
}

.result {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: quizIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.result__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.result__badge::before {
  content: '✓';
  font-size: 14px;
  font-weight: 800;
}

.result__h {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 36px;
}

.result__card {
  background: white;
  border-radius: 20px;
  padding: 8px 28px;
  margin-bottom: 28px;
  text-align: left;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.result__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.result__row:last-child { border-bottom: none; }

.result__row span:first-child {
  color: var(--ink-mid);
  font-weight: 500;
}

.result__row span:last-child {
  font-weight: 600;
  text-align: right;
  color: var(--ink);
}

.result__row--price span:last-child {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result__guarantee {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 28px;
  line-height: 1.55;
}

.result .btn--large { width: 100%; }

.result__fine {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 18px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════ */
/*  Success page                                     */
/* ═══════════════════════════════════════════════ */

.success-body {
  background: var(--bg);
}

.success {
  max-width: 580px;
  margin: 40px auto;
  padding: 0 24px 80px;
  text-align: center;
}

.success__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 700;
  box-shadow: var(--shadow-cta);
}

.success h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.success__sub {
  font-size: 17px;
  color: var(--ink-mid);
  margin-bottom: 32px;
}

.success__next {
  text-align: left;
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  margin: 40px 0 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.success__next h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.success__next ol {
  list-style: none;
  counter-reset: success-list;
}

.success__next ol li {
  counter-increment: success-list;
  padding: 12px 0 12px 44px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 15px;
}

.success__next ol li::before {
  content: counter(success-list);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.success__contact {
  font-size: 14px;
  color: var(--ink-light);
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════ */
/*  Desktop                                          */
/* ═══════════════════════════════════════════════ */

@media (min-width: 768px) {
  .nav { padding: 22px 48px; }
  .nav__brand img { height: 32px; }
  .hero { padding: 100px 48px 120px; }
  .proof { padding: 120px 48px; }
  .proof__steps { grid-template-columns: repeat(3, 1fr); }
  .learnings { padding: 120px 48px; }
  .learnings__list { grid-template-columns: 1fr 1fr; }
  .learnings__list li:nth-last-child(2) { border-bottom: none; }
  .learnings__list li:nth-child(odd) { border-right: 1px solid var(--line); }
  .who { padding: 120px 48px; }
  .who__grid { grid-template-columns: 1fr 1fr; }
  .cta { padding: 120px 48px 140px; }
  .cta__inner { padding: 80px 48px; }
}
