/* =====================================================================
   ZERO BS COACHING · shared design system (v19, Sept 2026)
   Loaded by every page. Page-specific CSS lives inline on each page.
   Mobile breakpoint 960px, small phones 430px.
   ===================================================================== */

:root {
  --red: #D90000;
  --red-hot: #FF1A1A;
  --red-deep: #7A0000;
  --black: #050505;
  --ink: #0A0A0A;
  --card: #121212;
  --card-2: #171717;
  --raise: #1E1E1E;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --line-red: rgba(217,0,0,0.42);
  --white: #FFFFFF;
  --bone: #EDEBE6;
  --muted: #ADAAA4;
  --dim: #8A8781;
  --amber: #FFB800;
  --green: #2BDB7A;
  --display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --gutter: 24px;
  --section: clamp(72px, 9vw, 120px);
  --nav-h: 72px;
  /* legacy aliases so older inline styles keep working */
  --red-blood: #A00000;
  --red-dark: #5C0000;
  --oil: var(--ink);
  --oil-2: var(--card);
  --oil-3: var(--card-2);
  --concrete: rgba(255,255,255,0.08);
  --concrete-2: rgba(255,255,255,0.12);
  --concrete-3: rgba(255,255,255,0.16);
  --smoke: var(--dim);
  --smoke-2: var(--muted);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1100px) { body { font-size: 18px; } }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { color: var(--white); font-weight: 700; }
section { scroll-margin-top: calc(var(--nav-h) + 12px); }
:focus-visible { outline: 3px solid var(--red-hot); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.container.narrow { max-width: 780px; }
.container.mid { max-width: 960px; }
.prose { max-width: 62ch; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red-hot);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }
h1, h2, .display {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  line-height: 0.95; letter-spacing: 0.005em; color: var(--white);
}
h1 { font-size: clamp(46px, 7.5vw, 96px); line-height: 0.92; text-wrap: balance; }
h2 { font-size: clamp(38px, 5vw, 66px); text-wrap: balance; }
h1 .accent, h2 .accent { color: var(--red-hot); }
h3 { font-family: var(--body); font-weight: 800; font-size: 20px; line-height: 1.25; color: var(--white); letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); line-height: 1.6; max-width: 62ch; }
.lead strong { color: var(--bone); }
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head h2 { margin-bottom: 18px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .lead { margin-left: auto; margin-right: auto; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }
.micro { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.micro b { color: var(--muted); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 14px 28px; border-radius: var(--r-sm);
  font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer; border: 0;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #E81212 0%, #A80000 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 12px 32px -10px rgba(255,26,26,0.6);
}
.btn-primary::after { content: '→'; font-size: 18px; line-height: 1; transition: transform 0.25s var(--ease); }
.btn-primary:hover { transform: translateY(-2px); background: linear-gradient(180deg, #FF2E2E 0%, #C40000 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 18px 44px -10px rgba(255,26,26,0.75); }
.btn-primary:hover::after { transform: translateX(5px); }
.btn-primary:disabled { opacity: 0.55; cursor: default; transform: none; }
.btn-primary.no-arrow::after { content: none; }
.btn-ghost { color: var(--bone); background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--red); color: var(--white); background: rgba(217,0,0,0.08); transform: translateY(-2px); }
.btn-lg { min-height: 60px; padding: 18px 36px; font-size: 15px; }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; }
.textlink { color: var(--red-hot); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--card-2) 0%, var(--card) 100%);
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card-hover:hover { transform: translateY(-4px); border-color: var(--line-red); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 22px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(217,0,0,0.08); }
.card-pad { padding: 30px 28px; }
@media (max-width: 600px) { .card-pad { padding: 24px 20px; } }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.04);
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(43,219,122,0.18); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(43,219,122,0.18); } 50% { box-shadow: 0 0 0 8px rgba(43,219,122,0.06); } }

/* ---------- Chapters (section grounds) ---------- */
.section { padding: var(--section) 0; position: relative; }
.section.tight { padding: clamp(40px, 5vw, 64px) 0; }
.ground-charcoal { background: linear-gradient(180deg, var(--black) 0%, #111114 12%, #0F0F12 60%, var(--black) 100%); }
.ground-maroon {
  background:
    radial-gradient(70% 55% at 50% 10%, rgba(217,0,0,0.14), transparent 62%),
    linear-gradient(180deg, var(--black) 0%, #2A0608 20%, #250507 55%, #170304 82%, var(--black) 100%);
}
.hairline { border-top: 1px solid var(--line); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + clamp(48px, 7vw, 88px)) 0 clamp(40px, 5vw, 64px); text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 60% at 50% -10%, rgba(217,0,0,0.22), transparent 70%); }
.page-hero .container { z-index: 1; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { margin: 0 auto; }
.page-hero .pill { margin-top: 26px; }
.page-hero.left { text-align: left; }
.page-hero.left .eyebrow { justify-content: flex-start; }
.page-hero.left .lead { margin: 0; }

/* ---------- Sticky split (heading stays, list scrolls) ---------- */
.sticky-split { display: grid; grid-template-columns: minmax(280px, 0.85fr) 1.15fr; gap: clamp(32px, 5vw, 88px); align-items: start; }
.sticky-split .sticky-head { position: sticky; top: calc(var(--nav-h) + 28px); margin-bottom: 0; }
.sticky-split .faq { max-width: none; margin: 0; }
@media (max-width: 960px) { .sticky-split { grid-template-columns: 1fr; gap: 28px; } .sticky-split .sticky-head { position: static; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 500; padding: 10px 14px; border-radius: var(--r-sm); background: var(--red); color: var(--white); font-weight: 800; font-size: 14px; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 12px; outline: 3px solid var(--white); }

/* No-JS / script-blocked fallback: never hide content behind the reveal animation */
@media (scripting: none) { .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--red), var(--red-hot)); z-index: 400; pointer-events: none; }

/* ================================ NAV ================================ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300; height: var(--nav-h);
  background: rgba(5,5,5,0.72); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
nav.site-nav.scrolled { border-bottom-color: var(--line); background: rgba(5,5,5,0.88); }
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links a { color: var(--muted); text-decoration: none; padding: 6px 0; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { min-height: 44px; padding: 10px 20px; font-size: 12px; }
.nav-back { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-back:hover { color: var(--white); }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line-2); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--bone); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 290;
  background: rgba(5,5,5,0.97); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px;
}
.nav-menu.open { display: block; }
.nav-menu a { display: block; padding: 16px 4px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; color: var(--bone); border-bottom: 1px solid var(--line); }
.nav-menu a.btn { margin-top: 16px; border-bottom: 0; font-family: var(--body); letter-spacing: 0.06em; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-actions .nav-cta { display: none; }
}

/* ============================== PRICING ============================== */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.plan { position: relative; padding: 36px 32px 32px; display: flex; flex-direction: column; }
.plan--featured { border-color: var(--line-red); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 70px rgba(0,0,0,0.55), 0 0 70px -24px rgba(255,26,26,0.5); background: linear-gradient(180deg, rgba(217,0,0,0.08), rgba(0,0,0,0)), linear-gradient(180deg, var(--card-2), var(--card)); }
.plan-badge { position: absolute; top: -14px; left: 28px; padding: 6px 12px; border-radius: 999px; background: linear-gradient(180deg, #FF1A1A, #B30000); color: var(--white); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; box-shadow: 0 8px 22px -6px rgba(255,26,26,0.7); }
.plan-tag { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-hot); margin-bottom: 10px; }
.plan h3 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 3.2vw, 40px); line-height: 0.95; text-transform: uppercase; margin-bottom: 18px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-price .cur { font-family: var(--display); font-size: 26px; color: var(--muted); }
.plan-price .num { font-family: var(--display); font-size: clamp(56px, 6vw, 72px); line-height: 0.9; color: var(--white); }
.plan-price .per { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-left: 8px; }
.plan-price.poa .num { font-size: clamp(30px, 3.4vw, 40px); line-height: 1; }
.plan-note { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 6px; }
.plan-terms { font-size: 12px; color: var(--dim); line-height: 1.55; margin-bottom: 18px; }
.plan-quote { margin: 0 0 22px; padding: 14px 18px; border-left: 3px solid var(--red); background: rgba(255,255,255,0.03); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 15px; line-height: 1.6; color: var(--bone); font-style: italic; }
.plan-diff { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); padding-bottom: 10px; margin-bottom: 6px; border-bottom: 1px solid var(--line-red); }
.plan-list { list-style: none; margin-bottom: 26px; flex: 1; }
.plan-list li { position: relative; padding: 11px 0 11px 26px; font-size: 14.5px; line-height: 1.55; color: var(--muted); border-bottom: 1px solid var(--line); }
.plan-list li:last-child { border-bottom: 0; }
.plan-list li::before { content: '+'; position: absolute; left: 0; top: 9px; color: var(--red-hot); font-weight: 800; font-size: 18px; line-height: 1; }
.plan-list li strong { color: var(--bone); }
.plan-foot { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.plan-foot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } .plan { padding: 30px 24px 26px; } }

.incl { margin-top: 24px; padding: 32px 30px 26px; background: linear-gradient(180deg, rgba(217,0,0,0.05), rgba(0,0,0,0)), linear-gradient(180deg, var(--card-2), var(--card)); }
.incl-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.incl-head h3 { font-family: var(--display); font-weight: 400; font-size: 28px; text-transform: uppercase; }
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 36px; list-style: none; }
.incl-grid li { position: relative; padding: 10px 0 10px 26px; font-size: 14.5px; line-height: 1.55; color: var(--muted); border-bottom: 1px solid var(--line); }
.incl-grid li::before { content: '+'; position: absolute; left: 0; top: 8px; color: var(--red-hot); font-weight: 800; font-size: 18px; line-height: 1; }
.incl-grid li strong { color: var(--bone); }
.incl-grid li.hub { color: var(--bone); }
.incl-grid li.hub strong { color: var(--white); }
@media (max-width: 760px) { .incl { padding: 26px 20px 20px; } .incl-grid { grid-template-columns: 1fr; } }
.incl-plain { background: none; border: 0; border-top: 1px solid var(--line); border-radius: 0; box-shadow: none; padding: 34px 0 0; margin-top: 40px; }
@media (max-width: 760px) { .incl-plain { padding: 26px 0 0; } }
.fine { text-align: center; margin-top: 32px; }
.fine .mono { display: block; margin-bottom: 10px; }
.fine p { font-size: 13px; color: var(--dim); max-width: 60ch; margin: 0 auto; line-height: 1.6; }

/* ============================= GUARANTEE ============================= */
.guarantee {
  position: relative; overflow: hidden;
  background:
    radial-gradient(55% 90% at 88% 10%, rgba(255,26,26,0.22), transparent 58%),
    linear-gradient(180deg, var(--black) 0%, #5A0000 16%, #4A0000 52%, #2E0000 84%, var(--black) 100%);
}
.guarantee::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px); background-size: 14px 14px; opacity: 0.25; -webkit-mask-image: linear-gradient(90deg, #000, transparent 40%); mask-image: linear-gradient(90deg, #000, transparent 40%); }
.guarantee .container { z-index: 1; }
.guarantee-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.guarantee .eyebrow { color: rgba(255,255,255,0.8); }
.guarantee .eyebrow::before { background: var(--white); }
.guarantee h2 { font-size: clamp(44px, 6.4vw, 88px); color: var(--white); }
.guarantee h2 .accent { display: inline-block; color: var(--white); background: var(--black); padding: 0.02em 0.14em 0.04em; border-radius: 6px; transform: skew(-5deg) rotate(-1.2deg); box-shadow: 0 16px 40px -10px rgba(0,0,0,0.6); }
.guarantee p { font-size: clamp(17px, 1.6vw, 19px); color: rgba(255,255,255,0.88); line-height: 1.65; }
.guarantee p + p { margin-top: 16px; }
.guarantee p strong { color: var(--white); }
.guarantee-terms { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.guarantee-terms span { padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.28); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); }
.guarantee small { display: block; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.6); }
@media (max-width: 860px) { .guarantee-grid { grid-template-columns: 1fr; } }

/* =============================== STEPS =============================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { padding: 30px 26px; position: relative; overflow: hidden; }
.step-card .n { font-family: var(--display); font-size: 54px; line-height: 1; color: var(--red-hot); margin-bottom: 18px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.step-card .t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-top: 14px; }
.steps.stack { grid-template-columns: 1fr; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ================================ FAQ ================================ */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-md); background: linear-gradient(180deg, var(--card-2), var(--card)); transition: border-color 0.25s; }
.faq details[open], .faq details:hover { border-color: var(--line-red); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; font-weight: 700; font-size: clamp(16px, 1.6vw, 18px); color: var(--white); line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--red-hot); font-size: 20px; line-height: 1; transition: transform 0.3s var(--ease), background 0.2s; }
.faq details[open] summary .ic { transform: rotate(45deg); background: rgba(217,0,0,0.12); }
.faq .a { padding: 0 24px 24px; font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 70ch; }
.faq .a strong { color: var(--bone); }

/* ============================= BAND (callout) ============================= */
.band { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 28px 32px; border-left: 4px solid var(--red); }
.band .t { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 3vw, 32px); text-transform: uppercase; line-height: 1.05; color: var(--white); margin: 6px 0 8px; }
.band p { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 56ch; }
@media (max-width: 760px) { .band { flex-direction: column; align-items: stretch; padding: 24px 20px; } .band .btn { width: 100%; } }

/* ============================= FINAL CTA ============================= */
.final { position: relative; overflow: hidden; text-align: center; padding: clamp(88px, 11vw, 150px) 0; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 80% at 50% 110%, rgba(217,0,0,0.28), transparent 62%); }
.final .container { z-index: 1; }
.final .eyebrow { justify-content: center; }
.final h2 { font-size: clamp(46px, 7vw, 100px); margin-bottom: 24px; }
.final .lead { margin: 0 auto 14px; max-width: 58ch; }
.final .punch { font-family: var(--display); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.15; text-transform: uppercase; color: var(--white); max-width: 26ch; margin: 22px auto 34px; }
.final .punch .accent { color: var(--red-hot); }
.final .alt { margin-top: 18px; font-size: 14px; color: var(--muted); }
.final .alt a { color: var(--red-hot); }
.final .micro { margin-top: 18px; }

/* =============================== FOOTER =============================== */
footer.site-footer { border-top: 1px solid var(--line); padding: 48px 0 36px; background: var(--ink); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-links a { display: inline-block; padding: 8px 2px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: var(--dim); line-height: 1.7; }
.footer-copy a { color: var(--bone); text-decoration: none; }

/* ============================= PERK BAND ============================= */
.perk { border-top: 1px solid var(--line-red); border-bottom: 1px solid var(--line-red); background: rgba(217,0,0,0.04); padding: 40px 0; }
.perk-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.perk .t { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; line-height: 1.05; color: var(--white); margin: 6px 0 8px; }
.perk p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 48ch; }
.perk-code { display: inline-block; font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; color: var(--white); border: 1px dashed var(--red); border-radius: 6px; padding: 4px 10px; margin: 0 2px; }
@media (max-width: 760px) { .perk-inner { flex-direction: column; align-items: stretch; } .perk .btn { width: 100%; } }

/* ============================= STICKY CTA ============================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 280;
  background: rgba(5,5,5,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-red); box-shadow: 0 -10px 40px rgba(0,0,0,0.45);
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-inner { max-width: 1320px; margin: 0 auto; padding: 12px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.sticky-text strong { display: block; font-family: var(--display); font-weight: 400; font-size: 18px; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.sticky-text span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.sticky-cta .btn { min-height: 46px; padding: 10px 22px; font-size: 12px; }
@media (max-width: 640px) { .sticky-text span { display: none; } .sticky-text strong { font-size: 15px; } }
body.has-sticky { padding-bottom: 72px; }

/* ============================= Forms (shared) ============================= */
.f-label { display: block; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.f-input {
  width: 100%; background: var(--black); border: 1px solid var(--line-2); border-radius: var(--r-sm); color: var(--white);
  font-family: var(--body); font-size: 16px; font-weight: 500; padding: 14px 16px; appearance: none; -moz-appearance: textfield;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input::placeholder { color: var(--dim); }
.f-input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(217,0,0,0.18); }
.f-input::-webkit-outer-spin-button, .f-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ========================= Motion preferences ========================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
