/* ============================================================
   BlockAin — Design Tokens
   ============================================================ */
:root {
  --ink:         #0A0E10;
  --ink-raised: #11161A;
  --ink-line:   #1A2126;
  --ink-line-2: #232C32;
  --bone:       #F4F1EA;
  --bone-dim:   #9AA3A8;
  --bone-faint: #5A6166;
  /* Accent — pale ice blue. Tweakable via the panel; kept under --mint
     for backward compatibility with all class names. */
  --mint:       #7FB8E8;
  --mint-deep:  #4E8BC0;
  --mint-glow:  rgba(127, 184, 232, 0.18);
  --mint-glow-2:rgba(127, 184, 232, 0.06);
  --accent-r:   127;
  --accent-g:   184;
  --accent-b:   232;

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1400px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);

  --font-display: "Inter Display", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--ink); color: var(--bone); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

::selection { background: var(--mint); color: var(--ink); }

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  margin-right: 10px;
  box-shadow: 0 0 12px var(--mint-glow);
  transform: translateY(-1px);
}

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }

.hr {
  height: 1px;
  background: var(--ink-line);
  width: 100%;
  margin: 0;
  border: 0;
}
.hr--mint { background: var(--mint); opacity: 0.35; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(10,14,16,0.85) 0%, rgba(10,14,16,0.55) 70%, rgba(10,14,16,0) 100%);
  transition: background 240ms var(--ease-out), border-color 240ms;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,14,16,0.85);
  border-bottom-color: var(--ink-line);
}
.nav-mark {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--bone-dim);
  position: relative;
  transition: color 200ms var(--ease-out);
}
.nav-link:hover { color: var(--bone); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: var(--mint);
  transition: width 240ms var(--ease-out);
}
.nav-link:hover::after { width: 100%; }

.nav-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 16px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--bone);
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
  position: relative;
}
.nav-pill:hover { background: var(--mint); color: var(--ink); }
.nav-pill .arrow { transition: transform 200ms var(--ease-out); }
.nav-pill:hover .arrow { transform: translate(2px,-2px); }

@media (max-width: 760px) {
  .nav-links .nav-link { display: none; }
}

/* ============================================================
   Logo (wordmark)
   ============================================================ */
.logo-svg { display: block; height: 22px; width: auto; }
.logo-tri { fill: var(--mint); transform-origin: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 9vw, 110px);
  padding-top: 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero-canvas-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-canvas-wrap canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-canvas-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%, transparent 0%, rgba(10,14,16,0.55) 75%, rgba(10,14,16,0.95) 100%),
    linear-gradient(180deg, rgba(10,14,16,0.6) 0%, transparent 18%, transparent 72%, rgba(10,14,16,0.9) 100%);
  pointer-events: none;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 12vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--bone);
  position: relative;
  z-index: 2;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line.revealed { overflow: visible; }
.hero-h1 .word { display: inline-block; transform: translateY(110%); opacity: 0; will-change: transform, opacity; }
.hero-h1 .line:nth-child(2) {
  color: var(--bone-dim);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  margin-top: 0.18em;
  letter-spacing: -0.02em;
  padding-right: 0.05em;
  padding-bottom: 0.08em;
}
.hero-h1 .mint-tri-inline {
  display: inline-block;
  vertical-align: -0.07em;
  width: 0.62em;
  height: 0.62em;
  margin-left: 0.04em;
}

.hero-bottom {
  position: relative; z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(40px, 6vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}
.hero-bottom-left {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.anchor-link {
  font-size: 14px;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  position: relative;
  transition: color 200ms var(--ease-out);
}
.anchor-link::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--ink-line-2);
  transition: background 240ms var(--ease-out);
}
.anchor-link:hover { color: var(--mint); }
.anchor-link:hover::before { background: var(--mint); }
.anchor-link .arrow { transition: transform 240ms var(--ease-out); }
.anchor-link:hover .arrow { transform: translate(3px,3px); }

.hero-bottom-right {
  display: flex; gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.hero-bottom-right span b { color: var(--bone-dim); font-weight: 500; }

@media (max-width: 760px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-bottom-right { display: none; }
}

/* ============================================================
   Pillars
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 14px 0 0 0;
  color: var(--bone);
  max-width: 14ch;
}
.section-head .lede {
  color: var(--bone-dim);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 0.4em;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.pillar {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--ink-line);
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: background 240ms var(--ease-out);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--ink-raised); }
.pillar-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.12em;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 24px 0 14px;
  color: var(--bone);
}
.pillar-sentence {
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}
.pillar-bullets {
  list-style: none;
  margin: 18px 0 0 0;
  padding: 0;
  border-top: 1px dashed var(--ink-line);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease-out), opacity 240ms var(--ease-out), margin-top 240ms;
}
.pillar:hover .pillar-bullets {
  max-height: 240px;
  opacity: 1;
  margin-top: 22px;
  padding-top: 18px;
}
.pillar-bullets li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone-dim);
  letter-spacing: 0.02em;
  padding: 6px 0 6px 18px;
  position: relative;
}
.pillar-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 1px;
  background: var(--mint);
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--ink-line); }
  .pillar:last-child { border-bottom: 0; }
  .pillar-bullets { max-height: 240px; opacity: 1; margin-top: 18px; padding-top: 14px; }
}

/* ============================================================
   Coverage meta strip (above numbers)
   ============================================================ */
.coverage-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.cov-cell {
  padding: 22px 24px;
  border-right: 1px solid var(--ink-line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.cov-cell:last-child { border-right: 0; }
.cov-cell .v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.cov-cell .l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bone-faint);
}
@media (max-width: 760px) {
  .coverage-strip { grid-template-columns: repeat(2, 1fr); }
  .cov-cell:nth-child(2) { border-right: 0; }
  .cov-cell:nth-child(1), .cov-cell:nth-child(2) { border-bottom: 1px solid var(--ink-line); }
}

/* ============================================================
   Numbers / Stat slabs
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--ink-line);
  position: relative;
  transition: background 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.stat:last-child { border-right: 0; }
.stat:hover {
  background: var(--ink-raised);
  transform: translateY(-2px);
  box-shadow: 0 -1px 0 var(--mint), 0 24px 60px -20px var(--mint-glow);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num .suffix { color: var(--mint); font-size: 0.6em; margin-left: 2px; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 24px;
}
.stat-sub {
  color: var(--bone-dim);
  font-size: 13px;
  margin-top: 8px;
  max-width: 26ch;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--ink-line); }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--ink-line); }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   Venues
   ============================================================ */
.venues-shell {
  border: 1px solid var(--ink-line);
  background: var(--ink-raised);
  border-radius: 2px;
  overflow: hidden;
}
.venue-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ink-line);
  background: var(--ink);
}
.venue-section-head .ttl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bone-dim);
}
.venue-section-head .ttl b { color: var(--bone); margin-right: 8px; }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.venue {
  padding: 32px 16px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.7;
  transition: filter 280ms var(--ease-out), opacity 280ms var(--ease-out), color 280ms var(--ease-out), background 280ms;
  color: var(--bone-dim);
  position: relative;
  min-height: 88px;
}
.venue:hover {
  filter: none;
  opacity: 1;
  color: var(--mint);
  background: rgba(79, 227, 181, 0.04);
}
.venue-grid.hovering .venue:not(:hover) {
  opacity: 0.28;
}
.venue-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.venue:nth-child(6n) { border-right: 0; }
.venue-grid > .venue:nth-last-child(-n+6) { border-bottom: 0; }
@media (max-width: 1024px) {
  .venue-grid { grid-template-columns: repeat(4, 1fr); }
  .venue:nth-child(6n) { border-right: 1px solid var(--ink-line); }
  .venue:nth-child(4n) { border-right: 0; }
  .venue-grid > .venue:nth-last-child(-n+6) { border-bottom: 1px solid var(--ink-line); }
  .venue-grid > .venue:nth-last-child(-n+4) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .venue { border-right: 1px solid var(--ink-line) !important; }
  .venue:nth-child(2n) { border-right: 0 !important; }
}

/* ============================================================
   CTA cards
   ============================================================ */
.ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  position: relative;
  padding: 44px 40px 40px;
  border: 1px solid var(--ink-line);
  background: var(--ink-raised);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.cta-card:hover {
  transform: translateY(-3px);
  border-color: var(--bone-faint);
}
.cta-card--lp {
  border-color: var(--mint);
  background:
    radial-gradient(ellipse 90% 100% at 100% 0%, var(--mint-glow-2) 0%, transparent 60%),
    var(--ink-raised);
}
.cta-card--lp:hover {
  border-color: var(--mint);
  box-shadow: 0 30px 80px -30px var(--mint-glow);
}
.cta-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.14em;
}
.cta-card .audience {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cta-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 24px 0 18px;
  color: var(--bone);
}
.cta-card p {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 38ch;
}
.cta-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--ink-line-2);
  border-radius: 2px;
  font-size: 14px;
  color: var(--bone);
  transition: all 240ms var(--ease-out);
}
.cta-action:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.cta-card--lp .cta-action {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}
.cta-card--lp .cta-action:hover {
  background: transparent;
  color: var(--mint);
}
.cta-card .endpoint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.04em;
  margin-top: 22px;
}
.cta-card .endpoint b { color: var(--bone-dim); font-weight: 500; }

@media (max-width: 860px) {
  .ctas { grid-template-columns: 1fr; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.trust-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 240ms var(--ease-out);
}
.trust-cell:last-child { border-right: 0; }
.trust-cell:hover { background: var(--ink-raised); }
.trust-cell .kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.trust-cell .target {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.trust-cell:hover .target { color: var(--mint); }
.trust-cell .target .arrow { transition: transform 240ms var(--ease-out); }
.trust-cell:hover .target .arrow { transform: translate(3px,-3px); }

@media (max-width: 860px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(2) { border-right: 0; }
  .trust-cell:nth-child(1), .trust-cell:nth-child(2) { border-bottom: 1px solid var(--ink-line); }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: clamp(80px, 10vw, 140px) 0 40px;
  border-top: 1px solid var(--ink-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}
.footer-mark {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-mark .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
  max-width: 28ch;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--bone);
  transition: color 200ms var(--ease-out);
}
.footer-col a:hover { color: var(--mint); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone-faint);
}
.footer-bottom .hash { color: var(--bone-dim); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-mark { grid-column: 1 / -1; }
}

/* ============================================================
   Scroll-reveal helpers
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 60ms; }
.reveal-d2 { transition-delay: 120ms; }
.reveal-d3 { transition-delay: 180ms; }
.reveal-d4 { transition-delay: 240ms; }
.reveal-d5 { transition-delay: 300ms; }
.reveal-d6 { transition-delay: 360ms; }

/* ============================================================
   Tweaks panel — accent color
   ============================================================ */
.tweaks {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  background: var(--ink-raised);
  border: 1px solid var(--ink-line-2);
  border-radius: 6px;
  padding: 14px 16px 16px;
  width: 240px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  font-family: var(--font-body);
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks h6 {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks h6 button {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--bone-dim);
  letter-spacing: 0.14em;
}
.tweaks h6 button:hover { color: var(--bone); }
.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.swatch {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid var(--ink-line-2);
  cursor: pointer;
  transition: transform 200ms var(--ease-out), border-color 200ms;
}
.swatch:hover { transform: translateY(-2px); }
.swatch.is-active { border-color: var(--bone); box-shadow: inset 0 0 0 2px var(--ink-raised); }
.swatch-label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-h1 .word { transform: none; opacity: 1; }
  .hero-canvas-wrap canvas { display: none; }
  .hero-canvas-wrap::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, var(--mint-glow-2), transparent 70%);
  }
}
