@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=DM+Sans:wght@400;500&display=swap');

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

:root {
  --bg: #FDFBF7;
  --text: #1D1B18;
  --text-mid: #4A4640;
  --text-muted: #8A8580;
  --accent: #B8963E;
  --border: #E8E3DA;
  --white: #FFFFFF;
  --bg-alt: #FAF7F2;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --col: 680px;
  --wide: 860px;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── ABOVE-THE-FOLD WRAPPER (desktop only) ── */
@media (min-width: 641px) {
  .above-fold {
    display: flex;
    flex-direction: column;
    max-height: 100dvh;
  }
  .above-fold .hero {
    flex-shrink: 1;
    min-height: 0;
    padding: clamp(16px, 3vh, 48px) 24px clamp(8px, 2vh, 24px);
  }
  .above-fold .hero .hero__headline {
    font-size: clamp(24px, 3.5vw, 42px);
    margin-bottom: clamp(8px, 1.5vh, 16px);
  }
  .above-fold .hero .hero__kicker {
    margin-bottom: clamp(8px, 1.5vh, 16px);
  }
  .above-fold .hero .hero__proof {
    font-size: clamp(13px, 1.2vw, 15px);
    margin-bottom: clamp(6px, 1vh, 12px);
  }
  .above-fold .hero .hero__subhead {
    font-size: clamp(13px, 1.2vw, 15px);
  }
  .above-fold .video-section {
    flex-shrink: 0;
    padding-top: clamp(4px, 1vh, 12px);
  }
}

/* ── HERO ── */
.hero {
  max-width: var(--col);
  margin: 0 auto;
  padding: 40px 24px 20px;
}


.hero__flag {
  font-size: 16px;
  vertical-align: -1px;
  margin-right: 4px;
}

.hero__kicker {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__proof {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero__subhead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── VIDEO ── */
.video-section {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 12px 24px 16px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100dvh - var(--hero-h, 220px));
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  transition: opacity 0.35s;
}

.video-overlay__text {
  text-align: center;
}

.video-overlay__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.video-overlay__headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* ── VIDEO LABEL ── */
.video-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ── FULLSCREEN BUTTON ── */
.fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.fullscreen-btn svg {
  width: 20px;
  height: 20px;
}

.fullscreen-btn__compress {
  display: none;
}

.video-wrapper:fullscreen .fullscreen-btn__expand,
.video-wrapper:-webkit-full-screen .fullscreen-btn__expand {
  display: none;
}

.video-wrapper:fullscreen .fullscreen-btn__compress,
.video-wrapper:-webkit-full-screen .fullscreen-btn__compress {
  display: block;
}

.video-wrapper:fullscreen .fullscreen-btn,
.video-wrapper:-webkit-full-screen .fullscreen-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.video-wrapper:fullscreen video,
.video-wrapper:-webkit-full-screen video {
  object-fit: contain;
  background: #000;
}

.video-subhead { display: none; }

.video-overlay.is-hidden .play-btn__duration {
  display: none;
}

.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  position: relative;
  width: 68px;
  height: 68px;
  min-width: 56px;
  min-height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  aspect-ratio: 1;
}

.video-overlay:hover .play-btn {
  transform: scale(1.06);
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
  margin-left: 3px;
}

.play-btn__duration {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay__teaser {
  font-family: var(--sans);
  font-size: 18px;
  color: #fff;
  line-height: 1.45;
  max-width: 500px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  margin-top: 12px;
}

.video-overlay.is-hidden .video-overlay__teaser {
  display: none;
}

.video-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── BRIEFING PREVIEW ── */
.briefing-preview__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.briefing-preview__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.briefing-preview__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.briefing-preview__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── PHOTO BREAK ── */
.photo-break {
  max-width: none;
  margin: 48px 0;
  padding: 0;
  position: relative;
}

.photo-break img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 27, 24, 0.15) 0%,
    transparent 30%,
    transparent 70%,
    rgba(29, 27, 24, 0.15) 100%
  );
  pointer-events: none;
}

/* ── DROP CAP ── */
.drop-cap::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.8;
  margin: 4px 10px 0 0;
  color: var(--text);
}

/* ── RULE ── */
hr.rule {
  border: none;
  height: 1px;
  background: var(--border);
  max-width: var(--col);
  margin: 0 auto;
}

/* ── QUIZ ── */
.quiz-section {
  max-width: var(--col);
  margin: 0 auto;
  padding: 72px 24px;
  border-top: 3px solid var(--accent);
  background: var(--bg-alt);
  border-radius: 8px;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
  animation: fadeUp 0.3s ease;
}

.quiz-step.is-done {
  display: none;
}

.quiz-progress {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.quiz-progress__current {
  color: var(--text);
}

.quiz-section__headline {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
}

.quiz-section__subhead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 48px;
}

.quiz-section__question {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
  color: var(--text);
}

.quiz-insight {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

.quiz-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.quiz-card:hover {
  border-color: var(--accent);
}

.quiz-card.is-selected {
  border-color: var(--accent);
  background: #FDFAF0;
}

.quiz-card__text {
  font-size: 15px;
  color: var(--text-mid);
}

.quiz-card.is-selected .quiz-card__text {
  color: var(--text);
}

/* quiz email step */
.quiz-email {
  display: none;
}

.quiz-email.is-visible {
  display: block;
  animation: fadeUp 0.35s ease;
}

.quiz-email__text {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.quiz-email__form {
  display: flex;
  gap: 8px;
}

.quiz-email__input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.quiz-email__input:focus {
  border-color: var(--accent);
}

.quiz-email__btn {
  padding: 12px 24px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.quiz-email__btn:hover {
  opacity: 0.85;
}

/* ── EDITORIAL CONTENT ── */

.editorial__headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.2;
}

.editorial__block {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
  position: relative;
}

.editorial__block--lead {
  border-left-color: var(--accent);
  border-left-width: 3px;
  padding-left: 22px;
}

.editorial__block--lead h3 {
  font-size: 18px;
}

.editorial__block--lead p {
  font-size: 16px;
}

.editorial__block:last-child {
  margin-bottom: 0;
}

.editorial__number {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.editorial__block h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.editorial__block p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ── ARTICLE ── */
.article {
  max-width: var(--col);
  margin: 0 auto;
  padding: 48px 24px;
}

.article__headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
}

.article h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-top: 36px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.article p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.article p:last-child {
  margin-bottom: 0;
}

.quiz-email__specificity {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 20px;
}

.briefing-preview-img {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  max-height: 320px;
  position: relative;
}

.briefing-preview-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-alt));
  pointer-events: none;
}

.briefing-preview-img img {
  width: 100%;
  height: auto;
  display: block;
}

.briefing-preview-img--dark {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  max-width: 440px;
  margin-bottom: 24px;
  max-height: 280px;
}

.briefing-preview-img--dark::after {
  background: linear-gradient(to bottom, transparent, var(--text));
}

.quiz-email__note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}


/* ── STAT CALLOUT ── */
.stat-callout {
  margin: 36px 0;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 8px;
  text-align: center;
}

.stat-callout__number {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-callout__label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-callout__detail {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── ALTERNATING SECTION BACKGROUNDS ── */
.editorial {
  max-width: none;
  background: var(--bg-alt);
  padding: 48px 24px;
}

.editorial > * {
  max-width: var(--col);
  margin-left: auto;
  margin-right: auto;
}

.faq {
  max-width: none;
  background: var(--bg-alt);
  padding: 48px 24px;
}

.faq > * {
  max-width: var(--col);
  margin-left: auto;
  margin-right: auto;
}

/* ── PULLQUOTE ── */
.pullquote {
  margin: 40px 0;
  padding: 28px 0 28px 24px;
  border-left: 3px solid var(--accent);
  position: relative;
}

.pullquote__mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 24px;
}

.pullquote p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 8px;
}

.pullquote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── ABOUT ── */
.about {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 48px 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.about__avatar {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
}

.about__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  max-width: 360px;
}



.about__content h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 2px;
  line-height: 1.2;
}

.about__content .about__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about__content p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq__headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.faq__trigger:hover {
  color: var(--text-mid);
}

.faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.25s;
  color: var(--text-muted);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq__body-inner {
  padding: 0 0 18px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
  max-width: none;
  margin: 0;
  padding: 64px 24px 88px;
  text-align: center;
  background: var(--text);
  color: var(--bg);
  border-top: 4px solid var(--accent);
}

.final-cta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.final-cta__text {
  font-size: 16px;
  color: rgba(253, 251, 247, 0.7);
  margin-bottom: 24px;
  max-width: var(--col);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.final-cta__input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.final-cta__input::placeholder {
  color: rgba(253, 251, 247, 0.4);
}

.final-cta__input:focus {
  border-color: var(--accent);
}

.final-cta__btn {
  padding: 14px 28px;
  background: var(--bg);
  color: var(--text);
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.final-cta__btn:hover {
  opacity: 0.88;
}

.final-cta__note {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(253, 251, 247, 0.4);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__note a {
  color: rgba(253, 251, 247, 0.5);
}


/* ── FOOTER ── */
/* ── CONTACT SECTION ── */
.contact-section {
  max-width: var(--col);
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.contact-section__label {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-section__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-section__email {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.contact-section__email:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── DISCLAIMER SECTION ── */
.disclaimer {
  max-width: var(--col);
  margin: 0 auto;
  padding: 24px 24px;
  border-top: 1px solid var(--border);
}

.disclaimer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 24px 36px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  max-width: var(--wide);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.footer__col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer__col a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__col a:hover {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}

/* ── SCROLL NUDGE ── */
.scroll-nudge {
  display: none;
}

/* ── PROGRESS BAR (hidden on desktop) ── */
.progress-bar { display: none; }
.bottom-sheet-backdrop { display: none; }
.bottom-sheet { display: none; }
.quiz-dots { display: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@keyframes nudgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {

  /* ── Safe areas ── */
  body {
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }

  /* ── Tap feedback ── */
  .quiz-card:active,
  .faq__trigger:active,
  .quiz-email__btn:active,
  .progress-dot:active {
    transform: scale(0.97);
    transition: transform 0.1s;
  }

  .play-btn:active {
    transform: scale(0.92);
    transition: transform 0.1s;
  }

  /* ── Scroll nudge ── */
  .scroll-nudge {
    display: flex;
    justify-content: center;
    padding: 8px 0 0;
    color: var(--text-muted);
    animation: nudgeBounce 2s ease-in-out infinite;
    transition: opacity 0.4s;
  }

  .scroll-nudge svg {
    width: 20px;
    height: 20px;
  }

  .scroll-nudge.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* ── Full-bleed card sections ── */
  .editorial {
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 32px 20px;
    max-width: none;
  }

  .about,
  .faq {
    background: var(--white);
    border-radius: 16px;
    margin: 8px 10px;
    padding: 28px 20px;
    max-width: none;
  }

  .article {
    background: var(--white);
    border-radius: 16px;
    margin: 8px 10px;
    padding: 28px 20px;
    max-width: none;
  }

  .quiz-section {
    background: var(--white);
    border-radius: 16px;
    margin: 8px 10px;
    padding: 48px 20px;
    max-width: none;
  }

  .final-cta {
    background: var(--text);
    border-radius: 16px;
    margin: 8px 10px;
    padding: 32px 20px 40px;
    max-width: none;
  }

  hr.rule { display: none; }

  /* ── Photo break ── */
  .photo-break {
    margin: 16px 0;
  }
  .photo-break img {
    height: 260px;
  }

  /* ── Hero: landing-page feel on mobile ── */
  .hero {
    display: block;
    padding: 28px 20px 20px;
    max-width: none;
    text-align: center;
  }
  .hero .hero__kicker {
    display: block;
    margin-bottom: 12px;
  }
  .hero .hero__proof {
    font-size: 14px;
    margin-bottom: 0;
  }
  .hero .hero__subhead { display: none; }
  .hero .hero__headline {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .video-label {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 8px;
  }

  /* ── Video: cinematic hero ── */
  .video-section { padding: 0; }
  .video-wrapper {
    border-radius: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .video-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      transparent 100%
    );
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .video-overlay__text {
    display: none;
  }

  .video-overlay__teaser {
    display: none;
  }

  .video-subhead {
    display: block;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.55;
    padding: 14px 20px 8px;
  }

  .video-overlay.is-hidden .video-overlay__text {
    display: none;
  }

  .video-subhead {
    display: block;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.5;
    padding: 12px 16px 0;
  }

  .video-caption { display: none; }

  .video-section.is-sticky {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    background: #111;
  }
  .video-section.is-sticky .video-wrapper { max-height: 30dvh; height: 30dvh; }
  .video-section.is-sticky .video-caption { display: none; }
  .video-section.is-sticky .video-subhead { display: none; }
  .video-section.is-sticky .scroll-nudge { display: none; }
  .video-section.is-sticky .video-overlay__text { display: none; }
  .video-sticky-spacer { display: none; }
  .video-sticky-spacer.is-active { display: block; }

  /* ── Editorial ── */
  .editorial__headline, .article__headline, .faq__headline { margin-bottom: 20px; }
  .editorial__block { margin-bottom: 28px; }

  /* ── Article ── */
  .article p { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
  .article h3 { margin-top: 28px; margin-bottom: 10px; font-size: 20px; }
  /* ── Stat callout ── */
  .stat-callout { margin: 24px -20px; border-radius: 0; padding: 24px 20px; }
  .stat-callout__number { font-size: 44px; }

  /* ── Pullquote ── */
  .pullquote { margin: 28px 0; padding: 20px 0 20px 16px; }
  .pullquote p { font-size: 19px; }
  .pullquote__mark { font-size: 60px; top: 4px; left: 16px; }

  /* ── Quiz: swipeable carousel ── */
  .quiz-carousel {
    overflow: hidden;
    position: relative;
    min-height: 320px;
  }

  .quiz-step {
    display: block !important;
    animation: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(60px);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .quiz-step.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .quiz-step.is-done {
    transform: translateX(-60px);
    opacity: 0;
  }

  .quiz-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .quiz-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, width 0.3s;
  }

  .quiz-dot.is-active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
  }

  .quiz-card { padding: 18px 20px; min-height: 48px; }
  .quiz-card__text { font-size: 16px; }
  .quiz-section__question { margin-bottom: 20px; }
  .quiz-cards { gap: 8px; }

  .quiz-email { display: none !important; }

  .quiz-email__form { flex-direction: column; }
  .quiz-email__btn { width: 100%; padding: 14px 24px; font-size: 15px; }
  .quiz-email__input { padding: 14px 16px; font-size: 16px; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-profile { flex-direction: column; align-items: center; text-align: center; }
  .about__avatar { width: 100px; height: 100px; }
  .about__content { max-width: none; }

  /* ── FAQ ── */
  .faq__trigger { padding: 16px 0; font-size: 15px; min-height: 48px; }

  /* ── Final CTA ── */
  .final-cta__form { flex-direction: column; }
  .final-cta__btn { width: 100%; padding: 14px 24px; }
  .final-cta__input { padding: 14px 16px; font-size: 16px; }

  /* ── Play button ── */
  .play-btn { width: 56px; height: 56px; }
  .play-btn svg { width: 18px; height: 18px; }

  /* ── Footer ── */
  .contact-section { padding: 32px 20px; }
  .disclaimer { padding: 20px 20px; }

  .footer {
    padding: 28px 20px 28px;
    border-top: none;
    margin: 0 10px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  /* ── Progress bar ── */
  .progress-bar {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 10px 16px 8px;
    gap: 8px;
  }

  .progress-bar__track {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
  }

  .progress-bar__fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
  }

  .progress-bar__dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    padding: 0;
    border: none;
    -webkit-tap-highlight-color: transparent;
  }

  .progress-dot.is-active {
    background: var(--accent);
    transform: scale(1.4);
  }

  .progress-dot.is-past {
    background: var(--text-muted);
  }

  /* ── Bottom sheet ── */
  .bottom-sheet-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .bottom-sheet-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .bottom-sheet {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 301;
    background: var(--white);
    border-radius: 16px 16px 0 0;
    padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .bottom-sheet.is-open {
    transform: translateY(0);
  }

  .bottom-sheet__handle {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    margin: 0 auto 16px;
  }

  .bottom-sheet__title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .bottom-sheet__text {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .bottom-sheet__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .bottom-sheet__form .quiz-email__btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .bottom-sheet__form .quiz-email__input {
    padding: 14px 16px;
    font-size: 16px;
  }
}
