/* =====================================================================
   HYDE PERFORMANCE COACHING — styles
   Direction: dark editorial / magazine cover. Charcoal ink, bone paper,
   one blood-red accent. Condensed heavyweight display type, serif italic
   for the "deck", clean grotesk for body.
   ===================================================================== */

:root {
  --ink:        #0b0b0c;     /* page black */
  --ink-2:      #121214;     /* raised panel */
  --ink-3:      #1a1a1d;     /* card */
  --line:       #2a2a2e;
  --line-soft:  rgba(255,255,255,.08);
  --bone:       #f1ede4;     /* headline white, slightly warm like newsprint */
  --bone-dim:   #b9b4aa;
  --muted:      #7d7873;
  --red:        #c8102e;
  --red-deep:   #8f0a20;
  --red-glow:   rgba(200,16,46,.35);

  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --serif:   "Instrument Serif", Georgia, serif;
  --body:    "Archivo", "Helvetica Neue", Helvetica, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 999;
  background: var(--red); color: #fff; padding: 8px 14px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.center { text-align: center; }
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.red { color: var(--red); }

/* ---------- Type ---------- */
.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.h2--center { text-align: center; }
.lede { color: var(--bone-dim); font-size: 17px; max-width: 46ch; margin-top: 22px; }
.kicker, .cover__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.kicker-rule { width: 34px; height: 2px; background: var(--red); display: inline-block; }
.rule { display: block; width: 64px; height: 3px; background: var(--line); margin-bottom: 26px; }
.rule--red { background: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease-out), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -12px var(--red-glow); }
.btn--red:hover { background: #dc1433; box-shadow: 0 16px 40px -12px var(--red-glow); }
.btn--outline { border-color: var(--red); color: var(--bone); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--ghost { border-color: rgba(241,237,228,.35); color: var(--bone); }
.btn--ghost:hover { border-color: var(--bone); }
.btn--xl { padding: 20px 40px; font-size: 22px; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(11,11,12,.86); backdrop-filter: blur(12px); border-color: var(--line-soft); }
.nav__inner {
  width: min(1400px, 100% - var(--gutter) * 2); margin-inline: auto;
  height: 76px; display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__word { font-family: var(--display); font-weight: 900; font-size: 34px; letter-spacing: .04em; color: var(--bone); }
.brand__sub { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--bone-dim); margin-top: 3px; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-dim); position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--red);
  transition: right .3s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--bone); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__cta { padding: 11px 20px; font-size: 15px; }
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; margin-left: auto; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--bone); margin: 0 auto; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================================
   HERO — THE COVER
   Layering (back → front):
     masthead "HYDE" (z1) → photo (z2) → story, teasers, spine, barcode (z3)
   The figure overlapping the masthead is the classic newsstand trick.
   ===================================================================== */
.cover {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding-top: 76px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 50% at 78% 45%, rgba(200,16,46,.10), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, #000 0%, transparent 70%),
    var(--ink);
}
.cover__grain {
  position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* masthead */
.cover__mastrow {
  position: relative; z-index: 3;
  width: min(1400px, 100% - var(--gutter) * 2); margin: 18px auto 0;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--bone-dim);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 8px 0;
}
.cover__masthead {
  position: relative; z-index: 1;
  margin: 0; text-align: center;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(150px, 27vw, 400px);
  line-height: .78;
  letter-spacing: -.005em;
  color: var(--bone);
  user-select: none;
  padding-top: clamp(8px, 1.5vw, 24px);
  padding-right: 10vw; /* nudge the word left so the figure overlaps only the edge of the E */
}
.cover__masthead-text {
  display: inline-block;
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone) 55%, rgba(241,237,228,.55) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: mastIn 1.1s var(--ease-out) both;
}

/* photo — a cut-out figure so it can overlap the masthead like a newsstand cover */
.cover__photo {
  position: absolute; z-index: 2;
  right: clamp(0px, 3vw, 60px);
  bottom: 0;
  width: clamp(360px, 42vw, 680px);
  margin: 0;
  animation: photoIn 1.4s var(--ease-out) both;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.7));
}
.cover__photo::before {
  /* red rim glow behind the figure */
  content: ""; position: absolute; inset: 10% -10% 0 -10%; z-index: -1;
  background: radial-gradient(ellipse 50% 60% at 50% 55%, rgba(200,16,46,.22), transparent 70%);
  filter: blur(30px);
}
.cover__photo img {
  width: 100%; height: auto;
  filter: contrast(1.15) brightness(.95);
}
.cover__photo-fallback { display: none; }
.cover__photo.is-missing img { display: none; }
.cover__photo.is-missing .cover__photo-fallback {
  display: block; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 55% at 55% 45%, rgba(241,237,228,.14), transparent 70%),
    radial-gradient(ellipse 60% 40% at 55% 80%, rgba(200,16,46,.18), transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%);
  mask-image: linear-gradient(90deg, transparent, #000 25%);
}

/* spine */
.cover__spine {
  position: absolute; z-index: 3; left: calc(var(--gutter) - 6px); top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}

/* the story */
.cover__story {
  position: relative; z-index: 3;
  width: min(1400px, 100% - var(--gutter) * 2); margin-inline: auto;
  margin-top: clamp(-40px, -3vw, -8px);
  padding-left: clamp(28px, 3vw, 48px);
  max-width: 100%;
}
.cover__kicker { animation: fadeUp .8s .35s var(--ease-out) both; }
.cover__headline {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: .9; letter-spacing: .005em;
  margin-top: 18px;
  display: grid; gap: .02em;
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.cover__headline .line { display: block; animation: fadeUp .9s var(--ease-out) both; }
.cover__headline .line--1 { animation-delay: .45s; }
.cover__headline .line--2 { animation-delay: .58s; }
.cover__headline .line--3 { animation-delay: .71s; }
.cover__headline em { font-style: normal; color: var(--red); }
.cover__deck {
  margin-top: 26px; max-width: 42ch;
  font-family: var(--serif); font-size: clamp(20px, 1.7vw, 26px); line-height: 1.3;
  color: var(--bone-dim);
  animation: fadeUp .9s .85s var(--ease-out) both;
}
.cover__deck em { color: var(--bone); }
.cover__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; animation: fadeUp .9s 1s var(--ease-out) both; }

/* teasers */
.cover__teasers {
  position: absolute; z-index: 3;
  right: var(--gutter); top: 50%; transform: translateY(-30%);
  display: grid; gap: 10px; width: 232px;
  animation: fadeUp 1s 1.1s var(--ease-out) both;
}
.teaser {
  display: grid; gap: 4px; padding: 14px 16px;
  background: rgba(11,11,12,.62); backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft); border-left: 3px solid var(--red);
  transition: background .25s, transform .25s var(--ease-out);
}
.teaser:hover { background: rgba(26,26,29,.9); transform: translateX(-4px); }
.teaser__num { font-family: var(--display); font-weight: 800; font-size: 34px; line-height: 1; letter-spacing: .02em; }
.teaser__num i { font-style: normal; color: var(--red); margin: 0 6px; font-size: 26px; vertical-align: 3px; }
.teaser__label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-dim); }
.teaser__title { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.2; color: var(--bone); }
.teaser--text .teaser__label { color: var(--red); }

/* barcode corner */
.cover__barcode {
  position: absolute; z-index: 3; right: var(--gutter); bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.barcode {
  width: 92px; height: 34px;
  background: repeating-linear-gradient(90deg, var(--bone-dim) 0 2px, transparent 2px 4px, var(--bone-dim) 4px 5px, transparent 5px 8px, var(--bone-dim) 8px 11px, transparent 11px 13px);
  opacity: .7;
}

/* scroll cue */
.cover__scroll { position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%); width: 24px; height: 40px; border: 1.5px solid var(--muted); border-radius: 12px; }
.cover__scroll span { position: absolute; left: 50%; top: 7px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--red); animation: scrollDot 1.8s infinite; }

@keyframes mastIn { from { opacity: 0; transform: translateY(-3%) scaleY(1.06); letter-spacing: .06em; } to { opacity: 1; transform: none; letter-spacing: -.005em; } }
@keyframes photoIn { from { opacity: 0; transform: translateY(24px) scale(1.02); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* =====================================================================
   SYSTEM
   ===================================================================== */
.system { background: var(--ink-2); border-top: 1px solid var(--line-soft); }
.system__grid { display: grid; grid-template-columns: minmax(280px, 1fr) 2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--ink-2); padding: 34px 30px 36px; transition: background .3s; position: relative; overflow: hidden; }
.pillar::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--red); transition: height .4s var(--ease-out); }
.pillar:hover { background: var(--ink-3); }
.pillar:hover::before { height: 100%; }
.pillar__icon { width: 44px; height: 44px; fill: var(--red); margin-bottom: 20px; }
.pillar h3 { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: .06em; text-transform: uppercase; }
.pillar p { color: var(--bone-dim); margin-top: 10px; font-size: 15px; }

/* =====================================================================
   RESULTS
   ===================================================================== */
.results { background: var(--ink); }
.section-head { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 48px; }
.section-head .rule { margin: 0; flex: 0 0 64px; }
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  --edge: max(var(--gutter), calc((100vw - var(--wrap)) / 2));
  padding: 8px var(--edge) 24px;
  scroll-padding-inline: var(--edge);
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.result {
  flex: 0 0 min(300px, 78vw); scroll-snap-align: start;
  background: var(--ink-3); border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), border-color .3s;
}
.result:hover { transform: translateY(-4px); border-color: #3a3a40; }
.result__pair { position: relative; display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 5/4; background: #000; }
.result__sample { position: absolute; left: 8px; bottom: 8px; padding: 3px 7px; background: rgba(11,11,12,.75); color: var(--bone-dim); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; border: 1px solid var(--line-soft); }
.result__ph img + .result__ph::after, .result__ph:has(img)::after { display: none; }
.result__ph { overflow: hidden; }
.result__ph img { position: absolute; inset: 0; }
.result__pair img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) contrast(1.05); }
.result__ph { position: relative; display: grid; place-items: center; background: linear-gradient(160deg, #1f1f23, #0e0e10); border-right: 1px solid var(--line); }
.result__ph:last-child { border-right: 0; }
.result__ph::after { content: attr(data-label); font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .3em; color: var(--muted); }
.result__body { padding: 20px 20px 22px; text-align: center; }
.result__stat { font-family: var(--display); font-weight: 800; font-size: 32px; letter-spacing: .03em; line-height: 1; }
.result__stat i { font-style: normal; color: var(--red); margin: 0 8px; font-size: 24px; vertical-align: 2px; }
.result__meta { margin-top: 8px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-dim); }
.result__meta b { color: var(--muted); margin: 0 8px; font-weight: 400; }
.result__stars { color: var(--red); margin-top: 10px; letter-spacing: .1em; font-size: 14px; }
.result__quote { margin-top: 12px; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--bone-dim); }
.carousel__btn {
  position: absolute; top: 40%; z-index: 2; width: 48px; height: 48px;
  display: grid; place-items: center; font-size: 34px; line-height: 1;
  color: var(--bone); background: rgba(11,11,12,.7); border: 1px solid var(--line);
  transition: background .25s, border-color .25s;
}
.carousel__btn:hover { background: var(--red); border-color: var(--red); }
.carousel__btn--prev { left: max(8px, calc((100vw - var(--wrap)) / 2 - 64px)); }
.carousel__btn--next { right: max(8px, calc((100vw - var(--wrap)) / 2 - 64px)); }
.results .center { margin-top: 28px; }

/* =====================================================================
   WHO
   ===================================================================== */
.who { background: var(--ink-2); overflow: hidden; }
.who__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.who__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 30%; opacity: .28; filter: grayscale(1) contrast(1.1); -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 75%); mask-image: linear-gradient(90deg, transparent 30%, #000 75%); }
.who__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(280px, 1fr) 1.3fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.checks li { position: relative; padding-left: 34px; font-size: 16px; color: var(--bone); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--red);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5 10.5l3.2 3L15 6.8' fill='none' stroke='%23c8102e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}
.who__punch { margin-top: 40px; font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; letter-spacing: .03em; text-transform: uppercase; }
.underline-red { box-shadow: inset 0 -3px 0 var(--red); }

/* =====================================================================
   INCLUDES
   ===================================================================== */
.includes { background: var(--ink); }
.includes__grid { display: grid; grid-template-columns: minmax(280px, 1fr) 2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.includes__intro .btn { margin-top: 30px; }
.includes__list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.includes__list li {
  display: flex; align-items: baseline; gap: 18px; padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: .05em; text-transform: uppercase;
  transition: padding-left .3s var(--ease-out), color .3s;
}
.includes__list li:nth-child(odd) { padding-right: 32px; }
.includes__list li:hover { padding-left: 10px; }
.includes__list li b { color: var(--red); font-size: 14px; letter-spacing: .1em; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: var(--ink-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.about__photo { position: relative; aspect-ratio: 4/5; background: var(--ink-3); border: 1px solid var(--line); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); }
.about__photo.is-missing img { display: none; }
.about__photo.is-missing::before { content: "COACH PHOTO"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); letter-spacing: .3em; color: var(--muted); }
.about__photo figcaption {
  position: absolute; left: -1px; bottom: 28px; padding: 12px 18px; background: var(--red); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .14em; text-transform: uppercase;
}
.about__body p { color: var(--bone-dim); font-size: 17px; margin-top: 18px; }
.about__body .h2 { margin-top: 18px; }
.pull { margin-top: 32px; padding: 26px 28px; border-left: 3px solid var(--red); background: rgba(200,16,46,.06); }
.pull p { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.6vw, 24px); line-height: 1.35; color: var(--bone); margin: 0; }
.pull cite { display: block; margin-top: 12px; font-style: normal; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--red); }

/* coach's own before/after */
.proof { margin-top: clamp(56px, 7vw, 96px); border: 1px solid var(--line); background: var(--ink-3); }
.proof img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.proof figcaption { display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: baseline; padding: 18px 24px; border-top: 1px solid var(--line); }
.proof__kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.proof__title { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: .05em; text-transform: uppercase; }
.proof__title i { font-style: normal; color: var(--red); margin: 0 6px; }

/* =====================================================================
   METHOD
   ===================================================================== */
.method { background: var(--ink); border-top: 1px solid var(--line-soft); }
.method__grid { display: grid; grid-template-columns: minmax(200px, .8fr) 3fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.method__title .h2 sup { font-size: .3em; vertical-align: top; color: var(--bone-dim); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); counter-reset: step; }
.step { position: relative; padding: 0 22px 0 0; }
.step + .step { padding-left: 22px; border-left: 1px solid var(--line); }
.step b { display: block; font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--red); line-height: 1; }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: .06em; text-transform: uppercase; margin-top: 12px; }
.step p { color: var(--bone-dim); font-size: 14px; margin-top: 8px; }
.step::after { content: "→"; position: absolute; right: -8px; top: 8px; color: var(--muted); font-size: 18px; }
.step:last-child::after { display: none; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final { position: relative; overflow: hidden; padding-block: clamp(90px, 12vw, 160px); background: #000; text-align: center; }
.final__bg { position: absolute; inset: 0; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: grayscale(1) contrast(1.15); }
.final__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,0,0,.2), rgba(0,0,0,.85)); }
.final .wrap { position: relative; z-index: 1; }
.final__h { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(32px, 4.2vw, 58px); line-height: .95; letter-spacing: .01em; margin: 0 auto 40px; max-width: 26ch; text-wrap: balance; }
.final__note { margin-top: 20px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__tag { margin-top: 14px; color: var(--muted); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.footer__links, .footer__contact { display: grid; gap: 10px; }
.footer__links a, .footer__contact a { color: var(--bone-dim); font-size: 14px; }
.footer__links a:hover, .footer__contact a:hover { color: var(--bone); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 48px; padding: 20px 0 28px; border-top: 1px solid var(--line-soft); font-size: 12px; color: var(--muted); }

/* =====================================================================
   REVEAL ON SCROLL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.pillars .reveal:nth-child(2), .includes__list .reveal:nth-child(even), .steps .reveal:nth-child(2) { transition-delay: .1s; }
.pillars .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .2s; }
.pillars .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .3s; }
.steps .reveal:nth-child(5) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .cover__teasers { display: none; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .step:nth-child(4) { border-left: 0; padding-left: 0; }
  .step::after { display: none; }
}
@media (max-width: 900px) {
  .nav__links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0; background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 8px 0 16px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 14px var(--gutter); font-size: 20px; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-scrolled, .nav.is-open { background: rgba(11,11,12,.96); }

  .cover { min-height: auto; padding-bottom: 72px; }
  .cover__masthead { font-size: clamp(96px, 27vw, 240px); }
  .cover__photo { right: -10vw; width: 64vw; top: 96px; bottom: auto; opacity: .5; filter: none; }
  .cover__photo::before { display: none; }
  .cover__spine, .cover__barcode, .cover__scroll { display: none; }
  .cover__story { margin-top: 24px; padding-left: 0; }
  .cover__headline { font-size: clamp(32px, 8.6vw, 72px); }
  .cover__deck { font-size: 19px; }

  .system__grid, .who__grid, .includes__grid, .about__grid, .method__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 460px; }
  .method__title .h2 br { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pillars, .checks, .includes__list { grid-template-columns: 1fr; }
  .includes__list li:nth-child(odd) { padding-right: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step, .step + .step { padding: 0; border-left: 0; }
  .cover__mastrow .cover__meta--r { display: none; }
  .section-head { gap: 16px; }
  .section-head .rule { flex-basis: 28px; }
  .h2--center { font-size: clamp(34px, 9.5vw, 48px); }
  .btn { width: 100%; }
  .cover__actions { flex-direction: column; }
  .nav__inner { height: 68px; }
  .cover { padding-top: 68px; }
  .nav__links { inset-block-start: 68px; }
  .h2 { font-size: clamp(36px, 11vw, 48px); }
}

.result__stat small { font-size: 14px; letter-spacing: .2em; color: var(--bone-dim); margin-left: 4px; vertical-align: 6px; }
