/* ==========================================================================
   WhiteBoxForge — site-v2.css
   Homepage v2 design system. STANDALONE — the homepage links ONLY this file.
   Direction: minimalist monochrome, hairline rules, mono "system voice"
   labels, one burnt-orange signal accent. Calm, expensive motion.
   --------------------------------------------------------------------------
   1 Tokens · 2 Reset/base · 3 A11y · 4 Type/layout · 5 Buttons · 6 Nav
   7 Hero · 8 Trust · 9 Industries · 10 Sections · 11 Services · 12 Process
   13 Work · 14 Audit panel · 15 About · 16 FAQ · 17 CTA banner · 18 Footer
   19 Motion hooks · 20 Reduced motion
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  /* palette — monochrome stack + one signal accent (never a theme color) */
  --bg:        #000;
  --bg-2:      #060606;
  --bg-3:      #0a0a0a;
  --fg:        #fff;      /* 21:1    */
  --fg-2:      #d8d8d8;   /* 14.7:1  */
  --muted:     #a8a8a8;   /* 8.8:1 — WCAG AA floor for body text */
  --muted-dim: #8a8a8a;   /* 6.1:1 — large mono labels only */
  --line:      #181818;
  --line-2:    #242424;
  --accent:    #D84315;   /* burnt orange — "new / signal" marker ONLY */

  /* layout */
  --max:     1240px;
  --gutter:  clamp(20px, 4.5vw, 28px);
  --section: clamp(96px, 11vw, 150px);
  --nav-h:   76px;        /* mobile-nav.js drawer is pinned at top:76px */

  /* type */
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Monaco, "Roboto Mono", monospace;
  --fs-h1:   clamp(42px, 6.5vw, 88px);
  --fs-h2:   clamp(32px, 4.4vw, 54px);
  --fs-lead: clamp(16px, 1.5vw, 19px);

  /* motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --fast: .18s;
  --mid:  .35s;
}

/* 2. RESET + BASE ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }

html { scroll-behavior: smooth }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* grain / scanline overlay — part of the terminal aesthetic */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none }
img, object { display: block; max-width: 100% }
::selection { background: var(--fg); color: var(--bg) }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) }
.mono { font-family: var(--mono) }

section[id], header[id] { scroll-margin-top: calc(var(--nav-h) + 16px) }

/* 3. A11Y PRIMITIVES --------------------------------------------------------- */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px }
.faq-item .faq-q:focus-visible, .faq-item h4:focus-visible { outline-offset: 4px }

.skip-link {
  position: absolute; top: -48px; left: 16px; z-index: 200;
  background: var(--fg); color: var(--bg);
  padding: 10px 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: top var(--fast);
}
.skip-link:focus { top: 16px }

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

/* scroll progress hairline — driven by Motion; invisible without JS */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--fg);
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 140; pointer-events: none;
}
html:not(.js) .progress { display: none }

/* 4. TYPE + SHARED LAYOUT ----------------------------------------------------- */
h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  max-width: 800px;
}
h2 .dim { color: var(--muted); font-weight: 600 }

.lead {
  color: var(--muted);
  margin-top: 22px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--fg); flex-shrink: 0 }

.section-head { max-width: 800px }
.lead-sub { margin-top: 12px; font-size: 15px }

/* the one accent treatment outside the WhiteBox Live card */
.accent-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity var(--fast);
}
.accent-link:hover { opacity: .75 }

/* 5. BUTTONS ------------------------------------------------------------------ */
.btn {
  padding: 16px 28px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: background var(--fast) ease, color var(--fast) ease,
              border-color var(--fast) ease, transform var(--fast) ease;
}
.btn:hover  { transform: translateY(-1px) }
.btn:active { transform: translateY(0) scale(.985) }
.btn.primary { background: var(--fg); color: var(--bg); border-color: var(--fg) }
.btn.primary:hover { background: var(--bg); color: var(--fg) }
.btn.ghost { border-color: var(--line-2); color: var(--fg-2) }
.btn.ghost:hover { border-color: var(--fg); color: var(--fg); background: var(--bg-2) }
.btn.btn-lg { font-size: 14px; padding: 19px 38px }

/* 6. NAV ------------------------------------------------------------------------ */
nav.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(0,0,0,.8);
  border-bottom: 1px solid var(--line);
}
nav.top .row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 28px;
}
nav.top .logo { display: flex; align-items: center }
nav.top .logo object, nav.top .logo img { height: 34px; width: auto; pointer-events: none }
nav.top .links {
  display: flex; gap: 30px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
nav.top .links a { position: relative; padding: 4px 0; transition: color var(--fast) }
nav.top .links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--fg);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .25s var(--ease);
}
nav.top .links a:hover { color: var(--fg) }
nav.top .links a:hover::after { transform: scaleX(1) }
nav.top .right { display: flex; align-items: center; gap: 18px }
nav.top .contact-stack {
  display: flex; flex-direction: column; gap: 3px;
  align-items: flex-end; line-height: 1.2;
}
nav.top .phone {
  color: var(--fg-2); font-family: var(--mono); font-size: 12px;
  letter-spacing: 1.5px; transition: color var(--fast);
}
nav.top .phone:hover { color: var(--fg) }
nav.top .email {
  color: var(--muted); font-family: var(--mono); font-size: 10px;
  letter-spacing: 1px; transition: color var(--fast);
}
nav.top .email:hover { color: var(--fg) }
nav.top .cta {
  background: var(--fg); color: var(--bg);
  padding: 12px 20px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--fg);
  white-space: nowrap;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}
nav.top .cta:hover { background: var(--bg); color: var(--fg); transform: translateY(-1px) }
nav.top .cta:active { transform: translateY(0) scale(.985) }
@media (max-width: 900px) {
  nav.top .links, nav.top .contact-stack, nav.top .phone { display: none }
}
@media (max-width: 480px) {
  nav.top .cta { padding: 10px 14px; font-size: 10px; letter-spacing: 1.5px }
}

/* 7. HERO ------------------------------------------------------------------------ */
.hero {
  padding: clamp(72px, 9vw, 124px) 0 clamp(64px, 8vw, 110px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
}
.hero .meta-row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  padding-bottom: 24px; margin-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.hero .meta-row .live::before {
  content: "●"; color: var(--fg); margin-right: 8px;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }

.hero .grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}
.hero h1 span { display: block; color: var(--fg-2); font-weight: 600 }
.hero p.lead { margin-top: 0; font-size: var(--fs-lead); color: var(--fg-2); max-width: 540px }
.hero .actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap }
.hero .visual { display: flex; justify-content: center; align-items: center }
.hero .visual object { width: 100%; max-width: 460px; height: auto }
@media (max-width: 900px) {
  .hero .grid { grid-template-columns: 1fr; gap: 36px }
  .hero .visual { order: -1; max-width: 280px; margin: 0 auto }
}

/* 8. TRUST STRIP ------------------------------------------------------------------ */
.trust {
  padding: 26px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust .row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px 28px;
}
.trust .item {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--fg-2); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.trust .item strong { color: var(--fg); font-weight: 700 }
.trust .item::before {
  content: ""; width: 7px; height: 7px;
  border: 1px solid var(--fg); flex-shrink: 0;
}
@media (max-width: 700px) {
  .trust .row { flex-direction: column; align-items: flex-start; gap: 14px }
}

/* 9. INDUSTRIES -------------------------------------------------------------------- */
.industries { padding: clamp(72px, 9vw, 104px) 0; border-bottom: 1px solid var(--line) }
.industries h2 {
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 700;
  letter-spacing: -.01em; text-align: center;
  max-width: none; margin-bottom: 10px;
}
.industries .sub {
  color: var(--muted-dim); text-align: center; margin-bottom: 48px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.industries .grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.industries .ind {
  background: var(--bg); padding: 32px 16px; text-align: center;
  display: block; cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
}
.industries .ind:hover, .industries .ind:focus-visible { background: var(--bg-3); transform: translateY(-2px) }
.industries .ind .icn { display: flex; justify-content: center; align-items: center; margin-bottom: 14px }
.industries .ind .icn object, .industries .ind .icn svg { width: 42px; height: 42px; color: var(--fg) }
.industries .ind .name { font-size: 13.5px; font-weight: 600; letter-spacing: -.005em; transition: color var(--fast) }
.industries .ind:hover .name { color: var(--fg) }
.industries .ind .city {
  font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px;
  color: var(--muted); margin-top: 7px; text-transform: uppercase;
}
@media (max-width: 960px) { .industries .grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 560px) { .industries .grid { grid-template-columns: 1fr } }

/* 10. SECTIONS ---------------------------------------------------------------------- */
section { padding: var(--section) 0; border-top: 1px solid var(--line); position: relative }
section.industries { border-top: none }

/* 11. SERVICES ---------------------------------------------------------------------- */
.services-grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.service {
  background: var(--bg); padding: clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column; position: relative;
  transition: background .3s ease;
}
.service:hover { background: var(--bg-3) }
.service .meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--muted-dim); margin-bottom: 24px; text-transform: uppercase;
}
.service .icon { width: 52px; height: 52px; margin-bottom: 26px }
.service h3 { font-size: 22px; font-weight: 700; letter-spacing: -.01em }
.service p { color: var(--muted); margin-top: 12px; font-size: 14.5px; line-height: 1.65; flex: 1 }
.service .price {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--fg);
}
.service .more {
  margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--fg-2); text-transform: uppercase; transition: color var(--fast);
}
.service .more::after { content: "→"; display: inline-block; margin-left: 7px; transition: transform .25s var(--ease) }
.service:hover .more { color: var(--fg) }
.service:hover .more::after { transform: translateX(5px) }

/* WhiteBox Live — the single accent-marked offer */
.service.live { grid-column: 1 / -1; border: 1px solid var(--accent) }
.service.live .meta, .service.live .price, .service.live .new { color: var(--accent) }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr } }

/* 12. PROCESS ----------------------------------------------------------------------- */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-top: clamp(48px, 6vw, 72px);
  counter-reset: step;
}
.step { position: relative; padding-top: 48px; border-top: 1px solid var(--line-2) }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 16px; left: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: var(--fg);
  padding: 4px 8px; border: 1px solid var(--line-2);
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px }
.step p { color: var(--muted); font-size: 14px; line-height: 1.65 }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr } }

/* 13. WORK -------------------------------------------------------------------------- */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: clamp(44px, 5vw, 64px);
}
.work-card { background: var(--bg); padding: 36px 32px; transition: background .3s ease; display: flex; flex-direction: column }
.work-card:hover { background: var(--bg-3) }
.work-card .industry {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--muted-dim); text-transform: uppercase; margin-bottom: 16px;
}
.work-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 12px }
.work-card p { color: var(--muted); font-size: 14px; line-height: 1.65; flex: 1 }
.work-card .metric {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: var(--fg);
}
.work-more { margin-top: 40px; text-align: center }
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr } }

/* 14. AUDIT PANEL (open offer) -------------------------------------------------------- */
.panel {
  margin-top: clamp(44px, 5vw, 64px);
  border: 1px solid var(--line-2); background: var(--bg-2);
  position: relative; overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--fg) 50%, transparent);
}
.panel-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--muted-dim); text-transform: uppercase;
}
.panel-head .ok { color: var(--fg); font-weight: 400 }
.panel-head .panel-link {
  color: var(--muted);
  border-bottom: 1px solid var(--muted); padding-bottom: 1px;
  transition: color var(--fast), border-color var(--fast);
}
.panel-head .panel-link:hover { color: var(--fg); border-color: var(--fg) }
.panel-cols { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line) }
.panel-col { padding: clamp(32px, 4vw, 44px) 32px; border-left: 1px solid var(--line) }
.panel-col:first-child { border-left: 0 }
.panel-col .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--muted-dim); text-transform: uppercase; margin-bottom: 20px;
}
.panel-col .v {
  font-size: clamp(34px, 3.4vw, 42px); font-weight: 800;
  letter-spacing: -.02em; line-height: 1; color: var(--fg);
  margin-bottom: 14px; font-variant-numeric: tabular-nums;
}
.panel-col p { color: var(--fg-2); font-size: 14px; line-height: 1.6 }
.panel-cta { padding: clamp(36px, 4.5vw, 48px) 32px; text-align: center }
.panel-cta .badges {
  margin-top: 26px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--muted-dim); text-transform: uppercase;
}
.honesty {
  margin: 40px auto 0; max-width: 620px;
  text-align: center; color: var(--muted); font-size: 13px; line-height: 1.7;
}
@media (max-width: 768px) {
  .panel-cols { grid-template-columns: 1fr }
  .panel-col { border-left: 0; border-top: 1px solid var(--line) }
  .panel-col:first-child { border-top: 0 }
}

/* 15. ABOUT ---------------------------------------------------------------------------- */
.about-tease .grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 64px); margin-top: clamp(40px, 5vw, 56px);
  align-items: center;
}
.about-tease .photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-tease .photo .monogram {
  font-size: clamp(72px, 10vw, 120px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1; color: var(--fg);
}
.about-tease .photo .caption {
  margin-top: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
}
.about-tease .bio p { font-size: 17px; line-height: 1.65; color: var(--fg-2); margin-bottom: 18px }
.about-tease .bio .name { color: var(--fg); font-weight: 700 }
.about-tease .rules { margin-top: 28px; font-family: var(--mono); font-size: 13px; letter-spacing: 1px; color: var(--fg) }
.about-tease .rules > div { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px }
.about-tease .rules > div:last-child { border-bottom: none }
.about-tease .rules .num { color: var(--muted-dim); flex-shrink: 0; min-width: 24px }
.about-tease .bio .btn { margin-top: 28px }
@media (max-width: 768px) {
  .about-tease .grid { grid-template-columns: 1fr }
  .about-tease .photo { max-width: 380px; width: 100%; margin: 0 auto }
}

/* 16. FAQ -------------------------------------------------------------------------------- */
.faq-tease { margin-top: clamp(36px, 5vw, 52px) }
.faq-item { border-top: 1px solid var(--line) }
.faq-item:last-child { border-bottom: 1px solid var(--line) }
.faq-item h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; user-select: none }
.faq-item .faq-q, .faq-item h4 {
  font: inherit; color: inherit; background: transparent; border: 0;
  width: 100%; min-height: 44px; padding: 22px 0;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color var(--fast);
}
.faq-item .faq-q:hover { color: var(--fg) }
.faq-item .faq-q::after, .faq-item h4::after {
  content: "+"; color: var(--muted); font-weight: 300; font-size: 24px;
  line-height: 1; flex-shrink: 0;
  transition: transform var(--mid) var(--ease);
}
.faq-item.open .faq-q::after, .faq-item.open h4::after { transform: rotate(45deg) }
.faq-item .a { max-height: 0; overflow: hidden; color: var(--fg-2); transition: max-height var(--mid) ease }
.faq-item.open .a { max-height: 600px }
.faq-item .a p { padding: 0 0 24px; line-height: 1.65; max-width: 720px }
.faq-item .a a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px }
.faq-more { margin-top: 44px; text-align: center }

/* 17. CTA BANNER ---------------------------------------------------------------------------- */
.cta-banner { text-align: center; padding: clamp(110px, 13vw, 170px) 24px; position: relative }
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
}
.cta-banner::before { top: 0; background: linear-gradient(to bottom, var(--fg), transparent) }
.cta-banner::after { bottom: 0; background: linear-gradient(to top, var(--fg), transparent) }
.cta-banner .eyebrow { justify-content: center }
.cta-banner .eyebrow::after { content: ""; width: 24px; height: 1px; background: var(--fg); flex-shrink: 0 }
.cta-banner h2 { margin: 0 auto 22px }
.cta-banner p { margin: 0 auto 36px; color: var(--muted); max-width: 520px; font-size: 17px; line-height: 1.65 }
.cta-banner .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }

/* 18. FOOTER ----------------------------------------------------------------------------- */
footer { padding: clamp(56px, 7vw, 80px) 0 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px }
footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px }
footer .brand object, footer .brand img { height: 28px; opacity: .9; margin-bottom: 16px }
footer .brand p { font-size: 13px; color: var(--muted); max-width: 280px; line-height: 1.6 }
footer .col h3, footer .col h5 {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; color: var(--fg-2); text-transform: uppercase;
  margin-bottom: 18px;
}
footer .col a { display: block; color: var(--muted); padding: 5px 0; font-size: 13.5px; transition: color var(--fast) }
footer .col a:hover { color: var(--fg) }
footer .bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
footer .bottom a { color: inherit; transition: color var(--fast) }
footer .bottom a:hover { color: var(--fg) }
@media (max-width: 768px) {
  footer .grid { grid-template-columns: 1fr 1fr; gap: 36px }
  footer .brand { grid-column: 1 / -1 }
}

/* 19. MOTION HOOKS --------------------------------------------------------------------------- */
/* Hidden ONLY when the head script has added .js (i.e., JS on + motion ok).
   No JS, JS error, or prefers-reduced-motion → everything stays visible. */
.js [data-hero],
.js [data-reveal],
.js [data-reveal-stagger] > * { opacity: 0 }

/* 20. REDUCED MOTION --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .js [data-hero],
  .js [data-reveal],
  .js [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important }
  .progress { display: none !important }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
