/* SIGNAL — factory floor task sequencing · dispatch terminal */
:root {
  --bg: #0c0c0c;
  --bg-2: #121212;
  --bg-3: #181818;
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --ink: #e8e8e4;
  --mute: #8a8a84;
  --dim: #5a5a54;
  --red: #e61919;
  --green: #4af626;
  --amber: #e6b800;
  --mono: "IBM Plex Mono", "SF Mono", "Cascadia Mono", "Consolas", monospace;
  --sans: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --pad: clamp(1rem, 3vw, 2rem);
  --max: 1180px;
  --nav-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  opacity: 0.45;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; background: transparent; border: none; }
ul, ol { list-style: none; }

.wrap { width: min(100% - var(--pad) * 2, var(--max)); margin-inline: auto; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.rule-red { border-top: 2px solid var(--red); }
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.tag-live {
  color: var(--green);
}
.tag-live::before {
  content: "● ";
  font-size: 8px;
}
.accent { color: var(--red); }
.mute { color: var(--mute); }
.dim { color: var(--dim); }
.num { font-variant-numeric: tabular-nums; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 12, 12, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand b { color: var(--red); font-weight: 700; }
.brand span { color: var(--mute); font-size: 10px; font-weight: 400; letter-spacing: 0.08em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.4rem 0.55rem;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  border-color: var(--line-2);
  background: var(--bg-2);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff !important;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-cta:hover { filter: brightness(1.08); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line-2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-2);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* HERO DISPATCH */
.hero {
  border-bottom: 1px solid var(--line);
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-copy {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-right: 1px solid var(--line);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-lead {
  color: var(--mute);
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.65;
}
.hero-board {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  min-height: 100%;
}
.board-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.board-head strong { color: var(--ink); font-weight: 600; }
.queue {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.q-row {
  display: grid;
  grid-template-columns: 72px 1fr 70px 64px;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  transition: background 0.12s;
}
.q-row:hover { background: var(--bg-3); }
.q-id { color: var(--dim); letter-spacing: 0.06em; }
.q-title { color: var(--ink); }
.q-title small {
  display: block;
  color: var(--mute);
  font-size: 10px;
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
}
.q-pri {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.35rem;
  border: 1px solid var(--line-2);
}
.q-pri.p0 { color: var(--red); border-color: var(--red); }
.q-pri.p1 { color: var(--amber); border-color: #6a5500; }
.q-pri.p2 { color: var(--mute); }
.q-eta { text-align: right; color: var(--mute); font-variant-numeric: tabular-nums; }
.board-foot {
  margin-top: auto;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* STAT STRIP */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

/* SECTIONS */
.sec {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.sec-head {
  margin-bottom: 1.5rem;
  max-width: 52ch;
}
.sec-head h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.sec-head p { color: var(--mute); max-width: 48ch; }

/* MODULE RAIL — kanban columns as rails, not cards */
.rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.rail-col {
  background: var(--bg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.rail-col-h {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  background: var(--bg-2);
}
.rail-col-h b { color: var(--ink); font-weight: 600; }
.ticket {
  margin: 0.55rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 11px;
}
.ticket .t-id {
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.ticket .t-name {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.ticket .t-meta {
  color: var(--mute);
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.ticket.hot { border-left: 3px solid var(--red); }
.ticket.warn { border-left: 3px solid var(--amber); }

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.split-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--bg-2);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.35) contrast(1.05);
  min-height: 320px;
}
.split-media .frame {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(232, 232, 228, 0.25);
  pointer-events: none;
}
.split-media .frame-label {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 0.25rem 0.5rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.split-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-left: 1px solid var(--line);
  background: var(--bg);
}
.split-body h3 {
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.split-body p { color: var(--mute); max-width: 42ch; }
.checklist li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
}
.checklist li:last-child { border-bottom: 0; }
.checklist .mk { color: var(--green); }

/* FEATURE ROWS — dense list, not cards */
.feat-table {
  border: 1px solid var(--line);
}
.feat-row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1.4fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.feat-row:last-child { border-bottom: 0; }
.feat-row:nth-child(even) { background: var(--bg-2); }
.feat-code {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.feat-row h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.feat-row p { color: var(--mute); font-size: 12px; }
.feat-row .side { color: var(--dim); font-size: 11px; line-height: 1.5; }

/* PHOTO BAND */
.photo-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.photo-cell {
  position: relative;
  min-height: 220px;
  background: var(--bg-2);
  overflow: hidden;
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  min-height: 220px;
  filter: grayscale(0.4) contrast(1.08);
}
.photo-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

/* FLOW TIMELINE */
.flow {
  border: 1px solid var(--line);
}
.flow-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.flow-row:last-child { border-bottom: 0; }
.flow-step {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.flow-row h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.flow-row p { color: var(--mute); font-size: 12px; }
.flow-tag {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* PRICING — plan rows */
.plan-list { border: 1px solid var(--line); }
.plan {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 1.25rem;
  padding: 1.25rem 1.1rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.plan:last-child { border-bottom: 0; }
.plan.featured {
  background: var(--bg-2);
  border-left: 3px solid var(--red);
}
.plan-name {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.plan-name small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--mute);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.plan-body { color: var(--mute); font-size: 12px; }
.plan-body ul {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.5rem;
  color: var(--ink);
}
.plan-body li::before {
  content: "› ";
  color: var(--red);
}
.plan-price {
  text-align: right;
  white-space: nowrap;
}
.plan-price b {
  display: block;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.plan-price span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

/* CONTACT / FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-panel {
  background: var(--bg);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.contact-panel h2 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.contact-list { margin-top: 1.25rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list dt { color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.contact-list dd { color: var(--ink); word-break: break-all; }
.contact-list a:hover { color: var(--red); }
.form-grid {
  display: grid;
  gap: 0.85rem;
}
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: 11px;
  color: var(--dim);
  margin-top: 0.5rem;
}

/* ABOUT */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border: 1px solid var(--line);
}
.about-copy {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}
.about-copy h1 {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.about-copy p { color: var(--mute); max-width: 48ch; margin-bottom: 0.75rem; }
.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-meta div {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.about-meta div:nth-child(2n) { border-right: 0; }
.about-meta b {
  display: block;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.about-meta span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

/* PAGE HERO (inner) */
.page-hero {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--mute);
  max-width: 48ch;
}

/* CTA BAND */
.cta-band {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.cta-band h2 {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.cta-band p { color: var(--mute); max-width: 48ch; }

/* FOOTER */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.foot-brand {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.foot-brand b { color: var(--red); }
.foot-grid p { color: var(--mute); font-size: 12px; max-width: 32ch; }
.foot-grid h4 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.7rem;
}
.foot-grid a {
  display: block;
  color: var(--mute);
  font-size: 12px;
  padding: 0.2rem 0;
}
.foot-grid a:hover { color: var(--ink); }
.foot-bar {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* REVEAL — visible by default, hide only with js-ready */
.reveal { opacity: 1; transform: none; }
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
html.js-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}
html.js-ready .reveal.is-force {
  opacity: 1 !important;
  transform: none !important;
}

/* MOBILE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-board { min-height: 360px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .rail { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-body { border-left: 0; border-top: 1px solid var(--line); }
  .photo-band { grid-template-columns: 1fr; }
  .feat-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .flow-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .flow-tag { text-align: left; }
  .plan { grid-template-columns: 1fr; gap: 0.75rem; }
  .plan-price { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-band { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .q-row { grid-template-columns: 56px 1fr 56px; }
  .q-eta { display: none; }
}
@media (max-width: 560px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .about-meta { grid-template-columns: 1fr; }
  .about-meta div { border-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body::before { display: none; }
}
