/* Company Home (`/`) — the blueprint sheet.

   The Industry tokens and shared component layer live in the vendored
   design system (v0.4.0 made Industry the default). This file owns the page:
   the paper grid, the sheet measure, and every section. The source comp had
   no media queries; everything under `@media` here is this file's work. */

html { scroll-behavior: smooth; }

/* Shared content measure — every route that uses `.wrap` or `.sheet`. */
:root {
  --sheet-max: 1180px;
  --sheet-gutter: max(20px, calc((100% - var(--sheet-max)) / 2));
  --rule: 1px solid var(--color-divider);
}
.wrap {
  width: 100%;
  padding-inline: var(--sheet-gutter);
  box-sizing: border-box;
}
/* One way back to the site, for pages that deliberately carry no nav.
   Lives here rather than in careers.css because /creator/ does not load that. */
.page-back { padding-block: var(--space-6) var(--space-2); }
.lp-link { color: var(--text-muted); font-weight: 500; }
.lp-link:hover { color: var(--color-accent-text); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-accent-text);
}

/* Page-level chrome formerly scoped to [data-theme="industry"]. */
/* Anchors styled as buttons carry their own colour from the design system;
   inheriting here overrode --on-accent and put page ink on the accent fill. */
.home a:not(.btn) { color: inherit; text-decoration: none; }
.home a.btn { text-decoration: none; }
/* The design system owns .stl-logo now, including flex: none — the wordmark is
   a fixed lockup and must never be squeezed by a tight nav row. All this repo
   sets is the height; the width follows from its aspect ratio. */
.stl-logo { --logo-h: var(--logo-h-md); }
.home .btn-ghost {
  border-color: var(--color-divider);
  padding-inline: var(--space-4);
}
.home .btn-ghost:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  border-color: var(--color-accent);
}

.home {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  /* Drafting paper: a 24px field with a 120px major grid over it. */
  background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--color-text) 5%, transparent) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--color-text) 5%, transparent) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--color-text) 9%, transparent) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--color-text) 9%, transparent) 0 1px, transparent 1px 120px);
}

.sheet {
  padding-inline: var(--sheet-gutter);
}

/* The one authored entrance: content rises a short distance on an exponential
   ease-out, already legible before it settles. */
.home .reveal {
  transform: translateY(14px);
  transition:
    opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ══ nav ══════════════════════════════════════════════════════════════════ */

.home-top {
  position: sticky;
  top: 0;
  z-index: var(--z-overlay);
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--rule);
  transition: background var(--duration-hover) var(--ease-out), border-color var(--duration-hover) var(--ease-out);
}
.home-top.is-top {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.home-top-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-6);
  height: 68px;
}
.home-top-inner > .stl-brand { justify-self: start; }
.home-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  grid-column: 2;
  white-space: nowrap;
}
.home-nav .lp-link { font-size: var(--text-base); }
.home-top-cta { font-size: var(--text-sm); }

/* ══ spec strip ═══════════════════════════════════════════════════════════ */

.spec-strip {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-2) var(--sheet-gutter);
  border-top: var(--rule);
  border-bottom: var(--rule);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
}

/* ══ hero ═════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
}
.hero-mark {
  position: absolute;
  color: var(--color-accent-text);
  opacity: 0.55;
  font-size: var(--text-lg);
  line-height: 1;
}
.hero-mark.tl { top: 16px; left: -28px; }
.hero-mark.tr { top: 16px; right: -28px; }
.hero-mark.bl { bottom: 16px; left: -28px; }
.hero-mark.br { bottom: 16px; right: -28px; }

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 7.1vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 span { display: block; }
.hero h1 em { font-style: normal; color: var(--color-accent-text); }

.hero-lede {
  max-width: 54ch;
  margin: var(--space-6) auto 0;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hero-actions .btn {
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
}
.hero .eyebrow { margin-bottom: var(--space-4); }
.hero-micros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}
.hero-micros li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.hero-micros .mono { color: var(--color-accent-text); }
.hero-arena,
.hero-figure { margin-top: var(--space-12); }
.home-top-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* ══ Fig. 00 — the playable arena ═════════════════════════════════════════ */

.ar {
  --ar-ink: var(--color-accent);
  /* The arena geometry is the content here, so it sits a step above the
     hairline weight the page rules use. */
  /* --border-strong is the same mix upstream at 32% rather than 30%. Two
     percent of a border alpha is not a distinction worth keeping a local
     copy for, and re-deriving it here meant an upstream change never
     reached the arena. */
  --ar-line: var(--border-strong);
  position: relative;
  margin: 0;
  padding: var(--space-4) var(--space-5) var(--space-3);
  border: var(--rule);
  background: var(--color-bg);
  text-align: left;
  cursor: crosshair;
}
.ar:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.ar-head,
.ar-label {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.ar-head {
  font-size: var(--text-xs);
  color: var(--color-accent-text);
}
.ar-head [data-ar-live] { font-variant-numeric: tabular-nums; }
.ar-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-3);
}
.ar-label {
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-subtle);
}
.ar-svg { display: block; width: 100%; }
.ar-map { cursor: crosshair; touch-action: manipulation; }
.ar-trail-dot {
  fill: var(--color-accent-400);
  opacity: 0.7;
  transition: opacity 1.1s linear;
}
.ar-ring { fill: none; stroke: var(--ar-ink); stroke-width: 1.2; }
.ar-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: var(--rule);
  font-size: var(--text-xs);
  color: var(--text-subtle);
}
.ar-legend { line-height: 1.9; font-size: var(--text-sm); }
.ar-readout { white-space: nowrap; font-variant-numeric: tabular-nums; }
.ar-key {
  display: inline-block;
  padding: 0 var(--space-1);
  border: var(--rule);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  line-height: 17px;
  color: var(--color-text);
}

/* ══ vision ═══════════════════════════════════════════════════════════════ */

.vision { padding: var(--space-24) 0 var(--space-20); }
.vision-inner { text-align: center; }
.vision p {
  max-width: 42ch;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.2vw, 1.5625rem);
  line-height: 1.5;
}
.vision p + p { margin-top: var(--space-5); }
/* The words carry the entrance here, so the block itself stays put. */
.vision .reveal.words { opacity: 1; transform: none; transition: none; }
.wd {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 500ms var(--ease-out);
}
.in-view .wd { opacity: 1; }

/* ══ capability sections ══════════════════════════════════════════════════ */

.cap {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: var(--space-20);
  align-items: center;
  padding: var(--space-14) 0;
  border-top: var(--rule);
}
.cap.is-flipped { grid-template-columns: 5fr 6fr; }

.cap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-text);
}
.cap-copy h2 {
  margin: var(--space-4) 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.cap-copy p {
  max-width: 50ch;
  margin: var(--space-3) 0 0;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-muted);
}
.cap-link {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-text);
}
.cap-link:hover { color: var(--accent-hover); text-decoration: underline; }

.fig {
  margin: 0;
  padding: var(--space-6) var(--space-8) var(--space-6);
  border: var(--rule);
  background: var(--color-bg);
}
.fig-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-text);
}
.dg { display: block; width: 100%; margin-top: var(--space-5); overflow: visible; }
.dg-line { fill: none; stroke: var(--color-divider); stroke-width: 1.1; }
.dg-hot { stroke: var(--color-accent); stroke-width: 1.4; }
.dg-dim { opacity: 0.75; }
.dg-text {
  fill: var(--text-subtle);
  stroke: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══ teams — reversed field ═══════════════════════════════════════════════ */

/* The reversed field's ground is accent-900 in BOTH themes, so its ink is the
   constant paper primitive, never the theme's --color-bg (which IS accent-900
   in dark mode). */
.teams,
.closing {
  background: var(--color-accent-900);
  color: var(--color-neutral-100);
}
.teams { padding: var(--space-16) 0; }
.teams-head,
.section-head {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.teams-head {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid color-mix(in srgb, var(--color-neutral-100) 18%, transparent);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}
.blueprint-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border: var(--rule);
}
.card-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-text);
}
.blueprint-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.blueprint-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-muted);
}
.card-link {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-text);
}
.card-link:hover { color: var(--accent-hover); text-decoration: underline; }
.teams .blueprint-card {
  border: 1px solid color-mix(in srgb, var(--color-neutral-100) 24%, transparent);
}
.teams .card-kicker { color: var(--color-accent-300); }
.teams .blueprint-card p {
  color: color-mix(in srgb, var(--color-neutral-100) 76%, transparent);
}
.teams .card-link { color: var(--color-accent-300); }
.teams .card-link:hover { color: var(--color-neutral-100); }

.pub-faq {
  padding: var(--space-14) 0;
  border-top: var(--rule);
}
.pub-faq .section-head { margin-bottom: var(--space-8); }

/* The questions are one drafting schedule, not twelve cards: a single framed
   block with hairline rules between rows and each answer collapsed behind its
   question. */
.faq-list {
  --faq-pad-x: 26px;
  --faq-index-col: 1.75rem;
  --faq-gap: var(--space-3);
  --faq-indent: calc(var(--faq-pad-x) + var(--faq-index-col) + var(--faq-gap));
}
.faq-item { border-top: var(--rule); }
.faq-item:first-of-type { border-top: 0; }

.faq-q {
  display: grid;
  grid-template-columns: var(--faq-index-col) 1fr auto;
  align-items: baseline;
  gap: var(--faq-gap);
  padding: var(--space-5) var(--faq-pad-x);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
/* Safari still paints the native triangle without this. */
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--color-accent-text); }
.faq-q:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -3px; }
.faq-index {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  color: var(--color-accent-text);
}

/* Two hairlines: the vertical one retracts, so the plus becomes a minus. */
.faq-sign {
  position: relative;
  align-self: center;
  width: 13px;
  height: 13px;
  color: var(--color-accent-text);
}
.faq-sign::before,
.faq-sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 220ms cubic-bezier(.2, .7, .2, 1);
}
.faq-sign::before { top: 6px; left: 0; width: 100%; height: 1px; }
.faq-sign::after { left: 6px; top: 0; width: 1px; height: 100%; }
.faq-item[open] .faq-sign::after { transform: scaleY(0); }

.faq-a {
  max-width: 84ch;
  padding: 0 var(--faq-pad-x) var(--space-6) var(--faq-indent);
}
.faq-a p {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-muted);
}
.faq-points {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}
.faq-points li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-muted);
}
/* A hairline tick, not a dot — the world does not round. */
.faq-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 1px;
  background: var(--color-accent);
}
.faq-point-label { font-weight: 600; color: var(--color-text); }
.faq-point-label::after { content: ":"; }

/* The row opens natively and the answer fades in behind it. A `::details-content`
   height transition was tried and dropped: it left the content clipped to zero
   height while open in Chrome 148, which is worse than no animation. */
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.faq-item[open] .faq-a { animation: faq-reveal 240ms cubic-bezier(.2, .7, .2, 1); }

/* ══ company ══════════════════════════════════════════════════════════════ */

.company { padding: var(--space-20) 0; }
.company-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.company-head p {
  max-width: 62ch;
  margin: var(--space-4) 0 0;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-muted);
}

.company-team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-8);
  list-style: none;
  margin: var(--space-12) 0 0;
  padding: 0;
}
.person { display: flex; flex-direction: column; gap: var(--space-1); }
/* Portraits stay square, framed, and marked like the other figures, but the
   photos themselves are shown untreated. */
.person-plate {
  position: relative;
  display: block;
  width: 100%;
  max-width: 168px;
  margin-bottom: var(--space-4);
  border: var(--rule);
  color: var(--color-text);
}
.person-plate img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.person-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.15;
}
.person-title { font-size: var(--text-sm); color: var(--text-subtle); }

.hiring {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-8);
  border: var(--rule);
}
.hiring-copy { display: flex; flex-direction: column; gap: var(--space-2); }
.hiring h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hiring-loc { font-size: var(--text-sm); color: var(--text-subtle); }
.hiring .btn { flex: none; }

/* ══ closing ══════════════════════════════════════════════════════════════ */

.closing { padding: var(--space-14) 0; }
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  flex-wrap: wrap;
}
.closing-copy h2 {
  /* Optical alignment: pull the cap-height left off the gutter. */
  margin: 0 0 0 -0.052em;
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 2.875rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.closing-lede {
  margin: var(--space-3) 0 0;
  max-width: 42ch;
  font-size: var(--text-base);
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-neutral-100) 76%, transparent);
}
.closing .btn {
  flex: none;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
  background: var(--color-neutral-100);
  border-color: var(--color-neutral-100);
  color: var(--color-accent-900);
}
.closing .btn:hover:not(:disabled) {
  background: var(--color-accent-200);
  border-color: var(--color-accent-200);
}

/* ══ footer ═══════════════════════════════════════════════════════════════ */

.home-footer {
  border-top: var(--rule);
  padding: var(--space-10) 0 var(--space-12);
  font-size: var(--text-sm);
}
.home-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}
.home-footer-blurb {
  max-width: 32ch;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}
.home-footer-col { display: flex; flex-direction: column; gap: var(--space-2); align-content: start; }
.home-footer-label {
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-text);
}
.home-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-5);
  border-top: var(--rule);
  color: var(--text-subtle);
}

/* ══ responsive ═══════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
  :root { --sheet-gutter: max(48px, calc((100% - var(--sheet-max)) / 2)); }
}

@media (max-width: 900px) {
  .hero { padding: var(--space-14) 0 var(--space-12); }
  .hero-mark { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  /* The arena is a keyboard-and-pointer instrument; below this it would be a
     pair of unreadable 160px panels. */
  .hero-arena { display: none; }

  .vision { padding: var(--space-14) 0; }
  .vision-inner { text-align: left; }
  .vision p { max-width: none; }

  .cap,
  .cap.is-flipped {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-10) 0;
  }
  /* Copy leads on every section once they stack, flipped or not. */
  .cap.is-flipped .cap-copy { order: -1; }
  .cap-copy p { max-width: none; }
  .fig { padding: var(--space-5) var(--space-6) var(--space-6); }

  .teams { padding: var(--space-12) 0; }
  .pub-faq { padding: var(--space-10) 0; }
  .pub-faq .section-head { margin-bottom: var(--space-6); }
  .card-grid { grid-template-columns: 1fr; gap: var(--space-5); }

  .company { padding: var(--space-14) 0; }
  .company-team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-8); margin-top: var(--space-10); }
  .hiring { flex-direction: column; align-items: flex-start; gap: var(--space-5); }
  .hiring .btn { width: 100%; }

  .closing { padding: var(--space-12) 0; }
  .closing-inner { gap: var(--space-8); }
  .closing .btn { width: 100%; }

  .home-footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .home-footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

@media (max-width: 640px) {
  .home-top-inner { height: 60px; }
  /* The bar cannot hold wordmark + CTA + toggle without crushing the lockup;
     the CTA moves into the panel and the hero repeats it two screens up. */
  .home-top-cta { display: none; }
  .home-top-actions .btn-ghost { display: none; }
  /* Diagram labels are 9 user units, which lands under 8px once the figure
     shrinks to a phone column. */
  .dg-text { font-size: var(--text-xs); }
  /* Sheet metadata is reference, not navigation — the middle line goes first. */
  .spec-strip > :nth-child(2) { display: none; }
  .hero h1 { letter-spacing: 0; }
  .company-team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); }
  /* The index column costs more than it says once the question wraps. */
  .faq-list { --faq-pad-x: 16px; --faq-index-col: 0; --faq-gap: var(--space-3); --faq-indent: var(--faq-pad-x); }
  .faq-index { display: none; }
  .faq-q { grid-template-columns: 1fr auto; font-size: var(--text-lg); padding: var(--space-4) var(--faq-pad-x); }
  .faq-a { padding-bottom: var(--space-5); }
}

@media (prefers-reduced-motion: reduce) {
  .home .reveal { transform: none; transition: none; }
  .wd { opacity: 1; transition: none; }
  .faq-item[open] .faq-a { animation: none; }
  .faq-q { transition: none; }
  .faq-sign::before,
  .faq-sign::after { transition: none; }
}
