/* === STEVE MOHR — EXPOSING DECEPTION === */
/* Modern editorial aesthetic — mixed case, serif headlines, generous whitespace */

:root {
  /* Palette pulled from the eclipse + sunset imagery */
  --bg: #0a0807;
  --bg-soft: #110d0b;
  --bg-elev: #181311;
  --bg-card: #1d1714;
  --bg-warm: #221814;

  --line: rgba(255, 220, 180, 0.10);
  --line-strong: rgba(255, 220, 180, 0.18);

  --ink: #f5ece2;
  --ink-mute: rgba(245, 236, 226, 0.72);
  --ink-dim: rgba(245, 236, 226, 0.50);
  --ink-faint: rgba(245, 236, 226, 0.32);

  --ember: #f0892b;          /* sunset orange */
  --ember-bright: #ffb454;   /* gold-orange glow */
  --ember-deep: #c25a1a;     /* deeper edge */
  --ember-soft: rgba(240, 137, 43, 0.14);

  --paper: #f6f1ea;
  --paper-ink: #1a1410;
  --paper-mute: #5e544b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --font-display: "Newsreader", "Source Serif Pro", Georgia, serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max-w: 1240px;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
em { font-style: italic; }

/* === BASE TYPOGRAPHY === */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-bright);
}

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

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 7, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-name .accent {
  color: var(--ember-bright);
  font-style: italic;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--ember-bright);
}

/* === HERO (animated eclipse) === */
.hero {
  /* Tunable: position of bright "diamond" point, eclipse disc, and flare */
  --gx: 29%;
  --gy: 39.3%;
  --dx: 53%;
  --dy: 50%;
  --dr: clamp(220px, 36vh, 360px);

  position: relative;
  width: 100%;
  min-height: 820px;
  height: 100vh;
  max-height: 960px;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base eclipse photograph */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Common glow base — anchored to the bright diamond point, additively blended */
.glow {
  position: absolute;
  left: var(--gx);
  top: var(--gy);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 3;
  will-change: transform, opacity, filter;
}

/* Wide aurora bleeding across the frame */
.aura {
  width: 220vmax;
  height: 220vmax;
  background:
    radial-gradient(circle at center,
      rgba(255, 236, 200, 0.55) 0%,
      rgba(255, 170, 80, 0.32) 6%,
      rgba(255, 110, 30, 0.18) 14%,
      rgba(255, 80, 20, 0.10) 24%,
      rgba(255, 60, 10, 0.05) 36%,
      rgba(0, 0, 0, 0) 55%);
  filter: blur(6px);
  animation: auraPulse 5.2s ease-in-out infinite;
}
@keyframes auraPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.95; transform: translate(-50%, -50%) scale(1.08); }
}

/* Corona ring base, around the eclipse disc */
.ring {
  position: absolute;
  left: var(--dx);
  top: var(--dy);
  width: calc(var(--dr) * 2);
  height: calc(var(--dr) * 2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity, filter;
}

.ring--halo {
  width: calc(var(--dr) * 4.6);
  height: calc(var(--dr) * 4.6);
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0) 38%,
    rgba(255, 120, 40, 0.22) 44%,
    rgba(255, 90, 25, 0.18) 52%,
    rgba(255, 60, 10, 0.10) 62%,
    rgba(255, 40, 0, 0.04) 74%,
    rgba(0, 0, 0, 0) 90%);
  filter: blur(8px);
  animation: haloBreathe 5.6s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(calc(0.97 * var(--haloSize, 1))); }
  50%      { opacity: 1.00; transform: translate(-50%, -50%) scale(calc(1.05 * var(--haloSize, 1))); }
}

.ring--rim,
.ring--filaments {
  filter: url(#firewave) blur(1.4px);
}

.ring--rim {
  width: calc(var(--dr) * 2.18);
  height: calc(var(--dr) * 2.18);
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0) 78%,
    rgba(255, 90, 20, 0.28) 86%,
    rgba(255, 150, 60, 0.65) 91%,
    rgba(255, 220, 150, 0.72) 92.5%,
    rgba(255, 150, 60, 0.55) 94%,
    rgba(255, 80, 15, 0.30) 97%,
    rgba(0, 0, 0, 0) 100%);
  animation: rimPulse 3.2s ease-in-out infinite;
}
@keyframes rimPulse {
  0%, 100% { opacity: calc(0.7 * var(--rimGlow, 1));  transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: calc(1.0 * var(--rimGlow, 1));  transform: translate(-50%, -50%) scale(1.012); }
}

.ring--hotspot {
  width: calc(var(--dr) * 2.25);
  height: calc(var(--dr) * 2.25);
  background: radial-gradient(circle at 50% 8%,
    rgba(255, 235, 180, 0.85) 0%,
    rgba(255, 160, 60, 0.55) 3%,
    rgba(255, 90, 20, 0.25) 7%,
    rgba(0, 0, 0, 0) 14%);
  -webkit-mask: radial-gradient(circle at center,
    transparent 0%, transparent 85%, #000 89%, #000 94%, transparent 99%);
          mask: radial-gradient(circle at center,
    transparent 0%, transparent 85%, #000 89%, #000 94%, transparent 99%);
  filter: blur(2px);
  animation: hotspotOrbit var(--hotspotSpeed, 14s) linear infinite;
}
.ring--hotspot-2 {
  animation: hotspotOrbit calc(var(--hotspotSpeed, 14s) * 1.6) linear infinite reverse;
  animation-delay: -7s;
  opacity: 0.7;
  filter: blur(3px) hue-rotate(-8deg);
}
@keyframes hotspotOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.ring--filaments {
  width: calc(var(--dr) * 2.5);
  height: calc(var(--dr) * 2.5);
  background: conic-gradient(
    from 0deg,
    rgba(255, 140, 50, 0.0) 0deg,
    rgba(255, 170, 80, 0.35) 22deg,
    rgba(255, 90, 20, 0.0) 44deg,
    rgba(255, 80, 20, 0.0) 88deg,
    rgba(255, 180, 90, 0.40) 112deg,
    rgba(255, 80, 20, 0.0) 140deg,
    rgba(255, 80, 20, 0.0) 188deg,
    rgba(255, 150, 60, 0.30) 212deg,
    rgba(255, 80, 20, 0.0) 240deg,
    rgba(255, 80, 20, 0.0) 290deg,
    rgba(255, 170, 80, 0.35) 318deg,
    rgba(255, 80, 20, 0.0) 345deg,
    rgba(255, 80, 20, 0.0) 360deg);
  -webkit-mask: radial-gradient(circle at center,
    transparent 0%, transparent 78%, #000 84%, #000 96%, transparent 100%);
          mask: radial-gradient(circle at center,
    transparent 0%, transparent 78%, #000 84%, #000 96%, transparent 100%);
  opacity: 0.85;
  animation: filamentsSpin 38s linear infinite, rimPulse 4.4s ease-in-out infinite -1.2s;
}
@keyframes filamentsSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Mid corona */
.corona {
  width: 90vmax;
  height: 90vmax;
  background:
    radial-gradient(circle at center,
      rgba(255, 250, 225, 0.95) 0%,
      rgba(255, 205, 130, 0.70) 3%,
      rgba(255, 140, 50, 0.40) 9%,
      rgba(255, 90, 20, 0.15) 20%,
      rgba(0, 0, 0, 0) 40%);
  filter: blur(2px);
  animation: coronaPulse 3.6s ease-in-out infinite;
}
@keyframes coronaPulse {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(0.96); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}

/* Tight hot core */
.core {
  width: 22vmax;
  height: 22vmax;
  background:
    radial-gradient(circle at center,
      #ffffff 0%,
      #fff3c8 8%,
      #ffd07a 18%,
      rgba(255, 150, 40, 0.7) 30%,
      rgba(255, 90, 20, 0.25) 50%,
      rgba(0, 0, 0, 0) 72%);
  animation: coreFlicker 2.4s ease-in-out infinite;
}
@keyframes coreFlicker {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); filter: blur(0px); }
  35%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.07); filter: blur(0.5px); }
  65%      { opacity: 0.92; transform: translate(-50%, -50%) scale(0.97); filter: blur(0px); }
}

/* Rays */
.rays {
  width: 180vmax;
  height: 180vmax;
  background:
    conic-gradient(from 0deg,
      rgba(255, 230, 180, 0) 0deg,
      rgba(255, 230, 180, 0.55) 2deg,
      rgba(255, 230, 180, 0) 8deg,
      rgba(255, 230, 180, 0) 42deg,
      rgba(255, 210, 140, 0.45) 45deg,
      rgba(255, 210, 140, 0) 50deg,
      rgba(255, 230, 180, 0) 88deg,
      rgba(255, 240, 200, 0.6) 90deg,
      rgba(255, 240, 200, 0) 94deg,
      rgba(255, 230, 180, 0) 132deg,
      rgba(255, 210, 140, 0.45) 135deg,
      rgba(255, 210, 140, 0) 140deg,
      rgba(255, 230, 180, 0) 178deg,
      rgba(255, 230, 180, 0.55) 180deg,
      rgba(255, 230, 180, 0) 186deg,
      rgba(255, 230, 180, 0) 222deg,
      rgba(255, 210, 140, 0.45) 225deg,
      rgba(255, 210, 140, 0) 230deg,
      rgba(255, 230, 180, 0) 268deg,
      rgba(255, 240, 200, 0.6) 270deg,
      rgba(255, 240, 200, 0) 274deg,
      rgba(255, 230, 180, 0) 312deg,
      rgba(255, 210, 140, 0.45) 315deg,
      rgba(255, 210, 140, 0) 320deg,
      rgba(255, 230, 180, 0) 358deg,
      rgba(255, 230, 180, 0) 360deg);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 4%, rgba(0, 0, 0, 0.55) 14%, rgba(0, 0, 0, 0) 38%);
          mask-image: radial-gradient(circle at center, #000 0%, #000 4%, rgba(0, 0, 0, 0.55) 14%, rgba(0, 0, 0, 0) 38%);
  filter: blur(1.2px);
  opacity: 0.85;
  animation: raysSpin 60s linear infinite, raysPulse 3.6s ease-in-out infinite;
}
@keyframes raysSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes raysPulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

.rays--fine {
  width: 140vmax;
  height: 140vmax;
  background:
    conic-gradient(from 0deg,
      rgba(255, 245, 210, 0) 0deg, rgba(255, 245, 210, 0.7) 1deg, rgba(255, 245, 210, 0) 3deg,
      rgba(255, 245, 210, 0) 29deg, rgba(255, 225, 170, 0.4) 30deg, rgba(255, 225, 170, 0) 32deg,
      rgba(255, 245, 210, 0) 59deg, rgba(255, 245, 210, 0.55) 60deg, rgba(255, 245, 210, 0) 62deg,
      rgba(255, 245, 210, 0) 89deg, rgba(255, 225, 170, 0.4) 90deg, rgba(255, 225, 170, 0) 92deg,
      rgba(255, 245, 210, 0) 119deg, rgba(255, 245, 210, 0.55) 120deg, rgba(255, 245, 210, 0) 122deg,
      rgba(255, 245, 210, 0) 149deg, rgba(255, 225, 170, 0.4) 150deg, rgba(255, 225, 170, 0) 152deg,
      rgba(255, 245, 210, 0) 179deg, rgba(255, 245, 210, 0.7) 180deg, rgba(255, 245, 210, 0) 182deg,
      rgba(255, 245, 210, 0) 209deg, rgba(255, 225, 170, 0.4) 210deg, rgba(255, 225, 170, 0) 212deg,
      rgba(255, 245, 210, 0) 239deg, rgba(255, 245, 210, 0.55) 240deg, rgba(255, 245, 210, 0) 242deg,
      rgba(255, 245, 210, 0) 269deg, rgba(255, 225, 170, 0.4) 270deg, rgba(255, 225, 170, 0) 272deg,
      rgba(255, 245, 210, 0) 299deg, rgba(255, 245, 210, 0.55) 300deg, rgba(255, 245, 210, 0) 302deg,
      rgba(255, 245, 210, 0) 329deg, rgba(255, 225, 170, 0.4) 330deg, rgba(255, 225, 170, 0) 332deg,
      rgba(255, 245, 210, 0) 360deg);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 3%, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0) 30%);
          mask-image: radial-gradient(circle at center, #000 0%, #000 3%, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0) 30%);
  filter: blur(0.6px);
  opacity: 0.7;
  animation: raysSpinReverse 90s linear infinite, raysPulse 2.8s ease-in-out infinite -0.6s;
}
@keyframes raysSpinReverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Lens flare streaks */
.streak {
  width: 200vmax;
  height: 3vmax;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(255, 200, 120, 0.0) 35%,
      rgba(255, 235, 190, 0.55) 49%,
      rgba(255, 255, 235, 0.85) 50%,
      rgba(255, 235, 190, 0.55) 51%,
      rgba(255, 200, 120, 0.0) 65%,
      rgba(0, 0, 0, 0) 100%);
  filter: blur(2px);
  animation: streakBreathe 5s ease-in-out infinite;
}
@keyframes streakBreathe {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scaleY(0.7); }
  50%      { opacity: 0.85; transform: translate(-50%, -50%) scaleY(1.4); }
}
.streak--v {
  width: 3vmax;
  height: 200vmax;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(255, 200, 120, 0.0) 35%,
      rgba(255, 235, 190, 0.55) 49%,
      rgba(255, 255, 235, 0.85) 50%,
      rgba(255, 235, 190, 0.55) 51%,
      rgba(255, 200, 120, 0.0) 65%,
      rgba(0, 0, 0, 0) 100%);
  animation: streakBreatheV 5.5s ease-in-out infinite -0.7s;
}
@keyframes streakBreatheV {
  0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scaleX(0.7); }
  50%      { opacity: 0.75; transform: translate(-50%, -50%) scaleX(1.4); }
}

/* Wash */
.wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at var(--gx) var(--gy),
      rgba(255, 170, 80, 0.18) 0%,
      rgba(255, 120, 40, 0.10) 25%,
      rgba(255, 80, 20, 0.06) 45%,
      rgba(255, 60, 10, 0.03) 65%,
      rgba(0, 0, 0, 0) 85%);
  animation: washPulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes washPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* Vignette over everything below text */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* Floating embers */
.embers {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
}
.ember {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffd089;
  box-shadow:
    0 0 6px rgba(255, 180, 90, 0.9),
    0 0 14px rgba(255, 120, 40, 0.6);
  opacity: 0;
  animation: emberDrift var(--d, 9s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--gx);
  top: var(--gy);
}
@keyframes emberDrift {
  0%   { transform: translate(-50%, -50%) translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.7; }
  100% { transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1.2); opacity: 0; }
}

/* Readability scrim — sits above all eclipse layers, below text */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 90% at 50% 50%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.20) 65%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 18%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.15) 82%, rgba(0, 0, 0, 0.55) 100%);
}

.hero .wrap {
  width: 100%;
}

/* Hero content — sits above the eclipse, 2-column layout */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: center;
  padding: 0 8px;
  justify-content: center;
}

.hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-right: 8px;
}

/* Eyebrow — 3 short uppercase lines, last one orange */
.hero-eyebrow {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
  font-style: italic;
  line-height: 1.35;
  width: 100%;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.7);
}
.hero-eyebrow > span {
  display: block;
  width: 100%;
}
.hero-eyebrow .eyebrow-accent {
  color: var(--ember-bright);
}

/* Title — two stacked big condensed all-caps lines */
.h1 {
  position: relative;
  font-family: "Bebas Neue", "Anton", "Oswald", Impact, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
  padding: 0;
}
.h1::before { content: none; }
.h1 .book-title {
  display: block;
  font-family: "Bebas Neue", "Anton", "Oswald", Impact, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(64px, 7.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 1),
    0 2px 12px rgba(0, 0, 0, 0.85),
    0 0 30px rgba(0, 0, 0, 0.6);
}
.h1 .book-title--accent {
  color: var(--crimson, #d62828);
  margin-top: -4px;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 1),
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(0, 0, 0, 0.5);
}

.book-subtitle {
  display: block;
  font-family: "Bebas Neue", "Anton", "Oswald", Impact, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
  margin: 20px 0 18px;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 1),
    0 1px 6px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(0, 0, 0, 0.6);
}

.title-rule {
  width: 88px;
  height: 2px;
  background: var(--crimson, #d62828);
  margin-top: 6px;
  align-self: flex-end;
}

/* Right column - the email capture card */
.hero-right {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

/* Email capture card — matches reference */
.capture {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}
.capture-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(8, 5, 3, 0.78);
  border: 1px solid rgba(255, 180, 84, 0.55);
  border-radius: 8px;
  padding: 32px 32px 28px;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
}
.capture-card::before { content: none; }

.capture-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
}
.capture-icon svg { width: 100%; height: 100%; }

.capture-title {
  font-family: "Bebas Neue", "Anton", "Oswald", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #ffffff;
  text-align: center;
}
.capture-title .accent { color: var(--ember); }

.capture-rule {
  width: 56px;
  height: 1px;
  background: var(--ember);
  margin: 0 auto 18px;
}

.capture-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 236, 226, 0.85);
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--font-body);
}
.capture-sub .accent {
  color: var(--ember);
  font-weight: 600;
}

.capture-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  width: 100%;
}
.capture-row:focus-within { border: none; box-shadow: none; }

.capture input[type="email"] {
  width: 100%;
  background: #f6f1ea;
  border: 1px solid transparent;
  color: #1a1410;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.capture input[type="email"]:focus {
  outline: none;
  border-color: var(--ember);
  background: #ffffff;
}
.capture input[type="email"]::placeholder { color: #8a7d6e; }

.btn-primary {
  background: var(--ember);
  color: #1a0e05;
  border: none;
  padding: 16px 22px;
  font-family: "Bebas Neue", "Anton", "Oswald", Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow:
    0 8px 24px -6px rgba(240, 137, 43, 0.55),
    inset 0 1px 0 rgba(255, 220, 180, 0.4);
}
.btn-primary:hover {
  background: var(--ember-bright);
  transform: translateY(-1px);
  box-shadow:
    0 12px 30px -8px rgba(255, 180, 84, 0.7),
    inset 0 1px 0 rgba(255, 220, 180, 0.4);
}

.capture-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(245, 236, 226, 0.65);
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.capture-trust .item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.capture-trust svg {
  width: 12px;
  height: 12px;
  color: rgba(245, 236, 226, 0.5);
}

.capture-success {
  padding: 22px 22px;
  background: rgba(240, 137, 43, 0.12);
  border: 1px solid rgba(240, 137, 43, 0.4);
  border-radius: 8px;
  color: var(--ember-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  text-align: center;
}
.capture-success small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  color: rgba(245, 236, 226, 0.65);
  margin-top: 8px;
}

/* Old single-column hero overrides — kept tight */
.hero-tagline { display: none; }
.hero-lede { display: none; }
.h1 .em, .h1 .em-soft { color: var(--ember-bright); }

@media (prefers-reduced-motion: reduce) {
  .hero *, .hero *::before, .hero *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Hero - eclipse is the full-bleed background; no right column needed */
.hero-quote-card {
  position: absolute;
  left: -40px;
  bottom: -20px;
  max-width: 340px;
  padding: 22px 24px;
  background: rgba(15, 11, 9, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  z-index: 3;
}
.hero-quote-card .qb {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.hero-quote-card .qa {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
}
.hero-quote-card .qa strong {
  color: var(--ember-bright);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* === PILLARS STRIP === */
.pillars {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 48px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; }
.pillar .ico {
  width: 44px;
  height: 44px;
  color: var(--ember-bright);
  flex-shrink: 0;
}
.pillar .ico svg { width: 100%; height: 100%; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* === REVIEWS (light) === */
.reviews {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 100px 0;
}
.reviews-head {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-head .eyebrow { color: var(--ember-deep); }
.reviews-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 14px 0 0;
  color: var(--paper-ink);
}
.reviews-head h2 em {
  font-style: italic;
  color: var(--ember-deep);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 32px -16px rgba(0, 0, 0, 0.10);
}
.review-card.rating {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.review-card.rating .big {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper-ink);
}
.review-card.rating .stars {
  color: var(--ember);
  font-size: 20px;
  letter-spacing: 3px;
}
.review-card.rating .meta {
  color: var(--paper-mute);
  font-size: 14px;
}
.review-card.rating .source {
  font-size: 13px;
  color: var(--paper-mute);
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 4px;
  width: 100%;
  font-weight: 500;
}
.review-card .qmark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--ember);
  line-height: 0.6;
  height: 24px;
}
.review-card.has-photo .qattr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-photo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1410;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.review-card .qbody {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--paper-ink);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.review-card .qattr {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: var(--paper-mute);
  line-height: 1.4;
}
.review-card .qattr strong {
  display: block;
  color: var(--paper-ink);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

/* === DISCERNMENT INTERACTIVE === */
.discernment {
  position: relative;
  padding: 110px 0;
  background: var(--bg);
  overflow: hidden;
}
.discernment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(240, 137, 43, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(194, 90, 26, 0.08), transparent 60%);
  pointer-events: none;
}
.disc-head {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.disc-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 18px;
  text-wrap: balance;
}
.disc-head h2 em {
  font-style: italic;
  color: var(--ember-bright);
}
.disc-head p {
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.disc-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 44px 56px 40px;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.8);
}
.disc-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  justify-content: center;
}
.disc-progress .step {
  width: 36px;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  transition: background 0.3s;
}
.disc-progress .step.active { background: var(--ember-bright); }
.disc-progress .step.done { background: var(--ember); }

.disc-q { text-align: center; }
.disc-q .qnum {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.disc-q .qstmt {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 36px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.disc-q .qstmt::before { content: "\201C"; color: var(--ember-bright); font-style: normal; }
.disc-q .qstmt::after { content: "\201D"; color: var(--ember-bright); font-style: normal; }

.disc-choices {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.disc-btn {
  flex: 1;
  max-width: 240px;
  padding: 18px 22px;
  background: rgba(245, 236, 226, 0.03);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.disc-btn:hover:not(:disabled) {
  border-color: var(--ember-bright);
  background: rgba(240, 137, 43, 0.08);
}
.disc-btn.picked-correct {
  border-color: var(--ember-bright);
  background: rgba(240, 137, 43, 0.14);
  color: var(--ember-bright);
}
.disc-btn.picked-wrong {
  border-color: rgba(194, 90, 26, 0.6);
  background: rgba(194, 90, 26, 0.10);
  color: #e88860;
}
.disc-btn:disabled { cursor: default; }

.disc-reveal {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 2px solid var(--ember-bright);
  background: rgba(245, 236, 226, 0.02);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mute);
  text-align: left;
}
.disc-reveal .verdict {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ember-bright);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.disc-reveal .verdict.wrong { color: #e88860; }
.disc-reveal .verse {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
}
.disc-reveal .verse .ref {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ember-bright);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.disc-next {
  text-align: center;
  margin-top: 28px;
}
.disc-next button {
  background: var(--ember);
  color: #1a0e05;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.disc-next button:hover {
  background: var(--ember-bright);
  transform: translateY(-1px);
}

.disc-result {
  text-align: center;
  padding: 8px 0 0;
}
.disc-result .score {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--ember-bright);
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}
.disc-result .score em {
  font-style: italic;
  color: var(--ink-dim);
  font-size: 0.5em;
}
.disc-result .score-lbl {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.disc-result h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.disc-result h3 em { font-style: italic; color: var(--ember-bright); }
.disc-result p {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
}
.disc-result .retake {
  background: none;
  border: none;
  color: var(--ink-dim);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.disc-result .retake:hover { color: var(--ink); }

/* === ABOUT === */
.about {
  position: relative;
  padding: 110px 0;
  background: var(--bg);
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/sunset-mountains.webp");
  background-size: cover;
  background-position: center 70%;
  opacity: 0.18;
}
.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10, 8, 7, 0.6) 0%, transparent 50%, rgba(10, 8, 7, 0.6) 100%);
}
.about-inner { position: relative; z-index: 2; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.7);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo .frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 220, 180, 0.08);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 14px 0 24px;
}
.about-text h2 em { font-style: italic; color: var(--ember-bright); }
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-text .first-book {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ember-bright);
  font-size: 19px;
  margin: 4px 0 30px;
}

.checklist {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-strong);
}
.checklist-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ember-bright);
  margin-bottom: 22px;
}
.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.checklist .check {
  width: 22px;
  height: 22px;
  color: var(--ember-bright);
  margin-top: 1px;
}
.checklist li p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

/* === FINAL CTA — sunset mountains backdrop === */
.final-cta {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/sunset-mountains.webp");
  background-size: cover;
  background-position: center 60%;
}
.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(10, 8, 7, 0.55), rgba(10, 8, 7, 0.85)),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.final-cta h2 em { font-style: italic; color: var(--ember-bright); }
.final-cta p {
  font-size: 18px;
  color: var(--ink-mute);
  margin: 0 0 36px;
  line-height: 1.6;
  text-wrap: pretty;
}
.final-cta .capture {
  margin: 0 auto;
  align-items: center;
}
.final-cta .capture-row { width: 100%; max-width: 480px; }
.final-cta .capture-trust { justify-content: center; padding-left: 0; }

/* === FOOTER === */
.footer {
  padding: 56px 0 32px;
  background: #060403;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand .brand-name { font-size: 22px; }
.footer-brand .brand-tag { font-size: 12px; }
.footer-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ember-bright); }
.footer-base {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 10px;
}

/* === BUY SECTION === */
.buy-section {
  padding: 90px 0 100px;
  border-top: 1px solid var(--line);
}
.buy-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.buy-book img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.buy-text .eyebrow { margin-bottom: 12px; }
.buy-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.buy-text h2 em { font-style: italic; color: var(--ember-bright); }
.buy-text p {
  font-size: 17px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin: 0 0 32px;
}
.buy-btn { display: inline-flex; }

/* === FOOTER CONTACT === */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.footer-email {
  font-size: 15px;
  color: var(--ink-mute);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-email:hover { color: var(--ember-bright); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero { min-height: 660px; height: auto; max-height: none; padding: 70px 0 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { align-items: center; text-align: center; padding-left: 0; }
  .hero-eyebrow { align-items: center; }
  .h1 { align-items: center; }
  .title-rule { margin-left: auto; margin-right: auto; }
  .pillars-grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 28px; }
  .pillar:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 380px; }
  .checklist ul { grid-template-columns: 1fr; }
  .buy-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .buy-book { max-width: 300px; margin: 0 auto; }
  .buy-btn { margin: 0 auto; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 16px 22px; }
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; min-height: 600px; }
  .h1 { font-size: clamp(34px, 9vw, 48px); }
  .capture-row { flex-direction: column; border-radius: var(--radius); padding: 10px; }
  .btn-primary { justify-content: center; padding: 14px 22px; }
  .disc-card { padding: 28px 22px; }
  .disc-choices { flex-direction: column; }
  .disc-btn { max-width: none; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 18px; }

  /* Mobile: static hero — kill all animations and GPU-heavy layers */
  .glow, .ring, .embers, .wash { display: none !important; }
  .hero svg[aria-hidden="true"] { display: none !important; }
  .aura, .corona, .core, .rays, .streak,
  .ring--halo, .ring--rim, .ring--hotspot, .ring--filaments { animation: none !important; }
  .hero__img { object-position: 30% center; }
}
