/* =========================================================================
   Ageniqo — Landing page styles
   Uses tokens from colors_and_type.css. No framework.
   ========================================================================= */

/* ---------- Utility ---------- */
*, *::before, *::after { box-sizing: border-box; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--surface-dark); color: var(--fg-on-dark);
  padding: 12px 16px; text-decoration: none; z-index: 100;
  border-radius: var(--radius-sharp);
}
.skip-link:focus { left: 8px; top: 8px; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-12); }
}

:focus-visible {
  outline: 2px solid var(--surface-dark);
  outline-offset: 3px;
  border-radius: var(--radius-sharp);
}

/* ---------- Body baseline ---------- */
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--surface-light);
}

/* =======================================================================
   GSAP support hooks
   - `.gsap-hide` sits on elements that GSAP will animate in; hidden until
     GSAP initialises. Fallback reveals them after 2.5s if GSAP fails.
   - `.scroll-progress` is a thin gold bar at the viewport top that scrubs
     with page scroll, driven by GSAP ScrollTrigger (progress 0..1).
   ======================================================================= */

html:not(.gsap-ready) .gsap-hide { visibility: hidden; }
html.gsap-failed .gsap-hide { visibility: visible; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 30;
  pointer-events: none;
  background: transparent;
}
.scroll-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--bronze-500);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ---------- Eyebrow dot ---------- */
.eyebrow-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose-gold-500); margin-right: 10px; vertical-align: middle;
}
.eyebrow-dot--dark { background: var(--rose-gold-300); }

/* =======================================================================
   Brand lockup — Q mark + Ageniqo wordmark
   Fraunces SemiBold wordmark in sentence case, flat midnight (white on
   dark), preceded by the geometric Q mark in bronze (rose gold on dark).
   ----------------------------------------------------------------------
   FLAT COLOUR ONLY. No gradients, bevels, shadows or metallic fills —
   see the non-negotiables in SKILL.md. The mark is drawn as a background
   image so no extra markup is needed at each call site.
   ======================================================================= */

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.34em;
  line-height: 1;
}

.brand-lockup::before {
  content: "";
  display: block;
  flex: none;
  width: 0.92em;
  height: 0.92em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='21' fill='none' stroke='%238E6A4A' stroke-width='8.5'/%3E%3Cline x1='40.49' y1='40.49' x2='54.6' y2='54.6' stroke='%238E6A4A' stroke-width='8.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.brand-lockup--on-dark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='21' fill='none' stroke='%23C08775' stroke-width='8.5'/%3E%3Cline x1='40.49' y1='40.49' x2='54.6' y2='54.6' stroke='%23C08775' stroke-width='8.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brand-lockup__mark {
  font-family: var(--font-signature);
  font-weight: 600;
  font-size: 1em;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  color: var(--surface-dark);
}
.brand-lockup--on-dark .brand-lockup__mark {
  color: var(--fg-on-dark);
}

.brand-lockup__tag {
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  color: var(--bronze-500);
}
.brand-lockup--on-dark .brand-lockup__tag {
  color: var(--rose-gold-500);
}

/* --- Horizontal (nav) — mark + wordmark, no descriptor --- */
.brand-lockup--horizontal {
  flex-direction: row;
  align-items: center;
  font-size: 25px;
}
.brand-lockup--horizontal .brand-lockup__tag { display: none; }

/* --- Stacked (splash, OG image, PDF cover) --- */
.brand-lockup--stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.22em;
}
.brand-lockup--stacked::before {
  width: 1.3em;
  height: 1.3em;
}
.brand-lockup--stacked .brand-lockup__tag {
  font-size: max(10px, 0.16em);
}

/* --- Giant footer: wordmark alone (the mark would overpower at 260px) --- */
.brand-lockup--giant::before { display: none; }
.brand-lockup--giant .brand-lockup__tag { display: none; }

/* --- Cover variant (dark tilted report mockup in hero) --- */
.brand-lockup--cover {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22em;
  margin-bottom: 18px;
  font-size: 28px;
}
.brand-lockup--cover::before {
  width: 1.1em;
  height: 1.1em;
}
.brand-lockup--cover .brand-lockup__tag {
  font-size: 9px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-on-light);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--space-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
}
.nav__logo { color: var(--fg-on-light); text-decoration: none; display: inline-flex; }

.nav__links {
  list-style: none; padding: 0; margin: 0;
  display: none; gap: var(--space-8);
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: -0.15px;
}
.nav__links a {
  color: var(--fg-on-light);
  text-decoration: none;
  font-weight: var(--fw-regular);
  transition: color var(--dur-micro) var(--ease-standard);
}
.nav__links a:hover { color: var(--rose-gold-700); }
@media (min-width: 960px) {
  .nav__links { display: flex; }
}

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-on-light); text-decoration: none;
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: 15px; letter-spacing: -0.15px;
  padding: 8px 14px;
  background: var(--surface-dark); color: var(--fg-on-dark);
  border-radius: var(--radius-sharp);
  transition: background var(--dur-micro) var(--ease-standard);
}
.nav__cta .nav__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rose-gold-500);
}
.nav__cta:hover { background: #1a1a3a; text-decoration: none; }

@media (min-width: 768px) {
  .nav__inner { padding: 20px var(--space-12); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background: var(--surface-light);
}
.hero__wash {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 80% 20%,
    var(--rose-gold-50) 0%, rgba(255, 255, 255, 0) 70%);
}
.hero__blob {
  position: absolute; top: -220px; right: -240px;
  width: 800px; height: 800px; pointer-events: none;
  background:
    radial-gradient(circle 35% at 28% 30%, #f4d9ccD9 0%, #f4d9cc70 35%, #f4d9cc00 100%),
    radial-gradient(circle 32% at 72% 55%, #bdbbffB3 0%, #bdbbff55 35%, #bdbbff00 100%),
    radial-gradient(circle 30% at 55% 82%, #c9e4ffA6 0%, #c9e4ff4D 35%, #c9e4ff00 100%);
  filter: blur(90px); opacity: 0.55;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.hero__copy { max-width: 600px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; margin-bottom: 20px;
  color: var(--fg-on-light-muted);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(30px, 5.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  margin: 0;
  max-width: 100%;
}
.hero__subhead {
  font-family: var(--font-display);
  font-size: var(--fs-body-lg); line-height: 1.45;
  letter-spacing: -0.19px;
  color: var(--fg-on-light-muted);
  margin: 24px 0 0; max-width: 560px;
}
.hero__form-wrap { margin: 28px 0 16px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__cta-primary {
  padding: 14px 22px;
  font-size: var(--fs-body); letter-spacing: -0.16px;
  gap: 10px;
}
.hero__cta-secondary {
  padding: 14px 22px;
  font-size: var(--fs-body); letter-spacing: -0.16px;
}

/* Hero stats band — standalone section below the tagline strip */
.hero-stats-band {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-on-light);
  background: var(--surface-light);
}
@media (min-width: 768px) {
  .hero-stats-band { padding: 56px 0; }
}
.hero__stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.hero-stat { display: flex; flex-direction: column; gap: 8px; }
.hero-stat__num {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.hero-stat__cap { color: var(--fg-on-light-muted); white-space: nowrap; }
.hero-stat__sep {
  width: 1px; background: var(--border-on-light); align-self: stretch;
  display: none;
}
.stat-note {
  display: block;
  margin-top: 24px;
  max-width: var(--container-max);
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-on-light-subtle);
}
@media (min-width: 768px) {
  .hero__stats { gap: 48px; margin-top: 72px; }
  .hero-stat__sep { display: block; }
  .stat-note { margin-top: 28px; }
}
.hero__fine {
  display: block; color: var(--fg-on-light-subtle); margin: 0;
}
.hero__proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  max-width: 620px;
}
.hero__proof div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border-on-light);
}
.hero__proof dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--rose-gold-700);
}
.hero__proof dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--fg-on-light-muted);
}
.hero__form-success {
  margin: 16px 0 0; max-width: 520px;
  padding: 14px 16px;
  background: var(--rose-gold-50);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-sharp);
}

@media (min-width: 960px) {
  .hero { padding: 96px 0 120px; }
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .hero__proof div {
    display: block;
  }
  .hero__proof dd {
    margin-top: 8px;
  }
}

/* ---------- Report cover (hero right) ---------- */
.hero__cover {
  position: relative;
  display: none;
  justify-content: center; align-items: center;
  min-height: 340px;
}
@media (min-width: 768px) {
  .hero__cover { display: flex; }
}

/* =======================================================================
   Hero mode toggle — .hero__cover picks one of two visuals:
     data-hero-mode="video"  → <video> loops behind the tilted card frame
     data-hero-mode="mockup" → original static 7-chapter dark card
   Only one is shown at a time. Keeps both markup blocks in the DOM so a
   single attribute flip is the revert path.
   ======================================================================= */
.hero__cover[data-hero-mode="video"]  .report-cover      { display: none; }
.hero__cover[data-hero-mode="mockup"] .hero__video-frame { display: none; }

.hero__video-frame {
  position: relative;
  width: min(340px, 86vw);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-comfortable);
  overflow: hidden;
  background: var(--surface-dark);
  box-shadow:
    rgba(1,1,32,0.35) 0 40px 80px -20px,
    rgba(1,1,32,0.25) 0 12px 24px -8px;
  transform: rotate(-2deg);
  transition: transform var(--dur-standard) var(--ease-spring);
  isolation: isolate;
}
.hero__video-frame:hover { transform: rotate(-1deg) translateY(-2px); }
.hero__video-frame::after {
  /* Subtle inner glow so the video's edge blends with the dark midnight frame. */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px 10px rgba(1, 1, 32, 0.25);
}
.hero__video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero__video-frame { width: 440px; }
}
@media (min-width: 960px) {
  .hero__video-frame { width: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    /* Browsers don't always honour autoplay suppression, so force pause via css-only trick:
       we can't stop playback via CSS, but pairing with JS would add complexity —
       the poster still shows under the paused frame if the OS throttles autoplay. */
  }
}
.cover-blob {
  position: absolute; inset: -40px -60px; pointer-events: none;
  background:
    radial-gradient(circle 35% at 28% 30%, #f4d9ccD9 0%, #f4d9cc70 35%, #f4d9cc00 100%),
    radial-gradient(circle 32% at 72% 55%, #bdbbffB3 0%, #bdbbff55 35%, #bdbbff00 100%),
    radial-gradient(circle 30% at 55% 82%, #c9e4ffA6 0%, #c9e4ff4D 35%, #c9e4ff00 100%);
  filter: blur(50px); opacity: 0.55;
}
.report-cover {
  position: relative;
  width: min(340px, 86vw);
  aspect-ratio: 3 / 4;
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  border-radius: var(--radius-comfortable);
  padding: 28px;
  box-shadow:
    rgba(1,1,32,0.35) 0 40px 80px -20px,
    rgba(1,1,32,0.25) 0 12px 24px -8px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-2deg);
  transition: transform var(--dur-standard) var(--ease-spring);
}
.report-cover:hover { transform: rotate(-1deg) translateY(-2px); }
.report-cover__eyebrow {
  display: block; margin-bottom: 14px; color: var(--rose-gold-300);
}
.report-cover__rule {
  width: 48px; height: 2px; background: var(--rose-gold-500); margin-bottom: 18px;
}
.report-cover__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 24px; line-height: 1.1; letter-spacing: -0.024em;
  margin: 0;
}
.report-cover__chapters {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px;
}
.report-cover__chapter {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.05px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px; text-transform: uppercase;
}
.report-cover__foot { color: rgba(255, 255, 255, 0.5); }

@media (min-width: 768px) {
  .report-cover { width: 360px; padding: 32px; }
  .report-cover__title { font-size: 28px; }
  .report-cover__chapter { font-size: 10px; }
}
@media (min-width: 960px) {
  .report-cover { width: 380px; padding: 36px; }
  .report-cover__title { font-size: 30px; }
}

/* ---------- Email form ---------- */
.email-form {
  display: flex; gap: 8px; flex-wrap: wrap; max-width: 520px;
}
.email-form__input {
  flex: 1 1 220px;
  font-family: var(--font-display);
  font-size: var(--fs-body); letter-spacing: -0.16px;
  padding: 14px 16px;
  background: var(--surface-light);
  color: var(--fg-on-light);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sharp);
  outline: none;
  transition: border-color var(--dur-micro) var(--ease-standard);
}
.email-form__input:focus-visible { border-color: var(--fg-on-light); outline: none; }
.email-form__input::placeholder { color: var(--fg-on-light-subtle); }

.email-form__submit {
  padding: 14px 22px;
  font-size: var(--fs-body); letter-spacing: -0.16px;
  line-height: 1; white-space: nowrap;
}

.btn--light {
  background: var(--fg-on-dark);
  color: var(--fg-on-light);
  border: 1px solid transparent;
}
.btn--light:hover  { background: rgba(255, 255, 255, 0.92); }
.btn--light:active { background: rgba(255, 255, 255, 0.85); transform: translateY(1px); }

.email-form--dark .email-form__input {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg-on-dark);
  border-color: rgba(255, 255, 255, 0.20);
}
.email-form--dark .email-form__input::placeholder { color: rgba(255, 255, 255, 0.45); }
.email-form--dark .email-form__input:focus-visible { border-color: var(--fg-on-dark); }

/* Pending + success states */
.email-form[data-state="pending"] .email-form__submit,
.email-form__submit:disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}
.email-form[data-state="pending"] .email-form__submit-label::after {
  content: "…"; margin-left: 2px;
}
.email-form[data-state="done"] { display: none; }

/* ---------- Tagline strip / marquee ---------- */
.tagline-strip {
  padding: 24px 0;
  border-top: 1px solid var(--border-on-light);
  border-bottom: 1px solid var(--border-on-light);
  overflow: hidden;
  position: relative;
}
.tagline-strip::before,
.tagline-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.tagline-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-light), rgba(255, 255, 255, 0));
}
.tagline-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-light), rgba(255, 255, 255, 0));
}
@media (min-width: 768px) {
  .tagline-strip { padding: 32px 0; }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee__track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}
@media (min-width: 768px) {
  .marquee__track { gap: 40px; animation-duration: 55s; }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.022em;
  line-height: 1;
  color: var(--fg-on-light);
  white-space: nowrap;
}
.marquee__item--accent {
  color: var(--rose-gold-700);
  font-weight: var(--fw-regular);
  font-style: italic;
}
.marquee__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose-gold-500);
  opacity: 0.7;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Stats ---------- */
.stats {
  padding: 56px 0;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-on-light);
}
.stats__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (min-width: 768px) {
  .stats { padding: 80px 0; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding-left: 0;
}
.stat + .stat { padding-left: 0; }
@media (min-width: 768px) {
  .stat + .stat {
    padding-left: var(--space-6);
    border-left: 1px solid var(--border-on-light);
  }
}
.stat__num {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__cap {
  display: block; margin-top: 14px; color: var(--fg-on-light-muted);
}

/* ---------- Process ---------- */
.process { padding: 80px 0; background: var(--surface-light); }
@media (min-width: 768px) { .process { padding: 120px 0; } }
.process__eyebrow { display: block; margin-bottom: 18px; color: var(--fg-on-light-muted); }
.process__headline {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1; letter-spacing: -0.03em;
  max-width: 720px; margin: 0 0 48px;
}
@media (min-width: 768px) { .process__headline { margin-bottom: 64px; } }
.process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06px;
  color: var(--rose-gold-700); font-weight: var(--fw-medium);
  border-top: 2px solid var(--rose-gold-500);
  padding-top: 16px; margin-bottom: 20px;
  width: 40px;
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 22px; line-height: 1.2; letter-spacing: -0.022em;
  margin: 0 0 12px;
}
.process-step__body {
  font-family: var(--font-display);
  font-size: var(--fs-body); line-height: 1.55; letter-spacing: -0.16px;
  color: var(--fg-on-light-muted); margin: 0;
}

/* ---------- Chapters ---------- */
.chapters {
  padding: 80px 0;
  background: var(--rose-gold-50);
}
@media (min-width: 768px) { .chapters { padding: 120px 0; } }
.chapters__header {
  display: flex; flex-direction: column; gap: 20px;
  align-items: flex-start; justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .chapters__header { flex-direction: row; align-items: flex-end; margin-bottom: 48px; }
}
.chapters__headline {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin: 18px 0 0; max-width: 640px;
}
.chapters__meta { color: var(--fg-on-light-muted); }
.chapters__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) { .chapters__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.chapter-card {
  background: var(--surface-light);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-comfortable);
  padding: 28px;
  transition: box-shadow var(--dur-standard) var(--ease-standard);
}
.chapter-card:hover { box-shadow: var(--shadow-2); }
@media (min-width: 768px) { .chapter-card--wide { grid-column: 1 / -1; } }
@media (min-width: 768px) { .chapter-card { padding: 32px; } }
.chapter-card__tag { display: block; color: var(--rose-gold-700); margin-bottom: 14px; }
.chapter-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 22px; line-height: 1.15; letter-spacing: -0.022em;
  margin: 0 0 12px;
}
@media (min-width: 768px) { .chapter-card__title { font-size: 26px; } }
.chapter-card__body {
  font-family: var(--font-display);
  font-size: var(--fs-body); line-height: 1.55; letter-spacing: -0.16px;
  color: var(--fg-on-light-muted); margin: 0 0 20px;
}
.chapter-card__bits { display: flex; flex-wrap: wrap; gap: 6px; }
.bit {
  display: inline-flex; padding: 4px 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-sharp);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.05px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  color: var(--fg-on-light); white-space: nowrap;
}

/* ---------- Pullquote ---------- */
.pullquote { padding: 80px 0; background: var(--surface-light); }
@media (min-width: 768px) { .pullquote { padding: 100px 0; } }
.pullquote__inner { max-width: 900px; }
.pullquote__body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.18; letter-spacing: -0.03em;
}
.pullquote__mark { color: var(--rose-gold-500); }
.pullquote__accent { color: var(--rose-gold-500); }
.pullquote__attribution {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
}
.pullquote__avatar {
  width: 40px; height: 40px; border-radius: var(--radius-sharp);
  background: var(--surface-dark); color: var(--fg-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06px;
  font-weight: var(--fw-medium);
}
.pullquote__name {
  font-family: var(--font-display);
  font-weight: var(--fw-medium); font-size: 16px;
  letter-spacing: -0.16px; line-height: 1.2;
}
.pullquote__role {
  display: inline-block; margin-top: 4px;
  color: var(--fg-on-light-muted);
}

/* -----------------------------------------------------------------------
   Mouse-trail sprite on the final-CTA section (spawned by script.js).
   Each sprite is a small rose-gold label that fades + scales + translates up
   over 900ms from the cursor position. Pointer events off so they never
   interfere with the form.
   ----------------------------------------------------------------------- */
@keyframes trail-float {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(var(--trail-rot, 0)) scale(0.9); }
  18%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -160%) rotate(var(--trail-rot, 0)) scale(0.7); }
}
.trail-sprite {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.055px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--rose-gold-300);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sharp);
  padding: 4px 8px;
  white-space: nowrap;
  animation: trail-float 900ms cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .trail-sprite { display: none; }
}

/* ---------- Final CTA (dark) ---------- */
.final-cta {
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  padding: 80px 0;
}
@media (min-width: 768px) { .final-cta { padding: 100px 0; } }
.final-cta__inner { max-width: 820px; text-align: center; }
.final-cta__eyebrow {
  display: inline-flex; align-items: center; margin-bottom: 24px;
  color: var(--fg-on-dark-muted);
}
.final-cta__headline {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.final-cta__subhead {
  font-family: var(--font-display);
  font-size: var(--fs-body-lg); line-height: 1.45; letter-spacing: -0.19px;
  color: var(--fg-on-dark-muted);
  margin: 0 auto 32px; max-width: 580px;
}
.final-cta .email-form { margin: 0 auto; justify-content: center; }
.final-cta__primary {
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
}
.final-cta__divider {
  display: block;
  margin: 32px 0 18px;
  color: var(--fg-on-dark-subtle);
}
.final-cta__success {
  margin: 16px auto 0; max-width: 520px; text-align: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-sharp);
}
.final-cta__success .mono-label { color: var(--fg-on-dark); }
.final-cta__download {
  display: inline-flex;
  margin-top: 10px;
  color: var(--fg-on-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta__fine {
  display: block; margin-top: 20px; color: var(--fg-on-dark-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  border-top: 1px solid var(--border-on-dark);
}
.footer__inner { padding: 64px 0 0; }
@media (min-width: 768px) { .footer__inner { padding: 80px 0 0; } }
.footer__top {
  display: flex; flex-direction: column; gap: 32px;
  align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 40px;
}
@media (min-width: 768px) { .footer__top { flex-direction: row; margin-bottom: 48px; } }
.footer__about { max-width: 360px; }
.footer__about .mono-label { display: block; margin-bottom: 16px; }
.footer__about-body {
  font-family: var(--font-display);
  font-size: var(--fs-body); line-height: 1.5; letter-spacing: -0.16px;
  color: var(--fg-on-dark-muted); margin: 0;
}
.footer__nav {
  display: flex; gap: 48px; flex-wrap: wrap;
}
@media (min-width: 768px) { .footer__nav { gap: 64px; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col .mono-label { margin-bottom: 6px; }
.footer__col a {
  color: var(--fg-on-dark); text-decoration: none;
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: -0.15px; line-height: 1.4;
}
.footer__col a:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer__wordmark {
  overflow: hidden; padding: 40px var(--space-6) 20px;
  max-width: 1400px; margin: 0 auto;
  display: flex;
  justify-content: center;
}
.footer__wordmark .brand-lockup--giant {
  font-size: clamp(96px, 22vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  max-width: 100%;
}
.footer__bottom {
  border-top: 1px solid var(--border-on-dark);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom-inner .mono-label { color: var(--fg-on-dark-muted); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--fg-on-dark-muted); text-decoration: none; }
.footer__links a:hover { color: var(--fg-on-dark); }

/* -----------------------------------------------------------------------
   Typography polish — OpenType ligatures/kerning on display, tabular nums
   on stats so the animated counters don't jump column widths.
   ----------------------------------------------------------------------- */
.hero__headline,
.process__headline,
.chapters__headline,
.pullquote__body,
.final-cta__headline,
.chapter-card__title,
.process-step__title,
.report-cover__title {
  font-feature-settings: "ss01" on, "liga" on, "calt" on, "kern" on;
}
.stat__num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" on, "kern" on;
}

/* -----------------------------------------------------------------------
   Lavender focus ring on form inputs — subtle secondary accent.
   ----------------------------------------------------------------------- */
.email-form__input:focus-visible {
  border-color: var(--accent-lavender);
  box-shadow: 0 0 0 3px rgba(189, 187, 255, 0.25);
  outline: none;
}
.email-form--dark .email-form__input:focus-visible {
  border-color: var(--accent-lavender);
  box-shadow: 0 0 0 3px rgba(189, 187, 255, 0.28);
}

/* -----------------------------------------------------------------------
   Footer links — rose-gold hairline underline scales in from the left.
   ----------------------------------------------------------------------- */
.footer__col a {
  position: relative;
  transition: color var(--dur-micro) var(--ease-standard);
}
.footer__col a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--rose-gold-300);
  transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur-standard) var(--ease-spring);
}
.footer__col a:hover { text-decoration: none; color: var(--rose-gold-100); }
.footer__col a:hover::after { transform: scaleX(1); }

/* Primary submit button — subtle lift on hover for more life. */
.email-form__submit {
  transition:
    transform var(--dur-micro) var(--ease-standard),
    background var(--dur-micro) var(--ease-standard);
}
.email-form__submit:hover  { transform: translateY(-1px); }
.email-form__submit:active { transform: translateY(1px); }

/* -----------------------------------------------------------------------
   Nav elevation — a hairline dark-blue shadow fades in after scroll > 8px.
   ----------------------------------------------------------------------- */
.nav {
  transition: box-shadow var(--dur-standard) var(--ease-standard);
}
.nav--scrolled {
  box-shadow:
    rgba(1, 1, 32, 0.06) 0 1px 0,
    rgba(1, 1, 32, 0.04) 0 6px 16px -6px;
}

/* Nav CTA hover — dot scales + gets rose-gold ring, arrow translates down. */
.nav__cta .nav__dot {
  transition:
    transform var(--dur-micro) var(--ease-standard),
    box-shadow var(--dur-micro) var(--ease-standard);
}
.nav__cta:hover .nav__dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(192, 135, 117, 0.2);
}
.nav__cta .nav__arrow {
  display: inline-block;
  transition: transform var(--dur-standard) var(--ease-spring);
}
.nav__cta:hover .nav__arrow { transform: translateY(2px); }

/* -----------------------------------------------------------------------
   Hero eyebrow dot — subtle breathing pulse to give the hero a heartbeat.
   ----------------------------------------------------------------------- */
@keyframes eyebrow-breath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 135, 117, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(192, 135, 117, 0); }
}
.hero__eyebrow .eyebrow-dot {
  animation: eyebrow-breath 2.6s var(--ease-standard) infinite;
}

/* -----------------------------------------------------------------------
   Chapter card hover — rose-gold left rail scales in, tag colour shifts.
   ----------------------------------------------------------------------- */
.chapter-card {
  position: relative;
}
.chapter-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--rose-gold-500);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform var(--dur-standard) var(--ease-spring);
  border-top-left-radius: var(--radius-comfortable);
  border-bottom-left-radius: var(--radius-comfortable);
}
.chapter-card:hover::before { transform: scaleY(1); }
.chapter-card__tag {
  transition: color var(--dur-micro) var(--ease-standard);
}
.chapter-card:hover .chapter-card__tag { color: var(--rose-gold-500); }

/* =======================================================================
   Generic section head (used by services, why, process, cases, insights)
   ======================================================================= */
.section-head {
  max-width: 760px;
  margin: 0 0 48px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow {
  display: block;
  color: var(--rose-gold-700);
  margin-bottom: 16px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.section-head__desc {
  font-family: var(--font-display);
  font-size: var(--fs-body-lg); line-height: 1.5; letter-spacing: -0.19px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
@media (min-width: 768px) {
  .section-head { margin-bottom: 64px; }
}

/* =======================================================================
   Services
   ======================================================================= */
.services { padding: 80px 0; background: var(--surface-light); }
@media (min-width: 768px) { .services { padding: 120px 0; } }
.services__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  background: var(--surface-light);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-comfortable);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--dur-standard) var(--ease-standard), transform var(--dur-standard) var(--ease-standard);
}
.service-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.service-card__tag { color: var(--rose-gold-700); }
.service-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 22px; line-height: 1.2; letter-spacing: -0.022em;
  margin: 0;
}
.service-card__body {
  font-family: var(--font-display);
  font-size: var(--fs-body); line-height: 1.5; letter-spacing: -0.16px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
.service-card__bullets {
  list-style: none; padding: 12px 0 0; margin: 0;
  border-top: 1px solid var(--border-on-light);
  display: flex; flex-direction: column; gap: 8px;
}
.service-card__bullets li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-display);
  font-size: 14px; line-height: 1.4; letter-spacing: -0.07px;
  color: var(--fg-on-light-muted);
}
.service-card__bullets li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 1px; background: var(--rose-gold-500);
}

/* =======================================================================
   Why Us
   ======================================================================= */
.why {
  padding: 80px 0;
  background: var(--rose-gold-50);
}
@media (min-width: 768px) { .why { padding: 120px 0; } }
.why__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .why__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: var(--surface-light);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-comfortable);
  padding: 28px;
}
.why-card__num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06px;
  color: var(--rose-gold-700); font-weight: var(--fw-medium);
  border-top: 2px solid var(--rose-gold-500);
  padding-top: 14px; margin-bottom: 18px;
  width: 36px;
}
.why-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 20px; line-height: 1.2; letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.why-card__body {
  font-family: var(--font-display);
  font-size: 15px; line-height: 1.5; letter-spacing: -0.15px;
  color: var(--fg-on-light-muted);
  margin: 0;
}

/* =======================================================================
   Process — shared with section head. Horizontal 4-step layout on desktop.
   ======================================================================= */
.process .process__steps {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .process .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process .process__steps { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

/* =======================================================================
   Case studies
   ======================================================================= */
.cases { padding: 80px 0; background: var(--surface-dark); color: var(--fg-on-dark); }
@media (min-width: 768px) { .cases { padding: 120px 0; } }
.cases .section-head__title { color: var(--fg-on-dark); }
.cases .section-head__desc { color: var(--fg-on-dark-muted); }
.cases .section-head__eyebrow { color: var(--rose-gold-300); }

.cases__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cases__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cases__grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: #141438;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-comfortable);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-standard) var(--ease-spring), border-color var(--dur-standard) var(--ease-standard);
}
.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}
.case-card__cover {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.case-card__cover--a {
  background:
    radial-gradient(circle 60% at 30% 30%, rgba(244, 217, 204, 0.35) 0%, transparent 70%),
    radial-gradient(circle 50% at 75% 65%, rgba(189, 187, 255, 0.32) 0%, transparent 70%),
    linear-gradient(135deg, #1a1a3a 0%, #010120 100%);
}
.case-card__cover--b {
  background:
    radial-gradient(circle 55% at 70% 30%, rgba(201, 228, 255, 0.3) 0%, transparent 70%),
    radial-gradient(circle 55% at 30% 70%, rgba(192, 135, 117, 0.25) 0%, transparent 70%),
    linear-gradient(135deg, #1a1a3a 0%, #010120 100%);
}
.case-card__cover--c {
  background:
    radial-gradient(circle 50% at 50% 40%, rgba(244, 217, 204, 0.4) 0%, transparent 70%),
    radial-gradient(circle 40% at 20% 80%, rgba(189, 187, 255, 0.28) 0%, transparent 70%),
    linear-gradient(135deg, #1a1a3a 0%, #010120 100%);
}
.case-card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 12px; }
.case-card__tag { color: var(--rose-gold-300); }
.case-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 20px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--fg-on-dark);
  margin: 0;
}
.case-card__desc {
  font-family: var(--font-display);
  font-size: 15px; line-height: 1.5; letter-spacing: -0.15px;
  color: var(--fg-on-dark-muted);
  margin: 0;
}
.case-card__meta {
  list-style: none; padding: 14px 0 0; margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-display);
  font-size: 13px; line-height: 1.4;
  color: var(--fg-on-dark-muted);
}
.case-card__meta strong { color: var(--fg-on-dark); font-weight: var(--fw-medium); }

.cases__disclaimer {
  display: block;
  margin: 40px 0 0;
  color: var(--fg-on-dark-muted);
}

/* =======================================================================
   Insights
   ======================================================================= */
.insights { padding: 80px 0; background: var(--surface-light); }
@media (min-width: 768px) { .insights { padding: 120px 0; } }
.insights__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .insights__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .insights__grid { grid-template-columns: repeat(3, 1fr); } }

.insight-card {
  background: var(--surface-light);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-comfortable);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--dur-standard) var(--ease-standard), transform var(--dur-standard) var(--ease-standard);
}
.insight-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.insight-card__tag { color: var(--rose-gold-700); }
.insight-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 20px; line-height: 1.25; letter-spacing: -0.02em;
  margin: 0;
}
.insight-card__body {
  font-family: var(--font-display);
  font-size: 15px; line-height: 1.5; letter-spacing: -0.15px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
.insight-card__link {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 14px; letter-spacing: -0.14px;
  color: var(--fg-on-light);
  text-decoration: none;
  margin-top: auto;
  transition: color var(--dur-micro) var(--ease-standard);
}
.insight-card__link:hover { color: var(--rose-gold-700); }

/* =======================================================================
   FAQ
   ======================================================================= */
.faq { padding: 80px 0; background: var(--surface-light); border-top: 1px solid var(--border-on-light); }
@media (min-width: 768px) { .faq { padding: 120px 0; } }
.faq__inner { max-width: 860px; margin: 0 auto; }
.faq__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border-on-light);
}
.faq-item { border-bottom: 1px solid var(--border-on-light); }
.faq-item__q {
  all: unset;
  display: flex; width: 100%; box-sizing: border-box;
  justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 18px; line-height: 1.3; letter-spacing: -0.018em;
  color: var(--fg-on-light);
  transition: color var(--dur-micro) var(--ease-standard);
}
.faq-item__q:hover { color: var(--rose-gold-700); }
.faq-item__q:focus-visible { outline: 2px solid var(--surface-dark); outline-offset: 4px; border-radius: var(--radius-sharp); }
.faq-item__icon {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: 24px; line-height: 1;
  color: var(--rose-gold-500);
  transition: transform var(--dur-standard) var(--ease-spring);
  flex-shrink: 0;
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-reveal) var(--ease-spring);
}
.faq-item__a > p {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 16px; line-height: 1.55; letter-spacing: -0.16px;
  color: var(--fg-on-light-muted);
  margin: 0;
}
.faq-item__q[aria-expanded="true"] + .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-item__q[aria-expanded="true"] + .faq-item__a > p {
  padding: 0 4px 24px;
}

/* -----------------------------------------------------------------------
   Scroll reveals — applied to below-the-fold sections only (hero stays
   instantly painted so LCP is unaffected).
   ----------------------------------------------------------------------- */
.reveal-init {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dur-reveal) var(--ease-spring),
    transform var(--dur-reveal) var(--ease-spring);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal-init { opacity: 1; transform: none; }
  .report-cover { transform: none; }
  .report-cover:hover { transform: none; }
  .hero__eyebrow .eyebrow-dot { animation: none; }
}

/* =========================================================================
   v3 LUXURY REDESIGN — additions appended at end (do not edit above)
   ========================================================================= */

/* ---------- Hero H1 dual-weight signature serif ---------- */
.hero__headline {
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.hero__headline .headline-bold {
  font-weight: 600;
  display: inline;
}
.hero__headline .headline-light {
  font-weight: 300;
  display: inline;
  font-style: italic;
  color: var(--rose-gold-700, #8e5c4d);
}
.hero__headline .headline-light em {
  font-style: italic;
}

/* ---------- Hero ambient dot grid (Linear pattern) ---------- */
.dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  padding: 8% 6%;
  z-index: 0;
  opacity: 0.55;
}
.dot-grid__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-gold-300, #e5b4a0);
  align-self: center;
  justify-self: center;
  animation: dot-grid-breathe 4s ease-in-out infinite;
  animation-delay: calc(var(--col, 0) * 0.18s + var(--row, 0) * 0.24s);
  opacity: 0.35;
  will-change: transform, opacity;
}
@keyframes dot-grid-breathe {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50%      { transform: translateY(-6px); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .dot-grid__dot { animation: none; }
}

/* Make hero copy + cover sit above the dot grid */
.hero__inner { position: relative; z-index: 1; }

/* ---------- Trust / compliance strip ---------- */
.trust-strip {
  padding: 56px 0 24px;
  background: transparent;
  text-align: center;
}
.trust-strip__eyebrow {
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose-gold-700, #8e5c4d);
  opacity: 0.7;
}
.trust-strip__line {
  font-family: var(--font-signature);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.005em;
  color: rgba(0,0,0,0.7);
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.6;
}
.trust-strip__divider {
  display: inline-block;
  margin: 0 10px;
  color: var(--rose-gold-500, #c08775);
  opacity: 0.6;
}

/* ---------- Problem section ---------- */
.problem {
  padding: 96px 0;
  background: #fbf6ee;
  border-top: 1px solid rgba(142, 92, 77, 0.08);
  border-bottom: 1px solid rgba(142, 92, 77, 0.08);
}
.problem__grid {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  background: #ffffff;
  border: 0.5px solid rgba(142, 92, 77, 0.18);
  border-radius: var(--radius-comfortable);
  padding: 40px 36px;
  position: relative;
}
.problem-card__num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--rose-gold-700, #8e5c4d);
  margin-bottom: 18px;
  opacity: 0.75;
}
.problem-card__title {
  font-family: var(--font-signature);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 14px;
  color: rgba(0,0,0,0.92);
}
.problem-card__body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(0,0,0,0.62);
  margin: 0;
}
@media (max-width: 720px) {
  .problem__grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-card { padding: 32px 26px; }
}

/* ---------- Comparison Before / With ---------- */
.comparison {
  padding: 112px 0;
  background: transparent;
}
.comparison__table {
  margin-top: 56px;
  border-radius: var(--radius-comfortable);
  overflow: hidden;
  border: 0.5px solid rgba(142, 92, 77, 0.18);
  background: #ffffff;
}
.comparison__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid rgba(142, 92, 77, 0.10);
}
.comparison__row:first-child { border-top: 0; }
.comparison__row--head .comparison__cell {
  padding: 24px 28px;
  background: #fbf6ee;
}
.comparison__cell {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  line-height: 1.45;
  border-left: 1px solid rgba(142, 92, 77, 0.08);
}
.comparison__cell:first-child { border-left: 0; }
.comparison__cell--label {
  font-family: var(--font-signature);
  font-size: 22px;
  font-weight: 500;
  color: rgba(0,0,0,0.92);
  background: #fcfaf6;
}
.comparison__cell--after {
  background: rgba(192, 135, 117, 0.06);
  color: rgba(0,0,0,0.92);
  font-weight: 500;
}
.comparison__cell--after .mono-label {
  color: var(--rose-gold-700, #8e5c4d);
  letter-spacing: 0.16em;
}
.comparison__cell--before .mono-label {
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.16em;
}
@media (max-width: 720px) {
  .comparison { padding: 72px 0; }
  .comparison__row { grid-template-columns: 1fr; }
  .comparison__cell { border-left: 0; border-top: 1px solid rgba(142, 92, 77, 0.10); padding: 20px 22px; }
  .comparison__cell--label { border-top: 0; padding-top: 28px; }
}

/* ---------- Mid-CTA capacity + button block ---------- */
.mid-cta {
  padding: 88px 0 72px;
  background: transparent;
}
.mid-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.mid-cta__capacity {
  display: block;
  font-family: var(--font-signature);
  font-size: clamp(17px, 1.5vw, 21px);
  font-style: italic;
  font-weight: 400;
  color: rgba(0,0,0,0.62);
  line-height: 1.55;
  letter-spacing: 0.005em;
  text-transform: none;
  margin: 0 auto 32px;
  max-width: 580px;
}
.mid-cta__btn { display: inline-flex; }

/* ---------- Pullquote — expanded bio ---------- */
.pullquote__bio { display: flex; flex-direction: column; gap: 4px; }
.pullquote__bio-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  margin: 14px 0 0;
  max-width: 560px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
}

/* ---------- Hero subhead — luxurise ---------- */
.hero__subhead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(0,0,0,0.62);
  font-weight: 400;
  margin-top: 28px;
  max-width: 580px;
  letter-spacing: 0.005em;
}

/* ---------- Hero fine print luxurised ---------- */
.hero__fine {
  margin-top: 22px;
  color: rgba(0,0,0,0.45);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Section eyebrows — locked uppercase + tracking ---------- */
.section-head__eyebrow,
.trust-strip__eyebrow,
.final-cta__eyebrow {
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--rose-gold-700, #8e5c4d) !important;
}

/* Restraint: cards no shadow */
.service-card, .why-card, .case-card, .insight-card, .chapter-card, .problem-card {
  box-shadow: none !important;
}

/* Consent line under the playbook form — A2P/GDPR visibility requirement. */
.final-cta__consent {
  margin-top: var(--space-3);
  max-width: 52ch;
  color: var(--fg-on-dark-subtle);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}
.final-cta__consent a {
  color: var(--rose-gold-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

