/* ============================================================
   WE LOVE CATS — acid-cyber on black
   chartreuse from the logo · torn-paper cream from the banner
   ============================================================ */

:root {
  --acid:       #D7F205;
  --acid-soft:  #C4DE0B;
  --acid-dim:   #85940A;
  --acid-glow:  rgba(215, 242, 5, 0.4);
  --void:       #0B0C05;
  --panel:      #14160A;
  --panel-2:    #1B1E0D;
  --edge:       #2A2E15;
  --paper:      #F1EDE2;
  --ink:        #12130A;
  --fog:        #AEB596;
  --fog-dim:    #757B60;
  --white:      #F4F6E4;
  --red:        #FF5C5C;

  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body:    "Archivo", sans-serif;
  --font-mono:    "Space Mono", monospace;
  --font-hand:    "Permanent Marker", cursive;

  --pad-x: clamp(20px, 5vw, 64px);
  --maxw: 1240px;
  --cut: 14px; /* angled corner size for cyber buttons/panels */
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: var(--font-mono); }

a { color: inherit; }

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

h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

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

/* ---------- buttons (angled cyber corners) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  clip-path: polygon(
    0 0, calc(100% - var(--cut)) 0, 100% var(--cut),
    100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut))
  );
  transition: transform 120ms ease, background 120ms ease, color 120ms ease,
              border-color 120ms ease, box-shadow 120ms ease;
}
.btn:active { transform: translateY(1px); }
.btn-acid {
  background: var(--acid);
  color: var(--ink);
}
.btn-acid:hover {
  background: var(--white);
  box-shadow: 0 0 28px var(--acid-glow);
}
.btn-ghost {
  border-color: var(--edge);
  color: var(--fog);
  background: rgba(20, 22, 10, 0.5);
}
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); box-shadow: 0 0 18px rgba(215, 242, 5, 0.15); }

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

/* ============================================================
   NAV — bigger, bolder
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px var(--pad-x);
  background: color-mix(in srgb, var(--void) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--edge);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(215, 242, 5, 0.25);
}
.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--fog);
  transition: color 120ms ease, text-shadow 120ms ease;
}
.nav-links a:hover { color: var(--acid); text-shadow: 0 0 14px var(--acid-glow); }
.nav-cta { padding: 13px 22px; font-size: 14.5px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav { justify-content: space-between; }
  .nav-brand { font-size: 18px; }
  .nav-brand img { width: 40px; height: 40px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  border-bottom: 1px solid var(--edge);
  background-image:
    linear-gradient(rgba(215, 242, 5, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 242, 5, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridpan 14s linear infinite;
}
@keyframes gridpan {
  to { background-position: 48px 48px; }
}
/* ---------- mini vault (top right) ---------- */
.mini-vault {
  position: absolute;
  top: 22px;
  right: var(--pad-x);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  background: rgba(20, 22, 10, 0.82);
  border: 1px solid var(--edge);
  backdrop-filter: blur(6px);
  clip-path: polygon(
    0 0, calc(100% - 12px) 0, 100% 12px,
    100% 100%, 12px 100%, 0 calc(100% - 12px)
  );
  animation: mv-in 700ms 400ms cubic-bezier(0.19, 1, 0.22, 1) both;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.mini-vault:hover {
  border-color: var(--acid-dim);
  box-shadow: 0 0 26px rgba(215, 242, 5, 0.16);
  transform: translateY(-2px);
}
@keyframes mv-in {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mv-orb {
  position: relative;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(215, 242, 5, 0.2);
}
.mv-orb-ticks {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(215, 242, 5, 0.55) 0deg 3deg,
    transparent 3deg 18deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(closest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  animation: spin 30s linear infinite;
}
.mv-orb-sweep {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 250deg,
    rgba(215, 242, 5, 0.6) 350deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
  mask: radial-gradient(closest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
  animation: spin 5s linear infinite;
}
.mv-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mv-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--acid);
}
.mv-dot { width: 7px; height: 7px; }
.mv-value {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--acid);
  text-shadow: 0 0 20px rgba(215, 242, 5, 0.25);
  font-variant-numeric: tabular-nums;
}
.mv-row {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fog);
  font-variant-numeric: tabular-nums;
}
.mv-row strong { color: var(--white); font-weight: 700; }
.mv-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--fog-dim);
}
.mv-status::after {
  content: "▮";
  margin-left: 5px;
  color: var(--acid);
  animation: blink 1.1s steps(1) infinite;
}

@media (max-width: 1100px) {
  .mini-vault { display: none; }
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(52px, 9vh, 108px) var(--pad-x) clamp(44px, 7vh, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--acid-dim);
  margin-bottom: 28px;
}
.chain-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(70px, 12.5vw, 176px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero-title .word {
  display: inline-block;
  animation: rise 700ms cubic-bezier(0.19, 1, 0.22, 1) both;
}
.hero-title .line:nth-child(2) .word { animation-delay: 90ms; }
.hero-title .line:nth-child(3) .word { animation-delay: 180ms; }
@keyframes rise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.marker-word {
  position: relative;
  color: var(--acid);
  text-shadow: 0 0 44px rgba(215, 242, 5, 0.35);
}
.marker-stroke {
  position: absolute;
  left: -3%;
  bottom: -0.02em;
  width: 106%;
  height: 0.22em;
  overflow: visible;
  z-index: -1;
}
.marker-stroke path {
  fill: none;
  stroke: rgba(215, 242, 5, 0.28);
  stroke-width: 22;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 650ms 550ms ease-out forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-sub {
  margin-top: 32px;
  max-width: 560px;
  font-size: clamp(18px, 1.9vw, 22px);
  color: var(--fog);
  text-wrap: pretty;
}
.hero-sub strong { color: var(--acid); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 16px;
  max-width: 100%;
  background: var(--panel);
  border: 1px solid var(--edge);
  color: var(--fog);
  font-size: 14px;
  cursor: pointer;
  clip-path: polygon(
    0 0, calc(100% - 10px) 0, 100% 10px,
    100% 100%, 10px 100%, 0 calc(100% - 10px)
  );
  transition: border-color 120ms ease;
}
.ca-chip:hover { border-color: var(--acid-dim); }
.ca-label { color: var(--acid); font-weight: 700; }
.ca-addr {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy { color: var(--acid-dim); text-transform: uppercase; font-size: 12px; }

/* ---------- hero art: floating mascot with orbits ---------- */
.hero-art {
  position: relative;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.mascot {
  position: relative;
  display: grid;
  place-items: center;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0.6deg); }
  50%      { transform: translateY(-16px) rotate(-1.2deg); }
}
.mascot img {
  display: block;
  width: clamp(250px, 30vw, 430px);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 60px rgba(215, 242, 5, 0.22),
    0 0 140px rgba(215, 242, 5, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.6);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mascot:hover img { transform: rotate(-5deg) scale(1.045); }
.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-a {
  inset: -7%;
  border: 1.5px dashed rgba(215, 242, 5, 0.3);
  animation: spin 26s linear infinite;
}
.orbit-b {
  inset: -14%;
  border: 1px solid rgba(215, 242, 5, 0.12);
  border-top-color: rgba(215, 242, 5, 0.5);
  animation: spin 14s linear infinite reverse;
}
.orbit-sat {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  animation: spin 9s linear infinite;
  pointer-events: none;
}
.orbit-sat i {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
}
.mascot-caption {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--fog-dim);
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: 16px; gap: 24px; }
  .mascot img { width: clamp(190px, 46vw, 280px); }
}

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--edge);
  background: var(--acid);
  color: var(--ink);
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: tick 36s linear infinite;
}
.ticker-track span { display: inline-block; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STORY / TWEET
   ============================================================ */
.story {
  border-bottom: 1px solid var(--edge);
}
.story-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 128px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.section-stamp {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--acid-dim);
  margin-bottom: 10px;
}
.section-stamp::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--acid);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.tweet-wrap { position: relative; }
.tweet-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 32px 36px 40px;
  transform: rotate(-1.6deg);
  clip-path: polygon(
    0% 4%, 3% 0%, 22% 2%, 41% 0%, 60% 3%, 79% 0%, 97% 2%, 100% 6%,
    99% 28%, 100% 52%, 98% 74%, 100% 95%, 96% 100%, 74% 98%, 52% 100%,
    30% 97%, 9% 100%, 2% 97%, 0% 76%, 1% 50%, 0% 26%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  background-image: repeating-linear-gradient(
    transparent 0 30px,
    rgba(18, 19, 10, 0.05) 30px 31px
  );
}
.tape {
  position: absolute;
  width: 110px;
  height: 34px;
  background: rgba(215, 242, 5, 0.32);
  backdrop-filter: blur(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  z-index: 2;
}
.tweet-card .tape-top {
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}
.tweet-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tweet-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 21px;
}
.tweet-id { display: flex; flex-direction: column; line-height: 1.25; }
.tweet-id strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 17.5px;
}
.tweet-id .mono { font-size: 14px; color: rgba(18, 19, 10, 0.55); }
.verified { width: 18px; height: 18px; fill: #1d9bf0; }
.verified .check { fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.tweet-body {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-family: var(--font-body);
}
.tweet-underline {
  display: block;
  margin-top: 14px;
  width: 62%;
  height: 12px;
  background:
    linear-gradient(100deg, transparent 1%, rgba(199, 226, 12, 0.85) 4%,
    rgba(199, 226, 12, 0.7) 90%, transparent 96%);
  transform: rotate(-0.8deg);
}
.hand-note {
  position: absolute;
  right: -8px;
  bottom: -44px;
  font-family: var(--font-hand);
  font-size: clamp(17px, 2.1vw, 23px);
  color: var(--acid);
  transform: rotate(-4deg);
}

.story-copy h2 { margin-bottom: 22px; }
.story-copy p { color: var(--fog); font-size: 18px; margin-bottom: 18px; max-width: 46ch; }

@media (max-width: 860px) {
  .story-inner { grid-template-columns: 1fr; }
  .tweet-wrap { margin-bottom: 30px; }
  .tweet-card { max-width: 480px; }
  .hand-note { right: 8px; bottom: -36px; }
}

/* ============================================================
   HOLDINGS — the vault
   ============================================================ */
.holdings {
  position: relative;
  border-bottom: 1px solid var(--edge);
  background:
    radial-gradient(ellipse 72% 62% at 50% 46%, rgba(215, 242, 5, 0.05), transparent 70%),
    var(--void);
  overflow: hidden;
}
/* dust specks */
.holdings::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle 2px at 12% 30%, rgba(215,242,5,0.35) 99%, transparent),
    radial-gradient(circle 1.5px at 82% 18%, rgba(215,242,5,0.28) 99%, transparent),
    radial-gradient(circle 1px at 68% 74%, rgba(244,246,228,0.3) 99%, transparent),
    radial-gradient(circle 2px at 28% 82%, rgba(215,242,5,0.2) 99%, transparent),
    radial-gradient(circle 1px at 45% 12%, rgba(244,246,228,0.25) 99%, transparent),
    radial-gradient(circle 1.5px at 92% 60%, rgba(215,242,5,0.25) 99%, transparent);
}
/* scanlines */
.holdings-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    transparent 0 3px,
    rgba(215, 242, 5, 0.018) 3px 4px
  );
}

.holdings-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vh, 110px) var(--pad-x) clamp(56px, 8vh, 96px);
  text-align: center;
}

/* --- the vault: concentric animated rings around the live number --- */
.vault-scene {
  position: relative;
  width: min(760px, 94vw);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.vr {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.vr-outer {
  inset: 0;
  border: 1px solid rgba(215, 242, 5, 0.16);
  box-shadow:
    inset 0 0 80px rgba(215, 242, 5, 0.05),
    0 0 90px rgba(215, 242, 5, 0.07);
}
.vr-ticks {
  inset: 3%;
  background: repeating-conic-gradient(
    rgba(215, 242, 5, 0.55) 0deg 0.7deg,
    transparent 0.7deg 6deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 16px), #000 calc(100% - 15px));
  mask: radial-gradient(closest-side, transparent calc(100% - 16px), #000 calc(100% - 15px));
  opacity: 0.55;
  animation: spin 90s linear infinite;
}
.vr-dash {
  inset: 8.5%;
  border: 1.5px dashed rgba(215, 242, 5, 0.22);
  animation: spin-rev 60s linear infinite;
}
.vr-sweep {
  inset: 3%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 290deg,
    rgba(215, 242, 5, 0.5) 353deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 26px), #000 calc(100% - 25px));
  mask: radial-gradient(closest-side, transparent calc(100% - 26px), #000 calc(100% - 25px));
  animation: spin 7s linear infinite;
}
.vr-arc-a {
  inset: 12.5%;
  border: 2px solid transparent;
  border-top-color: rgba(215, 242, 5, 0.5);
  border-bottom-color: rgba(215, 242, 5, 0.5);
  animation: spin 24s linear infinite;
}
.vr-arc-b {
  inset: 15.5%;
  border: 1px solid transparent;
  border-left-color: rgba(215, 242, 5, 0.35);
  border-right-color: rgba(215, 242, 5, 0.35);
  animation: spin-rev 32s linear infinite;
}

.vault-core {
  position: relative;
  z-index: 1;
  width: 76%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.holdings-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--acid);
}
.live-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(215, 242, 5, 0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(215, 242, 5, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(215, 242, 5, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 242, 5, 0); }
}

.holdings-value {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--acid);
  text-shadow: 0 0 70px rgba(215, 242, 5, 0.28);
  font-variant-numeric: tabular-nums;
}

.holdings-shares {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.holdings-shares > .mono:first-child {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.shares-label {
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 0.18em;
  color: var(--fog-dim);
}

.vault-status {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--fog-dim);
}
.vault-status strong { color: var(--acid); }
.vault-status::after {
  content: "▮";
  margin-left: 6px;
  color: var(--acid);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* --- breakdown as HUD panels --- */
.holdings-breakdown {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vh, 44px);
}
.bd-item {
  position: relative;
  text-align: center;
  min-width: 250px;
  padding: 20px 30px 22px;
  background: rgba(20, 22, 10, 0.72);
  border: 1px solid var(--edge);
  backdrop-filter: blur(4px);
}
.bd-item::before,
.bd-item::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  pointer-events: none;
}
.bd-item::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--acid);
  border-left: 2px solid var(--acid);
}
.bd-item::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--acid);
  border-right: 2px solid var(--acid);
}
.bd-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--fog-dim);
}
.bd-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}
.bd-value {
  margin-top: 10px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--fog);
  font-variant-numeric: tabular-nums;
}
.bd-value strong { color: var(--white); font-weight: 700; }
.bd-sub { font-size: 13px; color: var(--fog-dim); }

.holdings-foot {
  margin-top: 36px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--fog-dim);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .vault-core { width: 86%; }
  .holdings-eyebrow { letter-spacing: 0.18em; }
}

/* ============================================================
   HOW IT WORKS — the machine (energy flow between cards)
   ============================================================ */
.how { border-bottom: 1px solid var(--edge); }
.how-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 128px) var(--pad-x);
}
.how-inner .section-stamp { margin-bottom: 14px; }
.how-inner h2 { margin-bottom: 52px; max-width: 14ch; }

.flow { position: relative; }
/* the energy line running behind the cards */
.flow-line {
  position: absolute;
  top: 62px;
  left: 2%;
  right: 2%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(215, 242, 5, 0.55) 0 10px,
    transparent 10px 22px
  );
  animation: dashmove 1s linear infinite;
  filter: drop-shadow(0 0 6px rgba(215, 242, 5, 0.4));
}
@keyframes dashmove {
  to { background-position: 44px 0; }
}

.how-steps {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}
.step {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #181B0C 0%, #101207 100%);
  border: 1px solid var(--edge);
  padding: 34px 30px 40px;
  clip-path: polygon(
    0 0, calc(100% - 22px) 0, 100% 22px,
    100% 100%, 0 100%
  );
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--acid-dim);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 30px rgba(215, 242, 5, 0.08);
}
/* giant ghost number */
.step-ghost {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: var(--font-display);
  font-size: 128px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(215, 242, 5, 0.14);
  pointer-events: none;
  transition: -webkit-text-stroke-color 200ms ease;
}
.step:hover .step-ghost { -webkit-text-stroke-color: rgba(215, 242, 5, 0.32); }
.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--acid);
  background: rgba(215, 242, 5, 0.07);
  border: 1px solid var(--acid-dim);
  box-shadow: 0 0 18px rgba(215, 242, 5, 0.12);
}
.step-icon svg { width: 28px; height: 28px; }
.step h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.step p {
  position: relative;
  z-index: 1;
  color: var(--fog);
  font-size: 16.5px;
}

@media (max-width: 860px) {
  .how-steps { grid-template-columns: 1fr; }
  .flow-line {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(
      180deg,
      rgba(215, 242, 5, 0.55) 0 10px,
      transparent 10px 22px
    );
    animation: dashmove-v 1s linear infinite;
  }
}
@keyframes dashmove-v {
  to { background-position: 0 44px; }
}

/* ============================================================
   STATS — telemetry HUD
   ============================================================ */
.stats {
  border-bottom: 1px solid var(--edge);
  background-image:
    linear-gradient(rgba(215, 242, 5, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 242, 5, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 80px) var(--pad-x);
}
.stats-inner .section-stamp { margin-bottom: 26px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.stat {
  position: relative;
  padding: 24px 24px 26px;
  background: rgba(20, 22, 10, 0.75);
  border: 1px solid var(--edge);
  backdrop-filter: blur(3px);
  transition: border-color 180ms ease, transform 180ms ease;
}
.stat:hover { border-color: var(--acid-dim); transform: translateY(-3px); }
.stat::before,
.stat::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  pointer-events: none;
}
.stat::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--acid);
  border-left: 2px solid var(--acid);
}
.stat::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--acid);
  border-right: 2px solid var(--acid);
}
.stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--fog-dim);
}
.stat-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}
.stat-value {
  margin-top: 12px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat-value.up { color: var(--acid); text-shadow: 0 0 20px rgba(215, 242, 5, 0.3); }
.stat-value.down { color: var(--red); }

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat:last-child { grid-column: span 2; }
}

/* ============================================================
   HOW TO BUY
   ============================================================ */
.buy { border-bottom: 1px solid var(--edge); }
.buy-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 128px) var(--pad-x);
}
.buy-inner .section-stamp { margin-bottom: 14px; }
.buy-inner h2 { margin-bottom: 44px; }
.buy-steps {
  --buy-gap: clamp(24px, 4vw, 52px);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--buy-gap);
  margin-bottom: 52px;
}
.buy-steps li { position: relative; }

/* glowing step node */
.buy-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--acid);
  background: var(--panel);
  color: var(--acid);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(215, 242, 5, 0.22), inset 0 0 12px rgba(215, 242, 5, 0.08);
}
/* animated connector to the next node */
.buy-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 66px;
  width: calc(100% - 66px + var(--buy-gap));
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(215, 242, 5, 0.45) 0 9px,
    transparent 9px 20px
  );
  animation: dashmove 1.1s linear infinite;
}
.buy-steps h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.buy-steps p { color: var(--fog); font-size: 17px; }
.buy-steps .mono { color: var(--acid); }
.buy-step-cta { margin-top: 6px; font-size: 13.5px; padding: 14px 20px; }
.buy-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .buy-steps { grid-template-columns: 1fr; }
  .buy-steps li { padding-left: 78px; }
  .buy-node { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .buy-steps li:not(:last-child)::after {
    top: 60px;
    left: 26px;
    width: 2px;
    height: calc(100% - 54px + var(--buy-gap));
    background: repeating-linear-gradient(
      180deg,
      rgba(215, 242, 5, 0.45) 0 9px,
      transparent 9px 20px
    );
    animation: dashmove-v 1.1s linear infinite;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--panel); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--pad-x) 44px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.footer-brand img {
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(215, 242, 5, 0.2);
}
.footer-word {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-bottom: 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.footer-links a {
  color: var(--fog);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover { color: var(--acid); border-bottom-color: var(--acid); }
.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto 22px;
  font-size: 14px;
  color: var(--fog-dim);
}
.footer-ca {
  font-size: 12px;
  color: var(--fog-dim);
  word-break: break-all;
}
