/* ============================================================
   Baby Asteroid — $BABYASTEROID
   Space theme: deep navy, gold, cyan
   ============================================================ */

:root {
  --ink:        #070814;
  --ink-2:      #0b1224;
  --panel:      #121a33;
  --panel-2:    #182242;
  --line:       #2a3558;

  --yellow:     #ffc107;
  --yellow-hi:  #ffe56a;
  --orange:     #ff8a1e;
  --lime:       #3ec8ff;

  --concrete:   #f3f6ff;
  --muted:      #93a0c2;

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

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

*, *::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; }

/* ── orbit stripe ──────────────────────────────────────────── */
.tape {
  height: 8px;
  background: linear-gradient(90deg, #ffc107, #ff8a1e 38%, #3ec8ff 72%, #2f6dff);
}
.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 transparent;
  border-radius: 999px;
  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 #a87b00, 0 0 22px rgba(255,193,7,.28);
}
.btn--yellow:hover { background: var(--yellow-hi); transform: translateY(-2px); box-shadow: 0 7px 0 #a87b00, 0 0 28px rgba(255,193,7,.4); }
.btn--yellow:active { transform: translateY(3px); box-shadow: 0 2px 0 #a87b00; }

.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 #a87b00; }
.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(7,8,20,.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;
  text-decoration: none;
  color: var(--yellow);
  min-width: 0;
}
.nav__brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  object-fit: cover;
  flex: none;
  box-shadow: 0 0 16px rgba(255,193,7,.35);
}
.nav__id { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.nav__id strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .01em;
}
.nav__id small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--lime);
}

.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: 56px 0 18px;
  background:
    radial-gradient(900px 480px at 82% 12%, rgba(255,193,7,.16), transparent 60%),
    radial-gradient(700px 420px at 8% 80%, rgba(62,200,255,.12), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.45) 1px, transparent 1.4px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}

.hero__top {
  position: relative;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  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(72px, 12vw, 132px);
  line-height: .86;
  color: var(--yellow);
  text-shadow: 0 8px 0 rgba(0,0,0,.35), 0 0 28px rgba(255,193,7,.35);
  letter-spacing: .02em;
}
.hero__title-line--name {
  margin-top: 4px;
  font-size: clamp(36px, 6.4vw, 78px);
  line-height: .92;
  letter-spacing: .03em;
  background: linear-gradient(180deg, #fff6cc 0%, #ffc107 42%, #ff8a1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__ticker {
  display: inline-flex;
  margin: 4px 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #102a62;
  border: 1px solid rgba(62,200,255,.45);
  color: #8ad8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero__tag { font-size: 19px; color: #c5d0ea; 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 #3d4d78;
  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; }

/* square mascot — full body, not cropped to a circle */
.hero__mark {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  background: #070b18;
  border: 2px solid rgba(255,193,7,.5);
  box-shadow:
    0 0 0 6px rgba(62,200,255,.08),
    0 24px 60px rgba(0,0,0,.5);
}
.hero__mark img { width: 100%; height: auto; display: block; }

.hero__banner {
  margin: 36px auto 42px;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255,193,7,.5);
  box-shadow:
    0 0 0 6px rgba(62,200,255,.08),
    0 28px 70px rgba(0,0,0,.55);
}
.hero__banner img { width: 100%; height: auto; display: block; }

.photo {
  position: relative;
  border: 2px solid rgba(255,193,7,.55);
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 26px 60px rgba(0,0,0,.55), 0 0 40px rgba(62,200,255,.08);
}
.photo img { width: 100%; height: auto; }
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.5));
  pointer-events: none;
}

.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 #314268;
  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: #b7c3de; }
.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; }
.photo--story img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.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%, #8ad8ff, #1a3f86 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(18px, 2.1vw, 26px);
  color: var(--yellow);
  line-height: 1.15;
  letter-spacing: .01em;
  overflow-wrap: anywhere;
}
.spec__n { font-size: 14.5px; color: #9aabc9; }

/* ── 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: #a9b6d2; }
.card strong { color: var(--concrete); }

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

/* ── hardhat pfp builder ─────────────────────────── */
.hc { -webkit-user-select: none; user-select: none; }

.hc__build {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  background:
    radial-gradient(620px 320px at 12% 0%, rgba(255,199,0,.10), transparent 70%),
    var(--panel);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 32px;
}

.hc__stage {
  background: var(--ink);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}
.hc__stage canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  display: block;
}

.hc__panel { display: flex; flex-direction: column; gap: 20px; }
.hc__group { display: flex; flex-direction: column; gap: 10px; }
.hc__label {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}

.hc__row { display: flex; flex-wrap: wrap; gap: 9px; }
.hc__row--tight { gap: 7px; }
.hc__row button {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--concrete);
  background: var(--ink);
  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-on {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,199,0,.10);
}
.hc__row button.is-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 #a87b00;
}
.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 #a87b00; }

.hc__swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.hc__swatch {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 2px solid #3d3a34;
  cursor: pointer;
  padding: 0;
  transition: .13s ease;
}
.hc__swatch:hover { transform: translateY(-3px); border-color: var(--concrete); }
.hc__swatch.is-on {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,199,0,.28);
  transform: translateY(-2px);
}

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

/* label above each of the two tools, with a rule running out to the edge */
.tool-split {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--yellow);
}
.tool-split::after { content: ""; flex: 1; height: 2px; background: var(--line); }
.tool-split--2 { margin-top: 56px; }

/* ── hardhat overlay tool ──────────────────────────────────── */
.hh { -webkit-user-select: none; user-select: none; }
.hh input[type="file"] { display: none; }

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

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

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

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

.hh__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: #b7c3de; 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: #c5d0ea; 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: 50%; border: 2px solid var(--yellow); object-fit: cover; box-shadow: 0 0 16px rgba(255,193,7,.28); }
.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: #7d8aab;
  max-width: 100%;
}
.disclaimer strong { color: var(--muted); }
.copyright { margin: 18px 0 0; font-size: 12.8px; color: #6d7c9e; }

/* ── 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__top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero__copy .eyebrow { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__tag, .ca, .hero__ticker { margin-inline: auto; }
  .hero__mark { max-width: 420px; margin-inline: auto; }
  .story { grid-template-columns: 1fr; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hc__build { grid-template-columns: 1fr; gap: 26px; }
}

@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__build { padding: 20px; gap: 22px; }
  .hc__row button { flex: 1 1 44%; }
  .hh__drop { padding: 38px 20px; }
  .hh__mascot { width: 120px; }
  .hh__row button { flex: 1 1 44%; }
  .tool-split--2 { margin-top: 44px; }
  .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 { animation: none; }
}
