/* So Cal Classic Car Storage — concept relaunch (Tech Hub, powered by Tolowa Studio)
   Design system: gallery-dark, photo-led, token-driven. Dark default, light option.
   Palette digested from socalcarstorage.com: black ground + #FDBC11 amber. */

/* ---------- Tokens: LIGHT ---------- */
:root {
  --paper: #F6F5F2;
  --paper-2: #FFFFFF;
  --paper-3: #ECEAE4;
  --ink: #101014;
  --ink-soft: #46464C;
  /* #838384 only reached 3.47:1 on --paper; darkened to clear AA for the
     small text that uses it (stat labels, fineprint, captions). */
  --ink-mute: #6A6A6E;
  --line: #E1DFD8;
  --line-2: #CDC9C0;

  /* accent used for TEXT/labels — darkened for contrast on paper */
  --ember: #8A6206;
  --ember-lt: #A5750A;
  --ember-dim: rgba(253, 188, 17, .16);

  /* the literal brand amber — fills, bars, marks. Never used for small text on light. */
  --brand: #FDBC11;
  --brand-lt: #FFD24A;
  --on-brand: #0A0A0B;

  --gold: #E0A400;
  --slate: #5C7A8C;

  --bg: var(--paper);
  --surface: var(--paper-2);
  --surface-2: var(--paper-3);

  /* --serif is the display face (kept as a token name for design-system
     portability; this brand is all sans). Space Grotesk stands in for Clash
     Display — same geometric character, Google-hosted, no license question. */
  --serif: "Space Grotesk", "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Mono carries technical/telemetry labels — the thing that makes the facility
     read like an instrument panel rather than a brochure. */
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 24px 60px -32px rgba(10, 10, 12, .5);
  --shadow-soft: 0 12px 32px -22px rgba(10, 10, 12, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Tokens: DARK (shipped default) ---------- */
:root[data-theme="dark"] {
  --paper: #08080A;
  --paper-2: #101013;
  --paper-3: #17171C;
  --ink: #F5F5F3;
  --ink-soft: #B0B1B2;
  --ink-mute: #838384;
  --line: #202027;
  --line-2: #2E2E36;

  --ember: #FDBC11;
  --ember-lt: #FFD24A;
  --ember-dim: rgba(253, 188, 17, .13);

  --gold: #E0A400;
  --slate: #7C9AAC;

  --shadow: 0 28px 70px -30px rgba(0, 0, 0, .85);
  --shadow-soft: 0 12px 34px -20px rgba(0, 0, 0, .7);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.center { text-align: center; margin-inline: auto; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: #08080A;
  color: rgba(255, 255, 255, .72);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
  padding: 9px var(--gutter);
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(253, 188, 17, .22);
}
.disclaimer strong { color: var(--brand); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-soft); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 34px; width: auto; }
:root:not([data-theme="dark"]) .brand__logo { filter: brightness(.28) saturate(1.5); }
.brand__name {
  font-family: var(--serif); font-weight: 700; font-size: 15px;
  letter-spacing: -.01em; line-height: 1.15; max-width: 15ch;
}
.brand__tag {
  display: inline-block;
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--ember);
  border: 1px solid currentColor; border-radius: 999px; padding: 1px 7px; margin-left: 6px;
  vertical-align: middle;
}
.nav__links {
  display: flex; gap: 26px; margin-left: auto;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
}
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  width: 40px; height: 24px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--surface-2); position: relative; cursor: pointer; padding: 0;
  transition: background .3s var(--ease);
}
.theme-toggle__dot {
  position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--slate); transition: transform .3s var(--ease);
}
:root[data-theme="dark"] .theme-toggle__dot { transform: translateX(16px); background: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 650; font-size: 15px;
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  background: var(--brand); color: var(--on-brand); border: 1px solid var(--brand);
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover {
  background: var(--brand-lt); border-color: var(--brand-lt);
  transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(253, 188, 17, .55);
}
.btn--sm { padding: 9px 17px; font-size: 13.5px; }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line-2);
}
.btn--ghost:hover {
  background: transparent; color: var(--ink);
  border-color: var(--brand); box-shadow: none; transform: translateY(-1px);
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 106px) 0; }
.section--band { background: var(--surface); border-block: 1px solid var(--line); }
.section--dark {
  background: #08080A; color: #F5F5F3;
  --ink: #F5F5F3;
  --ink-soft: #B0B1B2;
  --ink-mute: #838384;
  --line: rgba(255, 255, 255, .13);
  --line-2: rgba(255, 255, 255, .22);
  --ember: var(--brand);
  --ember-lt: var(--brand-lt);
  --surface: #101013;
  --surface-2: #17171C;
  --bg: #08080A;
}

.eyebrow, .section__label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .17em;
  color: var(--ember); margin-bottom: 18px;
}
.section__title {
  font-family: var(--serif); font-weight: 700; letter-spacing: -.028em; line-height: 1.04;
  font-size: clamp(30px, 5vw, 50px); margin-bottom: 18px;
}
.section__title em { font-style: italic; color: var(--ember); }
.section__intro { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 62ch; }
.section__intro.center { margin-inline: auto; }
.body { color: var(--ink-soft); margin-top: 16px; max-width: 62ch; }
.body + .body { margin-top: 14px; }
.fineprint { font-size: 12.5px; color: var(--ink-mute); margin-top: 22px; font-style: italic; }

.grid-2 { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 62px); align-items: start; }

/* ---------- Hero (photo-led) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(88px, 15vw, 190px) 0 clamp(64px, 10vw, 120px);
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, .84);
  --ink-mute: rgba(255, 255, 255, .62);
  --ember: var(--brand);
  --line-2: rgba(255, 255, 255, .34);
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, .74) 0%, rgba(4, 4, 6, .58) 42%, rgba(4, 4, 6, .93) 100%),
    radial-gradient(90% 70% at 78% 8%, rgba(253, 188, 17, .17), transparent 62%);
}
.hero__title {
  font-family: var(--serif); font-weight: 700; letter-spacing: -.04em; line-height: .93;
  font-size: clamp(48px, 10.5vw, 122px); margin: 10px 0 26px;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--brand); }
.hero__lede { font-size: clamp(17.5px, 2.2vw, 22px); color: var(--ink-soft); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__cta.center { justify-content: center; }
.hero__trust {
  margin-top: 32px; font-size: 13.5px; color: var(--ink-mute); letter-spacing: .02em;
  max-width: 62ch;
}

/* ---------- Marque chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.chips li {
  list-style: none;
  font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 14px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.chips li:hover { border-color: var(--brand); color: var(--ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 40px; }
.stat { border-left: 2px solid var(--brand); padding-left: 20px; }
.stat__num {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1; letter-spacing: -.03em;
}
.stat__label {
  display: block; margin-top: 9px; color: var(--ink-mute);
  font-family: var(--mono); font-size: 10.5px; line-height: 1.5;
  text-transform: uppercase; letter-spacing: .1em;
}

/* ---------- Facility telemetry strip (bay cards) ----------
   Reads like a live operating picture. Figures are illustrative and labeled. */
.telemetry {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 44px;
}
.bay {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 18px 18px 16px;
  position: relative; overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.bay:hover { border-color: var(--brand); transform: translateY(-3px); }
.bay::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent 70%);
}
.bay__id {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ember);
  display: flex; align-items: center; gap: 8px;
}
.bay__dot {
  width: 6px; height: 6px; border-radius: 50%; background: #34D399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .18);
}
.bay__car {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  letter-spacing: -.02em; margin-top: 10px;
}
.bay__meta {
  display: flex; gap: 20px; margin-top: 14px;
  padding-top: 13px; border-top: 1px solid var(--line);
}
.bay__meta div { min-width: 0; }
.bay__k {
  display: block; font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute);
}
.bay__v {
  display: block; font-family: var(--mono); font-size: 14px; font-weight: 700;
  color: var(--ink); margin-top: 4px; letter-spacing: -.01em;
}

/* ---------- Mixed-value proof row (Indoor / 24-7 / Museum / 2 wks) ---------- */
.proofrow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 40px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
.proofrow > div {
  padding: 22px 20px; border-right: 1px solid var(--line);
  background: var(--surface);
}
.proofrow > div:last-child { border-right: 0; }
.proofrow b {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.03em; line-height: 1;
  color: var(--ink);
}
.proofrow span {
  display: block; margin-top: 10px; font-family: var(--mono);
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); line-height: 1.5;
}

/* ---------- Testimonial grid (3-up, with stars) ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; text-align: left; }
.review {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px, 2.6vw, 30px);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--brand); font-size: 14px; letter-spacing: .22em; }
.review__body {
  margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.62;
  font-style: italic;
}
.review__who {
  margin-top: auto; padding-top: 20px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ember);
}

/* ---------- Place chips (service area) ---------- */
.places { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.places li {
  list-style: none; font-family: var(--mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.places li:hover { border-color: var(--brand); color: var(--ink); }

/* ---------- Operating-layer module grid (links to the console) ---------- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.module {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; background: var(--surface);
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.module:hover { border-color: var(--brand); transform: translateY(-3px); }
.module__no {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; color: var(--ember);
}
.module h3 {
  font-family: var(--serif); font-size: 17.5px; font-weight: 700;
  letter-spacing: -.02em; margin: 10px 0 7px;
}
.module p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Ticks ---------- */
.ticks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin-top: 26px; }
.ticks li { position: relative; padding-left: 23px; font-size: 14.5px; color: var(--ink-soft); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--brand); font-weight: 700;
}
.ticks--inline { display: flex; flex-wrap: wrap; gap: 10px 22px; }

/* ---------- Panel ---------- */
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-soft);
}
.panel__kicker {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
  color: var(--ember); margin-bottom: 14px;
}
.panel__lead { color: var(--ink-soft); font-size: 15.5px; }
.panel__figs { display: flex; gap: 30px; margin: 26px 0 12px; flex-wrap: wrap; }
.panel__figs .big {
  display: block; font-family: var(--serif); font-weight: 700; font-size: 32px;
  color: var(--ink); line-height: 1; letter-spacing: -.02em;
}
.panel__figs .cap { display: block; font-size: 12.5px; color: var(--ink-mute); margin-top: 7px; max-width: 22ch; }
.panel__list { list-style: none; margin-top: 6px; }
.panel__list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-soft);
}
.panel__list li:last-child { border-bottom: 0; }
.panel__list b { color: var(--ink); font-weight: 650; white-space: nowrap; }

/* ---------- Split (image + copy) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 66px); align-items: center;
}
.split--flip .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 44px;
}
.gallery figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
/* Every source photo is landscape (several are ~2.9:1 panoramas), so tiles stay
   landscape too — a square crop would gut them. */
.gallery img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10;
  transition: transform .6s var(--ease), filter .4s var(--ease);
  filter: saturate(.95);
}
.gallery figure:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 22px 14px 11px;
  background: linear-gradient(transparent, rgba(4, 4, 6, .86));
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- Ranked / process list ---------- */
.redlist { list-style: none; margin-top: 40px; border-top: 1px solid var(--line); }
.redlist__row {
  display: grid;
  grid-template-columns: 54px 210px 1fr 110px;
  align-items: center; gap: 20px;
  padding: 19px 4px; border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.redlist__row:hover { background: var(--ember-dim); }
.redlist__rank { font-family: var(--serif); font-size: 25px; color: var(--ember); font-weight: 700; letter-spacing: -.02em; }
.redlist__place { font-family: var(--serif); font-size: 19.5px; font-weight: 700; letter-spacing: -.015em; }
.redlist__note { color: var(--ink-soft); font-size: 14.5px; }
.redlist__bar { height: 7px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
:root[data-theme="dark"] .redlist__bar { background: #1E1E24; }
.redlist__bar i {
  display: block; height: 100%; width: var(--w);
  background: linear-gradient(90deg, var(--gold), var(--brand)); border-radius: 999px;
}

/* ---------- Quote band ---------- */
.quote-band { background: var(--surface); border-block: 1px solid var(--line); text-align: center; }
.pullquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(21px, 3.1vw, 33px); line-height: 1.3; letter-spacing: -.02em;
  max-width: 30ch; margin: 20px auto 24px;
}
.pullquote cite {
  display: block; font-style: normal; font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ember); margin-top: 22px; font-weight: 700;
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__media { overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card__body { padding: clamp(22px, 2.6vw, 28px); display: flex; flex-direction: column; flex: 1; }
.card__title { font-family: var(--serif); font-size: 20.5px; font-weight: 700; margin-bottom: 11px; letter-spacing: -.02em; }
.card p { color: var(--ink-soft); font-size: 15px; }
.card__price {
  margin-top: 14px; font-size: 13px; font-weight: 650; letter-spacing: .04em;
  color: var(--ember); text-transform: uppercase;
}
.link { display: inline-block; margin-top: auto; padding-top: 18px; color: var(--ember); font-weight: 650; font-size: 14.5px; }
.link:hover { color: var(--ember-lt); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.pillar { border-top: 2px solid var(--brand); padding-top: 20px; }
.pillar__no { font-family: var(--serif); font-size: 14px; color: var(--ember); font-weight: 700; letter-spacing: .1em; }
.pillar h3 { font-family: var(--serif); font-size: 20.5px; font-weight: 700; margin: 8px 0 10px; letter-spacing: -.02em; }
.pillar p { color: var(--ink-soft); font-size: 14.5px; }
.relaunch__by {
  display: flex; align-items: center; gap: 10px;
  margin-top: 48px; font-size: 14px; color: var(--ink-mute); letter-spacing: .02em;
}
.relaunch__by img { display: block; }
.relaunch__by strong { color: var(--ink); }

/* ---------- Audit / findings list ---------- */
.flaws { list-style: none; margin-top: 38px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.flaws li {
  display: grid; grid-template-columns: 30px 1fr; gap: 16px;
  padding: 16px 2px; border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--ink-soft);
}
.flaws li b { color: var(--ink); font-weight: 650; }
.flaws li code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em; background: var(--surface-2); color: var(--ink);
  padding: 1.5px 6px; border-radius: 5px; border: 1px solid var(--line);
}
.flaws__no {
  font-family: var(--serif); font-weight: 700; font-size: 14px;
  color: var(--brand); letter-spacing: .04em; padding-top: 2px;
}

/* ---------- Info grid (location / contact) ---------- */
.infogrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.info h4 {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
  color: var(--ember); margin-bottom: 12px;
}
.info p, .info a { color: var(--ink-soft); font-size: 15.5px; display: block; }
.info a:hover { color: var(--ink); }
.info strong { color: var(--ink); font-weight: 650; }

/* ---------- Final CTA ---------- */
.finalcta { background: radial-gradient(85% 120% at 50% 0%, var(--ember-dim), transparent 58%); }

/* ---------- Footer ---------- */
.footer { background: #08080A; color: #F5F5F3; padding-top: clamp(48px, 7vw, 78px); }
.footer__inner { display: grid; grid-template-columns: 1.1fr 1.7fr; gap: 48px; padding-bottom: 42px; }
.footer .brand__logo { height: 40px; }
.footer__brand p { color: rgba(245, 245, 243, .6); font-size: 14.5px; margin-top: 16px; max-width: 46ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__cols h4 {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .15em;
  color: rgba(245, 245, 243, .5); margin-bottom: 14px;
}
.footer__cols a { display: block; color: rgba(245, 245, 243, .8); font-size: 14.5px; padding: 4px 0; transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--brand); }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 22px 30px; }
.footer__legal p { font-size: 12.5px; color: rgba(245, 245, 243, .55); line-height: 1.65; }
.footer__legal strong { color: rgba(245, 245, 243, .82); }
.footer__legal a { color: rgba(245, 245, 243, .75); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .telemetry, .reviews, .modules { grid-template-columns: repeat(2, 1fr); }
  .proofrow { grid-template-columns: repeat(2, 1fr); }
  .proofrow > div:nth-child(2) { border-right: 0; }
  .proofrow > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .grid-2, .split { grid-template-columns: 1fr; }
  .telemetry, .reviews, .modules { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards, .pillars, .infogrid { grid-template-columns: 1fr; }
  .ticks { grid-template-columns: 1fr; }
  .redlist__row {
    grid-template-columns: 38px 1fr;
    grid-template-areas: "rank place" "rank note" "bar bar";
    gap: 3px 14px;
  }
  .redlist__rank { grid-area: rank; align-self: start; }
  .redlist__place { grid-area: place; }
  .redlist__note { grid-area: note; }
  .redlist__bar { grid-area: bar; margin-top: 12px; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .proofrow { grid-template-columns: 1fr; }
  .proofrow > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proofrow > div:last-child { border-bottom: 0; }
  .nav__actions .btn { display: none; }
  .brand__name { font-size: 13.5px; }
  .footer__cols { grid-template-columns: 1fr; }
}
