/* ============================================================
   $SUE — Sue the Construction Cat
   Construction-site theme: hazard yellow, asphalt black, concrete
   ============================================================ */

:root {
  --ink:        #0c0c0c;
  --ink-2:      #141413;
  --panel:      #1b1a18;
  --panel-2:    #232220;
  --line:       #33312d;

  --yellow:     #ffc700;
  --yellow-hi:  #ffdc4a;
  --orange:     #ff6a13;
  --lime:       #c8ff2e;

  --concrete:   #ece8df;
  --muted:      #9c968a;

  --font-display: 'Archivo Black', 'Arial Black', Impact, system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --r: 14px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--concrete);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

a { color: inherit; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 820px; }

/* ── hazard tape ───────────────────────────────────────────── */
.tape {
  height: 16px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 22px,
    var(--ink) 22px 44px
  );
}
.tape--top { position: relative; z-index: 60; }
.tape--bottom { margin-top: 0; }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  --bg: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 26px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap;
}
.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 5px 0 #b88c00;
}
.btn--yellow:hover { background: var(--yellow-hi); transform: translateY(-2px); box-shadow: 0 7px 0 #b88c00; }
.btn--yellow:active { transform: translateY(3px); box-shadow: 0 2px 0 #b88c00; }

.btn--ghost {
  background: transparent;
  color: var(--concrete);
  border-color: var(--line);
  box-shadow: 0 5px 0 #000;
}
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(3px); box-shadow: 0 2px 0 #000; }

.btn--sm { padding: 10px 18px; font-size: 13px; box-shadow: 0 4px 0 #b88c00; }
.btn--lg { padding: 18px 34px; font-size: 17px; }

/* ── nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 22px;
  background: rgba(12,12,12,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav.is-stuck { box-shadow: 0 10px 30px rgba(0,0,0,.5); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 22px;
  text-decoration: none;
  color: var(--yellow);
  letter-spacing: -.01em;
}
.nav__brand img {
  width: 40px; height: 40px;
  border-radius: 9px;
  border: 2px solid var(--yellow);
  object-fit: cover;
}

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--concrete);
  letter-spacing: .01em;
  transition: color .15s ease;
}
.nav__links a:not(.btn):hover { color: var(--yellow); }
.nav__cta { margin-left: 4px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}
.nav__toggle span { display: block; width: 20px; height: 2.5px; background: var(--yellow); border-radius: 2px; transition: .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 70px 0 84px;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(255,199,0,.13), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  overflow: hidden;
}
/* blueprint grid */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200,255,46,.65);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 11px rgba(200,255,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,255,46,0); }
}

.hero__title { margin-bottom: 20px; }
.hero__title-line { display: block; }
.hero__title-line:first-child {
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: .14em;
  color: var(--muted);
}
.hero__title-line--big {
  font-size: clamp(88px, 15vw, 178px);
  line-height: .84;
  color: var(--yellow);
  text-shadow: 6px 6px 0 rgba(0,0,0,.55);
  letter-spacing: -.03em;
}
.hero__title-line--sub {
  margin-top: 10px;
  font-size: clamp(22px, 3.1vw, 38px);
  letter-spacing: .01em;
  color: var(--concrete);
  text-transform: none;
}

.hero__tag { font-size: 19px; color: #cfc9bd; margin: 0 0 30px; max-width: 46ch; }
.hero__tag strong { color: var(--concrete); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

/* contract address block */
.ca {
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  max-width: 560px;
}
.ca__label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ca__chain {
  background: var(--yellow); color: var(--ink);
  padding: 2px 8px; border-radius: 5px;
  letter-spacing: .08em; font-size: 10.5px;
}
.ca__row {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  background: var(--ink);
  border: 1px dashed #4a463f;
  border-radius: 9px;
  padding: 12px 13px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background .15s ease;
  font: inherit;
  color: inherit;
}
.ca__row:hover { border-color: var(--yellow); }
.ca__row code {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Menlo, Consolas, monospace;
  font-size: 13.5px;
  color: var(--concrete);
  overflow-wrap: anywhere;
}
.ca__btn {
  flex: none;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-size: 12px;
  text-transform: uppercase;
  padding: 7px 13px; border-radius: 7px;
}
.ca__row.is-copied .ca__btn { background: var(--lime); }
.ca__warn { margin: 11px 0 0; font-size: 12.5px; color: var(--muted); }
.ca__warn a { color: var(--yellow); text-decoration: none; font-weight: 700; white-space: nowrap; }
.ca__warn a:hover { text-decoration: underline; }
.ca.is-pending .ca__row { cursor: default; }
.ca.is-pending .ca__row code { color: var(--yellow); font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; }

/* hero art */
.hero__art { position: relative; justify-self: center; }

.photo {
  position: relative;
  border: 3px solid var(--yellow);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 26px 60px rgba(0,0,0,.6);
  transform: rotate(1.6deg);
}
.photo img { width: 100%; height: auto; }
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.42));
  pointer-events: none;
}
.photo__corner {
  position: absolute; width: 13px; height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #fff5cc, #a97f00 68%);
  z-index: 2;
}
.photo__corner--tl { top: 11px; left: 11px; }
.photo__corner--br { bottom: 11px; right: 11px; }

/* logo medallion (hero) */
.medallion {
  position: relative;
  width: min(430px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #191510, #090909 72%);
  box-shadow:
    0 0 0 3px var(--yellow),
    0 0 70px rgba(255,199,0,.26),
    0 30px 70px rgba(0,0,0,.65);
  animation: bob 6s ease-in-out infinite;
}
.medallion img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.medallion__ring {
  position: absolute; inset: -20px;
  border: 2px dashed rgba(255,199,0,.42);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
@keyframes spin {
  to { rotate: 360deg; }
}

.chip {
  position: absolute;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  padding: 9px 15px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
  animation: float 5s ease-in-out infinite;
}
.chip--1 { background: var(--yellow); color: var(--ink); top: 5%; left: -8%; transform: rotate(-8deg); }
.chip--2 { background: var(--lime); color: var(--ink); bottom: 16%; right: -9%; transform: rotate(7deg); animation-delay: -1.6s; }
.chip--3 { background: var(--orange); color: #fff; bottom: -3%; left: 4%; transform: rotate(-4deg); animation-delay: -3.2s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ── marquee ───────────────────────────────────────────────── */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  border-block: 3px solid var(--ink);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: scroll 34s linear infinite;
  will-change: transform;
}
.marquee span { font-family: var(--font-display); font-size: 17px; text-transform: uppercase; }
.marquee b { font-size: 13px; opacity: .55; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── sections ──────────────────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section--story { background: var(--ink); }
.section--spec  { background: var(--ink-2); border-block: 1px solid var(--line); }
.section--buy   { background: var(--ink); }
.section--tool  { background: var(--ink-2); border-block: 1px solid var(--line); }
.section--faq   { background: var(--ink); }
.section--join  { background: var(--ink); padding-top: 34px; padding-bottom: 96px; }

.sec-head { margin-bottom: 52px; max-width: 720px; }
.sec-head h2 { font-size: clamp(34px, 5.4vw, 60px); }
.sec-sub { color: var(--muted); font-size: 18px; margin: 16px 0 0; }
.sec-sub strong {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-right: 4px;
}

/* ── story ─────────────────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
}

.steps { list-style: none; margin: 0; padding: 0; }
.step {
  position: relative;
  padding: 0 0 34px 66px;
  border-left: 2px dashed #3a3833;
  margin-left: 20px;
}
.step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step__no {
  position: absolute;
  left: -21px; top: -4px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-size: 14px;
  border-radius: 50%;
  border: 3px solid var(--ink);
}
.step h3 { font-size: 21px; margin-bottom: 9px; letter-spacing: -.01em; }
.step p { margin: 0; color: #b8b2a6; }
.step strong { color: var(--yellow); }

.story__side { display: grid; gap: 16px; }

.photo-credit {
  justify-self: center;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease;
}
.photo-credit:hover { color: var(--yellow); text-decoration: underline; }

.photo--story { margin: 0; transform: rotate(-1.5deg); }
.photo--story img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 26%;
}
.photo--story figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--concrete);
  text-shadow: 0 2px 6px rgba(0,0,0,.8);
}

/* ── spec sheet ────────────────────────────────────────────── */
.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.spec {
  position: relative;
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .18s ease, transform .18s ease;
}
.spec::before,
.spec::after {
  content: "";
  position: absolute; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #6d6659, #2a2823 70%);
}
.spec::before { left: 12px; }
.spec::after  { right: 12px; }
.spec:hover { border-color: var(--yellow); transform: translateY(-4px); }
.spec--hero { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,199,0,.08); }
.spec__k { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.spec__v {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--yellow);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.spec__n { font-size: 14.5px; color: #a49e92; }

/* ── how to buy ────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: var(--r);
  padding: 30px 22px 24px;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.card__no {
  position: absolute; top: -18px; left: 20px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-size: 18px;
  border-radius: 11px;
  border: 3px solid var(--ink);
  transform: rotate(-6deg);
}
.card h3 { font-size: 18px; margin: 10px 0 10px; }
.card p { margin: 0; font-size: 15px; color: #ada79b; }
.card strong { color: var(--concrete); }

.buy-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 46px; }

/* ── hardhat pfp tool ────────────────────────────────────────── */
.hc {
  max-width: 820px;
  margin-inline: auto;
  -webkit-user-select: none;
  user-select: none;
}
.hc input[type="file"] { display: none; }

/* dropzone (before an image is chosen) */
.hc__drop {
  background:
    radial-gradient(620px 320px at 50% 0%, rgba(255,199,0,.11), transparent 70%),
    var(--panel);
  border: 2px dashed #45413a;
  border-radius: 20px;
  padding: 52px 26px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.hc__drop:hover,
.hc__drop.over { border-color: var(--yellow); transform: translateY(-2px); }
.hc__drop:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.hc__hat {
  width: 168px; height: 95px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.55));
}
.hc__drop h3 { margin: 18px 0 8px; font-size: 19px; }
.hc__drop p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* editor (after an image is chosen) */
.hc__editor { display: none; flex-direction: column; align-items: center; gap: 14px; }
.hc.has-img .hc__drop { display: none; }
.hc.has-img .hc__editor { display: flex; }

.hc__stage {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 12px;
}
.hc__stage canvas {
  max-width: 100%;
  max-height: 60vh;
  width: auto; height: auto;
  border-radius: 8px;
  touch-action: none;
  cursor: grab;
  display: block;
}
.hc__stage canvas.dragging { cursor: grabbing; }

.hc__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; width: 100%; }
.hc__row button {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--concrete);
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 11px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: .13s ease;
}
.hc__row button:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.hc__row button.is-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 #b88c00;
}
.hc__row button.is-primary:hover { background: var(--yellow-hi); border-color: var(--yellow-hi); color: var(--ink); }
.hc__row button.is-primary:active { transform: translateY(3px); box-shadow: 0 1px 0 #b88c00; }
.hc__row button.is-danger:hover { border-color: #e2544a; color: #ff7a70; }

.hc__hint { margin: 2px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

/* ── faq ───────────────────────────────────────────────────── */
.faq details {
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .18s ease;
}
.faq details[open] { border-color: var(--yellow); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 54px 19px 22px;
  position: relative;
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: none;
  letter-spacing: -.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 20px; top: 50%;
  translate: 0 -50%;
  font-size: 26px; line-height: 1;
  color: var(--yellow);
  transition: rotate .2s ease;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq p { margin: 0; padding: 0 22px 22px; color: #b0aa9e; font-size: 15.5px; }

/* ── join ──────────────────────────────────────────────────── */
.join {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 34px;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,199,0,.16), transparent 70%),
    var(--panel);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 46px 44px;
}
.join h2 { font-size: clamp(30px, 4.6vw, 48px); color: var(--yellow); }
.join p { margin: 12px 0 0; color: #b6b0a4; font-size: 18px; }
.join__links { display: flex; flex-wrap: wrap; gap: 12px; }
.social {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 14px 20px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  transition: .16s ease;
}
.social svg { width: 18px; height: 18px; fill: var(--yellow); }
.social:hover { border-color: var(--yellow); background: var(--yellow); color: var(--ink); transform: translateY(-3px); }
.social:hover svg { fill: var(--ink); }

/* ── footer ────────────────────────────────────────────────── */
.footer { background: var(--ink-2); padding: 48px 0 40px; }
.footer__top {
  display: flex; flex-wrap: wrap; gap: 22px;
  align-items: center; justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 52px; height: 52px; border-radius: 12px; border: 2px solid var(--yellow); object-fit: cover; }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--yellow); }
.footer__brand span { font-size: 13.5px; color: var(--muted); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { text-decoration: none; font-size: 14.5px; font-weight: 600; color: var(--muted); }
.footer__nav a:hover { color: var(--yellow); }

.disclaimer {
  margin: 26px 0 0;
  font-size: 12.8px;
  line-height: 1.65;
  color: #7f7a70;
  max-width: 100%;
}
.disclaimer strong { color: var(--muted); }
.copyright { margin: 18px 0 0; font-size: 12.8px; color: #6d685f; }

/* ── reveal on scroll ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ── responsive ────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 46px; text-align: center; }
  .hero__copy .eyebrow, .hero__actions, .hero__tag { justify-content: center; }
  .hero__tag, .ca { margin-inline: auto; }
  .story { grid-template-columns: 1fr; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 2px solid var(--line);
    padding: 8px 22px 20px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 14px 0 0; border-bottom: 0 !important; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero { padding: 46px 0 62px; }
  .specs, .cards { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions, .buy-cta { flex-direction: column; }
  .join { padding: 34px 24px; }
  .hc__drop { padding: 38px 18px; }
  .hc__hat { width: 130px; height: 74px; }
  .hc__row button { flex: 1 1 44%; }
  .join__links { width: 100%; }
  .social { flex: 1 1 auto; justify-content: center; }
  .chip--1 { left: -2%; }
  .chip--2 { right: -2%; }
  .step { padding-left: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .chip, .eyebrow .dot, .medallion, .medallion__ring { animation: none; }
}
