*, *::before, *::after { box-sizing: border-box; }
:root {
  --font-base: "DM Sans", sans-serif;
  --font-brand: "Archivo Black", sans-serif;
  --pink: #ff31a2;
  --yellow: #e9fc88;
  --red: #ff0b4b;
  --green: #00e5a0;
  --bg: #080810;
  --bg2: #0f0f1a;
  --bg3: #161624;
  --card: #1a1a2a;
  --border: rgba(255,49,162,0.15);
  --text: #f0eef8;
  --text2: #8884a0;
  --text3: #3d3a52;
  --border-strong: rgba(255,49,162,0.28);
  --black: var(--bg);
  --dark: var(--bg);
  --dark-soft: var(--bg2);
  --ink: var(--bg);
  --muted: var(--text3);
  --line: var(--border);
  --soft: var(--bg2);
  --white: #fff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0,0,0,0.22);
  --font-hero: clamp(3.5rem, 6vw, 5.5rem);
  --font-section-title: clamp(2rem, 3.5vw, 3.5rem);
  --font-card-title: clamp(1.25rem, 1.8vw, 2rem);
  --font-body-lg: clamp(1rem, 1.2vw, 1.2rem);
  --font-body: 1rem;
  --font-label: 0.78rem;
  --section-y: clamp(4rem, 7vw, 7rem);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255,49,162,0.15);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(20, 22, 34, 0.04);
}
.brand img { width: 112px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); font-size: 13px; font-weight: 900; letter-spacing: 0.045em; text-transform: uppercase; }
.site-nav a:hover { color: var(--pink); }
.site-nav .mobile-student-link { display: none; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-cta, .btn-primary { background: var(--pink); color: var(--white); box-shadow: 0 14px 30px rgba(255, 49, 162, 0.22); }
.btn-primary:hover, .header-cta:hover { transform: translateY(-2px); background: var(--red); }
.btn-primary:disabled { cursor: not-allowed; opacity: 0.55; transform: none; background: var(--pink); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn-play { background: transparent; color: var(--ink); gap: 10px; box-shadow: none; }
.btn-play span { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 10px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
.hero {
  min-height: min(760px, calc(100vh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  align-items: stretch;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;
  width: 28%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0.84) 42%, rgba(255,255,255,0) 100%);
}
.hero-copy { padding: clamp(48px, 7vw, 96px) clamp(24px, 2.6vw, 42px) clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; min-width: 0; position: relative; z-index: 3; }
.eyebrow { margin: 0 0 12px; color: var(--pink); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--font-label); }
h1, h2 { margin: 0; letter-spacing: 0; line-height: 0.98; font-family: var(--font-base); font-weight: 800; }
h1 { font-size: var(--font-hero); max-width: 780px; line-height: 0.96; }
h2 { font-size: var(--font-section-title); max-width: 760px; line-height: 1; }
h1 span, h2 span { color: var(--pink); }
.hero-text { max-width: 560px; margin: 24px 0 0; font-size: var(--font-body-lg); color: var(--text3); }
.hero-text-secondary { margin-top: 14px; }
.hero-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 660px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,49,162,0.28);
  border-radius: var(--radius);
  background: rgba(255,49,162,0.08);
  box-shadow: none;
  min-width: 0;
}
.hero-note span { color: var(--pink); font-size: 2rem; line-height: 1; }
.hero-note p { min-width: 0; margin: 0; color: var(--bg); font-size: var(--font-body-lg); line-height: 1.45; }
.hero-note strong { color: var(--pink); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.launch-promo-chip {
  display: grid;
  gap: 7px;
  max-width: 620px;
  margin-top: 22px;
  padding: 13px 16px 14px;
  border: 1px solid rgba(233,252,136,0.36);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(233,252,136,0.14), rgba(255,49,162,0.12)),
    rgba(26,26,42,0.82);
  color: var(--text);
  box-shadow: 0 18px 52px rgba(255,49,162,0.1);
}
.launch-promo-chip[hidden] { display: none; }
.launch-promo-chip strong {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.launch-promo-chip p,
.launch-promo-chip small {
  margin: 0;
  color: var(--text2);
  line-height: 1.4;
}
.launch-promo-chip p { color: var(--text); font-weight: 800; }
.launch-promo-chip small { font-size: 0.86rem; }
.launch-promo-chip + .hero-actions { margin-top: 14px; }
.featured-race-entry {
  max-width: 620px;
  margin-top: 18px;
  padding: 1px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(233,252,136,0.95), rgba(255,49,162,0.9));
  border: 0;
  box-shadow: 0 18px 54px rgba(255,49,162,0.16);
}
.featured-race-entry[hidden] { display: none; }
.featured-race-entry__body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 15px;
  border-radius: calc(var(--radius-sm) - 1px);
  background: rgba(15,15,26,0.96);
  color: var(--text);
}
.featured-race-entry__title {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.featured-race-entry__meta {
  margin: 0;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-race-entry p:not(.featured-race-entry__title):not(.featured-race-entry__meta) {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.35;
}
.featured-race-entry__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 40px;
  margin-top: 5px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  border: 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255,49,162,0.28);
}
.featured-race-entry__cta:hover { background: var(--red); transform: translateY(-1px); }
.featured-race-entry small {
  color: var(--text2);
  font-size: 0.74rem;
  font-weight: 700;
}
.route-alternative-entry {
  display: grid;
  gap: 9px;
  max-width: 620px;
  margin-top: 16px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255,49,162,0.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
}
.route-alternative-entry p {
  margin: 0;
  color: var(--text2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-alternative-entry .btn-primary {
  width: fit-content;
  min-height: 42px;
  padding-inline: 22px;
}
.hero-actions--secondary {
  margin-top: 12px;
}
.trust-strip { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 700px; padding: 0; margin: 56px 0 0; }
.trust-strip li { position: relative; padding-left: 28px; font-size: 14px; font-weight: 800; }
.trust-strip li::before { content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border: 3px solid var(--pink); border-radius: 50%; }
.hero-media { margin: 0 0 0 -6vw; min-height: 520px; position: relative; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.12) 32%, rgba(0,0,0,0.08) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.answer-preview {
  max-width: 1180px;
  margin: clamp(2.8rem, 5vw, 4.8rem) auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20, 22, 34, 0.04);
}
.answer-preview-head { text-align: center; margin-bottom: clamp(20px, 3vw, 30px); }
.answer-preview h2 { margin: 0 auto; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.04; }
.answer-preview-head p { margin: 8px 0 0; color: var(--muted); font-size: var(--font-body-lg); }
.preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.preview-card {
  min-width: 0;
  padding: 8px clamp(16px, 2.3vw, 28px);
  text-align: center;
  border-right: 1px solid var(--border);
}
.preview-card:last-child { border-right: 0; }
.preview-card > span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255,49,162,0.08);
  color: var(--pink);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: none;
}
.preview-card h3 {
  min-height: 42px;
  margin: 0;
  color: var(--pink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.14;
}
.preview-card p { margin: 12px auto 0; color: var(--text3); font-size: 0.96rem; line-height: 1.48; }
.berni-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  max-width: 1040px;
  min-height: clamp(360px, 42vw, 440px);
  margin: clamp(2.8rem, 4.6vw, 4.6rem) auto;
  padding: 0 clamp(28px, 4vw, 48px) 0 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20, 22, 34, 0.04);
  overflow: hidden;
}
.berni-section .section-copy {
  grid-column: 2;
  min-width: 0;
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(30px, 4vw, 46px) 0;
}
.berni-section h2 { max-width: 560px; }
.berni-section .section-copy p { margin-top: 14px; margin-bottom: 0; }
.berni-section .btn { margin-top: 22px; min-width: 170px; }
.berni-role {
  color: var(--pink) !important;
  font-size: 0.88rem !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35 !important;
}
.berni-final,
.berni-final strong {
  color: var(--pink) !important;
  font-weight: 900;
}
.club-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: var(--section-y) clamp(24px, 6vw, 88px);
  align-items: center;
}
.berni-photo {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  min-width: 0;
  min-height: 100%;
  position: relative;
  align-self: stretch;
  overflow: hidden;
}
.berni-photo::before,
.berni-photo::after { content: none; }
.berni-portrait {
  position: absolute;
  left: 50%;
  bottom: -43%;
  width: auto;
  max-width: none;
  height: 210%;
  object-fit: contain;
  transform: translateX(-50%);
}
.berni-signature-frame {
  display: block;
  width: min(100%, 420px);
  height: 70px;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.berni-signature {
  position: absolute;
  width: 880px;
  max-width: none;
  height: auto;
  left: -284px;
  top: -432px;
}
.placeholder-photo { display: grid; place-items: center; border: 1px dashed var(--border); color: var(--muted); font-weight: 800; text-align: center; padding: 24px; }
.section-copy p { max-width: 620px; color: var(--text3); font-size: var(--font-body-lg); line-height: 1.6; }
.section-copy strong { color: var(--ink); }
.mobile-copy { display: none; }
.route-entry {
  max-width: 1180px;
  margin: 0 auto clamp(3.2rem, 5.4vw, 5rem);
  padding: 0 clamp(20px, 4vw, 32px);
}
.route-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 22px 24px;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20, 22, 34, 0.04);
  backdrop-filter: blur(14px);
}
.route-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 0 20px;
  color: var(--bg);
  font-weight: 700;
  line-height: 1.25;
  border-right: 1px solid var(--border);
}
.route-benefits li:last-child { border-right: 0; }
.route-benefits span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--pink);
  border: 1px solid rgba(255,49,162,0.28);
  background: rgba(255,49,162,0.08);
  font-weight: 900;
}
.route-entry-actions {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-top: 28px;
}
.route-main-cta {
  width: min(100%, 760px);
  min-height: 62px;
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
}
.route-main-cta span { margin-left: auto; }
.route-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-weight: 900;
}
.privacy-note {
  margin: 26px 0 0;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,49,162,0.08);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}
.landing-quiz-hidden { display: none; }
.quiz-page { min-height: 100vh; background: var(--dark); color: var(--white); }
.quiz-page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(21, 17, 31, 0.86);
  backdrop-filter: blur(18px);
}
.quiz-page-header img { width: 96px; filter: none; }
.quiz-page-header a { min-width: 0; }
.quiz-page-header a:last-child { color: rgba(255,255,255,0.72); font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.quiz-focus-page .quiz-section {
  min-height: calc(100svh - 68px);
  padding-top: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(rgba(8,8,16,0.88), rgba(8,8,16,0.88)),
    url("../ciudad-viva-bg.jpg") center / cover no-repeat;
}
.quiz-focus-page .quiz-shell { max-width: 980px; }
.quiz-focus-page .quiz-intro h1 {
  font-size: var(--font-section-title);
  line-height: 1;
  max-width: 760px;
  margin: 0 auto;
}
.quiz-section { background: var(--dark); color: var(--white); padding: clamp(3.5rem, 6vw, 5.8rem) clamp(18px, 5vw, 76px); }
.quiz-intro { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.quiz-intro p:not(.eyebrow) { color: rgba(255,255,255,0.72); font-size: 1.1rem; }
.quiz-shell { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; width: 100%; max-width: 980px; min-width: 0; margin: 0 auto; }
.quiz-panel { width: 100%; max-width: 100%; min-width: 0; background: var(--white); color: var(--ink); border-radius: var(--radius); box-shadow: 0 30px 90px rgba(0,0,0,0.32); overflow: hidden; }
.quiz-topbar { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.step-kicker { display: block; margin-bottom: 10px; font-weight: 800; color: var(--pink); font-size: 13px; }
.progress-track { width: min(420px, 58vw); height: 8px; background: rgba(255,49,162,0.08); border-radius: 999px; overflow: hidden; }
.progress-track div { height: 100%; width: 0%; background: linear-gradient(90deg,var(--pink),var(--yellow)); transition: width 260ms ease; }
.ghost-btn { background: transparent; border: 0; color: var(--muted); font-weight: 800; cursor: pointer; }
.quiz-welcome, .quiz-card, .recommendation { padding: clamp(28px, 5vw, 56px); }
.berni-avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--pink); color: var(--white); font-weight: 900; margin-bottom: 18px; overflow: hidden; }
.berni-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.chat-bubble { max-width: 680px; border: 1px solid var(--line); background: rgba(255,49,162,0.08); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.chat-bubble p { margin-bottom: 0; }
.quiz-welcome h3, .question-head h3, .recommendation h3 { font-size: var(--font-card-title); line-height: 1.08; margin: 0 0 14px; }
.quiz-welcome p, .question-head p { color: var(--muted); max-width: 680px; }
.context-response { color: var(--pink) !important; font-weight: 800; }
.hidden { display: none !important; }
.options-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.option-card, .race-card {
  display: flex;
  min-height: 60px;
  height: auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
  background: var(--white);
  min-width: 0;
  overflow: visible;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}
.option-card:hover, .race-card:hover { border-color: rgba(255,49,162,0.58); box-shadow: 0 10px 24px rgba(0,0,0,0.06); transform: translateY(-1px); }
.option-card:has(input:checked), .race-card:has(input:checked) { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,49,162,0.12); background: rgba(255,49,162,0.08); }
.option-card input, .race-card input { width: auto; min-height: auto; accent-color: var(--pink); flex: 0 0 auto; margin: 0; }
.option-card span, .race-card span { display: block; min-width: 0; word-break: normal; overflow-wrap: break-word; white-space: normal; line-height: 1.35; }
.race-card { grid-column: span 2; }
.race-card span { display: grid; gap: 4px; }
.race-card small { color: var(--muted); font-weight: 600; }
.race-summary {
  border: 1px solid rgba(255,49,162,0.34);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255,49,162,0.08);
  display: grid;
  gap: 5px;
}
.race-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.race-summary strong {
  color: var(--text, var(--white));
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}
.race-summary small {
  color: var(--pink);
  font-weight: 900;
}
.race-distance-picker,
.days-guidance,
.days-recommendation {
  border: 1px solid rgba(240,238,248,0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,49,162,0.05)),
    var(--card, rgba(26,26,42,0.78));
  padding: 16px 18px;
}
.race-distance-picker {
  display: grid;
  gap: 12px;
}
.race-distance-picker > span,
.days-recommendation > span {
  color: var(--yellow, #e9fc88);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.race-distance-picker > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.race-distance-picker label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 86px;
  padding: 12px 14px;
  border: 1px solid rgba(240,238,248,0.16);
  border-radius: 999px;
  cursor: pointer;
}
.race-distance-picker input {
  accent-color: var(--pink);
}
.race-distance-picker label:has(input:checked) {
  border-color: var(--pink);
  background: rgba(255,49,162,0.14);
  box-shadow: 0 0 0 1px rgba(255,49,162,0.22);
}
.days-guidance {
  display: grid;
  gap: 3px;
}
.days-guidance strong {
  color: var(--text, var(--white));
}
.days-guidance p {
  margin: 0;
  color: var(--text2, var(--muted));
  font-size: 0.9rem;
  line-height: 1.35;
}
.days-recommendation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.days-recommendation strong {
  color: var(--text, var(--white));
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.2;
}
.days-recommendation button {
  flex: 0 0 auto;
  border: 1px solid rgba(233,252,136,0.46);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--yellow, #e9fc88);
  background: rgba(233,252,136,0.08);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}
.days-recommendation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dynamic-fields { margin-top: 18px; display: grid; gap: 16px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field-stack { display: grid; gap: 10px; }
.field-stack.span-2 { grid-column: 1 / -1; }
.field-label { font-weight: 900; color: var(--ink); }
.meaning-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.meaning-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.84);
  cursor: pointer;
}
.meaning-card input { width: auto; min-height: auto; margin: 0; accent-color: var(--pink); }
.meaning-card:has(input:checked) { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,49,162,0.12); background: rgba(255,49,162,0.08); }
label { font-weight: 800; }
input:not([type="radio"]):not([type="checkbox"]), select {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--white);
}
.day-picker { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.day-picker label { display: block; }
.day-picker input { position: absolute; opacity: 0; pointer-events: none; }
.day-picker span { display: grid; place-items: center; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; }
.day-picker input:checked + span { background: var(--pink); border-color: var(--pink); color: var(--white); }
.checkbox-line { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.checkbox-line input { width: auto; min-height: auto; margin: 0; }
.form-error { min-height: 24px; color: var(--red); font-weight: 800; margin: 16px 0 0; }
.micro-response { min-height: 0; margin: 18px 0 0; color: var(--pink); font-weight: 800; }
.micro-response:empty { display: none; }
.quiz-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.quiz-aside { display: none; background: var(--dark-soft); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; align-self: start; }
.quiz-aside h3 { margin: 0 0 14px; font-size: 1.3rem; }
.quiz-aside li, .quiz-aside p { color: rgba(255,255,255,0.72); }
.method-section, .includes-section, .stories-section { padding: var(--section-y) clamp(24px, 6vw, 88px); }
.method-section { background: var(--white); }
.method-section > .eyebrow,
.method-section > h2 { text-align: center; margin-left: auto; margin-right: auto; }
.method-timeline { list-style: none; padding: 0; margin: clamp(2.2rem, 4vw, 3.4rem) 0 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; position: relative; }
.method-timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 22px; height: 2px; background: linear-gradient(90deg,var(--pink),var(--yellow)); opacity: 0.9; }
.method-timeline li { position: relative; z-index: 1; display: grid; justify-items: center; align-content: start; gap: 14px; text-align: center; min-width: 0; }
.method-timeline span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--pink); color: var(--white); border: 6px solid var(--white); box-shadow: 0 4px 14px rgba(255,49,162,0.4); font-weight: 900; }
.method-timeline h3 { margin: 0; font-size: clamp(1rem, 1.2vw, 1.18rem); line-height: 1.08; }
.method-timeline p { margin: 8px auto 0; max-width: 220px; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.include-grid article, .story-grid article, .next-route, .remote-note {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(20, 22, 34, 0.04);
  font-weight: 800;
}
.next-route { max-width: 860px; margin: clamp(2rem, 4vw, 3rem) auto 0; background: rgba(255,49,162,0.08); border-color: rgba(255,49,162,0.28); display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px; align-items: center; box-shadow: none; }
.next-route > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: var(--white); font-weight: 900; font-size: 1.4rem; }
.next-route h3 { margin: 0 0 6px; font-size: var(--font-card-title); line-height: 1.06; }
.next-route p { color: var(--muted); margin: 0; line-height: 1.55; }
.method-cta { display: flex; justify-content: center; margin-top: 20px; }
.method-cta .btn { min-width: 220px; }
.includes-section { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: clamp(28px, 4vw, 56px); background: var(--bg2); color: var(--text); align-items: start; }
.includes-section .section-copy { min-width: 0; }
.includes-section .section-copy p { color: var(--text2); }
.include-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-self: start; }
.include-grid article { min-height: 176px; display: grid; align-content: start; gap: 10px; background: var(--card); border-color: var(--border); box-shadow: none; color: var(--text); }
.include-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(233,252,136,0.08); color: var(--yellow); font-size: var(--font-label); font-weight: 900; border: 1px solid rgba(233,252,136,0.28); }
.include-grid h3 { margin: 0; font-size: 1.22rem; line-height: 1.08; }
.include-grid ul { margin: 0; padding-left: 18px; color: var(--text2); font-weight: 700; line-height: 1.55; }
.platform-preview { grid-column: 1 / -1; margin-top: 14px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.64fr); gap: clamp(24px, 5vw, 68px); align-items: center; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); color: var(--text); padding: clamp(28px, 5vw, 56px); box-shadow: 0 18px 50px rgba(0,0,0,0.22); overflow: hidden; }
.platform-copy { min-width: 0; }
.platform-badge { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(233,252,136,0.28); background: rgba(233,252,136,0.12); color: var(--yellow); font-size: var(--font-label); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.platform-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.platform-preview h3 { margin: 0 0 22px; font-size: clamp(2.4rem, 5.2vw, 4.6rem); line-height: 0.9; letter-spacing: 0.01em; }
.platform-preview p { margin: 0 0 22px; color: var(--text2); max-width: 620px; line-height: 1.65; font-size: var(--font-body-lg); }
.platform-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 28px 0 34px; }
.platform-tags li { border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 8px 14px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82); font-weight: 700; font-size: 0.92rem; }
.platform-cta { background: var(--yellow); color: var(--black); box-shadow: 0 18px 38px rgba(233,252,136,0.22); }
.platform-cta:hover { background: var(--pink); color: var(--white); }
.platform-phone { justify-self: center; width: min(100%, 330px); margin: 0; padding: 14px; border-radius: 24px; background: var(--bg3); border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 18px 50px rgba(0,0,0,0.22); transform: rotate(5deg); }
.platform-phone img { width: 100%; aspect-ratio: 9 / 16; max-height: 520px; object-fit: cover; object-position: top center; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); }
.stories-section { background: var(--white); }
.stories-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; }
.stories-nav { display: flex; gap: 10px; }
.stories-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--pink); font-size: 2rem; line-height: 1; font-weight: 500; cursor: pointer; box-shadow: none; }
.stories-nav button:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.story-grid { display: flex; gap: 18px; margin-top: 32px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 2px; padding: 2px 0 14px; -webkit-overflow-scrolling: touch; }
.story-grid::-webkit-scrollbar { height: 8px; }
.story-grid::-webkit-scrollbar-track { background: rgba(255,49,162,0.08); border-radius: 999px; }
.story-grid::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 999px; }
.testimonial-card { flex: 0 0 min(390px, 86vw); scroll-snap-align: start; padding: 22px; overflow: hidden; display: flex; flex-direction: column; gap: 18px; min-height: 310px; }
.testimonial-top { display: flex; align-items: center; gap: 14px; }
.testimonial-top img { width: 58px; height: 58px; flex: 0 0 auto; object-fit: cover; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.testimonial-top h3 { margin: 0; font-size: 1.08rem; line-height: 1.1; }
.testimonial-card p { margin: 0; color: var(--text3); font-weight: 650; line-height: 1.58; }
.club-section { background: var(--white); }
.club-section figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.club-section img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.club-section ul { padding-left: 18px; font-weight: 800; }
.remote-note { margin-top: 24px; background: rgba(233,252,136,0.08); color: var(--bg); display: grid; gap: 6px; border-color: rgba(233,252,136,0.28); box-shadow: none; }
.remote-note span { color: var(--text3); font-weight: 700; }
.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: stretch;
  background: var(--bg);
  color: var(--text);
}
.join-section figure { width: 100%; max-width: 100%; min-width: 0; margin: 0; aspect-ratio: 16 / 9; align-self: center; position: relative; border-radius: 0; }
.join-section figure::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: rgba(8,8,16,0.42); pointer-events: none; }
.join-section img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.join-copy { min-width: 0; padding: clamp(48px, 6vw, 78px) clamp(28px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.join-copy h2 { max-width: 11ch; font-size: var(--font-section-title); line-height: 1.02; text-wrap: balance; }
.join-copy p:not(.eyebrow) { width: min(100%, 560px); color: var(--text2); font-size: var(--font-body-lg); line-height: 1.6; margin: 20px 0 26px; }
.join-copy .btn { max-width: 100%; white-space: normal; text-align: center; }
.site-footer { background: var(--bg); color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 34px clamp(24px, 6vw, 88px); }
.site-footer img { width: 112px; filter: none; }
.foot-links { display: flex; flex-wrap: wrap; gap: 20px; color: rgba(255,255,255,0.72); font-size: 14px; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.understood-card, .route-card, .price-card { border-radius: 20px; padding: 22px; border: 1px solid var(--line); }
.route-card { background: var(--dark); color: var(--white); grid-row: span 2; }
.route-card .eyebrow { color: var(--yellow); }
.route-card p, .route-card li { color: rgba(255,255,255,0.76); }
.route-card h3 { margin-bottom: 12px; }
.result-intro { font-size: 1.04rem; line-height: 1.48; color: rgba(255,255,255,0.86) !important; margin-bottom: 18px; }
.route-highlight {
  display: grid;
  gap: 4px;
  margin: 18px 0 20px;
  padding: 16px;
  border: 1px solid rgba(233,252,136,0.5);
  border-radius: 16px;
  background: linear-gradient(135deg,rgba(255,49,162,0.08),rgba(233,252,136,0.09));
}
.route-highlight span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.route-highlight strong { color: var(--white); font-size: 1.1rem; }
.price-card { position: relative; background: rgba(255,49,162,0.08); }
.contact-card { background: rgba(233,252,136,0.08); border-color: rgba(233,252,136,0.28); }
.close-card { position: absolute; right: 14px; top: 14px; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); font-weight: 900; }
.price-disclaimer { color: var(--red); font-weight: 900; font-size: 12px; }
.price-option { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px; margin: 12px 0; display: grid; gap: 4px; }
.price-option strong { font-size: 2rem; color: var(--pink); }
.price-option small { color: var(--muted); font-weight: 700; }
.price-card .btn { width: 100%; margin-top: 10px; }
.blocker-list { margin-top: 16px; padding: 14px; border: 1px solid rgba(233,252,136,0.4); border-radius: 14px; background: rgba(233,252,136,0.1); }
.blocker-list ul { margin: 8px 0 0; padding-left: 18px; }
.save-status { min-height: 20px; margin: 12px 0 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.compact-fields { align-items: start; }
.result-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
@media (max-width: 1440px) {
  .join-section { grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr); }
  .join-copy { padding-inline: clamp(28px, 4.4vw, 62px); }
}
@media (max-width: 1280px) {
  .berni-section {
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
    max-width: 960px;
    min-height: 350px;
  }
  .berni-portrait { height: 198%; bottom: -39%; transform: translateX(-50%); }
  .join-section { grid-template-columns: 1fr; }
  .join-section figure { aspect-ratio: 16 / 9; }
  .join-section figure::after { background: rgba(8,8,16,0.42); }
  .join-copy { padding: clamp(42px, 5vw, 62px) clamp(26px, 6vw, 64px); }
  .join-copy h2 { max-width: 100%; }
  .join-copy p:not(.eyebrow) { width: min(100%, 620px); }
}
@media (max-width: 980px) {
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 18px 24px 24px; background: var(--white); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .site-nav.open, .site-nav.is-open { display: flex; }
  .site-nav .mobile-student-link { display: inline; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .hero, .quiz-shell, .includes-section, .club-section, .join-section { grid-template-columns: 1fr; }
  .berni-section {
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.66fr);
    margin-inline: 24px;
    min-height: 330px;
  }
  .berni-portrait { height: 188%; bottom: -36%; transform: translateX(-50%); }
  .hero::after { display: none; }
  .hero-copy { padding-top: 46px; }
  .hero-media { min-height: 340px; margin-left: 0; }
  .hero-media::after { background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.7)); }
  .trust-strip, .story-grid { grid-template-columns: 1fr; }
  .quiz-aside { display: none; }
  .method-timeline { grid-template-columns: 1fr; gap: 18px; max-width: 620px; margin-left: auto; margin-right: auto; }
  .method-timeline::before { left: 23px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .method-timeline li { grid-template-columns: auto minmax(0, 1fr); justify-items: start; text-align: left; gap: 14px; }
  .method-timeline span { width: 46px; height: 46px; border-width: 5px; }
  .method-timeline p { max-width: none; margin-left: 0; }
  .platform-preview { grid-template-columns: 1fr; }
  .platform-phone { width: min(100%, 280px); transform: none; }
  .join-section figure { aspect-ratio: 16 / 10; }
  .join-copy { padding: clamp(40px, 7vw, 58px) clamp(24px, 7vw, 52px); }
  .result-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 768px) {
  .site-header { height: 68px; padding-inline: 28px; }
  .brand img { width: 96px; }
  .site-nav { top: 68px; }
  .hero {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    min-height: min(700px, calc(100svh - 68px));
  }
  .hero-copy { padding: 42px 22px 42px 34px; }
  h1 { font-size: clamp(3rem, 6.2vw, 3.35rem); line-height: 1; max-width: 10.5ch; }
  .hero-text { font-size: 0.98rem; line-height: 1.45; margin-top: 16px; }
  .hero-text-secondary { margin-top: 10px; }
  .hero-note { margin-top: 18px; padding: 15px 16px; }
  .hero-note p { font-size: 0.96rem; line-height: 1.38; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 24px; gap: 9px; }
  .hero-media { min-height: auto; margin-left: 0; }
  .hero-media::after { background: linear-gradient(90deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08)); }
  .berni-section { margin-inline: 32px; min-height: 420px; }
  .method-section, .includes-section, .stories-section, .club-section { padding: 4.2rem 34px; }
  .includes-section { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 24px; }
  .include-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .include-grid article { min-height: 152px; }
  .platform-preview { grid-template-columns: minmax(0, 0.68fr) minmax(180px, 0.32fr); padding: 28px; gap: 24px; }
  .platform-preview h3 { font-size: clamp(2.35rem, 6vw, 3.1rem); }
  .platform-preview p { font-size: 0.96rem; line-height: 1.5; }
  .platform-tags { gap: 8px; margin: 20px 0 24px; }
  .platform-phone { width: min(100%, 210px); transform: rotate(3deg); }
  .club-section { grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr); gap: 24px; }
  .club-section img { aspect-ratio: 4 / 5; }
  .join-section { grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr); }
  .join-section figure { aspect-ratio: auto; min-height: 390px; }
  .join-copy { padding: 48px 34px; }
  .join-copy h2 { max-width: 100%; }
}
@media (max-width: 640px) {
  body { line-height: 1.45; }
  .site-header { height: 52px; padding: 0 16px; gap: 12px; }
  .site-nav { top: 52px; padding: 12px 20px 16px; gap: 10px; }
  .brand img { width: 70px; }
  .site-footer img { width: 78px; }
  .menu-toggle { padding: 6px 10px; font-size: 0.74rem; }
  .btn { min-height: 42px; padding: 10px 18px; }
  h1 { font-size: clamp(2rem, 8.6vw, 2.35rem); line-height: 1.02; max-width: 13ch; }
  h2 { font-size: clamp(1.72rem, 7.2vw, 2.18rem); line-height: 1.04; }
  .eyebrow { font-size: 0.68rem; margin-bottom: 8px; }
  h1 span { display: inline; }
  .hero { min-height: auto; grid-template-columns: 1fr; background: var(--white); }
  .hero-copy { padding: 22px 20px 14px; justify-content: start; }
  .hero-text { margin-top: 10px; font-size: 0.88rem; line-height: 1.34; max-width: 34ch; }
  .hero-text-secondary { margin-top: 8px; }
  .hero-note {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
    padding: 12px 13px;
    border-radius: 16px;
  }
  .hero-note span { font-size: 1.4rem; }
  .hero-note p { font-size: 0.84rem; line-height: 1.28; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 6px; margin-top: 14px; }
  .hero-actions .btn-primary { width: 100%; }
  .btn-play { width: fit-content; min-height: 36px; padding: 4px 0; justify-self: center; font-size: 0.88rem; }
  .btn-play span { width: 24px; height: 24px; }
  .trust-strip {
    margin-top: 12px;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,49,162,0.08);
  }
  .trust-strip li { font-size: 0.76rem; padding-left: 20px; line-height: 1.2; }
  .trust-strip li::before { width: 12px; height: 12px; border-width: 3px; top: 2px; }
  .hero-media { min-height: 128px; aspect-ratio: 16 / 8; margin-left: 0; }
  .hero-media::after { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.42)); }
  .hero-media img { object-position: center 42%; }
  .answer-preview {
    margin: 2.1rem 10px 0;
    padding: 20px 16px;
    border-radius: 20px;
  }
  .answer-preview h2 { font-size: clamp(1.35rem, 6.2vw, 1.7rem); max-width: 13ch; }
  .answer-preview-head { margin-bottom: 16px; }
  .answer-preview-head p { font-size: 0.9rem; }
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .preview-card {
    padding: 14px 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .preview-card:last-child { border-right: 1px solid var(--line); }
  .preview-card > span { width: 48px; height: 48px; margin-bottom: 10px; font-size: 1.35rem; }
  .preview-card h3 { min-height: 0; font-size: 0.9rem; line-height: 1.12; }
  .preview-card p { margin-top: 8px; font-size: 0.78rem; line-height: 1.35; }
  .hero-actions, .quiz-actions, .result-actions { flex-direction: column; }
  .options-grid, .field-grid, .include-grid { grid-template-columns: 1fr; }
  .meaning-grid { grid-template-columns: 1fr; }
  .option-card, .race-card { min-height: 56px; padding: 13px 14px; }
  .race-card { grid-column: auto; }
  .day-picker { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .quiz-section { padding: 1.45rem 10px 2rem; scroll-margin-top: 52px; }
  .quiz-intro { text-align: left; margin-bottom: 10px; }
  .quiz-intro .eyebrow { margin-bottom: 5px; }
  .quiz-intro h2 { font-size: clamp(1.48rem, 6.4vw, 1.78rem); line-height: 1.03; max-width: 18ch; }
  .quiz-intro p:not(.eyebrow) { font-size: 0.82rem; line-height: 1.32; margin: 8px 0 0; max-width: 34ch; }
  .quiz-panel { border-radius: 18px; }
  .quiz-welcome, .quiz-card, .recommendation { padding: 14px 14px 16px; }
  .quiz-topbar { padding: 12px 14px; align-items: flex-start; gap: 10px; }
  .step-kicker { font-size: 0.78rem; margin-bottom: 6px; }
  .progress-track { width: min(58vw, 198px); height: 7px; }
  .ghost-btn { font-size: 0.8rem; }
  .quiz-welcome h3, .question-head h3, .recommendation h3 { font-size: 1.18rem; line-height: 1.08; margin-bottom: 6px; }
  .quiz-welcome p, .question-head p { font-size: 0.8rem; line-height: 1.3; }
  .quiz-welcome-message p { margin: 8px 0 0; }
  .question-head p { margin: 0; }
  .options-grid { gap: 7px; margin-top: 11px; }
  .option-card, .race-card { min-height: 44px; padding: 9px 11px; gap: 9px; border-radius: 13px; font-size: 0.82rem; }
  .option-card input, .race-card input { transform: scale(0.9); }
  .form-error { min-height: 16px; margin-top: 7px; font-size: 0.78rem; }
  .micro-response { margin-top: 8px; font-size: 0.82rem; }
  .quiz-actions { display: grid; grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr); gap: 8px; margin-top: 10px; }
  .quiz-actions .btn { width: 100%; min-height: 40px; padding: 8px 12px; font-size: 0.84rem; }
  .berni-section {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    column-gap: 12px;
    position: relative;
    margin: 2.2rem 10px;
    padding: 16px 12px 14px 0;
    min-height: auto;
    align-items: end;
    border-radius: 20px;
  }
  .desktop-copy { display: none; }
  .mobile-copy { display: block; }
  .berni-section .eyebrow { font-size: 0.58rem; line-height: 1.15; margin-bottom: 6px; letter-spacing: 0.07em; }
  .berni-section h2 { font-size: clamp(1.28rem, 5.8vw, 1.56rem); line-height: 1; }
  .berni-section .section-copy p { font-size: 0.78rem; line-height: 1.32; margin-top: 8px; max-width: none; }
  .berni-section .section-copy strong { line-height: 1.28; }
  .berni-section .btn { width: auto; min-width: 0; min-height: 38px; padding: 9px 18px; margin-top: 12px; font-size: 0.86rem; }
  .berni-photo {
    position: relative;
    width: 100%;
    min-height: 0;
    height: clamp(250px, 70vw, 330px);
    justify-self: stretch;
    grid-column: 1;
    order: 1;
  }
  .berni-section .section-copy { grid-column: 2; order: 2; align-self: center; padding: 0; }
  .berni-portrait { height: 206%; bottom: -43%; left: 48%; transform: translateX(-50%); }
  .berni-signature-frame { width: 100%; height: 34px; margin-top: 7px; }
  .berni-signature { width: 430px; left: -142px; top: -212px; }
  .berni-role { font-size: 0.58rem !important; line-height: 1.2 !important; }
  .berni-final { font-size: 0.78rem !important; }
  .route-entry {
    margin-bottom: 2.4rem;
    padding-inline: 10px;
  }
  .route-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }
  .route-benefits li {
    justify-content: flex-start;
    padding: 0;
    border-right: 0;
    font-size: 0.86rem;
  }
  .route-benefits span { width: 34px; height: 34px; }
  .route-entry-actions { margin-top: 18px; gap: 12px; }
  .route-main-cta { width: 100%; min-height: 48px; font-size: 1rem; }
  .route-secondary-cta { font-size: 0.9rem; }
  .privacy-note {
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.34;
  }
  .quiz-page-header { min-height: 56px; padding-inline: 16px; }
  .quiz-page-header img { width: 74px; }
  .quiz-page-header a:last-child { font-size: 0.82rem; }
  .quiz-focus-page .quiz-section { min-height: calc(100svh - 56px); padding-top: 1.2rem; }
  .quiz-focus-page .quiz-shell { width: 100%; max-width: 100%; }
  .quiz-focus-page .quiz-intro h1 {
    font-size: clamp(1.48rem, 6.4vw, 1.78rem);
    line-height: 1.03;
    max-width: 18ch;
    margin-left: 0;
  }
  .club-section img { aspect-ratio: 4 / 3; }
  .method-section, .includes-section, .stories-section, .club-section { padding: 3.1rem 20px; }
  .method-section > .eyebrow,
  .method-section > h2 { text-align: left; }
  .method-timeline { gap: 12px; margin-top: 22px; }
  .method-timeline::before { left: 18px; }
  .method-timeline li { gap: 11px; }
  .method-timeline span { width: 38px; height: 38px; border-width: 4px; font-size: 0.86rem; }
  .method-timeline h3 { font-size: 0.98rem; }
  .method-timeline p { font-size: 0.86rem; line-height: 1.35; margin-top: 4px; }
  .next-route { grid-template-columns: auto minmax(0, 1fr); gap: 12px; padding: 16px; border-radius: 18px; margin-top: 22px; }
  .next-route > span { width: 34px; height: 34px; }
  .next-route h3 { font-size: 1.08rem; }
  .next-route p { font-size: 0.9rem; line-height: 1.38; }
  .method-cta { margin-top: 14px; }
  .method-cta .btn { width: 100%; min-width: 0; }
  .includes-section { gap: 20px; }
  .includes-section .section-copy p { font-size: 0.94rem; line-height: 1.42; }
  .include-grid { gap: 10px; }
  .include-grid article {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
    padding: 15px;
    border-radius: 18px;
  }
  .include-grid article > span { width: 34px; height: 34px; grid-row: span 2; }
  .include-grid h3 { font-size: 1rem; align-self: end; }
  .include-grid ul { font-size: 0.86rem; line-height: 1.35; padding-left: 16px; }
  .platform-preview { grid-template-columns: minmax(0, 0.64fr) minmax(92px, 0.36fr); padding: 18px 14px; gap: 12px; border-radius: 20px; align-items: end; }
  .platform-copy { grid-column: 1 / 2; }
  .platform-badge { margin-bottom: 12px; padding: 6px 11px; font-size: 0.64rem; }
  .platform-preview h3 { font-size: clamp(1.55rem, 7.4vw, 2rem); line-height: 0.98; margin-bottom: 10px; }
  .platform-preview p { font-size: 0.78rem; line-height: 1.34; margin-bottom: 9px; }
  .platform-tags { gap: 6px; margin: 12px 0 14px; }
  .platform-tags li { font-size: 0.78rem; padding: 6px 10px; }
  .platform-phone { grid-column: 2 / 3; grid-row: 1 / 2; width: 100%; padding: 6px; border-radius: 20px; align-self: end; transform: rotate(3deg); }
  .platform-phone img { border-radius: 14px; max-height: 220px; }
  .stories-head { gap: 12px; }
  .stories-nav button { width: 38px; height: 38px; font-size: 1.5rem; }
  .story-grid { margin-top: 20px; gap: 12px; padding-bottom: 10px; }
  .testimonial-card { flex-basis: min(315px, 82vw); padding: 16px; gap: 12px; min-height: 0; }
  .testimonial-top { gap: 10px; }
  .testimonial-top img { width: 46px; height: 46px; }
  .testimonial-top h3 { font-size: 0.95rem; }
  .testimonial-card p { font-size: 0.88rem; line-height: 1.42; }
  .club-section { gap: 16px; }
  .club-section figure { border-radius: 18px; }
  .club-section ul { font-size: 0.92rem; line-height: 1.45; margin-bottom: 0; }
  .remote-note { margin-top: 16px; padding: 15px; border-radius: 18px; font-size: 0.9rem; line-height: 1.35; }
  .join-section { grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr); min-height: 0; }
  .join-section figure { aspect-ratio: auto; min-height: 250px; height: 100%; }
  .join-section figure::after { background: rgba(8,8,16,0.42); }
  .join-section img { object-position: 48% center; }
  .join-copy { padding: 26px 18px 28px 10px; }
  .join-copy h2 { max-width: 100%; font-size: clamp(1.55rem, 7vw, 2.05rem); }
  .join-copy p:not(.eyebrow) { margin: 12px 0 16px; font-size: 0.9rem; line-height: 1.38; }
  .join-copy .btn { width: 100%; min-height: 42px; padding-inline: 12px; font-size: 0.86rem; }
  .site-footer { padding: 24px 20px; gap: 16px; align-items: flex-start; }
  .foot-links { gap: 10px 16px; font-size: 0.82rem; }
}

/* Official launch art direction: platform-native visual pass. */
body {
  background: var(--bg);
}

.site-header {
  background: rgba(8,8,16,0.9);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.site-nav,
.menu-toggle {
  color: var(--text);
}
.menu-toggle {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.header-cta,
.btn-primary {
  min-height: 50px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,49,162,0.4);
}
.btn-primary:hover,
.header-cta:hover {
  background: var(--red);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.hero {
  min-height: min(780px, calc(100vh - 78px));
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,8,16,0), var(--bg));
}
.hero::after {
  left: 40%;
  width: 32%;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(8,8,16,0.88) 42%, rgba(8,8,16,0) 100%);
}
.hero-copy {
  padding-top: clamp(58px, 7.5vw, 104px);
  padding-bottom: clamp(58px, 7.5vw, 104px);
}
h1,
.hero h1 {
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero-text,
.hero-text-secondary {
  color: var(--text2);
}
.hero-note {
  background: var(--card);
  border-color: var(--border);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.hero-note p {
  color: var(--text);
}
.btn-play {
  color: var(--text);
}
.btn-play span {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}
.trust-strip {
  margin-top: clamp(34px, 4vw, 46px);
  color: var(--text);
}
.trust-strip li {
  color: var(--text);
}
.hero-media {
  min-height: 100%;
  margin-left: -8vw;
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(8,8,16,0.84) 0%, rgba(8,8,16,0.12) 42%, rgba(8,8,16,0.34) 100%);
}
.hero-media img {
  object-position: center;
  transform: scale(1.03);
}

.answer-preview {
  position: relative;
  z-index: 4;
  max-width: 1180px;
  margin-top: -44px;
  background: var(--card);
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.answer-preview-head p,
.preview-card p {
  color: var(--text2);
}
.preview-grid {
  gap: 14px;
}
.preview-card {
  position: relative;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: var(--bg3);
  min-height: 226px;
}
.preview-card:last-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.preview-card h3 {
  color: var(--text);
  min-height: 0;
  margin-top: 20px;
}

.visual-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,49,162,0.08);
  color: var(--pink);
  position: relative;
}
.preview-card > .visual-icon {
  margin: 0;
}
.visual-icon::before,
.visual-icon::after {
  content: "";
  position: absolute;
  display: block;
}
.icon-clock::before {
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.icon-clock::after {
  width: 9px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(3px, -2px);
}
.icon-heart::before {
  width: 24px;
  height: 20px;
  background: currentColor;
  clip-path: path("M12 20 C4 14 0 10 0 5 C0 2 2 0 5 0 C8 0 10 2 12 4 C14 2 16 0 19 0 C22 0 24 2 24 5 C24 10 20 14 12 20 Z");
}
.icon-calendar::before,
.icon-plan::before {
  width: 24px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 6px;
}
.icon-calendar::after,
.icon-plan::after {
  width: 16px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
  transform: translateY(4px);
}
.icon-path::before {
  width: 28px;
  height: 18px;
  border-bottom: 3px dashed currentColor;
  border-radius: 50%;
  transform: rotate(-12deg);
}
.icon-path::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(10px, -7px);
}
.icon-shield::before {
  width: 24px;
  height: 28px;
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 86% 76%, 50% 100%, 14% 76%, 0 18%);
}
.icon-shield::after {
  width: 9px;
  height: 15px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(42deg) translate(1px, -2px);
}
.icon-group::before {
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: -14px 5px 0 -4px currentColor, 14px 5px 0 -4px currentColor;
  transform: translateY(-8px);
}
.icon-group::after {
  width: 32px;
  height: 16px;
  border: 3px solid currentColor;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
  transform: translateY(12px);
}

.berni-section {
  max-width: 1160px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  margin-top: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 0;
  background: var(--white);
  border-color: rgba(255,49,162,0.15);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.berni-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  pointer-events: none;
  background: rgba(255,49,162,0.08);
}
.berni-section .section-copy {
  padding-right: clamp(24px, 3vw, 44px);
}
.berni-photo {
  background: var(--bg2);
}
.berni-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(15,15,26,0), var(--bg2));
}
.berni-portrait {
  z-index: 1;
}
.berni-signature-frame {
  opacity: 0.92;
}

.route-entry {
  max-width: 1160px;
  margin-top: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0;
  padding-bottom: clamp(3.4rem, 6vw, 5rem);
}
.route-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px;
  background: var(--bg2);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.route-benefits li {
  justify-content: flex-start;
  color: var(--text);
  border-right-color: rgba(255,255,255,0.08);
}
.route-benefits .visual-icon {
  width: 42px;
  height: 42px;
}
.route-main-cta {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,49,162,0.4);
}
.route-secondary-cta {
  color: var(--text);
}
.privacy-note {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text2);
}

.method-section {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.method-section h2 {
  color: var(--text);
}
.method-timeline {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
}
.method-timeline::before {
  left: 10%;
  right: 10%;
  top: 31px;
  height: 3px;
  background: linear-gradient(90deg,var(--pink),var(--yellow));
}
.method-timeline li {
  padding: 18px 12px 0;
}
.method-timeline .method-number {
  width: 62px;
  height: 62px;
  background: var(--card);
  color: var(--yellow);
  border: 1px solid rgba(233,252,136,0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.method-timeline h3 {
  color: var(--text);
}
.method-timeline p {
  color: var(--text2);
}
.next-route {
  max-width: 980px;
  background: var(--card);
  border-color: rgba(233,252,136,0.28);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.next-route > .visual-icon {
  color: var(--yellow);
  background: rgba(233,252,136,0.08);
  border-color: rgba(233,252,136,0.28);
}
.next-route p {
  color: var(--text2);
}

.includes-section {
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1.5fr);
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.include-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.include-grid article {
  min-height: 280px;
  padding: 24px;
  border-color: rgba(255,255,255,0.08);
  background: var(--bg2);
  transition: transform 180ms ease, border-color 180ms ease;
}
.include-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}
.include-grid article > .visual-icon {
  width: 48px;
  height: 48px;
  color: var(--yellow);
  background: rgba(233,252,136,0.08);
  border-color: rgba(233,252,136,0.28);
}
.platform-preview {
  margin-top: 28px;
  background: var(--bg2);
  border-color: rgba(255,255,255,0.08);
}
.platform-phone {
  background: var(--bg);
}

.stories-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.stories-head {
  max-width: 1180px;
  margin: 0 auto;
}
.story-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(20,22,34,0.04);
}
.testimonial-card::before {
  content: "“";
  color: var(--pink);
  font-size: 4rem;
  line-height: 0.6;
  font-family: var(--font-brand);
}
.testimonial-top {
  order: 2;
  margin-top: auto;
}
.testimonial-card p {
  order: 1;
}

.club-section {
  background: var(--white);
  align-items: stretch;
}
.club-section figure {
  min-height: 100%;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.club-section img {
  height: 100%;
  aspect-ratio: auto;
}
.club-section > div {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,49,162,0.08);
}
.remote-note {
  background: var(--bg2);
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
}
.remote-note span {
  color: var(--text2);
}

.join-section {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.join-section figure {
  aspect-ratio: auto;
  min-height: 520px;
}
.join-section figure::after {
  background:
    linear-gradient(90deg, rgba(8,8,16,0.08), rgba(8,8,16,0.7)),
    rgba(8,8,16,0.18);
}
.join-copy {
  background: var(--bg);
}
.join-copy h2 {
  max-width: 12ch;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--bg2);
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(8,8,16,0.92);
  }
  .site-nav {
    background: var(--bg2);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero::before {
    height: 36%;
  }
  .hero-copy {
    padding-bottom: 28px;
  }
  .hero-media {
    margin-left: 0;
  }
  .answer-preview {
    margin-top: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .preview-grid,
  .include-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .berni-section {
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  }
  .route-benefits {
    grid-template-columns: 1fr;
  }
  .route-benefits li {
    border-right: 0;
  }
  .includes-section {
    grid-template-columns: 1fr;
  }
  .club-section > div {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 58px;
  }
  .site-nav {
    top: 58px;
  }
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding: 28px 20px 22px;
  }
  h1 {
    max-width: 11.5ch;
  }
  .hero-media {
    min-height: 210px;
    aspect-ratio: 16 / 9;
  }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(8,8,16,0.12), rgba(8,8,16,0.76));
  }
  .trust-strip {
    background: var(--card);
    border-color: rgba(255,255,255,0.08);
  }
  .answer-preview {
    margin: 0;
    padding: 28px 20px;
  }
  .answer-preview h2 {
    max-width: 16ch;
  }
  .preview-card {
    min-height: 0;
    padding: 16px;
  }
  .preview-card > .visual-icon {
    width: 44px;
    height: 44px;
  }
  .berni-section {
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    grid-template-columns: minmax(118px, 0.36fr) minmax(0, 0.64fr);
    background: var(--white);
  }
  .berni-section::before {
    width: 42%;
  }
  .route-entry {
    padding-top: 28px;
  }
  .method-section {
    padding-top: 3.4rem;
  }
  .method-timeline::before {
    left: 19px;
    background: linear-gradient(180deg,var(--pink),var(--yellow));
  }
  .method-timeline .method-number {
    width: 40px;
    height: 40px;
  }
  .include-grid {
    grid-template-columns: 1fr;
  }
  .include-grid article {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
  }
  .include-grid article > .visual-icon {
    grid-row: span 2;
  }
  .join-section {
    grid-template-columns: 1fr;
  }
  .join-section figure {
    min-height: 280px;
  }
  .join-copy {
    padding: 30px 20px 34px;
  }
  .join-copy h2 {
    max-width: 100%;
  }
}

/* Dark canvas direction: the full landing lives inside the CIEN+ platform atmosphere. */
main,
.hero,
.answer-preview,
.berni-section,
.route-entry,
.method-section,
.includes-section,
.stories-section,
.club-section,
.join-section,
.site-footer {
  background-color: var(--bg);
}

.answer-preview,
.berni-section,
.route-benefits,
.privacy-note,
.next-route,
.platform-preview,
.testimonial-card,
.club-section > div,
.remote-note {
  background: var(--card);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.answer-preview,
.berni-section,
.method-section,
.includes-section,
.stories-section,
.club-section,
.join-section {
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.answer-preview h2,
.berni-section h2,
.method-section h2,
.includes-section h2,
.stories-section h2,
.club-section h2,
.join-copy h2,
.preview-card h3,
.method-timeline h3,
.include-grid h3,
.testimonial-top h3 {
  color: var(--text);
}

.answer-preview-head p,
.preview-card p,
.section-copy p,
.berni-section .section-copy p,
.method-timeline p,
.next-route p,
.includes-section .section-copy p,
.include-grid ul,
.testimonial-card p,
.club-section li,
.remote-note span,
.join-copy p:not(.eyebrow),
.privacy-note {
  color: var(--text2);
}

.section-copy strong,
.berni-final strong {
  color: var(--text);
}

.preview-card,
.include-grid article {
  background: var(--bg2);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.berni-section {
  overflow: hidden;
}
.berni-section::before {
  background: rgba(255,49,162,0.08);
}
.berni-photo {
  background: var(--bg2);
}
.berni-photo::after {
  background: linear-gradient(180deg, rgba(15,15,26,0), var(--bg2));
}
.berni-role,
.berni-final,
.berni-final strong {
  color: var(--pink) !important;
}

.route-benefits li {
  color: var(--text);
}

.method-section {
  background: var(--bg2);
}
.method-timeline .method-number,
.stories-nav button {
  background: var(--card);
  color: var(--yellow);
  border-color: rgba(233,252,136,0.28);
}
.stories-nav button:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.stories-section {
  background: var(--bg);
}
.testimonial-card::before {
  color: var(--pink);
}
.testimonial-top img {
  border-color: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.club-section {
  background: var(--bg2);
}
.club-section > div {
  background: var(--card);
}
.remote-note {
  background: rgba(233,252,136,0.08);
  border-color: rgba(233,252,136,0.28);
}

.join-copy,
.site-footer {
  background: var(--bg);
}

.site-footer {
  color: var(--text);
}

@media (max-width: 640px) {
  .hero {
    background: var(--bg);
  }
  .answer-preview,
  .berni-section,
  .club-section > div {
    background: var(--card);
  }
  .berni-section {
    border-radius: 0;
  }
  .berni-section::before {
    background: rgba(255,49,162,0.08);
  }
}

.story-grid .testimonial-card {
  background: var(--card);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.story-grid .testimonial-card p {
  color: var(--text2);
}
.story-grid .testimonial-top h3 {
  color: var(--text);
}

/* Hero-only update: shorter title and mobile photo background. */
.hero h1 {
  font-family: var(--font-brand);
  max-width: 15.8ch;
  width: 122%;
  transform: scaleX(0.82);
  transform-origin: left center;
  font-size: clamp(4.4rem, 8vw, 8.1rem);
  line-height: 0.84;
  letter-spacing: 0;
}
.hero h1 span {
  display: block;
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 13.4ch;
  }
}

@media (max-width: 640px) {
  .hero {
    position: relative;
    min-height: calc(100svh - 58px);
    display: block;
    background:
      linear-gradient(180deg, rgba(8,8,16,0.72) 0%, rgba(8,8,16,0.72) 42%, rgba(8,8,16,0.92) 100%),
      linear-gradient(90deg, rgba(15,15,26,0.92) 0%, rgba(15,15,26,0.62) 58%, rgba(8,8,16,0.38) 100%),
      url("../ciudad-viva-bg.jpg") 58% 34% / cover no-repeat;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    height: auto;
    background: linear-gradient(180deg, rgba(255,49,162,0.1), rgba(8,8,16,0) 42%, var(--bg) 100%);
  }
  .hero-copy {
    min-height: calc(100svh - 58px);
    justify-content: center;
    padding: 28px 20px 26px;
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    max-width: 13.2ch;
    width: 132%;
    transform: scaleX(0.76);
    font-size: clamp(3.34rem, 15vw, 4.42rem);
    line-height: 0.84;
  }
  .hero h1 span {
    display: block;
  }
  .hero-text {
    max-width: 31ch;
    margin-top: 14px;
    color: rgba(240,238,248,0.82);
  }
  .hero-text-secondary {
    margin-top: 9px;
  }
  .hero-note {
    max-width: 100%;
    margin-top: 15px;
    background: rgba(26,26,42,0.82);
    border-color: rgba(255,49,162,0.28);
    backdrop-filter: blur(14px);
  }
  .hero-note p {
    color: var(--text);
  }
  .hero-actions {
    margin-top: 16px;
  }
  .trust-strip {
    margin-top: 14px;
    background: rgba(26,26,42,0.78);
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
  }
  .hero-media {
    display: none;
  }
}

/* Berni section refinement: signature as closing note, integrated transparent portrait. */
.berni-section {
  background:
    linear-gradient(90deg, rgba(255,49,162,0.08) 0%, rgba(255,49,162,0.04) 35%, rgba(26,26,42,0) 58%),
    var(--card);
}
.berni-section::before {
  background: linear-gradient(90deg, rgba(255,49,162,0.12), rgba(255,49,162,0));
}
.berni-section .section-copy {
  padding-right: clamp(30px, 4vw, 58px);
}
.berni-photo {
  background: transparent;
  overflow: visible;
}
.berni-photo::after {
  content: none;
}
.berni-portrait {
  filter: drop-shadow(0 26px 44px rgba(0,0,0,0.22));
  left: 46%;
  bottom: -7%;
  height: min(104%, 520px);
  -webkit-mask-image: linear-gradient(90deg, rgba(8,8,16,1) 0%, rgba(8,8,16,1) 78%, rgba(8,8,16,0.18) 100%);
  mask-image: linear-gradient(90deg, rgba(8,8,16,1) 0%, rgba(8,8,16,1) 78%, rgba(8,8,16,0.18) 100%);
}
.berni-section .btn {
  display: none;
}
.berni-signature-frame {
  width: min(100%, 360px);
  height: auto;
  margin-top: 18px;
  opacity: 1;
  overflow: visible;
}
.berni-signature {
  position: static;
  width: min(100%, 330px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(255,49,162,0.14));
}

@media (max-width: 640px) {
  .berni-section {
    background:
      linear-gradient(90deg, rgba(255,49,162,0.1) 0%, rgba(255,49,162,0.03) 42%, rgba(26,26,42,0) 72%),
      var(--card);
  }
  .berni-photo {
    overflow: visible;
  }
  .berni-photo::after {
    content: none;
  }
  .berni-portrait {
    left: 46%;
    bottom: -6%;
    height: 104%;
    -webkit-mask-image: linear-gradient(90deg, rgba(8,8,16,1) 0%, rgba(8,8,16,1) 76%, rgba(8,8,16,0.12) 100%);
    mask-image: linear-gradient(90deg, rgba(8,8,16,1) 0%, rgba(8,8,16,1) 76%, rgba(8,8,16,0.12) 100%);
  }
  .berni-signature-frame {
    height: auto;
    margin-top: 10px;
  }
  .berni-signature {
    width: min(100%, 230px);
  }
}

/* Berni editorial polish: continuous card background and closer portrait crop. */
.berni-section {
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(58px, 7vw, 104px);
  padding-right: clamp(34px, 5vw, 64px);
  min-height: clamp(330px, 38vw, 405px);
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 54%, rgba(255,49,162,0.18) 0%, rgba(255,49,162,0.08) 34%, rgba(26,26,42,0) 62%),
    linear-gradient(90deg, rgba(255,49,162,0.035), rgba(26,26,42,0) 48%),
    var(--card);
}
.berni-section::before,
.berni-photo::before,
.berni-photo::after {
  content: none;
}
.berni-section .section-copy {
  align-self: start;
  padding-top: clamp(54px, 5.8vw, 78px);
  padding-right: 0;
}
.berni-photo {
  margin-left: -24px;
  background: transparent;
  overflow: visible;
  z-index: 1;
}
.berni-portrait {
  left: 46%;
  bottom: -3%;
  height: min(104%, 515px);
  filter: drop-shadow(0 30px 52px rgba(8,8,16,0.24));
  -webkit-mask-image:
    linear-gradient(90deg, rgba(8,8,16,0.86) 0%, rgba(8,8,16,1) 10%, rgba(8,8,16,1) 78%, rgba(8,8,16,0.06) 100%),
    linear-gradient(180deg, rgba(8,8,16,1) 0%, rgba(8,8,16,1) 82%, rgba(8,8,16,0.08) 100%);
  mask-image:
    linear-gradient(90deg, rgba(8,8,16,0.86) 0%, rgba(8,8,16,1) 10%, rgba(8,8,16,1) 78%, rgba(8,8,16,0.06) 100%),
    linear-gradient(180deg, rgba(8,8,16,1) 0%, rgba(8,8,16,1) 82%, rgba(8,8,16,0.08) 100%);
}
.berni-final {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem) !important;
  line-height: 1.42 !important;
}
.berni-signature-frame {
  width: min(100%, 320px);
  margin-top: 14px;
}
.berni-signature {
  width: min(100%, 292px);
}

@media (max-width: 640px) {
  .berni-section {
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
    gap: 18px;
    padding-right: 12px;
    overflow: visible;
    background:
      radial-gradient(circle at 13% 54%, rgba(255,49,162,0.18) 0%, rgba(255,49,162,0.07) 42%, rgba(26,26,42,0) 72%),
      var(--card);
  }
  .berni-section .section-copy {
    padding-top: 28px;
  }
  .berni-photo {
    margin-left: -16px;
  }
  .berni-portrait {
    left: 49%;
    bottom: 4%;
    height: 98%;
  }
  .berni-final {
    font-size: 0.84rem !important;
  }
  .berni-signature-frame {
    width: min(100%, 220px);
    margin-top: 8px;
  }
  .berni-signature {
    width: min(100%, 204px);
  }
}

/* Ruta result redesign: recommendation-first, platform visual system. */
.quiz-panel.is-result {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,49,162,0.14), transparent 34%),
    linear-gradient(180deg, var(--card), var(--bg-secondary));
  color: var(--text);
  border: 1px solid var(--border);
  overflow: visible;
}
.quiz-panel.is-result .quiz-topbar {
  border-bottom-color: var(--border);
  background: rgba(15,15,26,0.74);
}
.quiz-panel.is-result .ghost-btn {
  color: var(--text2);
}
.quiz-panel.is-result .recommendation {
  padding: clamp(16px, 2.4vw, 28px);
}
.recommendation {
  background: transparent;
  color: var(--text);
}
.result-experience {
  display: grid;
  gap: clamp(10px, 1.4vw, 16px);
}
.result-hero-card,
.result-section,
.result-alert {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.result-hero-card {
  display: grid;
  gap: clamp(8px, 0.95vw, 12px);
  padding: clamp(16px, 2.35vw, 24px);
  background:
    radial-gradient(circle at 88% 0%, rgba(255,49,162,0.2), rgba(255,49,162,0) 38%),
    linear-gradient(135deg, rgba(255,49,162,0.1), rgba(233,252,136,0.035)),
    var(--card);
}
.result-hero-card .eyebrow,
.result-section .eyebrow {
  margin: 0;
}
.result-hero-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.05rem, 3.7vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}
.result-hero-card .result-intro {
  max-width: 62ch;
  margin: 0;
  color: var(--text2) !important;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.42;
}
.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 10px);
}
.result-inline-reasons {
  display: grid;
  gap: 10px;
  margin-top: clamp(6px, 0.8vw, 10px);
  padding-top: clamp(12px, 1.4vw, 16px);
  border-top: 1px solid var(--border);
}
.result-metrics span,
.insight-row,
.pack-chip {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
}
.result-metrics span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: clamp(10px, 1.2vw, 13px);
}
.result-metrics small,
.insight-row span {
  color: var(--muted);
  font-size: clamp(0.64rem, 0.75vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-metrics strong,
.insight-row strong {
  color: var(--text);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.22;
}
.result-main-cta {
  width: min(100%, 420px);
  margin-top: 2px;
}
.result-main-cta[disabled] {
  opacity: 1;
  color: var(--text);
  cursor: default;
}
.result-note {
  margin: -2px 0 0;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-section {
  padding: clamp(14px, 1.8vw, 20px);
}
.result-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(10px, 1.4vw, 16px);
  align-items: stretch;
}
.result-lower-grid--single {
  grid-template-columns: 1fr;
}
.result-reasons ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.result-reasons li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  color: var(--text2);
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
  line-height: 1.34;
}
.result-reasons li span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,49,162,0.14);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 900;
}
.insight-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}
.insight-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 0.66fr);
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
}
.result-alert {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-color: rgba(233,252,136,0.34);
  background:
    linear-gradient(135deg, rgba(233,252,136,0.09), rgba(255,49,162,0.05)),
    var(--card);
}
.result-alert strong {
  color: var(--yellow);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}
.result-alert p {
  max-width: 62ch;
  margin: 0;
  color: var(--text2);
  line-height: 1.48;
}
.result-alert div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.result-alert span {
  padding: 8px 10px;
  border: 1px solid rgba(233,252,136,0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(233,252,136,0.07);
  font-size: 0.86rem;
  font-weight: 800;
}
.result-alternatives p {
  margin: 12px 0 0;
  color: var(--text3);
  font-size: 0.92rem;
  line-height: 1.45;
}
.pack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.pack-chip {
  padding: 9px 11px;
  color: var(--text2);
  font-size: 0.86rem;
  font-weight: 900;
}
.pack-chip.is-recommended {
  border-color: rgba(255,49,162,0.74);
  background: rgba(255,49,162,0.16);
  color: var(--pink);
}
.pack-chip.is-disabled {
  opacity: 0.45;
}
.result-experience .result-actions {
  margin-top: 2px;
}
.result-experience .result-actions .btn {
  min-height: 44px;
}
.result-experience .save-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
}

/* /ruta full dark UX pass */
.quiz-page {
  color: var(--text);
  background:
    radial-gradient(circle at 14% 6%, rgba(255,49,162,0.18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(233,252,136,0.07), transparent 28%),
    var(--bg);
}
.quiz-page .quiz-page-header {
  background: rgba(15,15,26,0.82);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.quiz-page .quiz-page-header strong {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.quiz-page .quiz-page-header a:last-child {
  color: var(--yellow);
}
.quiz-page .quiz-focus-page .quiz-section {
  background:
    linear-gradient(rgba(8,8,16,0.86), rgba(8,8,16,0.88)),
    url("../ciudad-viva-bg.jpg") center / cover no-repeat;
}
.quiz-page .quiz-intro {
  display: none;
}
.quiz-page .quiz-shell {
  max-width: 1020px;
}
.quiz-page .quiz-panel {
  background:
    radial-gradient(circle at 0% 10%, rgba(255,49,162,0.12), transparent 36%),
    linear-gradient(145deg, rgba(26,26,42,0.96), rgba(15,15,26,0.96));
  color: var(--text);
  border: 1px solid var(--border-strong, rgba(255,49,162,0.28));
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.36);
}
.quiz-page .quiz-topbar {
  border-bottom: 0;
  background: transparent;
  padding: 26px 30px 10px;
}
.quiz-page .step-kicker {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}
.quiz-page .progress-track {
  background: rgba(240,238,248,0.14);
}
.quiz-page .ghost-btn {
  color: var(--yellow);
}
.quiz-page .quiz-card,
.quiz-page .recommendation {
  background: transparent;
  color: var(--text);
}
.quiz-page .question-head h3,
.quiz-page .quiz-welcome h3 {
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 0.98;
}
.quiz-page .question-head p,
.quiz-page .quiz-welcome p {
  color: var(--text2);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.45;
}
.quiz-page .context-response {
  color: var(--yellow) !important;
}
.quiz-page .quiz-welcome-message {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(233,252,136,0.06);
}
.quiz-page .option-card,
.quiz-page .race-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    var(--card);
  color: var(--text);
  border-color: rgba(240,238,248,0.14);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.quiz-page .option-card:hover,
.quiz-page .race-card:hover {
  border-color: var(--pink);
  background:
    linear-gradient(135deg, rgba(255,49,162,0.1), rgba(255,255,255,0.02)),
    var(--card);
  box-shadow: 0 14px 34px rgba(255,49,162,0.08);
}
.quiz-page .option-card:has(input:checked),
.quiz-page .race-card:has(input:checked) {
  border-color: var(--pink);
  background:
    linear-gradient(135deg, rgba(255,49,162,0.16), rgba(255,49,162,0.06)),
    var(--card);
  box-shadow: 0 0 0 1px rgba(255,49,162,0.28), 0 16px 42px rgba(255,49,162,0.1);
}
.quiz-page .option-card input,
.quiz-page .race-card input {
  accent-color: var(--pink);
}
.quiz-page .race-card small {
  color: var(--text2);
}
.quiz-page .meaning-card {
  color: var(--text);
  background: var(--card);
  border-color: rgba(240,238,248,0.14);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.quiz-page .meaning-card:hover {
  border-color: var(--pink);
  background:
    linear-gradient(135deg, rgba(255,49,162,0.1), rgba(255,255,255,0.02)),
    var(--card);
  box-shadow: 0 14px 34px rgba(255,49,162,0.08);
}
.quiz-page .meaning-card:has(input:checked) {
  border-color: var(--pink);
  background:
    linear-gradient(135deg, rgba(255,49,162,0.16), rgba(255,49,162,0.06)),
    var(--card);
  box-shadow: 0 0 0 1px rgba(255,49,162,0.28), 0 16px 42px rgba(255,49,162,0.1);
}
.quiz-page .meaning-card input {
  accent-color: var(--pink);
}
.quiz-page label {
  color: var(--text);
}
.quiz-page input:not([type="radio"]):not([type="checkbox"]),
.quiz-page select {
  color: var(--text);
  background: rgba(15,15,26,0.82);
  border-color: rgba(240,238,248,0.16);
}
.quiz-page input::placeholder {
  color: var(--text2);
}
.quiz-page input:not([type="radio"]):not([type="checkbox"]):focus,
.quiz-page select:focus {
  outline: 0;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,49,162,0.14);
}
.quiz-page .day-picker label span {
  color: var(--text);
  background: var(--card);
  border-color: rgba(240,238,248,0.14);
}
.quiz-page .day-picker input:checked + span {
  color: var(--pink);
  border-color: var(--pink);
  background: rgba(255,49,162,0.14);
}
.quiz-page .btn-secondary {
  color: var(--text);
  background: rgba(255,49,162,0.07);
  border-color: var(--border-strong, rgba(255,49,162,0.28));
}
.quiz-page .quiz-actions .btn:disabled {
  visibility: hidden;
}
.quiz-page .form-error {
  color: var(--red);
}
.quiz-page .micro-response {
  color: var(--yellow);
}
.result-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(12px, 1.6vw, 18px);
  align-items: stretch;
}
.result-race-line {
  margin: -4px 0 0;
  color: var(--text2);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
}
.result-data-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: clamp(10px, 1.2vw, 13px);
  border: 1px solid var(--border-strong, rgba(255,49,162,0.28));
  border-radius: var(--radius-sm);
  background: rgba(15,15,26,0.64);
}
.result-data-card span {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--pink);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-data-card strong {
  color: var(--text);
  line-height: 1.12;
}
.result-data-card small {
  color: var(--text2);
  line-height: 1.25;
}
.result-pack-card {
  display: grid;
  align-content: start;
  gap: clamp(9px, 1.1vw, 13px);
  padding: clamp(17px, 2.3vw, 24px);
  border: 1px solid var(--border-strong, rgba(255,49,162,0.28));
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 88% 0%, rgba(255,49,162,0.13), transparent 34%),
    var(--card);
  box-shadow: var(--shadow);
}
.result-pack-card h4 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.45vw, 2.1rem);
  line-height: 1;
}
.result-pack-card p {
  margin: 0;
  color: var(--text2);
  line-height: 1.35;
  font-size: clamp(0.86rem, 0.98vw, 0.98rem);
}
.review-note-field {
  display: grid;
  gap: 7px;
}
.review-note-field strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.24;
}
.review-note-field span {
  color: var(--text2);
  font-size: 0.86rem;
  line-height: 1.3;
}
.review-note-field textarea {
  width: 100%;
  min-height: 106px;
  resize: vertical;
  border: 1px solid rgba(255,49,162,0.28);
  border-radius: var(--radius-xs);
  padding: 12px 13px;
  color: var(--text);
  background: rgba(16,14,31,0.78);
  font: inherit;
  line-height: 1.35;
  outline: none;
}
.review-note-field textarea:focus {
  border-color: rgba(255,49,162,0.72);
  box-shadow: 0 0 0 3px rgba(255,49,162,0.12);
}
.result-includes {
  display: grid;
  gap: 7px;
  padding-top: 9px;
  border-top: 1px solid rgba(240,238,248,0.12);
}
.result-includes strong {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-includes ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.result-includes li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  color: var(--text);
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  line-height: 1.24;
}
.result-includes li span {
  color: var(--pink);
}

.checkout-discount-box {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(240,238,248,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
}

.checkout-discount-box label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.checkout-discount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-discount-row input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(240,238,248,0.18);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(8,8,16,0.42);
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-discount-row input:focus {
  border-color: var(--yellow);
  outline: none;
}

.checkout-discount-row .btn {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.78rem;
}

.checkout-discount-message {
  margin: 0;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-discount-message.is-error {
  color: #ff8dbc;
}

.discount-summary-grid {
  display: grid;
  gap: 8px;
}

.discount-summary-card {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(233,252,136,0.08);
}

.discount-summary-card span,
.discount-summary-card small {
  color: var(--text2);
  font-size: 0.78rem;
}

.discount-summary-card strong,
.discount-summary-card b {
  color: var(--text);
}

.checkout-choice-grid {
  display: grid;
  gap: 8px;
}

.checkout-price-loading {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(233,252,136,0.28);
  border-radius: 16px;
  background: rgba(233,252,136,0.06);
}

.checkout-price-loading strong {
  color: var(--text);
  font-size: 0.95rem;
}

.checkout-price-loading p {
  margin: 0;
  color: var(--text2);
  font-size: 0.86rem;
}

.checkout-choice {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: clamp(11px, 1.15vw, 13px);
  text-align: left;
  color: var(--text);
  border: 1px solid rgba(233,252,136,0.36);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,49,162,0.12), rgba(233,252,136,0.06)),
    rgba(255,255,255,0.035);
  cursor: pointer;
}

.checkout-choice:hover,
.checkout-choice:focus-visible {
  border-color: var(--yellow);
  outline: none;
}

.checkout-choice[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
}

.checkout-choice span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-choice strong {
  color: var(--text);
  font-size: clamp(1.22rem, 2.1vw, 1.65rem);
  line-height: 1;
}

.checkout-choice--single .single-equivalence {
  display: block;
}

.checkout-choice strong.launch-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-choice--single strong.launch-price {
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
}

.checkout-choice strong del {
  color: var(--text2);
  font-size: 0.72em;
  font-weight: 800;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
}

.checkout-choice--single strong del {
  font-size: 0.88em;
}

.checkout-choice--single .launch-price span,
.checkout-choice--single .checkout-total {
  color: var(--yellow);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.checkout-choice small {
  color: var(--text2);
  font-size: 0.84rem;
}

.checkout-choice .price-equivalence {
  color: var(--text);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  font-weight: 900;
  line-height: 1.08;
}

.checkout-choice .price-total {
  color: var(--text);
  font-weight: 900;
}

.checkout-choice em {
  justify-self: start;
  margin-top: 3px;
  color: var(--bg, #080810);
  background: var(--pink);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.checkout-choice[disabled] em {
  color: var(--text2);
  background: rgba(240,238,248,0.1);
}

@media (max-width: 640px) {
  .result-experience {
    gap: 10px;
  }
  .result-hero-card {
    gap: 10px;
    padding: 16px 14px;
  }
  .result-hero-card h3 {
    font-size: clamp(1.9rem, 9.2vw, 2.45rem);
  }
  .result-metrics {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .result-metrics span {
    grid-template-columns: minmax(86px, 0.34fr) minmax(0, 0.66fr);
    align-items: center;
    padding: 9px 11px;
  }
  .result-section,
  .result-alert {
    padding: 15px 14px;
  }
  .result-inline-reasons {
    padding-top: 12px;
    margin-top: 4px;
  }
  .result-reasons ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .insight-row {
    grid-template-columns: minmax(92px, 0.38fr) minmax(0, 0.62fr);
    padding: 9px 10px;
  }
  .pack-list {
    gap: 7px;
    margin-top: 10px;
  }
  .pack-chip {
    padding: 8px 9px;
    font-size: 0.78rem;
  }
}

@media (max-width: 760px) {
  .quiz-page .quiz-page-header {
    height: 58px;
    padding-inline: 14px;
  }
  .quiz-page .quiz-page-header img {
    width: 68px;
  }
  .quiz-page .quiz-page-header strong {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }
  .quiz-page .quiz-page-header a:last-child {
    font-size: 0.68rem;
  }
  .quiz-page .quiz-focus-page .quiz-section {
    min-height: calc(100svh - 58px);
    padding: 12px 12px 22px;
  }
  .quiz-page .quiz-panel {
    border-radius: 16px;
  }
  .quiz-page .quiz-topbar {
    padding: 16px 18px 6px;
  }
  .quiz-page .quiz-card,
  .quiz-page .recommendation {
    padding: 18px;
  }
  .quiz-page .question-head h3,
  .quiz-page .quiz-welcome h3 {
    font-size: clamp(1.65rem, 7.4vw, 2.2rem);
  }
  .quiz-page .question-head p,
  .quiz-page .quiz-welcome p {
    font-size: 0.94rem;
  }
  .quiz-page .options-grid {
    gap: 8px;
    margin-top: 16px;
  }
  .quiz-page .option-card,
  .quiz-page .race-card {
    min-height: 54px;
    padding: 12px 14px;
    font-size: 0.94rem;
  }
  .quiz-page .quiz-actions {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
  }
  .quiz-page .quiz-actions .btn {
    min-height: 46px;
  }
  .result-main-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .result-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .result-metrics .result-data-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 5px;
    padding: 11px 12px;
  }
  .result-metrics .result-data-card span,
  .result-metrics .result-data-card strong,
  .result-metrics .result-data-card small {
    display: block;
    min-width: 0;
  }
  .result-metrics .result-data-card small {
    grid-column: auto;
  }
  .result-pack-card {
    padding: 18px 16px;
  }
  .result-pack-card h4 {
    font-size: 1.75rem;
  }
  .result-includes li {
    font-size: 0.88rem;
  }
}

/* Resultado /ruta: panel compacto tipo plataforma. */
.quiz-page .quiz-panel.is-result {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
.quiz-page .quiz-panel.is-result .quiz-topbar {
  padding: clamp(13px, 1.8vw, 18px) clamp(16px, 2.4vw, 26px) 10px;
}
.quiz-page .quiz-panel.is-result .progress-track {
  height: 6px;
  width: min(460px, 52vw);
}
.quiz-page .quiz-panel.is-result .step-kicker {
  margin-bottom: 8px;
}
.quiz-page .quiz-panel.is-result .recommendation {
  min-height: 0;
}
.quiz-page .quiz-panel.is-result .save-status {
  margin: 0;
  min-height: 0;
  font-size: 0.72rem;
}

@media (min-width: 1024px) {
  .quiz-page .quiz-focus-page .quiz-section {
    min-height: calc(100svh - 68px);
    padding: clamp(14px, 2vw, 28px);
    display: grid;
    align-items: center;
  }
  .quiz-page .quiz-shell {
    width: min(100%, 1180px);
    max-width: 1180px;
    min-height: 560px;
  }
  .quiz-page .quiz-panel.is-result {
    min-height: 100%;
  }
  .quiz-page .quiz-panel.is-result .recommendation {
    display: grid;
    align-items: stretch;
    overflow: visible;
  }
  .quiz-page .quiz-panel.is-result .result-experience {
    grid-template-rows: minmax(0, 1fr) auto auto auto;
    align-content: stretch;
  }
  .quiz-page .result-main-grid {
    min-height: 0;
  }
  .quiz-page .result-hero-card,
  .quiz-page .result-pack-card,
  .quiz-page .result-section {
    min-height: 0;
  }
  .quiz-page .result-hero-card {
    align-content: center;
  }
  .quiz-page .result-pack-card {
    align-content: center;
  }
  .quiz-page .result-lower-grid {
    min-height: 0;
  }
  .quiz-page .result-actions {
    margin-top: 0;
  }
  .quiz-page .result-actions .btn {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-page .quiz-shell {
    max-width: 860px;
  }
  .quiz-page .quiz-panel.is-result .recommendation {
    padding: 16px;
  }
  .quiz-page .result-main-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 12px;
  }
  .quiz-page .result-hero-card h3 {
    font-size: clamp(2.2rem, 6vw, 3.1rem);
  }
  .quiz-page .result-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quiz-page .result-metrics .result-data-card {
    padding: 10px;
  }
  .quiz-page .result-lower-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .quiz-page .result-reasons ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .quiz-page .quiz-panel.is-result {
    overflow: visible;
  }
  .quiz-page .quiz-panel.is-result .quiz-topbar {
    padding: 14px 16px 9px;
  }
  .quiz-page .quiz-panel.is-result .progress-track {
    width: min(54vw, 260px);
  }
  .quiz-page .quiz-panel.is-result .recommendation {
    padding: 13px;
  }
  .quiz-page .result-main-grid,
  .quiz-page .result-lower-grid {
    grid-template-columns: 1fr;
  }
  .quiz-page .result-hero-card,
  .quiz-page .result-pack-card,
  .quiz-page .result-section,
  .quiz-page .result-alert {
    border-radius: 16px;
  }
  .quiz-page .result-hero-card {
    padding: 17px 15px;
  }
  .quiz-page .result-hero-card h3 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
  .quiz-page .result-hero-card .result-intro {
    font-size: 0.88rem;
  }
  .quiz-page .result-pack-card {
    padding: 16px 15px;
  }
  .quiz-page .checkout-choice-grid {
    gap: 7px;
  }
  .quiz-page .checkout-choice {
    padding: 12px;
  }
  .quiz-page .checkout-choice em {
    width: 100%;
    text-align: center;
  }
  .quiz-page .result-lower-grid {
    gap: 10px;
  }
  .quiz-page .result-reasons ul {
    grid-template-columns: 1fr;
  }
  .quiz-page .result-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 2px;
  }
}

/* Quiz vertical flow fix: the page, not the card, owns overflow. */
html {
  overflow-y: auto;
}

body.quiz-page {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.quiz-page .quiz-focus-page,
.quiz-page .quiz-focus-page .quiz-section,
.quiz-page .quiz-shell,
.quiz-page .quiz-panel,
.quiz-page .quiz-card {
  height: auto;
  max-height: none;
}

.quiz-page .quiz-focus-page,
.quiz-page .quiz-focus-page .quiz-section {
  overflow: visible;
}

.quiz-page .quiz-focus-page .quiz-section {
  min-height: calc(100svh - 68px);
  padding-bottom: max(clamp(32px, 5vw, 72px), env(safe-area-inset-bottom));
  align-items: start;
}

.quiz-page .quiz-shell,
.quiz-page .quiz-panel,
.quiz-page .quiz-card {
  overflow: visible;
}

.quiz-page .quiz-card {
  padding-bottom: max(clamp(30px, 4vw, 56px), calc(env(safe-area-inset-bottom) + 24px));
}

.quiz-page .quiz-actions {
  position: relative;
  z-index: 2;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 760px) {
  .quiz-page .quiz-focus-page .quiz-section {
    min-height: calc(100svh - 58px);
    padding-bottom: max(34px, calc(env(safe-area-inset-bottom) + 28px));
  }

  .quiz-page .quiz-card {
    padding-bottom: max(24px, calc(env(safe-area-inset-bottom) + 22px));
  }
}

/* Landing final crop: keep the Club image focused on the runners, not the street. */
.club-section {
  align-items: center;
}

.club-section figure {
  width: 100%;
  min-height: 0;
  height: clamp(360px, 34vw, 520px);
  overflow: hidden;
}

.club-section img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 45%;
}

@media (max-width: 900px) {
  .club-section figure {
    height: clamp(300px, 56vw, 440px);
  }

  .club-section img {
    object-position: center 47%;
  }
}

@media (max-width: 640px) {
  .launch-promo-chip {
    margin-top: 18px;
    padding: 12px 14px;
  }

  .launch-promo-chip strong {
    font-size: 0.72rem;
  }

  .launch-promo-chip p {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .featured-race-entry {
    margin-top: 12px;
    border-radius: 16px;
  }

  .featured-race-entry__body {
    gap: 6px;
    padding: 12px 13px 13px;
    border-radius: 15px;
  }

  .featured-race-entry__title {
    font-size: 0.82rem;
  }

  .featured-race-entry__meta {
    font-size: 0.7rem;
  }

  .featured-race-entry p:not(.featured-race-entry__title):not(.featured-race-entry__meta) {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .featured-race-entry__cta {
    width: 100%;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .featured-race-entry small {
    font-size: 0.68rem;
  }

  .route-alternative-entry {
    margin-top: 10px;
    padding: 10px 12px 12px;
  }

  .route-alternative-entry p {
    font-size: 0.68rem;
  }

  .route-alternative-entry .btn-primary {
    width: 100%;
  }

  .club-section figure {
    height: clamp(260px, 78vw, 340px);
  }

  .club-section img {
    object-position: center 48%;
  }
}

/* Final image treatment: clean platform phone + tighter community crop. */
.platform-preview {
  position: relative;
  min-height: clamp(520px, 30vw, 580px);
  grid-template-columns: minmax(0, 0.64fr) minmax(280px, 0.36fr);
  align-items: center;
  padding: 56px 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 28%, rgba(255,49,162,0.18), transparent 36%),
    radial-gradient(circle at 52% 84%, rgba(233,252,136,0.08), transparent 30%),
    linear-gradient(135deg, rgba(26,26,42,0.98), rgba(15,15,26,0.96));
}

.platform-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.platform-badge {
  display: block;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  letter-spacing: 0.12em;
}

.platform-preview h3 span {
  color: var(--pink);
}

.platform-preview h3 {
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 3.1vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.platform-preview p {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.65;
}

.platform-cta {
  width: fit-content;
  min-width: min(100%, 280px);
  min-height: 48px;
  padding: 0 28px;
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  justify-content: center;
  border: 2px solid var(--pink);
  color: var(--pink);
  background: rgba(255,49,162,0.06);
  box-shadow: none;
}

.platform-phone {
  position: relative;
  isolation: isolate;
  z-index: 1;
  justify-self: end;
  align-self: end;
  width: min(22vw, 310px);
  min-width: 280px;
  margin: 0 clamp(36px, 5vw, 92px) -96px 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(7deg);
}

.platform-phone::before {
  content: none;
}

.platform-phone img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.join-section {
  align-items: stretch;
  min-height: 0;
}

.join-copy {
  padding-block: clamp(34px, 4vw, 54px);
}

.join-copy p:not(.eyebrow) {
  margin-block: 16px 22px;
}

.join-section figure {
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 9;
  align-self: center;
  overflow: hidden;
}

.join-section figure::after {
  background:
    linear-gradient(90deg, rgba(8,8,16,0.04), rgba(8,8,16,0.44)),
    rgba(8,8,16,0.08);
}

.join-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.24);
  transform-origin: center 62%;
}

@media (max-width: 980px) {
  .platform-preview {
    min-height: clamp(480px, 44vw, 560px);
    grid-template-columns: minmax(0, 0.64fr) minmax(180px, 0.36fr);
    padding: 40px;
  }

  .platform-phone {
    width: min(27vw, 260px);
    min-width: 230px;
    margin: 0 clamp(8px, 3vw, 32px) -82px 0;
    transform: rotate(6deg);
  }

  .join-section {
    min-height: 0;
  }

  .join-section img {
    object-position: center 58%;
    transform: scale(1.2);
  }
}

@media (max-width: 640px) {
  .platform-preview {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 24px 18px 0;
  }

  .platform-copy {
    max-width: none;
    grid-column: 1;
    grid-row: auto;
    width: auto;
  }

  .platform-preview h3 {
    max-width: 10.5ch;
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .platform-preview p {
    font-size: clamp(0.94rem, 4vw, 1rem);
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .platform-cta {
    width: 100%;
    min-width: 0;
  }

  .platform-phone {
    grid-column: 1;
    grid-row: auto;
    width: min(68vw, 250px);
    min-width: 0;
    justify-self: center;
    margin: 4px auto -84px;
    padding: 0;
    border-radius: 0;
    transform: rotate(4deg);
  }

  .platform-phone::before {
    content: none;
  }

  .platform-phone img {
    max-height: none;
    border-radius: 0;
  }

  .join-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .join-section figure {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .join-section img {
    object-position: center 58%;
    transform: scale(1.16);
  }
}

/* Designer polish pass: scoped visual corrections without changing product logic. */
.brand-spark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--pink);
  min-width: 0;
}

.brand-spark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  filter: drop-shadow(0 0 14px rgba(255,49,162,0.26));
}

.visual-icon {
  overflow: hidden;
}

.hero-note,
.hero-note p,
.hero-note strong {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.visual-icon::before,
.visual-icon::after {
  left: 50%;
  top: 50%;
  transform-origin: center;
}

.icon-route-dots::before {
  width: 27px;
  height: 17px;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 18px 18px;
  transform: translate(-50%, -42%) rotate(-10deg);
}

.icon-route-dots::after {
  width: 28px;
  height: 9px;
  background:
    radial-gradient(circle at 4px 50%, currentColor 0 4px, transparent 4.5px),
    radial-gradient(circle at 24px 50%, currentColor 0 4px, transparent 4.5px);
  transform: translate(-50%, -50%);
}

.icon-clock::before { transform: translate(-50%, -50%); }
.icon-clock::after { transform: translate(calc(-50% + 3px), calc(-50% - 2px)); }
.icon-heart::before { transform: translate(-50%, -50%); }
.icon-calendar::before,
.icon-plan::before { transform: translate(-50%, -50%); }
.icon-calendar::after,
.icon-plan::after { transform: translate(-50%, calc(-50% + 4px)); }
.icon-path::before { transform: translate(-50%, -50%) rotate(-12deg); }
.icon-path::after { transform: translate(calc(-50% + 10px), calc(-50% - 7px)); }
.icon-shield::before { transform: translate(-50%, -50%); }
.icon-shield::after { transform: translate(calc(-50% + 1px), calc(-50% - 2px)) rotate(42deg); }
.icon-group::before { transform: translate(-50%, calc(-50% - 8px)); }
.icon-group::after { transform: translate(-50%, calc(-50% + 12px)); }

.remote-note {
  border-color: rgba(255,49,162,0.34) !important;
  background:
    linear-gradient(135deg, rgba(255,49,162,0.96), rgba(255,11,75,0.88)) !important;
  color: var(--white) !important;
  box-shadow: 0 22px 54px rgba(255,49,162,0.22);
}

.remote-note strong,
.remote-note span {
  color: var(--white) !important;
}

.join-copy h2 {
  font-weight: 900;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.menu-toggle {
  width: 48px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  pointer-events: none;
}

@media (max-width: 760px) {
  .site-header .menu-toggle {
    display: inline-flex;
  }

  .hero h1 {
    font-size: clamp(2.16rem, 8.4vw, 2.58rem);
    max-width: min(100%, 11.5ch);
    width: auto;
    transform: none;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero-copy {
    padding-left: clamp(18px, 5vw, 24px);
    padding-right: clamp(18px, 5vw, 24px);
  }

  .hero-note {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .brand-spark {
    width: 28px;
    height: 28px;
  }

  .answer-preview-head h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(1.48rem, 6vw, 1.85rem);
    white-space: normal;
  }

  .answer-preview-head h2 span {
    display: block;
    white-space: nowrap;
  }

  .preview-card > .visual-icon,
  .route-benefits .visual-icon,
  .include-grid article > .visual-icon {
    width: 46px;
    height: 46px;
  }

  .preview-card > .visual-icon::before,
  .preview-card > .visual-icon::after,
  .route-benefits .visual-icon::before,
  .route-benefits .visual-icon::after,
  .include-grid article > .visual-icon::before,
  .include-grid article > .visual-icon::after {
    max-width: 72%;
    max-height: 72%;
  }

  .route-entry-actions,
  .hero-actions,
  .method-cta,
  .join-copy,
  .route-secondary-cta {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .hero-actions .btn,
  .route-entry-actions .btn,
  .method-cta .btn,
  .join-copy .btn,
  .route-secondary-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-play,
  .route-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .btn-play span,
  .route-secondary-cta span {
    flex: 0 0 auto;
  }

  .route-main-cta {
    justify-content: center;
  }

  .route-main-cta span {
    flex: 0 0 auto;
    margin-left: 10px;
  }

  .platform-copy {
    text-align: left;
    justify-items: start;
    align-items: start;
  }

  .platform-preview h3 {
    max-width: none;
  }

  .platform-cta {
    margin-left: 0;
    margin-right: 0;
  }

  .remote-note {
    text-align: left;
  }

  .join-copy h2 {
    width: 100%;
    font-size: clamp(3.05rem, 14vw, 4.6rem);
    text-align: left;
  }

  .join-copy p:not(.eyebrow) {
    text-align: left;
  }

  .quiz-card.is-welcome .quiz-actions {
    display: flex;
    justify-content: center;
  }

  .quiz-card.is-welcome .quiz-actions .btn-primary {
    width: min(100%, 260px);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2.05rem, 8vw, 2.42rem);
  }

  .answer-preview-head h2 {
    font-size: clamp(1.34rem, 5.7vw, 1.62rem);
  }
}
