:root {
  --stone: #e3e1d4;
  --paper: #f3f2e9;
  --ink: #151613;
  --mute: #5a5d54;
  --soft: #8b8e84;
  --line: #c8c6b9;
  --stamp: #d2ff32;
  --stamp-ink: #151613;
  --soot: #11120f;
  --console: #191b16;
  --console-2: #23261f;
  --ok: #3d6b3a;
  --focus: #151613;
  --radius: 2px;
  --wrap: 1120px;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 200;
  background: var(--stamp);
  color: var(--stamp-ink);
  padding: 8px 12px;
  font-weight: 650;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.display {
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.92;
  font-weight: 800;
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.kicker-dot {
  width: 7px;
  height: 7px;
  background: var(--stamp);
  border: 1px solid var(--ink);
}

h1, h2, h3, p {
  margin: 0;
}

/* ——— Launch banner ——— */
.launch-bar {
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.launch-bar .wrap {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.launch-bar b {
  color: var(--stamp);
  font-weight: 500;
}

.bar-short { display: none; }

/* ——— Nav ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--stone) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mark {
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--stamp);
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.06em;
}

.brand-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.05em;
}

.brand-sub {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  color: var(--mute);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

.menu-btn[aria-expanded="true"] span {
  background: transparent;
}

.menu-btn[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 20px 20px;
}

.mobile-panel.open { display: grid; gap: 8px; }

.mobile-panel a,
.mobile-panel button.linkish {
  display: block;
  padding: 10px 0;
  text-align: left;
  text-decoration: none;
  font-weight: 550;
  border-bottom: 1px solid var(--line);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-stamp {
  background: var(--stamp);
  color: var(--stamp-ink);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-full { width: 100%; }

.btn-sm {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

/* ——— Hero ——— */
.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.1rem, 7vw, 5.4rem);
  max-width: 11ch;
  margin: 14px 0 18px;
}

.lede {
  font-size: 1.15rem;
  color: var(--mute);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 28px;
}

.fine {
  font-size: 13px;
  color: var(--mute);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta b {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.hero-meta > div > span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--mute);
}

/* ——— Work order ticket ——— */
.ticket {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  grid-template-columns: 1fr 92px;
  min-height: 420px;
  position: relative;
}

.ticket-main {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1.5px dashed var(--ink);
}

.ticket-head,
.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.serial {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.clock {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  background: var(--stamp);
  border: 1px solid var(--ink);
  padding: 3px 7px;
}

.field label {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  background: transparent;
  border-radius: 0;
  padding: 6px 0 8px;
  outline: none;
  appearance: none;
}

.field select,
.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 22px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: color-mix(in srgb, var(--stamp) 28%, transparent);
}

.sku-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sku-pill {
  border: 1px solid var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
}

.sku-pill[aria-pressed="true"] {
  background: var(--stamp);
}

.ticket-price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ticket-price strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.ticket-stub {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  background: var(--ink);
  color: var(--paper);
}

.ticket-stub .mono {
  font-size: 10px;
  letter-spacing: 0.18em;
}

.stamp-seal {
  width: 64px;
  height: 64px;
  border: 2px solid var(--stamp);
  color: var(--stamp);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  transform: rotate(-18deg);
  opacity: 0.18;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ticket.is-stamped .stamp-seal {
  opacity: 1;
  transform: rotate(-12deg) scale(1.05);
}

.hole {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--stone);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  right: 84px;
}

.hole-t { top: -8px; }
.hole-b { bottom: -8px; }

/* ——— Strips / sections ——— */
.section {
  padding: 72px 0;
  scroll-margin-top: 84px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 10px 0 12px;
}

.section-head p {
  color: var(--mute);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* ——— Factory console ——— */
.console {
  background: var(--soot);
  color: #d8d6c8;
  border: 1.5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #0c0d0b;
  border-bottom: 1px solid #2a2c26;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #8d9085;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3d35;
  display: block;
}

.dots i:nth-child(1) { background: #ff5f56; }
.dots i:nth-child(2) { background: #ffbd2e; }
.dots i:nth-child(3) { background: #27c93f; }

.console-url {
  flex: 1;
  background: #181a15;
  border: 1px solid #2e3129;
  padding: 4px 10px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #2a2c26;
}

.tab {
  flex: 1;
  min-height: 44px;
  color: #8d9085;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.tab[aria-selected="true"] {
  color: var(--stamp);
  border-bottom-color: var(--stamp);
}

.panel {
  display: none;
  padding: 18px;
  min-height: 360px;
}

.panel.active { display: block; }

.brief-grid {
  display: grid;
  gap: 14px;
}

.brief-grid .form-field textarea {
  border-bottom-color: #4a4d44;
  color: #eeeadd;
  min-height: 88px;
  resize: vertical;
}

.brief-grid .form-field input,
.brief-grid .form-field select {
  border-bottom-color: #4a4d44;
  color: #eeeadd;
}

.brief-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--stamp);
}

.live::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--stamp);
  animation: blink 1.4s steps(2) infinite;
}

.stages {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.stage {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #2a2c26;
}

.stage i {
  width: 10px;
  height: 10px;
  border: 1px solid #6a6d62;
  border-radius: 50%;
}

.stage.done i {
  background: var(--stamp);
  border-color: var(--stamp);
}

.stage.active i {
  background: transparent;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--stamp) 35%, transparent);
  border-color: var(--stamp);
}

.log {
  background: #10110e;
  border: 1px solid #2a2c26;
  padding: 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 1.7;
  color: #9aa08f;
  max-height: 140px;
  overflow: auto;
}

.log .ok { color: var(--stamp); }

.handoff {
  display: grid;
  gap: 10px;
}

.asset {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #2a2c26;
  background: #141611;
}

.asset b { display: block; font-size: 14px; color: #eeeadd; }
.asset span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #8d9085;
}

/* ——— BOM / ships with ——— */
.bom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.bom-item {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bom-item:nth-child(3n) { border-right: 0; }
.bom-item:nth-last-child(-n+3) { border-bottom: 0; }

.bom-item .mono {
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.08em;
}

.bom-item h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
  margin: 8px 0 8px;
}

.bom-item p {
  color: var(--mute);
  font-size: 14.5px;
}

/* ——— SKUs ——— */
.skus {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.sku {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.sku-flag {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--stamp);
  border: 1px solid var(--ink);
  border-top: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 8px;
}

.sku .price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 56px;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.sku .price small {
  font-size: 16px;
  color: var(--mute);
  letter-spacing: 0;
  font-family: Figtree, sans-serif;
  font-weight: 500;
}

.sku ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sku li {
  padding-left: 16px;
  position: relative;
  font-size: 15px;
}

.sku li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 8px;
  color: var(--ink);
}

.sku .btn { margin-top: auto; }

/* ——— Compare ——— */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  font-size: 14px;
}

.compare th,
.compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare th {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.compare th.hl,
.compare td.hl {
  background: color-mix(in srgb, var(--stamp) 42%, var(--paper));
  font-weight: 650;
}

.compare tr:last-child td { border-bottom: 0; }

/* ——— Timeline ——— */
.hours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
}

.hour {
  padding: 22px;
  background: var(--paper);
  border-right: 1px solid var(--ink);
}

.hour:last-child { border-right: 0; }

.hour .mono {
  font-size: 12px;
  background: var(--ink);
  color: var(--stamp);
  display: inline-block;
  padding: 2px 6px;
}

.hour h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
  margin: 14px 0 8px;
}

.hour p { color: var(--mute); font-size: 14.5px; }

/* ——— Reviews ——— */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 22px;
}

.review p {
  font-size: 16px;
}

.review footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mute);
}

.review footer b {
  display: block;
  color: var(--ink);
}

/* ——— Maker ——— */
.maker {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  background: var(--ink);
  color: var(--paper);
  padding: 32px;
}

.maker-mark {
  width: 88px;
  height: 88px;
  background: var(--stamp);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.maker p {
  font-size: 1.15rem;
  max-width: 62ch;
}

.maker .who {
  margin-top: 16px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--stamp);
}

/* ——— FAQ ——— */
.faq {
  border-top: 1.5px solid var(--ink);
}

.faq-item {
  border-bottom: 1.5px solid var(--ink);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 18px 0;
  font-weight: 650;
  font-size: 17px;
}

.faq-item button span:last-child {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--mute);
}

.faq-item .answer {
  display: none;
  padding: 0 0 18px;
  color: var(--mute);
  max-width: 68ch;
}

.faq-item.open .answer { display: block; }

/* ——— Final CTA ——— */
.finale {
  background: var(--stamp);
  border: 1.5px solid var(--ink);
  padding: 48px 36px;
  text-align: center;
}

.finale h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 16ch;
  margin: 0 auto 16px;
}

.finale p {
  color: var(--ink);
  opacity: 0.75;
  max-width: 42ch;
  margin: 0 auto 24px;
}

/* ——— Footer ——— */
.footer {
  border-top: 1.5px solid var(--ink);
  padding: 28px 0 40px;
  margin-top: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  flex-wrap: wrap;
}

.footer a {
  color: var(--mute);
  text-decoration: none;
  margin-right: 16px;
  font-size: 14px;
}

.footer a:hover { color: var(--ink); }

/* ——— Modal ——— */
.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 20px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
}

.modal[open] { display: flex; }

.modal::backdrop {
  background: color-mix(in srgb, var(--ink) 55%, transparent);
}

.modal-bg {
  position: absolute;
  inset: 0;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 28px;
}

.modal-card h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field label {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}

.close-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  font-size: 18px;
  line-height: 1;
}

.success {
  text-align: center;
  padding: 12px 8px 4px;
}

.success .mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  font-size: 28px;
}

/* ——— Legal ——— */
.legal-main {
  width: min(760px, calc(100% - 40px));
  margin: 48px auto 80px;
}

.legal-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 36px;
}

.legal-card h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.4rem;
  margin: 28px 0 8px;
}

.legal-card h3 {
  font-size: 1.05rem;
  margin: 18px 0 6px;
}

.legal-card p,
.legal-card li {
  color: var(--mute);
}

.legal-card a { color: var(--ink); }

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes blink {
  50% { opacity: 0.2; }
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .skus,
  .reviews,
  .hours,
  .bom {
    grid-template-columns: 1fr;
  }

  .bom-item {
    border-right: 0;
  }

  .bom-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .bom-item:last-child { border-bottom: 0; }

  .hour { border-right: 0; border-bottom: 1px solid var(--ink); }
  .hour:last-child { border-bottom: 0; }

  .nav-links,
  .nav-cta .fine,
  .nav-cta .btn { display: none; }

  .menu-btn { display: grid; place-items: center; }

  .hero { padding-top: 32px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .bar-full { display: none; }
  .bar-short { display: inline; }
  .wrap { width: calc(100% - 28px); }
  .ticket { grid-template-columns: 1fr; }
  .ticket-main { border-right: 0; border-bottom: 1.5px dashed var(--ink); }
  .ticket-stub {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    padding: 12px 16px;
  }
  .hole { display: none; }
  .form-row,
  .brief-meta { grid-template-columns: 1fr; }
  .compare { display: block; overflow-x: auto; }
  .maker { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .live::before { animation: none; }
}
