/* ==========================================================================
   ATHENA — marketing site
   Palette and type follow athena-platform/docs/design-system.md.
   Gold is an action colour only: buttons, active state, links, key emphasis.
   Never a status colour, never a background wash.
   ========================================================================== */

:root {
  /* Brand */
  --gold: #FDB105;
  --gold-600: #E19E0A;
  --gold-700: #BE8404;
  --gold-200: #FFE2B6;
  --on-gold: #0A0908;

  /* Background ramp */
  --bg-0: #000000;
  --bg-1: #0B0B0B;
  --bg-2: #171717;
  --bg-3: #242424;
  --bg-field: #1A1A1A;

  /* Lines */
  --border: #383838;
  --border-control: #6E6E6E;
  --border-strong: #8A8A8A;
  --hairline: rgba(255, 255, 255, 0.09);

  /* Text */
  --text: #FFFFFF;
  --text-2: #B4B4B4;
  --text-3: #8A8A8A;
  --text-quiet: #5C5C5C;

  /* Neutral figure colour (never a verdict) */
  --data: #8FB4CE;

  --font-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1240px;
  --maxw-narrow: 780px;
  --radius-card: 16px;
  --radius-btn: 14px;
  --radius-chip: 8px;
}

/* ---------- Reset + floor ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg-0);
  -webkit-tap-highlight-color: rgba(253, 177, 5, 0.2);
}
img, video, picture, svg { max-width: 100%; display: block; }
figure { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; color: var(--text); line-height: 1.1; }
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }
p { margin: 0 0 1.1em; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: 16px; }
button, .btn { cursor: pointer; }
::selection { background: var(--gold); color: var(--on-gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}
.skip-link {
  position: absolute; top: -60px; left: 1rem; z-index: 200;
  background: var(--gold); color: var(--on-gold);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-chip);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- Type roles ---------- */
.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--gold);
  flex: none;
}
.kicker--plain::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.98;
}

h1.display { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2.display { font-size: clamp(2.1rem, 5vw, 3.5rem); margin-bottom: 0.35em; }
h3.display { font-size: clamp(1.35rem, 2.4vw, 1.75rem); letter-spacing: 0.01em; }

.lede {
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 58ch;
}
.gold { color: var(--gold); }
.nb { white-space: nowrap; }
.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.figure { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }
.sec { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.sec--tight { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.sec--bg1 { background: var(--bg-1); }
.sec--line { border-top: 1px solid var(--hairline); }

.sec-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.sec-head--wide { max-width: 74ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out, transform 0.1s ease-in;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--gold); color: var(--on-gold); }
.btn--primary:hover { background: var(--gold-600); }
.btn--ghost { border-color: var(--gold-700); color: var(--gold); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); background: rgba(253, 177, 5, 0.08); }
.btn--quiet { border-color: var(--border-control); color: var(--text); background: transparent; }
.btn--quiet:hover { border-color: var(--border-strong); background: rgba(255, 255, 255, 0.05); }
.btn--block { width: 100%; }
.btn__arrow { width: 15px; height: 15px; flex: none; transition: transform 0.2s ease-out; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.05rem var(--gutter);
  transition: background-color 0.25s ease-out, border-color 0.25s ease-out, padding 0.25s ease-out;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex: none;
}
.nav__logo img { width: 30px; height: 30px; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  padding-top: 2px;
}
.nav__links {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease-out;
}
.nav__links a:hover { color: var(--text); }
.nav__links a[aria-current="page"] { color: var(--gold); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 12px;
  background: var(--gold);
  color: var(--on-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease-out;
}
.nav__cta:hover { background: var(--gold-600); }
.nav__toggle {
  display: none;
  margin-left: auto;
  min-width: 44px; min-height: 44px;
  background: none; border: 0; padding: 0.5rem;
  color: var(--text);
}
.nav__toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; transition: transform 0.25s, opacity 0.25s; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 6rem var(--gutter) 3rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.96) 4%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.42) 70%, rgba(0,0,0,0.6) 100%),
    linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 62%, rgba(0,0,0,0.45) 100%);
}
.hero__inner { max-width: 41rem; }
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  margin-bottom: 0.4em;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  color: #E4E4E4;
  max-width: 35rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #D6D6D6;
}
.hero__meta svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* ---------- Honest strip (where a logo wall would go) ---------- */
.strip { background: var(--bg-1); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}
.strip__item { background: var(--bg-1); padding: clamp(1.5rem, 3vw, 2.25rem); }
.strip__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.strip__item p { font-size: 0.9375rem; color: var(--text-3); margin: 0; }
.strip__note {
  padding: 1.25rem var(--gutter);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-3);
  border-top: 1px solid var(--hairline);
  max-width: 78ch;
  margin: 0 auto;
}

/* ---------- Split layout (copy + product frame) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split--wide-media { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr); }

/* ---------- Feature list ---------- */
.features { display: grid; gap: 1.35rem; margin-top: 2.25rem; }
.feature { display: grid; grid-template-columns: 34px 1fr; gap: 1rem; align-items: start; }
.feature__icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--gold);
}
.feature__icon svg { width: 17px; height: 17px; }
.feature h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  line-height: 1.4;
}
.feature p { font-size: 0.9375rem; color: var(--text-3); margin: 0; }

/* ---------- Product placeholder frames ---------- */
.ph { position: relative; }
.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--gold-700);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  line-height: 1.3;
  text-align: left;
}
.ph-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.ph-tag--float {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  z-index: 4;
  max-width: calc(100% - 1.5rem);
}
.ph-tag--under { margin-top: 0.9rem; }

/* Phone frame */
.phones { display: flex; gap: clamp(0.75rem, 2vw, 1.5rem); justify-content: center; align-items: flex-end; }
.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; max-width: 260px; width: 100%; }
.phone-wrap--offset { transform: translateY(-2.5rem); }
.phone {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9 / 19;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 26px;
  background: var(--bg-1);
  overflow: hidden;
  padding: 1.75rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.phone__notch {
  position: absolute;
  top: 0.5rem; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 5px;
  border-radius: 999px;
  background: var(--bg-3);
}

/* Browser frame */
.browser {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-3);
}
.browser__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-control); flex: none; }
.browser__url {
  margin-left: 0.6rem;
  font-size: 0.6875rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser__body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Wireframe blocks — deliberately blank. No invented data, no fake numbers. */
.wire { background: var(--bg-3); border-radius: 6px; flex: none; }
.wire--line { height: 7px; }
.wire--line-sm { height: 5px; background: var(--bg-2); }
.wire--w40 { width: 40%; }
.wire--w55 { width: 55%; }
.wire--w70 { width: 70%; }
.wire--w85 { width: 85%; }
.wire--gold { background: rgba(253, 177, 5, 0.5); }
.wire--card { border-radius: 8px; background: var(--bg-2); border: 1px solid var(--hairline); flex: 1 1 auto; }
.wire-row { display: flex; gap: 0.5rem; align-items: stretch; }
.wire-row--grow { flex: 1 1 auto; min-height: 0; }
.wire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.wire-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wire-stack { display: flex; flex-direction: column; gap: 0.4rem; }
.wire-ring {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 6px solid var(--bg-3);
  border-top-color: rgba(253, 177, 5, 0.55);
  margin: 0.4rem auto;
  flex: none;
}
.wire-days { display: flex; gap: 4px; }
.wire-days span { flex: 1; height: 26px; border-radius: 5px; background: var(--bg-2); }
.wire-days span:nth-child(4) { background: var(--bg-3); box-shadow: inset 0 0 0 1.5px var(--gold-700); }
.wire-sidebar { width: 24%; background: var(--bg-2); border-radius: 8px; padding: 0.6rem; display: flex; flex-direction: column; gap: 0.4rem; }

/* ---------- Coach question cards ---------- */
.questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.qcard {
  grid-column: span 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.qcard:hover { background: var(--bg-3); border-color: var(--border-strong); }
.qcard--lead { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.qcard--lead .qcard__q { flex: 1 1 22ch; }
.qcard--lead p { flex: 1 1 34ch; margin: 0; }
.qcard__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.qcard__q {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  color: var(--text);
  line-height: 1.05;
  margin: 0;
}
.qcard p { font-size: 0.9375rem; color: var(--text-3); margin: 0; }

/* ---------- Capability band ---------- */
.band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.band__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.band__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.band__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88), rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.9));
}
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem); }
.cap { border-top: 2px solid var(--gold); padding-top: 1.25rem; }
.cap h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.cap p { font-size: 0.9375rem; color: var(--text-2); margin: 0; max-width: 34ch; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius-card); overflow: hidden; }
.step { background: var(--bg-1); padding: clamp(1.75rem, 3vw, 2.5rem); }
.step__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9375rem; color: var(--text-3); margin: 0; }

/* ---------- Control centre list ---------- */
.cc-list { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--hairline); }
.cc-item { display: grid; grid-template-columns: 13ch 1fr; gap: 1.25rem; padding: 1.15rem 0; border-bottom: 1px solid var(--hairline); align-items: baseline; }
.cc-item dt { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.0625rem; color: var(--text); letter-spacing: 0.02em; }
.cc-item dd { margin: 0; font-size: 0.9375rem; color: var(--text-3); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.person__tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.028) 0 10px, transparent 10px 20px),
    var(--bg-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.person__silhouette { width: 28%; color: var(--bg-3); }
.person h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 0 0 0.2rem; }
.person p { font-size: 0.9375rem; color: var(--text-3); margin: 0; }

/* ---------- Full-bleed photo strip ---------- */
.photo-strip { position: relative; overflow: hidden; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.photo-strip img { width: 100%; height: clamp(240px, 34vw, 460px); object-fit: cover; object-position: center 55%; filter: saturate(0.68) brightness(0.72) contrast(1.05); }
.photo-strip__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.22) 45%, rgba(0,0,0,0.78)); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(0,0,0,0.86), rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.92)); }
.cta .actions { justify-content: center; }
.band--statement { text-align: center; }
.band--statement .kicker { justify-content: center; }
.band--statement .lede { margin-left: auto; margin-right: auto; }
.cta p { margin-left: auto; margin-right: auto; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(8rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--hairline);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(0,0,0,0.88), rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95)); }
.page-hero h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); max-width: 20ch; }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.8125rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; }
.field .opt { color: var(--text-quiet); font-weight: 400; }
.field input, .field textarea, .field select {
  min-height: 50px;
  background: var(--bg-field);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease-out;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
/* Design system names text.quiet for placeholders and calls it sub-AA by design.
   This is a public marketing form, so placeholders take text.tertiary (4.7:1). */
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--border-control); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(253, 177, 5, 0.18);
}
.form-note { font-size: 0.8125rem; color: var(--text-3); margin: 0; }
.form-note a { color: var(--gold); }
.prose { max-width: 72ch; }
.prose h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-2); font-size: 0.9375rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-1); border-top: 1px solid var(--hairline); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(2, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.footer__brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-bottom: 1rem; }
.footer__brand img { width: 34px; height: 34px; }
.footer__tagline { font-size: 0.9375rem; color: var(--text-3); max-width: 32ch; margin: 0; }
.footer h4 { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.footer li { margin-bottom: 0.6rem; }
.footer li a, .footer li span { font-size: 0.9375rem; color: var(--text-2); text-decoration: none; }
.footer li a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  color: var(--text-3);
}
.footer__bottom a { color: var(--text-3); text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); text-decoration: underline; }
.footer__credit a { color: var(--gold); text-decoration: none; }
.footer__credit a:hover { text-decoration: underline; }

/* ---------- Motion contract (animations.js owns the tweens) ---------- */
@media (scripting: none) {
  .reveal-up, .reveal-fade, .reveal-stagger > * { opacity: 1 !important; visibility: visible !important; transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav__links { gap: 1.25rem; }
  .split { gap: 2.5rem; }
  .questions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split, .split--wide-media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .caps { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr; max-width: 420px; }
  .qcard--lead { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  body.menu-open { position: fixed; width: 100%; overflow: hidden; }

  h1.display { font-size: clamp(2.35rem, 10.5vw, 3rem); }
  h2.display { font-size: clamp(1.85rem, 8vw, 2.35rem); }
  .lede, .hero__sub { font-size: 1.0625rem; }
  p, li { max-width: 44ch; }
  .cap p, .feature p, .qcard p, .step p, .strip__item p { max-width: none; }

  .hero { min-height: 100svh; padding-top: 7rem; }
  .hero__inner { max-width: none; }
  .hero__meta { gap: 0.5rem 1.1rem; margin-top: 1.75rem; padding-top: 1.25rem; }
  .actions .btn { width: 100%; }

  .questions { grid-template-columns: 1fr; }
  .qcard, .qcard--lead { grid-column: auto; }
  .qcard--lead { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .qcard--lead .qcard__q, .qcard--lead p { flex: 0 0 auto; }
  .person__tile { aspect-ratio: 4 / 3; }
  .cc-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .phones { flex-direction: column; align-items: center; gap: 2rem; }
  .phone { max-width: 250px; }
  .phone-wrap, .phone-wrap--offset { transform: none; max-width: 260px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .nav__wordmark { font-size: 1.25rem; }
  .ph-tag { font-size: 0.5625rem; letter-spacing: 0.08em; }
}
