/* ============================================================
   Delivery Guy — styles.css
   Dark, near-black base. Lime (#c5fa07, sampled from the mascot)
   is the only strong color on the page.
   ============================================================ */

:root {
  --bg: #0b0c0a;
  --bg-2: #111310;
  --bg-3: #171a14;
  --ink: #f3f5ee;
  --ink-2: #b7bdaa;
  --ink-3: #7d8471;
  --lime: #c5fa07;
  --lime-2: #a9d906;
  --lime-dim: rgba(197, 250, 7, 0.12);
  --lime-glow: rgba(197, 250, 7, 0.35);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --danger: #ff6b6b;

  --font-display: "Unbounded", "Arial Black", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius: 18px;
  --radius-sm: 12px;
  --topbar-h: 64px;
  --wrap: 1120px;
  --pad: clamp(16px, 4vw, 32px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--topbar-h);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ol, ul, dl, figure { margin: 0; }
ol, ul { padding: 0; list-style: none; }
code { font-family: var(--font-mono); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.ico { width: 1.1em; height: 1.1em; flex: none; }
.ico, .step__icon, .buystep__icon, .empty__icon { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.hide-xs { display: inline; }
@media (max-width: 479px) { .hide-xs { display: none; } }

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 100;
  background: var(--lime); color: #000; padding: 8px 14px; border-radius: 8px; font-weight: 700;
}
.skip:focus { top: 8px; }

/* ---------- Type ---------- */
h1, h2, h3, .card__big, .stat__value, .marquee { font-family: var(--font-display); }
h2 {
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.accent { color: var(--lime); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.section__sub { color: var(--ink-2); margin-top: 12px; max-width: 58ch; }
.fineprint { color: var(--ink-3); font-size: 0.85rem; margin-top: 20px; max-width: 70ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px;
  border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lime { background: var(--lime); color: #0a0b08; }
.btn--lime:hover { box-shadow: 0 8px 28px -6px var(--lime-glow); background: #d3ff2a; }
.btn--ghost { background: rgba(255,255,255,0.03); border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--lime); background: var(--lime-dim); }
.btn--lg { min-height: 52px; padding: 0 26px; font-size: 1rem; }
.btn--sm { min-height: 38px; padding: 0 14px; font-size: 0.85rem; }
.btn.is-disabled, .btn[aria-disabled="true"] {
  background: var(--bg-3); color: var(--ink-3); border-color: var(--line);
  cursor: not-allowed; pointer-events: none; box-shadow: none; transform: none;
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 34px; padding: 0 12px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-2);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.chip:hover { border-color: var(--lime); color: var(--ink); background: var(--lime-dim); }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--topbar-h);
  background: rgba(11, 12, 10, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  height: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 10px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; white-space: nowrap; flex: none; }
.topbar .btn { flex: none; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.topbar .brand__name { display: none; }
.topnav { display: none; gap: 4px; margin-left: 8px; }
.topnav a { padding: 8px 10px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }
.topnav a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
@media (min-width: 640px) { .topbar .brand__name { display: inline; } }
@media (min-width: 1024px) { .topnav { display: flex; } }

/* Contract address blocks */
.ca { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-2); }
.ca__tag {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); background: var(--lime-dim); padding: 3px 7px; border-radius: 6px; flex: none;
}
.ca__text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1 1 auto; text-align: left; }
.ca--bar {
  flex: 1 1 auto; min-width: 0; margin-left: auto;
  height: 38px; padding: 0 10px 0 6px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.03);
  transition: border-color 0.18s ease;
}
.ca--bar:hover { border-color: var(--lime); }
.ca--bar .ico { width: 1em; height: 1em; color: var(--ink-3); }
.ca--bar:disabled { cursor: default; }
.ca--bar:disabled:hover { border-color: var(--line); }
.ca--bar.is-copied { border-color: var(--lime); color: var(--lime); }
@media (min-width: 1024px) { .ca--bar { flex: 0 1 380px; } }

.ca--hero {
  flex-wrap: wrap; justify-content: center;
  margin-top: 28px; padding: 10px 12px;
  border: 1px dashed var(--line-2); border-radius: 14px;
  max-width: 100%;
}
.ca--hero .ca__text { white-space: normal; word-break: break-all; text-align: left; font-size: 0.85rem; color: var(--ink); flex: 0 1 auto; }
.ca__copy, .ca__explorer {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  color: var(--ink-2); padding: 6px 10px; border-radius: 8px; border: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.ca__copy:hover, .ca__explorer:hover { color: var(--lime); border-color: var(--lime); }
.ca__copy:disabled { opacity: 0.45; cursor: not-allowed; }
.ca__copy:disabled:hover { color: var(--ink-2); border-color: var(--line); }
.ca__copy.is-copied { color: var(--lime); border-color: var(--lime); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(28px, 6vw, 72px) 0 clamp(40px, 7vw, 88px); text-align: center; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 45% at 50% 22%, rgba(197,250,7,0.22), transparent 70%),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.06) 99%, transparent 100%) 0 0 / 28px 28px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero__figure { position: relative; display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(20px, 4vw, 36px); }
.hero__mascot {
  position: relative;
  width: min(72vw, 380px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  background: var(--lime);
  box-shadow: 0 30px 80px -20px var(--lime-glow), inset 0 -20px 40px rgba(0,0,0,0.08);
}

/* Speech bubble: "I'm just a $DELIVERY Guy working at UPS." */
.bubble {
  position: relative; z-index: 2;
  background: var(--ink); color: #0a0b08;
  font-weight: 600; font-size: 0.95rem; line-height: 1.35;
  padding: 10px 14px; border-radius: 16px;
  max-width: 260px; text-align: center;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.8);
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
}
.bubble strong { color: #3f5a00; }
.bubble::after {
  content: ""; position: absolute; left: 50%; bottom: -9px; width: 16px; height: 16px;
  background: var(--ink); transform: translateX(-50%) rotate(45deg); border-radius: 2px;
}
@media (min-width: 720px) {
  .bubble {
    position: absolute; top: 6px; right: calc(100% - 64px); width: 230px; max-width: none; margin: 0;
    transform: rotate(-3deg); text-align: left; font-size: 1rem;
  }
  .bubble::after { left: auto; right: -6px; bottom: 18px; transform: rotate(45deg); }
}

/* Shipping label: "HOLD $DELIVERY and EARN UPS stock tokens from the fees." */
.label {
  margin-top: 30px; width: 100%; max-width: 540px;
  background: var(--ink); color: #0a0b08;
  border-radius: 10px; padding: 12px 14px 12px;
  text-align: left;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,0,0,0.4);
  transform: rotate(-1.4deg);
  position: relative;
}
.label::before {
  content: ""; position: absolute; inset: 6px; border: 1.5px dashed rgba(10,11,8,0.35); border-radius: 6px; pointer-events: none;
}
.label__head {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(10,11,8,0.7); padding: 4px 6px 8px; border-bottom: 2px solid #0a0b08;
}
.label__text {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 3.6vw, 1.3rem); line-height: 1.25; letter-spacing: -0.01em;
  padding: 12px 6px 10px;
}
.label__text strong { background: var(--lime); padding: 0 4px; border-radius: 4px; }
.label__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 6px 2px; border-top: 2px solid #0a0b08; }
.barcode {
  display: block; height: 26px; width: 150px; flex: none;
  background: repeating-linear-gradient(90deg, #0a0b08 0 2px, transparent 2px 4px, #0a0b08 4px 5px, transparent 5px 8px, #0a0b08 8px 11px, transparent 11px 13px, #0a0b08 13px 14px, transparent 14px 17px);
}
.label__code { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(10,11,8,0.75); text-align: right; }
@media (max-width: 420px) { .barcode { width: 96px; } .label__head span:last-child { display: none; } }
.hero__mascot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0,0,0,0.06) 14px 28px);
  mask-image: radial-gradient(circle at 50% 50%, transparent 55%, #000 56%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 55%, #000 56%);
}
.hero__mascot img {
  position: absolute; left: 50%; bottom: -1%; width: 94%; height: auto;
  transform: translateX(-52%);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.25));
}
.hero__title {
  font-size: clamp(2.55rem, 11.5vw, 7.2rem);
  font-weight: 900; line-height: 0.92; letter-spacing: -0.03em; text-transform: uppercase;
  text-shadow: 0 0 60px rgba(197,250,7,0.2);
}
.hero__sub {
  margin-top: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(0.9rem, 2.4vw, 1.15rem);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime);
}
.hero__lede { margin-top: 16px; font-size: clamp(1.02rem, 2.6vw, 1.3rem); color: var(--ink-2); max-width: 34ch; text-wrap: balance; }
.hero__lede strong { color: var(--ink); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
@media (max-width: 420px) {
  .hero__cta { width: 100%; }
  .hero__cta .btn--lime { flex: 1 1 100%; }
  .hero__cta .btn--ghost { flex: 1 1 calc(50% - 5px); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--lime); color: #0a0b08;
  font-weight: 700; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 0;
  transform: rotate(-1.2deg) scale(1.02);
  border-top: 3px solid #0a0b08; border-bottom: 3px solid #0a0b08;
  margin: 10px 0 0;
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span { white-space: nowrap; padding-right: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section__head { margin-bottom: clamp(24px, 4vw, 40px); }
.section + .section { border-top: 1px solid var(--line); }

/* ---------- Live panel ---------- */
.live { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); display: inline-block; }
.dot.is-live { background: var(--lime); box-shadow: 0 0 0 0 var(--lime-glow); animation: pulse 1.8s ease-out infinite; }
.dot.is-stale { background: #e0b341; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--lime-glow); } 100% { box-shadow: 0 0 0 10px rgba(197,250,7,0); } }
@media (prefers-reduced-motion: reduce) { .dot.is-live { animation: none; } }

.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.stat {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 16px; min-width: 0;
  transition: border-color 0.18s ease;
}
.stat:hover { border-color: var(--line-2); }
.stat--wide { grid-column: 1 / -1; padding: 24px 20px; background: linear-gradient(135deg, var(--bg-3), #1a2010); border-color: rgba(197,250,7,0.25); }
.stat__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.stat__value {
  margin-top: 8px; font-weight: 700; font-size: clamp(1.35rem, 4.6vw, 2rem); line-height: 1.1; letter-spacing: -0.02em;
  overflow-wrap: anywhere; font-variant-numeric: tabular-nums;
}
.stat--wide .stat__value { font-size: clamp(1.9rem, 7vw, 3.4rem); }
.stat__value--lime { color: var(--lime); }
.stat__value--mono { font-variant-numeric: tabular-nums; }
.stat__note { margin-top: 8px; font-size: 0.8rem; color: var(--ink-3); }
.live__meta { margin-top: 14px; font-size: 0.8rem; color: var(--ink-3); }
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .stat--wide { grid-column: 1 / 3; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
}

.links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 22px; }
.links__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-right: 6px; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 12px; }
.step {
  position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.step:hover { border-color: rgba(197,250,7,0.4); transform: translateY(-2px); }
.step__num { position: absolute; top: 16px; right: 18px; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--ink-3); letter-spacing: 0.1em; }
.step__icon { width: 36px; height: 36px; color: var(--lime); stroke-width: 1.7; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 0.95rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } .step { padding: 28px 24px; } }

/* ---------- Tokenomics ---------- */
.grid--tok { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 16px; min-width: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.card:hover { border-color: rgba(197,250,7,0.4); transform: translateY(-2px); }
.card__big { font-weight: 900; font-size: clamp(1.25rem, 4.2vw, 1.9rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--lime); overflow-wrap: anywhere; }
.card h3 { margin-top: 10px; font-size: 0.95rem; }
.card p:last-child { margin-top: 6px; color: var(--ink-2); font-size: 0.9rem; }
@media (max-width: 719px) { .grid--tok .card:first-child { grid-column: 1 / -1; } }
@media (min-width: 720px) { .grid--tok { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } .card { padding: 26px 22px; } }

/* ---------- How to buy ---------- */
.buysteps { display: grid; gap: 12px; }
.buystep { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; }
.buystep__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.buystep__num {
  flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lime); color: #0a0b08; font-family: var(--font-display); font-weight: 900; font-size: 0.95rem;
}
.buystep__icon { width: 26px; height: 26px; color: var(--lime); flex: none; }
.buystep p { color: var(--ink-2); font-size: 0.95rem; }
.buystep p strong { color: var(--ink); }
.buystep__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.netinfo { margin-top: 16px; border-top: 1px solid var(--line); }
.netinfo > div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.netinfo dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.netinfo dd { margin: 0; font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink); overflow-wrap: anywhere; }
.copyval { display: inline-flex; align-items: center; gap: 6px; text-align: left; color: var(--ink); border-radius: 6px; }
.copyval .ico { color: var(--ink-3); width: 1em; height: 1em; }
.copyval:hover { color: var(--lime); }
.copyval.is-copied, .copyval.is-copied .ico { color: var(--lime); }
@media (min-width: 720px) {
  .buysteps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .buystep { padding: 26px 24px; }
  .netinfo > div { grid-template-columns: 130px 1fr; gap: 12px; align-items: baseline; }
}

/* ---------- Gallery ---------- */
.banner { margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.banner img { width: 100%; height: auto; }
.masonry { columns: 2; column-gap: 10px; }
.masonry__item {
  display: block; width: 100%; margin: 0 0 10px; break-inside: avoid;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.masonry__item img { width: 100%; height: auto; display: block; opacity: 0; transition: opacity 0.4s ease; }
.masonry__item img.is-loaded { opacity: 1; }
.masonry__item:hover { transform: translateY(-3px) scale(1.01); border-color: rgba(197,250,7,0.5); box-shadow: 0 16px 36px -14px rgba(0,0,0,0.7); }
@media (min-width: 640px) { .masonry { columns: 3; column-gap: 14px; } .masonry__item { margin-bottom: 14px; } }
@media (min-width: 1024px) { .masonry { columns: 4; } }
.empty {
  text-align: center; padding: clamp(36px, 6vw, 64px) 20px;
  border: 1px dashed var(--line-2); border-radius: var(--radius); color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.empty__icon { width: 44px; height: 44px; color: var(--lime); }
.empty strong { color: var(--ink); }

/* ---------- Roadmap ---------- */
.route { position: relative; display: grid; gap: 14px; }
.stop { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.stop__marker {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-3); border: 2px solid var(--lime); color: var(--lime);
  font-family: var(--font-display); font-weight: 900; font-size: 0.95rem; position: relative; z-index: 1;
}
.stop:not(:last-child)::before {
  content: ""; position: absolute; left: 19px; top: 40px; bottom: -14px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--lime) 0 6px, transparent 6px 12px); opacity: 0.6;
}
.stop__body { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px; }
.stop__body h3 { margin-bottom: 6px; }
.stop__body p { color: var(--ink-2); font-size: 0.95rem; }
@media (min-width: 900px) {
  .route { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .stop { grid-template-columns: 1fr; gap: 12px; }
  .stop:not(:last-child)::before { left: 40px; right: -16px; top: 19px; bottom: auto; width: auto; height: 2px;
    background: repeating-linear-gradient(to right, var(--lime) 0 6px, transparent 6px 12px); }
  .stop__body { min-height: 150px; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(36px, 6vw, 64px) 0 max(24px, env(safe-area-inset-bottom)); }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer .brand img { width: 40px; height: 40px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__links a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.92rem; color: var(--ink-2); padding: 6px 0; }
.footer__links a:hover { color: var(--lime); }
.footer__risk { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; color: var(--ink-3); font-size: 0.84rem; max-width: 80ch; }
.footer__risk strong { color: var(--ink-2); }
.footer__copy { margin-top: 24px; font-size: 0.8rem; color: var(--ink-3); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6, 7, 5, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 56px 12px 24px;
  animation: fade 0.18s ease;
}
@keyframes fade { from { opacity: 0; } }
.lightbox__figure { max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lightbox__figure img { max-width: min(100%, 92vw); max-height: calc(100vh - 120px); width: auto; height: auto; border-radius: var(--radius-sm); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9); }
.lightbox__figure figcaption { font-size: 0.8rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: var(--ink); border: 1px solid var(--line-2);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--lime-dim); border-color: var(--lime); }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; }
.lightbox__nav .ico { width: 1.3em; height: 1.3em; }
@media (max-width: 640px) { .lightbox__nav { top: auto; bottom: 14px; transform: none; } .lightbox__nav--prev { left: calc(50% - 56px); } .lightbox__nav--next { right: calc(50% - 56px); } .lightbox { padding-bottom: 76px; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: max(18px, env(safe-area-inset-bottom)); transform: translateX(-50%);
  z-index: 95; max-width: calc(100vw - 32px);
  background: var(--ink); color: #0a0b08; font-weight: 600; font-size: 0.9rem;
  padding: 10px 16px; border-radius: 16px; text-align: center; line-height: 1.35;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.6);
  animation: toast-in 0.2s ease;
}
.toast.toast--error { background: var(--danger); color: #fff; }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-io .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .step, .masonry__item { transition: none; }
  .btn:hover, .card:hover, .step:hover, .masonry__item:hover { transform: none; }
}
