/* OwlHood - one token system for the homepage, the whitepaper and the app.
   Palette: Robin Neon accent on a warm near-black ground, sand used sparingly,
   red and flame reserved for loss/error states only.

   Motion rule: every animation here is either ambient (slow, looping, ignorable) or
   triggered once when a section scrolls into view. Nothing loops fast, nothing moves
   under the cursor, and `prefers-reduced-motion` turns all of it off at the bottom
   of this file. */

/* ------------------------------------------------------------------ webfonts */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  /* Grounds and accent measured from Robinhood's own materials (the Robinhood Chain docs
     CSS bundle), not eyeballed. #CCFF00 is "Robin Neon"; #110E08 is the warm near-black
     it sits on. The pair measures 16.4:1, which is why the accent works as both a fill
     and a text colour - but only with DARK ink on top of it. See --on-neon. */
  --bg: #110e08;
  --bg-panel: #191610;
  --bg-panel-2: #1d1a14;
  --neon: #ccff00;
  --neon-bright: #dcff4d;
  --neon-lift: #e8ff8f;
  --neon-dim: rgba(204, 255, 0, 0.12);
  --on-neon: #110e08;
  --white: #ffffff;
  --dim: rgba(255, 255, 255, 0.66);
  --dimmer: rgba(255, 255, 255, 0.5);
  --faint: rgba(255, 255, 255, 0.09);
  --sand: #b9ad8b;
  --sky: #70b8ff;
  --green: #3dd68c;
  --red: #ff9592;
  --flame: #ea5121;
  --border: rgba(204, 255, 0, 0.22);
  --border-soft: rgba(255, 255, 255, 0.1);


  --maxw: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.08;
}

.mono,
code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

code {
  font-size: 0.92em;
  color: var(--neon-lift);
}

a {
  color: var(--neon-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--white);
}

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

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

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-bright);
}

.lede {
  color: var(--dim);
  font-size: 16px;
  max-width: 640px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--neon);
  color: var(--on-neon);
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* =========================================================== scroll motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--delay, 0s);
}

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

/* Bars, rails and counters wait for their section to arrive, then run once. */
[data-grow] {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s var(--ease);
  transition-delay: var(--delay, 0s);
}

.in [data-grow],
[data-grow].in {
  transform: scaleX(1);
}

/* ================================================================== topbar */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}

#progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon), var(--neon-lift), var(--neon-bright));
  box-shadow: 0 0 12px rgba(204, 255, 0, 0.36);
}

nav.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 14, 8, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

nav.site.stuck {
  background: rgba(17, 14, 8, 0.94);
  border-bottom-color: var(--border-soft);
}

nav.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.brand img {
  /* The mark is the winged owl on a transparent 5:4 canvas. No circle anywhere:
     the round avatar treatment from the old mark clipped the wings into a disc,
     which is exactly the look the brand call removed from the artwork itself. */
  width: 50px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.brand .wordmark {
  white-space: nowrap;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.navlinks a {
  white-space: nowrap;
}

/* Buttons in the nav carry their own ink. `.navlinks a` (0,1,1) beats `.btn-primary`
   (0,1,0) on specificity, so without the :not() the LAUNCH APP button rendered dimmed
   white ON the neon fill - 1.2:1, unreadable, in both its live and pending states. */
.navlinks a:not(.btn) {
  color: var(--dim);
}

.navlinks a:not(.btn):hover,
.navlinks a:not(.btn)[aria-current="page"] {
  color: var(--neon-bright);
}

.nav-sections {
  display: none;
  gap: 26px;
  align-items: center;
}

@media (min-width: 900px) {
  .navlinks {
    gap: 26px;
  }
  .nav-sections {
    display: flex;
  }
}

@media (max-width: 559px) {
  nav.site .wordmark {
    display: none;
  }
}

/* ================================================================= buttons */
.btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn-primary {
  background: var(--neon);
  color: var(--on-neon);
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(204, 255, 0, 0.28);
  color: var(--on-neon);
}

.btn-primary .beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: beam 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes beam {
  0%,
  55% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(380%);
  }
}

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

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon-lift);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 16px;
  font-size: 11.5px;
}

/* Anchors have no native disabled state, so links carry aria-disabled and must have
   clicks blocked in CSS. Real <button disabled> already refuses clicks - it just needs
   to LOOK refused, which is the half that was missing. */
.btn[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ================================================================== badges */
.chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--neon-lift);
  border: 1px solid var(--border);
  background: var(--neon-dim);
  padding: 7px 15px;
  border-radius: 999px;
}

.dot-neon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-bright);
  box-shadow: 0 0 8px var(--neon);
  animation: blip 2.6s ease-in-out infinite;
}

@keyframes blip {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border: 1px solid var(--border-soft);
  color: var(--dimmer);
  display: inline-block;
}

.badge-built {
  border-color: var(--border);
  color: var(--neon-lift);
  background: var(--neon-dim);
}

.badge-next {
  border-color: rgba(185, 173, 139, 0.45);
  color: var(--sand);
  background: rgba(185, 173, 139, 0.1);
}

/* ==================================================================== hero */
.hero {
  position: relative;
  padding: 96px 0 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* The stat bar is welded to the hero's bottom edge, so the breathing room goes
   above it rather than below, or the wall shows in a strip underneath. */
.hero > .wrap {
  padding-bottom: 48px;
}

.hero-art {
  position: absolute;
  inset: -12% 0 0;
  z-index: 0;
  will-change: transform;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  opacity: 0.42;
  filter: saturate(1.15);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 460px at 50% 30%, rgba(204, 255, 0, 0.18), transparent 68%),
    linear-gradient(180deg, rgba(17, 14, 8, 0.6) 0%, rgba(17, 14, 8, 0.8) 52%, var(--bg) 100%);
}

.aurora {
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 92%;
  z-index: 1;
  background:
    radial-gradient(closest-side at 30% 50%, rgba(204, 255, 0, 0.16), transparent),
    radial-gradient(closest-side at 68% 42%, rgba(185, 173, 139, 0.13), transparent);
  filter: blur(44px);
  animation: aurora 24s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora {
  from {
    transform: translate3d(-4%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(6%, 3%, 0) scale(1.12);
  }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.7px);
  background-size: 4px 4px;
  animation: grain 5s steps(4) infinite;
  pointer-events: none;
}

@keyframes grain {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1px, 1px);
  }
  50% {
    transform: translate(1px, -1px);
  }
  75% {
    transform: translate(-1px, -1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.reticle-holder {
  width: 208px;
  height: 208px;
  margin: 0 auto 24px;
  position: relative;
}

.reticle {
  width: 100%;
  height: 100%;
}

.ret-spin {
  transform-origin: 200px 200px;
  animation: spin 64s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lockring {
  transform-origin: 200px 200px;
  animation: lock 1.6s var(--ease) both;
}

@keyframes lock {
  from {
    transform: scale(2.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.65;
  }
}

.reticle-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(204, 255, 0, 0.39);
  animation: pop 1.1s var(--ease) 0.25s both;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  margin: 22px auto 18px;
  max-width: 900px;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(92deg, var(--white), var(--neon-lift) 34%, var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero .sub {
  color: var(--dim);
  font-size: clamp(15px, 2.2vw, 18px);
  max-width: 610px;
  margin: 0 auto 6px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}

.hero-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--dimmer);
}

/* ------------------------------------------------- homepage hero: the wall
   The colony itself is the backdrop: 24 anonymised previews tiled edge to edge,
   veiled hard enough for type to sit on. `.hero-art` below is still used by the
   whitepaper hero, so both live side by side. */
.hero-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
  will-change: transform;
}

@media (min-width: 760px) {
  .hero-wall {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

.hero-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 760px 420px at 50% 46%, rgba(17, 14, 8, 0.94), rgba(17, 14, 8, 0.72) 55%, transparent 78%),
    linear-gradient(180deg, rgba(17, 14, 8, 0.86) 0%, rgba(17, 14, 8, 0.55) 34%, rgba(17, 14, 8, 0.92) 82%, var(--bg) 100%);
  pointer-events: none;
}

.hero-wash {
  position: absolute;
  inset: -20%;
  z-index: 1;
  background: radial-gradient(closest-side at 50% 50%, rgba(204, 255, 0, 0.2), transparent 70%);
  filter: blur(50px);
  animation: wash 26s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes wash {
  from {
    transform: translate3d(-3%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 2%, 0) scale(1.14);
  }
}

.hero-wall-chip {
  background: rgba(17, 14, 8, 0.7);
  backdrop-filter: blur(6px);
}

/* Welded to the bottom edge of the hero rather than floating in the next section. */
.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-soft);
  background: rgba(17, 14, 8, 0.82);
  backdrop-filter: blur(10px);
}

@media (min-width: 760px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-stats > div {
  padding: 20px clamp(16px, 3vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats > div:nth-child(odd) {
  border-left: 0;
}

@media (min-width: 760px) {
  .hero-stats > div {
    border-top: 0;
  }
  .hero-stats > div:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-stats > div:first-child {
    border-left: 0;
  }
}

.hero-stats b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
}

/* Direct child only: the big number carries its own <span> for the counter. */
.hero-stats > div > span {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dimmer);
}

/* ================================================================== ticker */
.ticker {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(25, 22, 16, 0.72);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.track {
  display: flex;
  gap: 46px;
  padding: 13px 0;
  width: max-content;
  animation: slide 34s linear infinite;
}

.ticker:hover .track,
.gallery:hover .track {
  animation-play-state: paused;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.tick {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--dim);
  white-space: nowrap;
}

.tick b {
  color: var(--white);
  font-weight: 500;
}

.up {
  color: var(--green);
}

/* =================================================================== stats */
.statstrip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--faint);
  border: 1px solid var(--faint);
}

@media (min-width: 760px) {
  .statstrip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.statstrip > div {
  background: #16130d;
  padding: 22px 20px;
}

.statstrip b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

/* Direct child only - the big number can carry its own <span> for the counter. */
.statstrip > div > span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dimmer);
}

/* ================================================================ sections */
section {
  padding: clamp(64px, 9vw, 100px) 0;
  position: relative;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.24), transparent);
}

.sec-head {
  margin-bottom: 44px;
}

.sec-head.center {
  text-align: center;
}

.sec-head.center .lede {
  margin-left: auto;
  margin-right: auto;
}

.sec-head h2 {
  font-size: clamp(30px, 5vw, 46px);
  margin: 14px 0 16px;
}

/* ================================================================== panels */
.panel {
  position: relative;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  padding: 24px;
}

.corner::before,
.corner::after,
.corner .bl,
.corner .br {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.corner::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--neon);
  border-left: 2px solid var(--neon);
}

.corner::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--neon);
  border-right: 2px solid var(--neon);
}

/* ======================================================== the answer demo */
.answer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

@media (min-width: 900px) {
  .answer {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

.demo {
  position: relative;
  border: 1px solid rgba(204, 255, 0, 0.18);
  background: linear-gradient(180deg, #1d1a14, #191610);
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.sweep {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(204, 255, 0, 0.08), transparent);
  animation: sweep 6.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sweep {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(500%);
  }
}

.ask {
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.ask .who {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--dimmer);
  margin-bottom: 5px;
}

.caret {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--neon);
  vertical-align: -2px;
  animation: caret 1.05s steps(2) infinite;
}

@keyframes caret {
  to {
    opacity: 0;
  }
}

.blocks {
  display: grid;
  gap: 10px;
}

.block {
  border: 1px solid var(--border-soft);
  border-left-width: 2px;
  background: var(--bg-panel-2);
  padding: 11px 13px;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  transition-delay: var(--delay, 0s);
}

.in .block,
.block.in {
  opacity: 1;
  transform: none;
}

.block h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 7px;
}

.block p {
  font-size: 12.5px;
  color: var(--dim);
}

.block .src {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--dimmer);
  margin-top: 5px;
}

.b-chain {
  border-left-color: var(--neon-bright);
}
.b-chain h4 {
  color: var(--neon-bright);
}
.b-market {
  border-left-color: var(--sand);
}
.b-market h4 {
  color: var(--sand);
}
.b-memory {
  border-left-color: var(--sky);
}
.b-memory h4 {
  color: var(--sky);
}
.b-model {
  border-left-color: var(--white);
}
.b-model h4 {
  color: rgba(255, 255, 255, 0.7);
}

.legend {
  display: grid;
  gap: 20px;
}

.legend-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.swatch {
  width: 10px;
  height: 42px;
  flex: none;
  margin-top: 4px;
}

.legend-row h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.legend-row p {
  font-size: 13.5px;
  color: var(--dim);
}

/* ============================================================== archetypes */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 820px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(204, 255, 0, 0.33);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}

.card .shot {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.card:hover .shot img {
  transform: scale(1.07);
}

.card .body {
  padding: 20px 22px 24px;
}

.card h3 {
  font-size: 21px;
  margin: 8px 0 9px;
}

.card p {
  font-size: 13.5px;
  color: var(--dim);
}

.bars {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.bar {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--dimmer);
  text-transform: uppercase;
}

.bar i {
  display: block;
  height: 4px;
  background: var(--faint);
  position: relative;
  overflow: hidden;
}

.bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--neon), var(--neon-lift));
}

/* ================================================================= gallery */
.gallery {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.gallery .track {
  gap: 16px;
  padding: 0;
  animation-duration: 90s;
}

.gallery .track.reverse {
  animation-direction: reverse;
  animation-duration: 110s;
}

.gallery + .gallery {
  margin-top: 16px;
}

.nft {
  display: block;
  width: 190px;
  flex: none;
  position: relative;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--bg-panel);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.nft:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(204, 255, 0, 0.39);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.nft img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.nft .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 10px 9px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, transparent, rgba(17, 14, 8, 0.94));
}

.nft .meta b {
  font-weight: 500;
}

.nft .meta span {
  color: var(--neon-lift);
}

/* ========================================================== trait layers
   Replaces the old marquee of clean renders. It says more about the drop than
   a scroller did, and there is nothing here a fake mint site can reuse. */
.layers {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  padding: 26px clamp(18px, 3vw, 30px) 22px;
}

.layers-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.layers-head h3 {
  font-size: 16px;
}

.layers-head .count {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
}

.layer {
  display: grid;
  grid-template-columns: 96px 1fr 62px;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
}

@media (max-width: 620px) {
  .layer {
    grid-template-columns: 84px 1fr 52px;
    gap: 10px;
  }
}

.layer .name {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

.layer .track-bar {
  height: 6px;
  background: var(--faint);
  position: relative;
  overflow: hidden;
}

.layer .track-bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--neon), var(--neon-lift));
}

.layer .n {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--white);
  text-align: right;
}

.layers-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

/* ================================================================= verify */
.verify {
  border: 1px solid rgba(185, 173, 139, 0.34);
  background: linear-gradient(180deg, rgba(185, 173, 139, 0.06), transparent);
  padding: 24px clamp(18px, 3vw, 28px);
}

.verify h3 {
  font-size: 16px;
  color: var(--sand);
  margin-bottom: 8px;
}

.verify > p {
  font-size: 13.5px;
  color: var(--dim);
  max-width: 620px;
}

.verify-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 760px) {
  .verify-rows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.verify-row {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-2);
  padding: 13px 15px;
}

.verify-row .k {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 5px;
}

.verify-row .v {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: var(--white);
  word-break: break-all;
}

.verify-row a.v:hover {
  color: var(--neon-lift);
}

/* ============================================================== token card */
.tokencard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .tokencard {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
}

.tokenart {
  position: relative;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--bg-panel);
}

.tokenart img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.tokenart:hover img {
  transform: scale(1.04);
}

.tokenart .rank {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  background: rgba(17, 14, 8, 0.8);
  border: 1px solid var(--border);
  color: var(--neon-lift);
  backdrop-filter: blur(6px);
}

.traitgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 620px) {
  .traitgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trait {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-2);
  padding: 11px 13px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s var(--ease);
}

.trait:hover {
  border-color: rgba(204, 255, 0, 0.3);
  background: #262218;
  transform: translateY(-2px);
}

.trait .k {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 4px;
}

.trait .v {
  font-size: 13px;
  color: var(--white);
  line-height: 1.35;
}

.trait .r {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--sky);
  margin-top: 4px;
}

.trait.rare .r {
  color: var(--sand);
}

.wallet-row {
  margin-top: 16px;
  border: 1px dashed rgba(204, 255, 0, 0.27);
  background: rgba(204, 255, 0, 0.04);
  padding: 14px 16px;
}

.wallet-row .k {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dimmer);
}

.wallet-row .addr {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--neon-lift);
  margin-top: 6px;
  word-break: break-all;
}

.wallet-row .note {
  display: block;
  font-size: 11.5px;
  color: var(--dimmer);
  margin-top: 6px;
}

/* =================================================================== steps */
.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  padding: 26px 24px 28px;
}

.step-num {
  font-family: "JetBrains Mono", monospace;
  color: var(--neon-bright);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step p {
  color: var(--dim);
  font-size: 13.5px;
}

/* ============================================================== compounds
   Three things that accrue to an owl over time. The meter is decoration
   with a job: it says "this grows" without inventing a number. */
.compounds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 46px;
}

@media (min-width: 820px) {
  .compounds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.compound {
  position: relative;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  padding: 24px 24px 26px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.compound:hover {
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-4px);
}

.compound .ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--neon-dim);
  color: var(--neon-lift);
  margin-bottom: 16px;
}

.compound .ico svg {
  width: 19px;
  height: 19px;
}

.compound h3 {
  font-size: 16px;
  margin-bottom: 9px;
}

.compound p {
  font-size: 13.5px;
  color: var(--dim);
}

.compound .meter {
  display: flex;
  gap: 4px;
  margin-top: 18px;
}

.compound .meter i {
  height: 3px;
  flex: 1;
  background: var(--faint);
  position: relative;
  overflow: hidden;
}

.compound .meter i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--neon), var(--neon-lift));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.compound.in .meter i::after {
  transform: scaleX(1);
}

.compound .meter i:nth-child(1)::after {
  transition-delay: 0.05s;
}
.compound .meter i:nth-child(2)::after {
  transition-delay: 0.18s;
}
.compound .meter i:nth-child(3)::after {
  transition-delay: 0.31s;
}
.compound .meter i:nth-child(4)::after {
  transition-delay: 0.44s;
}
.compound .meter i:nth-child(5)::after {
  transition-delay: 0.57s;
  opacity: 0.45;
}

.compound .when {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-top: 10px;
  display: block;
}

/* The one promise a holder can hold us to, so it gets its own weight. */
.promise {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--neon-dim), transparent);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

@media (min-width: 820px) {
  .promise {
    grid-template-columns: auto 1fr;
    gap: 22px;
  }
}

.promise .mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--neon-lift);
}

.promise .mark svg {
  width: 21px;
  height: 21px;
}

.promise p {
  font-size: 14.5px;
  color: var(--dim);
  margin: 0;
}

.promise strong {
  color: var(--white);
  font-weight: 600;
}

/* ================================================================= roadmap */
.rail {
  position: relative;
  margin-top: 42px;
  padding-top: 34px;
}

.rail .line {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--faint);
  overflow: hidden;
}

.rail .line i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 26%;
  background: linear-gradient(90deg, var(--neon), var(--neon-lift));
}

.phases {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .phases {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.phase {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  padding: 22px 20px 24px;
  position: relative;
  transition:
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.phase:hover {
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-4px);
}

.phase .pin {
  position: absolute;
  top: -40px;
  left: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.phase.on .pin {
  border-color: var(--neon);
  background: var(--neon);
  box-shadow: 0 0 16px var(--neon);
}

@media (max-width: 779px) {
  .phase .pin {
    display: none;
  }
  .rail .line {
    display: none;
  }
  .rail {
    padding-top: 0;
  }
}

.phase h3 {
  font-size: 15px;
  margin: 6px 0 8px;
}

.phase p {
  font-size: 12.5px;
  color: var(--dimmer);
  margin-bottom: 14px;
}

/* ================================================================ boundary */
.boundary {
  border: 1px solid rgba(234, 81, 33, 0.32);
  background: linear-gradient(180deg, rgba(234, 81, 33, 0.06), transparent);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

@media (min-width: 820px) {
  .boundary {
    grid-template-columns: 220px 1fr;
    gap: 30px;
  }
}

.boundary h3 {
  font-size: 17px;
  color: #ff8b8b;
}

.boundary .sub {
  font-size: 13px;
  color: var(--dimmer);
  margin-top: 8px;
}

.guards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 26px;
}

@media (min-width: 620px) {
  .guards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guard {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--dim);
}

.guard svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
  color: var(--red);
}

/* ================================================================== footer */
footer.site {
  border-top: 1px solid var(--border-soft);
  padding: 42px 0 60px;
}

.foot-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 760px) {
  .foot-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.foot-links {
  display: flex;
  gap: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--dim);
}

.foot-fine {
  font-size: 11.5px;
  color: var(--dimmer);
  margin-top: 18px;
  max-width: 780px;
}

/* ============================================================= whitepaper */
.wp-hero {
  padding: 74px 0 52px;
  text-align: left;
}

.wp-hero > .wrap {
  padding-bottom: 0;
}

.wp-hero .aurora {
  inset: -40% -10% auto 34%;
  height: 150%;
}

.wp-hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  max-width: 780px;
  margin: 20px 0 18px;
}

.wp-hero .sub {
  margin: 0;
  text-align: left;
  max-width: 640px;
}

.badges {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.doc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 22px 0 90px;
}

@media (min-width: 940px) {
  .doc {
    grid-template-columns: 210px 1fr;
    gap: 56px;
  }
}

.toc .inner {
  position: sticky;
  top: 96px;
  border-left: 1px solid var(--border-soft);
  padding-left: 18px;
  display: grid;
  gap: 11px;
}

.toc a {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--dimmer);
  display: flex;
  gap: 10px;
  position: relative;
  transition:
    color 0.2s ease,
    transform 0.2s var(--ease);
}

.toc a:hover {
  color: var(--neon-lift);
  transform: translateX(3px);
}

.toc a.on {
  color: var(--white);
}

.toc a.on::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 3px;
  width: 2px;
  height: 15px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

@media (max-width: 939px) {
  .toc {
    display: none;
  }
}

.sec {
  position: relative;
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  scroll-margin-top: 92px;
}

.sec:first-child {
  border-top: 0;
  padding-top: 0;
}

.ghost {
  position: absolute;
  right: 0;
  top: 26px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(70px, 11vw, 130px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
}

.sec h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 12px 0 16px;
  max-width: 660px;
}

.sec p {
  color: var(--dim);
  font-size: 15px;
  margin-bottom: 14px;
  max-width: 680px;
}

.sec p strong {
  color: var(--white);
  font-weight: 600;
}

.quote {
  border-left: 2px solid var(--neon);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.28;
  text-transform: none;
  color: var(--white);
  max-width: 640px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

@media (min-width: 700px) {
  .grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.item {
  display: flex;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  transition:
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.item:hover {
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateY(-3px);
}

.item .ico {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--neon-dim);
  color: var(--neon-lift);
}

.item .ico svg {
  width: 17px;
  height: 17px;
}

.item h4 {
  font-size: 13.5px;
  margin-bottom: 5px;
}

.item p {
  font-size: 12.5px;
  color: var(--dim);
  margin: 0;
}

.diagram-panel {
  border: 1px solid rgba(204, 255, 0, 0.17);
  background: linear-gradient(180deg, #1d1a14, #16130d);
  padding: 26px 24px 18px;
  margin: 26px 0 8px;
  overflow: hidden;
}

.diagram {
  width: 100%;
  height: auto;
}

.dash {
  stroke-dasharray: 5 7;
  animation: march 1.5s linear infinite;
}

@keyframes march {
  to {
    stroke-dashoffset: -24;
  }
}

.packet {
  animation: packet 2.8s ease-in-out infinite;
}

@keyframes packet {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.cap {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--dimmer);
  text-align: center;
  margin-top: 14px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-top: 20px;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  color: var(--dim);
}

.spec-table th {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dimmer);
  font-weight: 400;
}

.spec-table td.k {
  font-family: "JetBrains Mono", monospace;
  color: var(--neon-lift);
  white-space: nowrap;
}

.spec-table tr:hover td {
  background: rgba(204, 255, 0, 0.03);
}

.scroll-x {
  overflow-x: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 24px;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.split img.art {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-soft);
}

.phaselist {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.phaserow {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  transition:
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

@media (min-width: 700px) {
  .phaserow {
    grid-template-columns: 54px 1fr 160px;
  }
}

.phaserow:hover {
  border-color: rgba(204, 255, 0, 0.3);
  transform: translateX(4px);
}

.phaserow .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  /* 0.33 alpha measured 2.7:1 - under the 3:1 bar for large text, and this number is
     read, not decorative (unlike .ghost, which is aria-hidden). 0.55 gives 5.4:1. */
  color: rgba(204, 255, 0, 0.55);
}

.phaserow h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.phaserow p {
  font-size: 12.5px;
  color: var(--dimmer);
  margin: 0;
  max-width: none;
}

.phaserow .badge {
  justify-self: start;
}

@media (min-width: 700px) {
  .phaserow .badge {
    justify-self: end;
  }
}

figure {
  margin: 0;
}

figcaption {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--dimmer);
  margin-top: 10px;
  text-align: center;
}

/* ===================================================================== faq */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 860px) {
  .faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }
}

.faq-item {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(204, 255, 0, 0.25);
}

.faq-item[open] {
  border-color: rgba(204, 255, 0, 0.33);
  background: var(--bg-panel-2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* The marker is drawn, not a glyph, so it scales and recolours with the theme. */
.faq-item summary .sign {
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  position: relative;
}

.faq-item summary .sign::before,
.faq-item summary .sign::after {
  content: "";
  position: absolute;
  background: var(--neon-bright);
  transition: transform 0.28s var(--ease);
}

.faq-item summary .sign::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-item summary .sign::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.faq-item[open] summary .sign::after {
  transform: rotate(90deg);
}

.faq-body {
  padding: 0 20px 20px;
  font-size: 13.5px;
  color: var(--dim);
  animation: faqIn 0.35s var(--ease) both;
}

.faq-body p + p {
  margin-top: 10px;
}

.faq-body strong {
  color: var(--white);
  font-weight: 600;
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================= utilities
   The marketing vhost ships a strict CSP with `style-src 'self'` and no
   'unsafe-inline', so the pages carry NO inline style attributes. Anything
   that would have been one lives here instead. */
.mt-sm {
  margin-top: 18px;
}
.mt-md {
  margin-top: 26px;
}
.mt-lg {
  margin-top: 44px;
}
.mb-xl {
  margin-bottom: 62px;
}
.pt-0 {
  padding-top: 0;
}
.center {
  text-align: center;
}
.narrow {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.wide {
  max-width: none;
}
.tight {
  margin-bottom: 4px;
}

.swatch-chain {
  background: var(--neon-bright);
}
.swatch-market {
  background: var(--sand);
}
.swatch-memory {
  background: var(--sky);
}
.swatch-model {
  background: rgba(255, 255, 255, 0.75);
}

.token-title {
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 12px 0 14px;
}

.thumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

.thumbs .eyebrow {
  margin-right: 4px;
}

.thumb {
  width: 92px;
}

.boundary-stack {
  display: block;
}

/* ======================================================= reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal],
  .block {
    opacity: 1 !important;
    transform: none !important;
  }
  [data-grow] {
    transform: scaleX(1) !important;
  }
  .hero-art {
    transform: none !important;
  }
}

/* ============================================================= owl wall
   A responsive grid of named residents. Deliberately not the marquee used
   elsewhere: these six are already public, and a static grid lets each one
   be read rather than skimmed. */
.owlwall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.owl-card {
  position: relative;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.owl-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204, 255, 0, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.owl-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.owl-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--faint);
}

.owl-card figcaption b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--white);
}

.owl-card figcaption span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-lift);
}

/* ============================================================== whitelist */
.wl {
  display: grid;
  gap: 22px;
}

@media (min-width: 940px) {
  .wl {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    gap: 28px;
  }
}

.wl-steps {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: none;
}

.wl-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  transition:
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.wl-step.is-locked {
  opacity: 0.45;
}

.wl-step.is-done {
  border-color: rgba(204, 255, 0, 0.4);
}

.wl-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--neon-lift);
  padding-top: 3px;
}

.wl-step.is-done .wl-num::after {
  content: " ✓";
  color: var(--neon);
}

.wl-body h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.wl-body p {
  color: var(--dim);
  font-size: 14px;
  margin-bottom: 12px;
}

.wl-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wl-step.is-locked .wl-actions {
  pointer-events: none;
}

.wl-form {
  display: grid;
  gap: 14px;
}

.wl-form h3 {
  font-size: 20px;
}

.wl-field {
  display: grid;
  gap: 6px;
}

.wl-field > span {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dimmer);
}

.wl-field input {
  font-family: "JetBrains Mono", monospace;
  font-size: 13.5px;
  color: var(--white);
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
}

.wl-field input::placeholder {
  color: var(--dimmer);
}

.wl-field input:focus-visible {
  outline: 2px solid var(--neon-lift);
  outline-offset: 1px;
  border-color: transparent;
}

.wl-field input[aria-invalid="true"] {
  border-color: var(--flame);
}

.wl-msg {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--dim);
}

.wl-msg.is-ok {
  color: var(--neon-lift);
}

.wl-msg.is-error {
  color: var(--red);
}

.wl-fine {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--dimmer);
}

.linkish {
  font: inherit;
  color: var(--neon-lift);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
