/* =====================================================================
   AXIS PC CLUB — styles.css
   LAYOUT CONTAINER SCHEME: D — split-rail
     (fixed left rail 72–88px = the axis; content in inner container 1120px;
      rail collapses to a top strip on mobile)
   SPACING SCALE: airy (128px / 72px section; 64px mobile)
   Do not mix container schemes within the site.
   ===================================================================== */

:root {
  /* palette */
  --c-bg: #f5f5f3;          /* light — primary */
  --c-bg-dark: #1b1b1a;     /* dark — single contrast section */
  --c-ink: #1b1b1a;         /* text on light */
  --c-ink-inv: #f5f5f3;     /* text on dark */
  --c-a1: #d97706;          /* amber serif accent — the single accent */
  --c-line: rgba(27, 27, 26, 0.35);   /* 1px borders */
  --c-line-soft: rgba(27, 27, 26, 0.14);
  --c-line-inv: rgba(245, 245, 243, 0.30);

  /* fonts */
  --f-display: "Inter Tight", system-ui, "Segoe UI", sans-serif;
  --f-body: "Public Sans", system-ui, "Segoe UI", sans-serif;

  /* radius / border */
  --r-card: 6px;

  /* spacing 8px step */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 64px;

  /* airy section rhythm */
  --sec-y: 128px;
  --block-y: 72px;

  /* layout */
  --rail-w: 84px;
  --w-container: 1120px;
}

@media (max-width: 768px) {
  :root { --sec-y: 64px; --block-y: 40px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(36px, 5.5vw, 78px); }
h2 { font-size: clamp(26px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
p { margin: 0 0 var(--s-2); }
abbr { text-decoration: none; }

.u-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-ink); color: var(--c-ink-inv);
  padding: var(--s-1) var(--s-2); z-index: 200;
}
.u-skip:focus { left: var(--s-2); top: var(--s-2); }

:focus-visible { outline: 2px solid var(--c-a1); outline-offset: 2px; }

/* ---------- shared bits ---------- */
.kicker {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-a1);
  margin: 0 0 var(--s-2);
}
.kicker--inv { color: var(--c-a1); }

.tick {
  display: inline-block;
  width: 14px; height: 2px;
  background: var(--c-a1);
  margin-right: 8px;
  vertical-align: middle;
}

.lead { max-width: 60ch; color: var(--c-ink); }
.section--dark .lead { color: var(--c-ink-inv); }

/* ---------- buttons ---------- */
.btn {
  --btn-fg: var(--c-ink);
  display: inline-flex; align-items: center; gap: var(--s-1);
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--r-card);
  border: 1px solid var(--c-line);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--btn-fg);
  position: relative;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary {
  background: var(--c-a1);
  border-color: var(--c-a1);
  color: #fff;
}
.btn--primary::before {
  content: ""; position: absolute; left: -1px; top: 50%;
  width: 3px; height: 0; transform: translateY(-50%);
  background: var(--c-ink);
  transition: height .2s ease;
}
.btn--primary:hover::before, .btn--primary:focus-visible::before { height: 60%; }
.btn--primary:hover { background: #c26906; }
.btn--ghost { background: transparent; }
.btn--ghost:hover { border-color: var(--c-a1); color: var(--c-a1); }

/* =====================================================================
   NAV — vertical rail = axis
   ===================================================================== */
.nav--rail {
  position: fixed; left: 0; top: 0;
  width: var(--rail-w); height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  background: var(--c-bg);
  border-right: 1px solid var(--c-line);
  z-index: 100;
}
.nav__logo { text-decoration: none; }
.nav__badge {
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.10em;
  color: var(--c-ink);
  opacity: 0.62;
  white-space: nowrap;
  margin: var(--s-1) 0;
}
.nav__rail-links {
  display: flex; flex-direction: column; gap: var(--s-3);
  writing-mode: vertical-rl;
  margin-top: auto;
}
.nav__rail-links a {
  text-decoration: none; font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink);
  transition: color .2s ease;
}
.nav__rail-links a:hover, .nav__rail-links a.is-active { color: var(--c-a1); }
.nav__cta {
  writing-mode: vertical-rl;
  padding: 16px 10px;
  font-size: 13px; letter-spacing: 0.06em;
}

/* logo lockup */
.logo { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.logo__mark {
  position: relative;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
}
.logo__mark::before { /* axis line through the X */
  content: ""; position: absolute; left: 50%; top: 3px; bottom: 3px;
  width: 2px; transform: translateX(-50%);
  background: var(--c-a1);
}
.logo__x { position: relative; z-index: 1; }
.logo__lock { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo__word { font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: 0.10em; }
.logo__sub { font-size: 8px; letter-spacing: 0.22em; opacity: 0.7; }

/* rail scroll-spy tick (desktop) */
.railspy {
  position: fixed; left: calc(var(--rail-w) - 1px); top: 0;
  width: 1px; height: 100vh; z-index: 99;
  pointer-events: none;
}
.railspy__tick {
  position: absolute; left: -7px; top: 0;
  width: 15px; height: 2px; background: var(--c-a1);
  transition: transform .18s ease;
  will-change: transform;
}

/* =====================================================================
   PAGE CONTAINER (split-rail content area)
   ===================================================================== */
.page { margin-left: var(--rail-w); }

.section, .s-hero, .form-wrap, .section__head {
  --pad-x: clamp(20px, 5vw, 64px);
}
.section {
  padding: var(--sec-y) var(--pad-x);
}
.section > * { max-width: var(--w-container); margin-inline: auto; }
.section__head { margin-bottom: var(--block-y); }

/* =====================================================================
   HERO — diagonal split
   ===================================================================== */
.s-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 100vh;
  align-items: stretch;
  padding: 0;
}
.hero__media {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 921px) {
  .hero__media { clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__axis {
  position: absolute; left: 12%; top: 0; width: 40px; height: 100%;
  pointer-events: none;
}
.hero__axis-line, .hero__ticks line {
  stroke: var(--c-a1); stroke-width: 2; vector-effect: non-scaling-stroke;
}
.hero__panel {
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--s-3);
  padding: var(--sec-y) clamp(20px, 4vw, 56px);
}
.hero__lede { font-size: clamp(16px, 1.5vw, 19px); max-width: 46ch; }
.hero__lede strong { color: var(--c-a1); font-weight: 600; }
.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.hero__facts {
  list-style: none; margin: var(--s-2) 0 0; padding: var(--s-3) 0 0;
  border-top: 1px solid var(--c-line-soft);
  display: flex; gap: var(--s-5); flex-wrap: wrap;
  font-size: 13px; color: rgba(27,27,26,0.7);
}
.hero__facts-n {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 26px; color: var(--c-ink); line-height: 1.1;
}

/* =====================================================================
   THE AXIS — interactive ruler
   ===================================================================== */
.ruler { max-width: var(--w-container); }
.ruler__track {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 2px;
  border-top: 2px solid var(--c-ink);
  padding-top: var(--s-2);
  position: relative;
}
.ruler__tick {
  appearance: none; background: transparent; cursor: pointer;
  border: none; border-left: 1px solid var(--c-line-soft);
  font-family: var(--f-body); font-variant-numeric: tabular-nums;
  font-size: 12px; color: rgba(27,27,26,0.55);
  padding: 22px 0 8px; position: relative;
  transition: color .18s ease;
}
.ruler__tick::before { /* the seat tick on the axis */
  content: ""; position: absolute; left: 50%; top: 0;
  width: 2px; height: 14px; transform: translateX(-50%);
  background: var(--c-line);
  transition: height .18s ease, background-color .18s ease;
}
/* quiet gradient: near loud → far hush shown by tick opacity */
.ruler__tick:nth-child(n+7)::before  { opacity: 0.8; }
.ruler__tick:nth-child(n+13)::before { opacity: 0.5; }
.ruler__tick:hover, .ruler__tick:focus-visible { color: var(--c-ink); }
.ruler__tick:hover::before, .ruler__tick:focus-visible::before {
  height: 22px; background: var(--c-a1); opacity: 1;
}
.ruler__tick.is-picked { color: var(--c-a1); font-weight: 700; }
.ruler__tick.is-picked::before { height: 28px; background: var(--c-a1); opacity: 1; }

.ruler__readout {
  margin-top: var(--s-4);
  display: flex; align-items: baseline; gap: var(--s-3); flex-wrap: wrap;
}
.ruler__metre {
  font-family: var(--f-display); font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--c-ink);
}
.ruler__metre::before {
  content: ""; display: inline-block; width: 18px; height: 3px;
  background: var(--c-a1); margin-right: 12px; vertical-align: middle;
}
.ruler__note { color: rgba(27,27,26,0.7); }

/* =====================================================================
   STATIONS — ranges
   ===================================================================== */
.rangegrid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(3, 1fr);
}
.range {
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.range__span {
  font-variant-numeric: tabular-nums;
  font-weight: 600; font-size: 14px; color: var(--c-ink);
  margin: 0;
}
.range h3 { margin: 0; }
.range p { margin: 0; color: rgba(27,27,26,0.82); }
.range__pick { align-self: flex-start; margin-top: auto; }

/* =====================================================================
   HARDWARE — single dark section
   ===================================================================== */
.section--dark { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.section--dark h2 { color: var(--c-ink-inv); }
.specs {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(4, 1fr);
}
.spec {
  border: 1px solid var(--c-line-inv);
  border-radius: var(--r-card);
  padding: var(--s-3);
}
.spec__k { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--c-a1); margin: 0 0 var(--s-1); }
.spec__v { font-family: var(--f-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 var(--s-1); }
.spec__d { font-size: 14px; color: rgba(245,245,243,0.78); margin: 0; }

/* =====================================================================
   GAMES
   ===================================================================== */
.games {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--c-line-soft);
}
.games__item {
  display: flex; gap: var(--s-2); align-items: baseline;
  padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--c-line-soft);
}
.games__item:nth-child(odd) { border-right: 1px solid var(--c-line-soft); }
.games__icon {
  flex: 0 0 24px; width: 24px; height: 24px;
  color: var(--c-a1);
  align-self: center;
}
.games__genre {
  flex: 0 0 120px;
  font-family: var(--f-display); font-weight: 700; font-size: 17px;
}
.games__desc { color: rgba(27,27,26,0.82); font-size: 15px; }

/* amber accent utility */
.txt-a1 {
  color: var(--c-a1);
  font-family: var(--f-display);
}

/* =====================================================================
   RATES
   ===================================================================== */
.rates { display: grid; gap: var(--s-3); grid-template-columns: repeat(3, 1fr); }
.rate {
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: var(--s-4);
}
.rate--feature { border-color: var(--c-a1); border-width: 1px; box-shadow: inset 0 0 0 1px var(--c-a1); }
.rate__k { font-weight: 600; font-size: 14px; margin: 0 0 var(--s-2); }
.rate__price {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 var(--s-2);
  font-variant-numeric: tabular-nums;
}
.rate__d { margin: 0; color: rgba(27,27,26,0.82); font-size: 15px; }

/* =====================================================================
   METRE LOG
   ===================================================================== */
.log {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--s-3); grid-template-columns: repeat(3, 1fr);
}
.log__item {
  border-left: 2px solid var(--c-line);
  padding: 0 0 0 var(--s-3);
}
.log__m { font-weight: 700; font-family: var(--f-display); margin: 0 0 var(--s-1); }
.log__item p:last-child { margin: 0; color: rgba(27,27,26,0.82); font-size: 15px; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { display: grid; gap: var(--s-3); grid-template-columns: repeat(3, 1fr); }
.shot { margin: 0; }
.shot img { border-radius: var(--r-card); border: 1px solid var(--c-line-soft); aspect-ratio: 1 / 1; object-fit: cover; }
.shot figcaption { margin-top: var(--s-2); font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }

/* plan wide */
.plan { max-width: var(--w-container); }
.plan img { border-radius: var(--r-card); border: 1px solid var(--c-line-soft); width: 100%; }
.plan__cap { margin-top: var(--s-2); font-size: 14px; color: rgba(27,27,26,0.72); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 820px; }
.faq__item {
  border-bottom: 1px solid var(--c-line-soft);
  padding: var(--s-3) 0;
}
.faq__item summary {
  cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 600; font-size: 18px;
  display: flex; align-items: center; gap: var(--s-2);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: ""; width: 14px; height: 2px; background: var(--c-a1);
  flex: 0 0 auto; transition: transform .2s ease;
}
.faq__item[open] summary::before { transform: rotate(90deg); }
.faq__item p { margin: var(--s-2) 0 0 26px; color: rgba(27,27,26,0.82); }

/* =====================================================================
   FORM — Pick a metre
   ===================================================================== */
.form-wrap { max-width: 860px; margin-inline: auto; }
.miniline { margin-bottom: var(--s-5); }
.miniline__track {
  display: grid; grid-template-columns: repeat(18, 1fr); gap: 2px;
  border-top: 2px solid var(--c-ink); padding-top: var(--s-1);
}
.mtick {
  appearance: none; border: none; border-left: 1px solid var(--c-line-soft);
  background: transparent; cursor: pointer;
  font-size: 11px; font-variant-numeric: tabular-nums;
  color: rgba(27,27,26,0.5); padding: 16px 0 6px; position: relative;
  transition: color .16s ease;
}
.mtick::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 2px; height: 10px;
  transform: translateX(-50%); background: var(--c-line); transition: height .16s ease, background-color .16s ease;
}
.mtick:hover, .mtick:focus-visible { color: var(--c-ink); }
.mtick:hover::before, .mtick:focus-visible::before { height: 18px; background: var(--c-a1); }
.mtick.is-picked { color: var(--c-a1); font-weight: 700; }
.mtick.is-picked::before { height: 22px; background: var(--c-a1); }

.form { display: flex; flex-direction: column; gap: var(--s-3); }
.form__row { display: grid; gap: var(--s-3); grid-template-columns: 1fr 1fr; }
.s-form .form__row:nth-of-type(2) { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.field input, .field select {
  font-family: var(--f-body); font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  background: #fff; color: var(--c-ink);
  position: relative;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--c-a1);
  box-shadow: -3px 0 0 -1px var(--c-a1);   /* axial serif at the field */
}
.form__foot { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.form__status { margin: 0; font-size: 14px; font-weight: 600; }
.form__status.success { color: #1f7a3d; }
.form__status.error { color: #b4331a; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer--minimal {
  margin-left: var(--rail-w);
  border-top: 1px solid var(--c-line);
  padding: var(--sec-y) var(--s-4);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
  text-align: center;
}
.footer__links, .footer__legal { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.footer__links a, .footer__legal a {
  text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
}
.footer__links a:hover, .footer__legal a:hover { color: var(--c-a1); }
.footer__hours { font-size: 13px; color: rgba(27,27,26,0.7); margin: 0; font-variant-numeric: tabular-nums; }
.footer__disclaimer {
  margin: var(--s-2) 0; font-size: 16px;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--c-a1); border-radius: var(--r-card);
}
.footer__legal { font-size: 14px; }
.footer__copy { font-size: 13px; color: rgba(27,27,26,0.6); margin: 0; }

/* =====================================================================
   REVEAL ANIMATION — Axis Reveal (fade-up + snap to axis)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in {
  opacity: 1; transform: translateY(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}

/* hero axis reveal draw */
.hero__axis-line {
  stroke-dasharray: 400; stroke-dashoffset: 400;
  animation: axisDraw 1.1s ease forwards .15s;
}
.hero__ticks line {
  stroke-dasharray: 26; stroke-dashoffset: 26;
  animation: tickDraw .4s ease forwards;
}
.hero__ticks line:nth-child(1) { animation-delay: .7s; }
.hero__ticks line:nth-child(2) { animation-delay: .9s; }
.hero__ticks line:nth-child(3) { animation-delay: 1.1s; }
.hero__ticks line:nth-child(4) { animation-delay: 1.3s; }
@keyframes axisDraw { to { stroke-dashoffset: 0; } }
@keyframes tickDraw { to { stroke-dashoffset: 0; } }

/* =====================================================================
   RESPONSIVE — mobile-first breakpoints 480 / 768 / 1024 / 1200
   ===================================================================== */
@media (max-width: 1024px) {
  .specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .s-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { min-height: 46vh; clip-path: none; }
  .hero__panel { padding: var(--sec-y) var(--pad-x); }

  .rangegrid, .rates, .log, .gallery { grid-template-columns: 1fr; }
  .games { grid-template-columns: 1fr; }
  .games__item:nth-child(odd) { border-right: none; }
}
@media (max-width: 768px) {
  /* rail becomes a top strip */
  .nav--rail {
    width: 100%; height: auto; flex-direction: row;
    align-items: center; justify-content: space-between;
    gap: var(--s-2); padding: 10px var(--s-2);
    border-right: none; border-bottom: 1px solid var(--c-line);
    flex-wrap: wrap;
  }
  .nav__badge { writing-mode: horizontal-tb; order: 4; flex-basis: 100%; text-align: center; margin: 0; }
  .nav__rail-links { flex-direction: row; writing-mode: horizontal-tb; margin: 0; gap: var(--s-3); }
  .nav__cta { writing-mode: horizontal-tb; padding: 10px 16px; }
  .logo { flex-direction: row; gap: 8px; }
  .railspy { display: none; }
  .page, .footer--minimal { margin-left: 0; }
  .specs { grid-template-columns: 1fr; }
  .ruler__tick { font-size: 10px; }
  .mtick { font-size: 9px; }
}
@media (max-width: 480px) {
  .hero__facts { gap: var(--s-3); }
  .nav__rail-links a { font-size: 11px; }
  .ruler__track, .miniline__track { gap: 0; }
  .form__row, .s-form .form__row:nth-of-type(2) { grid-template-columns: 1fr; }
}

/* =====================================================================
   LEGAL PAGES — margin-notes (narrow column, axis line on the left)
   ===================================================================== */
.legal { background: var(--c-bg); }
.legal__top {
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-3) clamp(20px, 5vw, 64px);
}
.legal__home { text-decoration: none; }
.legal__home .logo { flex-direction: row; gap: 8px; }
.legal__body {
  max-width: 720px;
  margin: var(--block-y) auto;
  padding: 0 clamp(20px, 5vw, 40px);
  position: relative;
}
.legal__body::before {
  content: ""; position: absolute; left: clamp(4px, 2vw, 16px); top: 6px; bottom: 6px;
  width: 2px; background: var(--c-line);
}
.legal__body h1 { margin-bottom: var(--s-3); }
.legal__body h2 {
  font-size: clamp(19px, 2.4vw, 24px);
  margin: var(--s-5) 0 var(--s-2);
  position: relative; padding-left: 22px;
}
.legal__body h2::before {
  content: ""; position: absolute; left: calc(clamp(4px, 2vw, 16px) - 20px + 2px); top: 0.55em;
  width: 16px; height: 2px; background: var(--c-a1);
}
.legal__lede { font-size: 18px; color: rgba(27,27,26,0.85); }
.legal__body p { color: rgba(27,27,26,0.86); }
.legal__foot-note { margin-top: var(--s-6); }
.legal__foot-note a { color: var(--c-a1); font-weight: 600; text-decoration: none; }
.legal__footer { margin-left: 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__axis-line, .hero__ticks line { animation: none !important; stroke-dashoffset: 0 !important; }
  .railspy__tick { transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* pages added */
.footer__address{font-style:normal;text-align:center;max-width:64ch;margin:1.75rem auto 0;
  padding-top:1.25rem;border-top:1px solid currentColor;line-height:1.6;font-size:.82rem;opacity:.75}
.footer__address strong{display:block;margin-bottom:.35rem;letter-spacing:.02em;opacity:.95}
.footer__address a{color:inherit;text-decoration:underline}
.legal__nav{display:flex;flex-wrap:wrap;gap:.6rem 1.15rem;margin:2.75rem 0 0;padding-top:1.4rem;
  border-top:1px solid currentColor;font-size:.9rem;line-height:1.4}
.legal__nav a{color:inherit;text-decoration:underline;opacity:.85}
.legal__nav a:hover{opacity:1}

/* legal2 */
.lg__kicker{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;opacity:.6;margin:0 0 .4rem}
.lg__lead{font-size:1.18rem;line-height:1.6;max-width:60ch;margin:0 0 2.4rem}
.lg h2,.lg h3{line-height:1.25}
.lg p{line-height:1.65;max-width:66ch}
/* list */
.lg--list .lg-list__sec{margin:0 0 2rem}
.lg--list h2{display:flex;align-items:baseline;gap:.6rem;font-size:1.25rem;margin:0 0 .8rem}
.lg-list__n{font-size:.8rem;opacity:.5;font-variant-numeric:tabular-nums}
.lg-list__ul{list-style:none;padding:0;margin:0;border-top:1px solid currentColor}
.lg-list__ul li{padding:.7rem 0 .7rem 1.4rem;border-bottom:1px solid;border-color:color-mix(in srgb,currentColor 18%,transparent);position:relative;line-height:1.6}
.lg-list__ul li::before{content:"";position:absolute;left:0;top:1.05rem;width:.5rem;height:.5rem;border:1px solid currentColor}
/* tiles */
.lg-tiles__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.lg-tile{border:1px solid currentColor;padding:1.25rem 1.35rem}
.lg-tile h3{margin:0 0 .6rem;font-size:1.08rem}
.lg-tile p{margin:.5rem 0;font-size:.95rem}
@media(max-width:640px){.lg-tiles__grid{grid-template-columns:1fr}}
/* cards */
.lg--cards{display:flex;flex-direction:column;gap:1rem}
.lg-card{display:flex;gap:1.1rem;border:1px solid color-mix(in srgb,currentColor 30%,transparent);border-left:3px solid currentColor;padding:1.1rem 1.25rem}
.lg-card__badge{flex:0 0 auto;font-weight:700;font-size:.85rem;opacity:.6;padding-top:.15rem;white-space:nowrap}
.lg-card__body h3{margin:0 0 .5rem;font-size:1.1rem}
.lg-card__body p{margin:.4rem 0}
/* rules */
.lg--rules .lg-rule{padding:1.4rem 0;border-top:1px solid currentColor}
.lg--rules .lg-rule:first-child{border-top:2px solid currentColor}
.lg--rules h2{font-size:1.2rem;margin:0 0 .7rem;padding-left:1rem;border-left:4px solid currentColor}
.lg--rules p{margin:.5rem 0 .5rem 1rem}
/* panels */
.lg--panels{display:flex;flex-direction:column;gap:.6rem}
.lg-panel{display:flex;gap:1.4rem;align-items:flex-start;padding:1.5rem;background:color-mix(in srgb,currentColor 5%,transparent)}
.lg-panel__num{font-size:2.4rem;font-weight:800;line-height:1;opacity:.28;font-variant-numeric:tabular-nums}
.lg-panel__body h2{margin:0 0 .6rem;font-size:1.2rem}
.lg-panel__body p{margin:.45rem 0}
@media(max-width:560px){.lg-panel{flex-direction:column;gap:.5rem}}
/* def */
.lg--def .lg-def__row{display:grid;grid-template-columns:1fr 2fr;gap:1.5rem;padding:1.5rem 0;border-top:1px solid currentColor}
.lg--def h2{position:sticky;top:1rem;font-size:1.15rem;margin:0}
.lg--def .lg-def__desc p{margin:.4rem 0}
@media(max-width:640px){.lg--def .lg-def__row{grid-template-columns:1fr;gap:.5rem}.lg--def h2{position:static}}
