/* ============================================================
   PONSCHE — $P911
   Showroom-grade stylesheet. Do not open the hood.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0B0B0D;
  --panel: #121216;
  --silver: #C7C9CC;
  --red: #E10600;
  --white: #F5F5F7;
  --carbon: #2A2A30;

  --hairline: rgba(199, 201, 204, 0.14);
  --silver-dim: rgba(199, 201, 204, 0.55);
  --silver-faint: rgba(199, 201, 204, 0.4);

  --font-display: 'Michroma', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

  --ticker-h: 34px;
  --nav-h: 68px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ticker-h) + var(--nav-h) + 20px);
}

body {
  margin: 0;
  padding-top: calc(var(--ticker-h) + var(--nav-h));
  background: var(--bg);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, blockquote, figure, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, video, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
code { font-family: var(--font-mono); }

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

::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: calc(var(--ticker-h) + 8px); }

/* ---------- Utilities ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.section {
  padding: 108px 0;
  border-top: 1px solid var(--hairline);
}
.hero { border-top: none; }

.section-head { margin-bottom: 56px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 20px;
  height: 1px;
  background: var(--red);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 18px;
  line-height: 1.25;
}

.carbon {
  background-color: var(--panel);
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.013) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.013) 0 2px, transparent 2px 4px);
  border: 1px solid var(--carbon);
}

.accent { color: var(--red); }

/* Racing stripe motif — used once, in the hero */
.stripe {
  display: block;
  width: 2px;
  height: 56px;
  margin: 0 auto 28px;
  background: var(--red);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--rd, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: #c40500; }

.btn-outline {
  border: 1px solid rgba(199, 201, 204, 0.5);
  color: var(--silver);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

.btn-ghost {
  padding-left: 8px;
  padding-right: 8px;
  color: var(--silver-dim);
}
.btn-ghost:hover { color: var(--white); }

/* ---------- Ticker tape ---------- */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--hairline);
}
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ticker-track.is-animating {
  animation: ticker-scroll var(--ticker-duration, 40s) linear infinite;
}
.ticker-copy {
  display: flex;
  white-space: pre;
}
.ticker-item,
.ticker-sep {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--silver);
}
.ticker-sep { color: var(--silver-faint); }

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(11, 11, 13, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--white);
  padding-bottom: 5px;
  border-bottom: 2px solid var(--red);
}
.logo-emblem {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.logo-emblem--sm {
  width: 26px;
  height: 26px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--silver-dim);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link.is-active {
  color: var(--white);
  border-bottom-color: var(--red);
}
.btn-nav { padding: 12px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--silver);
  transition: transform 0.25s var(--ease-out);
}
.nav-open .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 96px;
  background:
    radial-gradient(60% 42% at 50% 0%, rgba(245, 245, 247, 0.05), transparent 70%),
    var(--bg);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-eyebrow { justify-content: center; }
.hero-eyebrow::before { display: none; }

.hero-title {
  max-width: 900px;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--white);
}
.hero-subhead {
  max-width: 620px;
  margin-top: 26px;
  font-size: 16.5px;
  color: var(--silver-dim);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* CA pill */
.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-top: 34px;
  padding: 9px 9px 9px 20px;
  background: var(--panel);
  border: 1px solid var(--carbon);
  border-radius: 999px;
}
.ca-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
}
.ca-address {
  font-size: 12.5px;
  color: var(--silver);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  flex: none;
  padding: 9px 18px;
  border: 1px solid rgba(199, 201, 204, 0.4);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--silver);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.ca-copy:hover { border-color: var(--white); color: var(--white); }
.ca-copy.is-copied {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.ca-pill--compact { margin-top: 0; }

/* Official CA emphasis — one address, no replicas */
.ca-official-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
}
.ca-official-label::before,
.ca-official-label::after {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(225, 6, 0, 0.5);
}
.ca-pill--official {
  margin-top: 14px;
  border-color: rgba(225, 6, 0, 0.55);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.14);
}
.ca-pill--official .ca-address {
  color: var(--white);
  font-size: 13px;
}
.ca-warning {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--silver-dim);
}
.ca-warning a {
  color: var(--white);
  border-bottom: 1px solid var(--red);
  transition: color 0.2s ease;
}
.ca-warning a:hover { color: var(--red); }

/* ---------- Media slots + showroom floor ---------- */
.media-frame { position: relative; width: 100%; }
.media-frame::after {
  /* polished showroom floor */
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 100%;
  height: 90px;
  pointer-events: none;
  background: radial-gradient(55% 100% at 50% 0%,
    rgba(199, 201, 204, 0.13),
    rgba(199, 201, 204, 0.03) 55%,
    transparent 78%);
}
.hero-media { max-width: 920px; margin-top: 64px; margin-bottom: 40px; }

.media-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, #141419 0%, #0D0D10 60%, #101014 100%);
  border: 1px solid rgba(199, 201, 204, 0.18);
}
.media-slot--square { aspect-ratio: 1 / 1; }
.media-slot video,
.media-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Trust bar ---------- */
.trust {
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.trust-line {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-faint);
}
.trust-disclaimer {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(199, 201, 204, 0.3);
}

/* ---------- Spec sheet ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
}

.tacho-wrap { display: flex; justify-content: center; }
.tacho {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.tacho svg { width: 100%; height: auto; }

.tacho-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  fill: var(--silver);
}
.tacho-num-red { fill: var(--red); }
.tacho-zone-label {
  font-family: var(--font-mono);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 1px;
  fill: var(--red);
}
.tacho-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  fill: var(--silver-faint);
}

.tacho-readout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  background: #050506;
  border: 1px solid var(--carbon);
  font-family: var(--font-mono);
}
.tacho-readout-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--silver-faint);
}
.tacho-readout-value {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
  text-shadow: 0 0 12px rgba(225, 6, 0, 0.5);
}

.spec-panel { padding: 12px 36px; }
.spec-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--silver-faint);
}
.spec-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.spec-num {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.spec-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
}
.spec-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--silver-dim);
}

/* ---------- The ECU ---------- */
.section--ecu { background: #08080A; }
.ecu-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}

.terminal {
  background: #050506;
  border: 1px solid var(--carbon);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: #101014;
  border-bottom: 1px solid var(--hairline);
}
.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3A3A42;
}
.term-dot--red { background: var(--red); }
.terminal-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--silver-faint);
}
.terminal-body {
  margin: 0;
  padding: 20px 22px;
  min-height: 470px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver);
  white-space: pre;
  overflow-x: auto;
}
.tk-kw { color: var(--red); }
.tk-cmt { color: #64646E; }
.tk-hot { color: var(--red); font-weight: 700; }

.term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 1px;
  vertical-align: -2px;
  background: var(--red);
  animation: cursor-blink 1s steps(1) infinite;
}
@keyframes cursor-blink {
  50% { opacity: 0; }
}

.ecu-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-transform: none;
  color: var(--white);
  margin-top: 18px;
}
.ecu-text {
  margin-top: 20px;
  font-size: 15px;
  color: var(--silver-dim);
}

/* ---------- Race Weekend ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: phase;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hairline);
}
.tl-item { position: relative; padding-top: 34px; }
.tl-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(199, 201, 204, 0.5);
}
.tl-marker--current {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.65);
}
.tl-phase {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
}
.tl-copy {
  margin-top: 12px;
  font-size: 14px;
  color: var(--silver-dim);
}

/* ---------- Owners Club ---------- */
.owners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.owner-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.owner-card .media-slot { width: 100%; }
.stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0.3em;
}
.owner-name {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.owner-quote {
  font-size: 14.5px;
  color: var(--silver-dim);
}

/* ---------- Test Drive ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.step {
  position: relative;
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(199, 201, 204, 0.35);
}
.step-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
}
.step-copy {
  font-size: 14.5px;
  color: var(--silver-dim);
}
.step--buy { border-color: rgba(225, 6, 0, 0.55); }
.step-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 10px;
}
.step-actions .ca-pill { max-width: 100%; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--carbon);
  border-radius: 4px;
  background: var(--panel);
  margin-bottom: 14px;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--red);
  transition: transform 0.25s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--silver-dim);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 72px 0 56px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.wordmark--footer { font-size: 15px; }
.footer-links {
  display: flex;
  gap: 34px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-ca {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-ca-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
}
.footer-ca code {
  font-size: 11.5px;
  color: var(--silver);
  word-break: break-all;
}
.footer-disclaimer {
  max-width: 720px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(199, 201, 204, 0.38);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .spec-grid,
  .ecu-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ecu-grid .terminal { order: 2; }
  .ecu-grid .ecu-copy { order: 1; }
  .owners-grid { grid-template-columns: 1fr 1fr; }
  .owners-grid .owner-card:last-child { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(11, 11, 13, 0.98);
    border-bottom: 1px solid var(--hairline);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  }
  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .nav-link {
    padding: 15px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-link.is-active { border-bottom-color: var(--red); }
  .btn-nav { margin-top: 18px; }
}

@media (max-width: 720px) {
  .section { padding: 78px 0; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .tl-item { padding-top: 0; padding-left: 32px; }
  .tl-marker { top: 4px; }
  .terminal-body { font-size: 12px; min-height: 430px; }
}

@media (max-width: 620px) {
  .owners-grid { grid-template-columns: 1fr; }
  .owners-grid .owner-card:last-child { grid-column: auto; }
  .ca-pill {
    width: 100%;
    justify-content: space-between;
  }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .spec-panel { padding: 4px 22px; }
}

@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .ca-address { font-size: 11px; }
  .terminal-body { padding: 16px 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker-track.is-animating { animation: none; }
  .term-cursor { animation: none; }
  .btn,
  .btn:hover { transform: none; transition: none; }
  .nav-toggle-bar,
  .site-nav,
  .faq-item summary::after { transition: none; }
}
