/* =========================================================
   LADO — sealed-lot DNA from the source, Robinhood conversion
   Share Tech Mono + IBM Plex Mono
   bg #0b0911 · accent #00c805 · cream #f2f0eb
   ========================================================= */

@font-face {
  font-family: "Share Tech Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ShareTechMono-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/IBMPlexMono-Light.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/IBMPlexMono-Medium.ttf") format("truetype");
}

:root {
  --bg: #0b0911;
  --surface: #14121b;
  --line: #2a2733;
  --text: #f2f0eb;
  --muted: #8a8794;
  --dim: #4a4754;
  --accent: #00c805;
  --accent-ink: #041206;
  --font-display: "Share Tech Mono", ui-monospace, monospace;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1240px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--line);
}
::-webkit-scrollbar-track {
  background: var(--bg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lattice {
  background-color: var(--bg);
  background-image:
    linear-gradient(60deg, #ffffff05 1px, #0000 1px),
    linear-gradient(-60deg, #ffffff05 1px, #0000 1px),
    linear-gradient(0deg, #ffffff03 1px, #0000 1px);
  background-size: 44px 76px, 44px 76px, 44px 76px;
}

.font-display,
.nav-link,
.brand-word,
.btn,
.kicker,
.hero-title,
.section-title,
.leader,
.step-label,
.marquee,
.footer-meta,
.iso-caption,
.fig-kicker,
.fig-title,
.toast {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

@media (min-width: 768px) {
  .wrap {
    padding-inline: 32px;
  }
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex-shrink: 0;
}

.dot-sm {
  width: 6px;
  height: 6px;
}

.pulse {
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 70%, transparent);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent);
  }
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.leader {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 13px;
  color: var(--muted);
}

.leader .dots {
  border-bottom: 1px dotted var(--line);
  flex: auto;
  min-width: 1rem;
  transform: translateY(-4px);
}

.leader .val {
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.leader .val.hot {
  color: var(--accent);
}

.struck {
  color: var(--dim);
  position: relative;
}
.struck::after {
  content: "";
  background: var(--dim);
  height: 1px;
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
}

.redaction {
  background: var(--accent);
  color: transparent;
  user-select: none;
  padding: 0 0.5rem;
  display: inline-block;
}

.crosshair {
  width: 12px;
  height: 12px;
  color: var(--line);
  pointer-events: none;
  position: absolute;
}
.crosshair.tl { top: -6px; left: -6px; }
.crosshair.tr { top: -6px; right: -6px; }
.crosshair.bl { bottom: -6px; left: -6px; }
.crosshair.br { bottom: -6px; right: -6px; }

.panel {
  position: relative;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  padding: 24px;
}

@media (min-width: 768px) {
  .panel {
    padding: 32px;
  }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 0.15s, border-color 0.15s, backdrop-filter 0.15s;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.32em;
}

.brand:hover .brand-word {
  color: var(--accent);
}

.brand-word {
  transition: color 0.15s;
  letter-spacing: 0.32em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-x {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.15s, border-color 0.15s;
}
.btn-x-name {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: none;
}
.btn-x:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
@media (max-width: 420px) {
  .btn-x-name {
    display: none;
  }
  .btn-x {
    width: 36px;
    padding: 0;
    justify-content: center;
  }
}

.btn-soon {
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s;
}

.btn-soon:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

.badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: var(--accent-ink);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  height: 1px;
  width: 16px;
  background: var(--text);
  transition: transform 0.2s var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  padding: 12px 20px 20px;
}

.nav-mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile .nav-link {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 92vh;
  }
}

.hero-wash {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
}

.hero-wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
  padding-block: 80px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-block: 112px;
  }
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.hero-title {
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-title .hot {
  color: var(--accent);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 92px;
    line-height: 0.9;
  }
}

.hero-card {
  margin-top: 32px;
  max-width: 460px;
}

.hero-card .leader + .leader {
  margin-top: 12px;
}

.hero-copy {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
  max-width: 46ch;
}

@media (min-width: 768px) {
  .hero-copy {
    font-size: 16px;
  }
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--accent);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.28em;
  transition: opacity 0.15s, color 0.15s, border-color 0.15s, background 0.15s;
}

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

.btn-solid:hover {
  opacity: 0.9;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn[aria-disabled="true"],
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-stage {
  display: block;
  position: relative;
  height: 260px;
}

@media (min-width: 768px) {
  .hero-stage {
    height: 560px;
  }
}

.iso-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.iso-float {
  position: relative;
  z-index: 1;
  width: min(96%, 560px);
  animation: floaty 6.4s var(--ease) infinite;
  filter: drop-shadow(0 28px 40px rgba(0, 200, 5, 0.12));
  transform-origin: center;
}

.iso-float img {
  width: 100%;
  height: auto;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

.iso-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 12px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  pointer-events: none;
}

.hero-meta {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dim);
  pointer-events: none;
}

.hero-monitor {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero-meta {
    left: 32px;
  }
  .hero-monitor {
    right: 32px;
  }
}

/* ---------- marquee ---------- */
.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
  padding-block: 12px;
}

.ticker.reverse .ticker-track {
  animation-direction: reverse;
  animation-duration: 50s;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline: 32px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-fade {
  position: absolute;
  inset-block: 0;
  width: 96px;
  pointer-events: none;
  z-index: 1;
}
.ticker-fade.left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.ticker-fade.right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .iso-float,
  .pulse {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- sections ---------- */
.section {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding-block: 96px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding-block: 128px;
  }
}

.section-head {
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .section-head {
    margin-bottom: 80px;
  }
}

.section-title {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 24ch;
  color: var(--text);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 48px;
  }
}

.diagram {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  margin-bottom: 56px;
}

.diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.step-rail {
  position: relative;
  height: 1px;
  width: 100%;
  background: var(--line);
}

.step-rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  background: var(--accent);
  width: 20%;
  transition: width 0.4s var(--ease);
}

.step-tabs {
  display: none;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
}

.step-tab {
  color: var(--muted);
  transition: color 0.15s;
}

.step-tab:hover,
.step-tab.is-active {
  color: var(--accent);
}

@media (min-width: 768px) {
  .step-tabs {
    display: flex;
  }
}

.steps {
  border-top: 1px solid var(--line);
  list-style: none;
  margin-top: 40px;
}

.step {
  display: grid;
  grid-template-columns: 3rem 9rem 1fr;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
  cursor: pointer;
  transition: background 0.15s;
}

@media (min-width: 768px) {
  .step {
    grid-template-columns: 4rem 14rem 1fr;
    gap: 24px;
    padding-block: 24px;
  }
}

.step:hover,
.step.is-active {
  background: color-mix(in srgb, var(--surface) 40%, transparent);
}

.step-num {
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--dim);
  transition: color 0.15s;
}

.step.is-active .step-num {
  color: var(--accent);
}

@media (min-width: 768px) {
  .step-num {
    font-size: 24px;
  }
}

.step-name {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text);
}

@media (min-width: 768px) {
  .step-name {
    font-size: 16px;
  }
}

.step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.625;
  max-width: 60ch;
}

@media (min-width: 768px) {
  .step-body {
    font-size: 15px;
  }
}

.pull {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text);
  max-width: 60ch;
}

.pull .em {
  color: var(--accent);
}

@media (min-width: 768px) {
  .pull {
    font-size: 14px;
  }
}

/* ---------- auction ---------- */
.auction-wash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  height: 240px;
  pointer-events: none;
  opacity: 0.55;
}

.auction-wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to top, black, transparent);
}

.two-col {
  display: grid;
  gap: 56px;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.lede {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.625;
  max-width: 52ch;
}

@media (min-width: 768px) {
  .lede {
    font-size: 15px;
  }
}

.fine {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--dim);
}

.warn {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.chart-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .chart-frame {
    aspect-ratio: 21 / 16;
  }
}

.chart-frame svg {
  width: 100%;
  height: 100%;
}

/* ---------- commitment ---------- */
.hash-grid {
  display: grid;
  gap: 16px;
}

.hash-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.hash-k {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.hash-v {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  word-break: break-all;
  text-align: right;
}

.hash-v.hot {
  color: var(--accent);
}

.ca-lock {
  margin-top: 28px;
  border: 1px dashed var(--line);
  padding: 16px 18px;
}

.ca-lock .hash-k {
  display: block;
  margin-bottom: 6px;
}

.ca-lock .hash-v {
  text-align: left;
  letter-spacing: 0.08em;
  font-size: 13px;
  word-break: break-all;
}

.ca-copy {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: none;
}

.ca-copy:hover {
  color: var(--accent);
}

.ca-hint {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--dim);
}

.ca-full {
  width: 100%;
}

.fig-note {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.manifest-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #07060b;
}

.manifest-shot img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}

.manifest-shot:hover img {
  transform: scale(1.04);
}

/* ---------- docs ---------- */
.docs-intro {
  max-width: 60ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.625;
  margin-top: 16px;
}

.docs-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .docs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .docs-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.doc-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 35%, transparent);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s;
}

.doc-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.doc-fig {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #07060b;
  border-bottom: 1px solid var(--line);
}

.doc-fig.tall {
  aspect-ratio: 3 / 4;
}

.doc-fig.wide {
  aspect-ratio: 21 / 8;
}

.doc-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.doc-card:hover img {
  transform: scale(1.045);
}

.doc-body {
  padding: 18px 18px 22px;
}

.fig-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.fig-title {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text);
}

.doc-body p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.doc-span {
  grid-column: 1 / -1;
}

/* ---------- footer ---------- */
.site-footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding-block: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.32em;
}

.footer-blurb {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.625;
}

.footer-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.footer-dl dt {
  color: var(--muted);
}

.footer-dl dd {
  color: var(--text);
}

.footer-dl .soon,
.footer-dl button.soon {
  color: var(--dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
}
.footer-dl a:hover,
.footer-dl button.soon:hover {
  color: var(--accent);
}

.footer-dl .hot {
  color: var(--accent);
  text-transform: uppercase;
}

.footer-right {
  text-align: left;
}

@media (min-width: 768px) {
  .footer-right {
    text-align: right;
  }
}

.footer-live {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--text);
}

.footer-legal {
  margin-top: 12px;
  font-size: 10px;
  color: var(--dim);
  line-height: 1.625;
  max-width: 36ch;
}

@media (min-width: 768px) {
  .footer-legal {
    margin-left: auto;
  }
}

.footer-bar {
  text-align: center;
  padding: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dim);
  border-top: 1px solid var(--line);
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal="scale"] {
  transform: scale(0.94);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- mobile overflow ---------- */
@media (max-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
  .step {
    grid-template-columns: 2.4rem 1fr;
    grid-template-rows: auto auto;
  }
  .step-body {
    grid-column: 1 / -1;
  }
  .hash-row {
    grid-template-columns: 1fr;
  }
  .hash-v {
    text-align: left;
  }
  .ca-lock .hash-v {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}
