/* ==========================================================================
   The Dark Horse, built on the MasterClass style reference (DESIGN.md)
   Black-box stage: obsidian canvas, hairline borders, magenta reserved
   for conversion, gold for category warmth. No drop shadows anywhere.
   ========================================================================== */

:root {
  /* Colors */
  --color-obsidian: #222326;
  --color-carbon: #0d0d0e;
  --color-charcoal-plate: #272c33;
  --color-slate-body: #191c21;
  --color-bone-white: #f4f4f5;
  --color-ash-mute: #9ea0a9;
  --color-smoke: #43454c;
  --color-paper: #ffffff;
  --color-magenta-spotlight: #e32652;
  --color-editorial-gold: #eed37f;
  --color-neon-volt: #dcff00;

  /* Type: Sohne → Schibsted Grotesk, Sohne Schmal → Archivo (condensed
     width axis), Ivar Display Condensed → Fraunces italic */
  --font-sohne: 'Schibsted Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-schmal: 'Archivo', 'Inter Tight', ui-sans-serif, sans-serif;
  --font-ivar: 'Fraunces', Georgia, serif;

  --page-max-width: 1280px;

  --radius-cards: 12px;
  --radius-buttons: 8px;
  --radius-pills: 20px;
  --radius-inputs: 4px;

  --hairline: 1px solid rgba(244, 244, 245, 0.14);
  --hairline-plate: 1px solid #272c33;
}

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

html { scroll-behavior: smooth; }

/* Lenis takes over scrolling when active; native smooth would fight it. */
html.lenis, html.lenis body { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--color-obsidian);
  color: var(--color-paper);
  font-family: var(--font-sohne);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ Type roles ============ */

/* Archivo's variable width axis stands in for the Schmal (condensed) cut.
   Applies to every element set in --font-schmal. */
.display, .headline, .headline-sm, .wordmark,
.label-said, .format-num, .format-card h3, .price {
  font-stretch: 66%;
}

.display {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--color-paper);
}

.display-accent { color: var(--color-editorial-gold); }

.headline {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-paper);
}

.headline-sm {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-editorial-gold);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--color-ash-mute);
  max-width: 560px;
  margin-top: 20px;
}

.section-sub.centered { margin-left: auto; margin-right: auto; }

.serif-quote {
  font-family: var(--font-ivar);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--color-bone-white);
}

.serif-display {
  font-family: var(--font-ivar);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  color: var(--color-bone-white);
}

/* ============ Buttons ============ */

.btn {
  display: inline-block;
  font-family: var(--font-sohne);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-buttons);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease,
              color 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  will-change: transform;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.08s; }

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-editorial-gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-magenta-spotlight);
  color: var(--color-paper);
  border: none;
}
.btn-primary:hover { background: #ee3a63; }

.btn-ghost {
  background: transparent;
  color: var(--color-paper);
  border: 1px solid var(--color-paper);
}
.btn-ghost:hover {
  border-color: var(--color-editorial-gold);
  color: var(--color-editorial-gold);
  background: rgba(238, 211, 127, 0.06);
}

.btn-block { display: block; width: 100%; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

.text-link {
  color: var(--color-editorial-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.text-link:hover { text-decoration: underline; }

/* ============ Pills & badges ============ */

.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }

.pill {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-editorial-gold);
  border: 1px solid var(--color-editorial-gold);
  border-radius: var(--radius-pills);
  padding: 7px 16px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-volt {
  display: inline-block;
  background: var(--color-neon-volt);
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pills);
  padding: 4px 12px;
}

.badge-sm { font-size: 10px; padding: 2px 8px; }

/* ============ Nav ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(34, 35, 38, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: var(--hairline-plate);
}

.nav-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-paper);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--color-bone-white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--color-editorial-gold); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--color-paper);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), top 0.3s ease;
}

.nav-burger span:nth-child(1) { top: 17px; }
.nav-burger span:nth-child(2) { top: 25px; }

.nav-burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(13, 13, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 96px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links a {
  font-family: var(--font-schmal);
  font-stretch: 66%;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-paper);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open .mobile-menu-links a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-menu-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu-links a:active { color: var(--color-editorial-gold); }
.mobile-menu-links a.gold { color: var(--color-editorial-gold); }

.mobile-menu-footer {
  margin-top: 48px;
  display: flex;
  gap: 24px;
}

.mobile-menu-footer a {
  color: var(--color-ash-mute);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.menu-open { overflow: hidden; }

/* ============ Hero ============ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 112px;
  border-bottom: var(--hairline-plate);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark scrim: heavier behind the headline, fading to obsidian at the
   bottom so the hero blends into the page canvas with no visible seam. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(34, 35, 38, 0.88) 0%, rgba(34, 35, 38, 0.30) 22%, rgba(34, 35, 38, 0.30) 62%, var(--color-obsidian) 100%),
    linear-gradient(90deg, rgba(34, 35, 38, 0.90) 0%, rgba(34, 35, 38, 0.62) 52%, rgba(34, 35, 38, 0.38) 100%);
}

.hero .hero-grid {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}

.hero-sub {
  color: var(--color-bone-white);
  max-width: 520px;
  margin-top: 28px;
}

.hero-meta {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-ash-mute);
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.label-card {
  background: rgba(25, 28, 33, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--hairline);
  border-radius: var(--radius-cards);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
}

.label-said {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-paper);
  text-decoration: line-through;
  text-decoration-color: var(--color-editorial-gold);
  text-decoration-thickness: 2px;
}

.label-truth {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-ash-mute);
}

.label-caption {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-editorial-gold);
  margin-top: 8px;
}

/* Hover-reveal cards: the hovered (or keyboard-focused) card lifts while
   its siblings recede, dim, and soften. Hover-capable pointers only. */
@media (hover: hover) and (pointer: fine) {
  .label-card,
  .format-card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s ease, filter 0.5s ease;
    will-change: transform;
  }

  .hero-cards:has(.label-card:hover) .label-card:not(:hover),
  .hero-cards:has(.label-card:focus-visible) .label-card:not(:focus-visible),
  .format-grid:has(.format-card:hover) .format-card:not(:hover),
  .format-grid:has(.format-card:focus-visible) .format-card:not(:focus-visible) {
    transform: scale(0.97);
    opacity: 0.6;
    filter: blur(2px);
  }

  .label-card:hover, .label-card:focus-visible,
  .format-card:hover, .format-card:focus-visible {
    transform: scale(1.04);
    z-index: 2;
  }
}

.label-card, .format-card { position: relative; }

/* ============ Sections ============ */

.section { padding: 112px 0; }

.section-elevated {
  background: var(--color-carbon);
  border-top: var(--hairline-plate);
  border-bottom: var(--hairline-plate);
}

/* ============ Newsletter format ============ */

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.format-card {
  background: var(--color-charcoal-plate);
  border-radius: var(--radius-cards);
  box-shadow: rgb(39, 44, 51) 0px 0px 0px 1px inset;
  padding: 24px;
}

.format-num {
  font-family: var(--font-schmal);
  font-size: 14px;
  color: var(--color-editorial-gold);
  letter-spacing: 0.1em;
}

.format-card h3 {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  margin: 12px 0 8px;
}

.format-card p { font-size: 14px; color: var(--color-ash-mute); }

.sample {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  margin-top: 80px;
  padding-top: 64px;
  border-top: var(--hairline-plate);
  align-items: start;
}

.sample-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ash-mute);
  margin-top: 20px;
}

.sample-tag.gold { color: var(--color-editorial-gold); margin: 0 0 16px; }

.sample-story p:not(.sample-tag) {
  color: var(--color-bone-white);
  margin-bottom: 20px;
}

/* ============ The Reframe ============ */

.reframe-grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 80px;
  align-items: start;
}

.reframe-promise {
  font-family: var(--font-ivar);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-editorial-gold);
  margin: 24px 0;
}

.reframe-main > p { color: var(--color-bone-white); margin-bottom: 18px; max-width: 620px; }

.feature-list {
  list-style: none;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  color: var(--color-ash-mute);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--color-editorial-gold);
}

.feature-key { color: var(--color-paper); font-weight: 600; }

.fine-note {
  font-size: 13px;
  color: var(--color-ash-mute);
  border-left: 2px solid var(--color-smoke);
  padding-left: 16px;
  max-width: 560px;
}

.buy-card {
  background: var(--color-slate-body);
  border: var(--hairline);
  border-radius: var(--radius-cards);
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}

.buy-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-editorial-gold);
  margin-bottom: 20px;
}

.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }

.price {
  font-family: var(--font-schmal);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
}

.price-was {
  font-size: 18px;
  color: var(--color-ash-mute);
  text-decoration: line-through;
}

.buy-meta { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }

.buy-meta div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: var(--hairline);
  font-size: 14px;
}

.buy-meta dt { color: var(--color-ash-mute); }
.buy-meta dd { color: var(--color-bone-white); text-align: right; }

.buy-footnote {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-ash-mute);
  text-align: center;
}

/* ============ Reframe showcase (coverflow carousel) ============ */

.reframe-showcase { margin-top: 48px; }

.showcase-head { width: 100%; }
.showcase-head .eyebrow { margin-bottom: 0; }

.coverflow {
  --cf-card: clamp(300px, 52vw, 720px);
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  perspective: calc(var(--cf-card) * 3);
  touch-action: pan-y;
  cursor: grab;
  outline: none;
}

.coverflow.dragging { cursor: grabbing; }

.coverflow:focus-visible {
  outline: 1px solid var(--color-ash-mute);
  outline-offset: -1px;
}

.coverflow-stage {
  position: relative;
  height: calc(var(--cf-card) * 9 / 16);
  transform-style: preserve-3d;
}

.coverflow-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--cf-card);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-cards);
  overflow: hidden;
  will-change: transform;
  background: var(--color-slate-body);
}

.coverflow-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.coverflow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 14, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 244, 245, 0.18);
  border-radius: 50%;
  color: var(--color-paper);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.coverflow-nav:hover {
  border-color: var(--color-editorial-gold);
  color: var(--color-editorial-gold);
}

.coverflow-nav.prev { left: 24px; }
.coverflow-nav.next { right: 24px; }
.coverflow-nav svg { width: 20px; height: 20px; }

.coverflow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.coverflow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--color-smoke);
  transition: background 0.15s ease;
}

.coverflow-dot[aria-current="true"] { background: var(--color-editorial-gold); }

@media (max-width: 960px) {
  .coverflow { --cf-card: clamp(240px, 74vw, 520px); }
  .coverflow-nav { display: none; }
}

/* ============ Testimonials (looping columns) ============ */

.testimonials-inner { text-align: center; }
.centered-eyebrow, .centered-headline { text-align: center; }

.t-columns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
  max-height: 680px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  text-align: left;
}

.t-col { width: min(340px, 88vw); }

.t-col-inner {
  display: flex;
  flex-direction: column;
  animation: t-scroll var(--t-dur, 30s) linear infinite;
  will-change: transform;
}

/* Each set carries its own bottom padding so the -50% loop point lands
   exactly on the seam between the two copies. */
.t-set {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

@keyframes t-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* Let people read: hovering a column pauses its loop. */
.t-col:hover .t-col-inner { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .t-col-inner { animation: none; }
}

.t-card {
  background: var(--color-slate-body);
  border: var(--hairline);
  border-radius: var(--radius-cards);
  padding: 28px 24px;
  margin: 0;
}

.t-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-bone-white);
}

.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.t-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-charcoal-plate);
  border: 1px solid rgba(238, 211, 127, 0.4);
  color: var(--color-editorial-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.t-who { display: flex; flex-direction: column; }
.t-name { font-weight: 600; font-size: 14px; color: var(--color-paper); }
.t-role { font-size: 13px; color: var(--color-ash-mute); }

@media (max-width: 1100px) {
  .t-columns .t-col:nth-child(3) { display: none; }
}

@media (max-width: 767px) {
  .t-columns .t-col:nth-child(2) { display: none; }
  .t-columns { max-height: 560px; margin-top: 40px; }
}

/* ============ About ============ */

/* The portrait's true-black backdrop is feathered into a locally darkened
   section, so the photo emerges from the canvas instead of sitting in a box. */
#about {
  background: radial-gradient(70% 85% at 28% 45%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 72%);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
}

/* Vignette painted over the portrait's periphery: pulls the photo's grey
   studio backdrop down to the section's black so no frame edge survives. */
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(90% 80% at 50% 30%, transparent 35%, rgba(13, 13, 14, 0.92) 95%);
}

.about-portrait {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1) contrast(1.04);
  /* Feather the sides and bottom into the darkened section; the top edge
     hides against the section's radial black. Layers intersect so each
     edge fades independently without touching the face. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%), linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%), linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  mask-composite: intersect;
}

.about-quote {
  position: absolute;
  z-index: 2;
  left: -20px;
  bottom: 36px;
  max-width: 78%;
  border: var(--hairline);
  border-radius: var(--radius-cards);
  background: rgba(25, 28, 33, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 30px;
}

.about-quote .serif-display {
  font-size: clamp(22px, 2vw, 30px);
}

.about-role {
  color: var(--color-editorial-gold);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 12px 0 24px;
}

.about-copy > p:not(.eyebrow):not(.about-role) {
  color: var(--color-bone-white);
  margin-bottom: 18px;
  max-width: 540px;
}

.about-cred { color: var(--color-ash-mute) !important; font-size: 14px; }

/* ============ Coaching ============ */

.coaching-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ============ Subscribe ============ */

.subscribe-inner { text-align: center; }

.subscribe-embed {
  margin: 48px auto 0;
  max-width: 640px;
}

.subscribe-embed iframe {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-cards);
}

/* ============ Footer ============ */

.footer {
  background: var(--color-carbon);
  border-top: var(--hairline-plate);
  padding: 64px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-tag {
  font-size: 13px;
  color: var(--color-ash-mute);
  margin-top: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links { display: flex; gap: 24px; align-items: center; }

.footer-links a {
  color: var(--color-bone-white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--color-editorial-gold); }

.footer-soon {
  color: var(--color-ash-mute);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-legal { font-size: 13px; color: var(--color-ash-mute); }

/* ============ Sticky promo bar ============ */

.promo-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--color-carbon);
  border-top: var(--hairline-plate);
}

.promo-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.promo-headline { font-weight: 600; font-size: 16px; }
.promo-sub { font-size: 12px; color: var(--color-ash-mute); }

.promo-actions { display: flex; align-items: center; gap: 16px; }

.promo-close {
  background: none;
  border: none;
  color: var(--color-ash-mute);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.promo-close:hover { color: var(--color-paper); }

/* ============ Responsive ============ */

@media (max-width: 960px) {
  .hero-grid, .reframe-grid, .about-grid, .sample { grid-template-columns: 1fr; gap: 48px; }
  .about-quote { left: 12px; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .buy-card { position: static; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero { padding: 128px 0 72px; }
  .section { padding: 72px 0; }
}

@media (max-width: 767px) {
  /* Phones skip the 8MB video: hero-particles.js paints a live gold
     constellation instead; the poster is the no-JS fallback beneath it. */
  .hero {
    background: var(--color-carbon) url('assets/hero-poster.jpg') center / cover no-repeat;
  }
  .hero-video { display: none; }

  .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
}

/* Staggered entrance for the hero copy on phones, echoing the component's
   fade-up sequence. */
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
  }
  .hero-copy > * { animation: hero-rise 0.8s ease-out both; }
  .hero-copy > *:nth-child(1) { animation-delay: 0.5s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.7s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.9s; }
  .hero-copy > *:nth-child(4) { animation-delay: 1.1s; }
  .hero-copy > *:nth-child(5) { animation-delay: 1.3s; }
}

@media (max-width: 560px) {
  .container, .nav-inner, .promo-inner { padding-left: 20px; padding-right: 20px; }
  .promo-sub { display: none; }
  .nav-cta .btn { font-size: 14px; padding: 9px 16px; }

  /* Label cards become a swipeable row instead of a tall stack. */
  .hero-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 -20px;
    padding: 0 20px 8px;
    -webkit-overflow-scrolling: touch;
  }
  .hero-cards::-webkit-scrollbar { display: none; }
  .label-card {
    flex: 0 0 74vw;
    min-height: 0;
    scroll-snap-align: center;
  }
  .label-caption { flex: 0 0 100%; text-align: left; }

  .format-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .format-card { padding: 16px; }
  .format-card h3 { font-size: 18px; }

  .btn-row { flex-direction: column; align-items: stretch; }

  .footer-inner { flex-direction: column; text-align: center; }

  /* Bigger touch targets for the coverflow dots. */
  .coverflow-dot {
    width: 24px;
    height: 24px;
    padding: 8px;
    background-clip: content-box;
  }
}
