﻿/* ============================================================
   SOLARIUM v6 вЂ” the common tongue of the references:
   black-olive ground В· one acid-lime accent В· big grotesk +
   mono data В· glowing grainy orb В· lime top band В· square chips
   ============================================================ */

@font-face {
  font-family: "IBM Plex Mono";
  src: url(fonts/plexmono-400.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url(fonts/plexmono-600.woff2) format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #060704;          /* near-black with olive depth */
  --panel: #0D0F08;
  --panel-2: #11140A;
  --ink: #F2F4E9;            /* warm off-white */
  --dim: #A9AF98;
  --faint: #767D65;
  --acid: #00FF66;           /* THE accent */
  --acid-soft: #7DFFB2;
  --red: #FF5C39;
  --line: rgba(242, 244, 233, 0.12);
  --line-bright: rgba(242, 244, 233, 0.24);
  --acid-12: rgba(0, 255, 102, 0.12);
  --acid-08: rgba(0, 255, 102, 0.08);

  --r: 2px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 0.14s;
  --std: 0.26s;

  --font-sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --sidebar-w: 236px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* smoky olive haze */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 36% at 80% 4%, rgba(0, 165, 70, 0.13), transparent 70%),
    radial-gradient(44% 34% at 6% 90%, rgba(0, 255, 102, 0.06), transparent 70%),
    radial-gradient(60% 46% at 50% 120%, rgba(0, 92, 40, 0.12), transparent 72%);
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

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

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

[hidden] { display: none !important; }

a { color: var(--acid); text-decoration-color: rgba(0, 255, 102, 0.5); }
a:hover { color: var(--ink); }
p { color: var(--dim); }

button { font: inherit; cursor: pointer; color: inherit; }

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--ink);
  background: var(--acid-08);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.1em 0.4em;
  word-break: break-all;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: rgba(242, 244, 233, 0.16); border: 2px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: rgba(242, 244, 233, 0.3); }

/* ---------------- typography ---------------- */

.display {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
}
.display i, .display em { font-style: normal; color: var(--acid); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
}

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--line-bright);
  border-radius: var(--r);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--fast) var(--ease), color var(--fast) var(--ease),
              border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
/* the square marker */
.btn::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--acid);
  flex-shrink: 0;
  transition: background-color var(--fast) var(--ease);
}
.btn:hover { border-color: var(--acid); color: var(--acid); transform: translateY(-1px); }
.btn:active { transform: none; }
.btn:disabled { cursor: not-allowed; opacity: 0.45; transform: none; }

.btn--primary,
.btn--dark {
  background: var(--acid);
  border-color: var(--acid);
  color: #060704;
}
.btn--primary::before, .btn--dark::before { background: #060704; }
.btn--primary:hover, .btn--dark:hover { background: var(--acid-soft); color: #060704; border-color: var(--acid-soft); }
.btn--primary:disabled:hover, .btn--dark:disabled:hover {
  background: var(--acid); color: #060704; border-color: var(--acid); transform: none;
}

.btn--big { min-height: 52px; padding: 0.85rem 1.9rem; font-size: 0.8rem; }

/* ---------------- chips (Elory tags) ---------------- */

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line-bright);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.contract-line {
  margin-top: 1.4rem;
  padding: 0.6rem 0.9rem;
  border-left: 2px solid var(--acid);
  font-family: var(--font-mono);
}
.contract-line span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}
.contract-line b { font-size: 0.8rem; font-weight: 600; color: var(--ink); word-break: break-all; }

/* ---------------- app layout ---------------- */

.app { display: flex; min-height: 100vh; position: relative; z-index: 1; }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  background: rgba(6, 7, 4, 0.94);
  border-right: 1px solid var(--line);
  padding: 1.2rem 0.8rem 1.2rem;
  overflow-y: auto;
}

.sidebar__brand { display: flex; align-items: center; gap: 0.65rem; padding: 0.3rem 0.5rem 1.2rem; text-decoration: none; }
.sidebar__mark svg { filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.55)); }
.sidebar__word { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.32em; color: var(--ink); }

.sidebar__nav { display: flex; flex-direction: column; gap: 1px; }

.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.58rem 0.7rem;
  border-radius: var(--r);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.sidebar__nav a:hover { color: var(--ink); background: rgba(242, 244, 233, 0.05); }
.sidebar__nav a.active { color: var(--ink); background: var(--acid-08); box-shadow: inset 2px 0 0 var(--acid); }
.sidebar__nav a.active svg { stroke: var(--acid); }

.sidebar__nav svg {
  width: 16px; height: 16px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.sidebar__nav--main { counter-reset: nav; }
.sidebar__nav--main a::after {
  counter-increment: nav;
  content: "0" counter(nav);
  margin-left: auto;
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--faint);
}
.sidebar__nav--main a.active::after { color: var(--acid); }

.sidebar__spacer { flex: 1; min-height: 1.5rem; }
.sidebar__nav--bottom { border-top: 1px solid var(--line); padding-top: 0.8rem; }

.sidebar__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.sidebar__status .dot { width: 7px; height: 7px; background: var(--acid); flex-shrink: 0; animation: pulseTag 2.2s ease-in-out infinite; }
.sidebar__status.offline .dot { background: var(--red); animation: none; }
.sidebar__status.offline { color: var(--red); border-color: rgba(255, 92, 57, 0.4); }

.sidebar__meta {
  margin-top: 0.5rem;
  padding: 0 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: var(--faint);
  line-height: 1.9;
  text-transform: uppercase;
}
.sidebar__meta b { color: var(--dim); font-weight: 600; }

.scrim { position: fixed; inset: 0; z-index: 55; background: rgba(6, 7, 4, 0.86); }
@media (min-width: 1100px) { .scrim { display: none !important; } }

.shell { flex: 1; min-width: 0; margin-left: var(--sidebar-w); display: flex; flex-direction: column; min-height: 100vh; }

/* ---------------- topbar: the acid band (Elory) ---------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.6rem;
  background: var(--acid);
  border-bottom: 1px solid rgba(6, 7, 4, 0.25);
}

.topbar__menu { display: none; background: none; border: 0; color: #060704; padding: 0.3rem; }

.topbar__title {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #060704;
}
.topbar__title::before { content: "VENDRA / "; color: rgba(6, 7, 4, 0.55); }

.topbar__clock {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(6, 7, 4, 0.65);
  font-variant-numeric: tabular-nums;
}

/* X link — black on the acid band, inverts on hover */
.topbar__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: #060704;
  border: 1px solid rgba(6, 7, 4, 0.35);
  border-radius: var(--r);
  transition: background-color var(--fast) var(--ease), color var(--fast) var(--ease),
              border-color var(--fast) var(--ease);
}
.topbar__x:hover { background: #060704; color: var(--acid); border-color: #060704; }
.topbar__x:focus-visible { outline: 2px solid #060704; outline-offset: 2px; }

.topbar__connect {
  min-height: 38px;
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
  background: #060704;
  border-color: #060704;
  color: var(--acid);
}
.topbar__connect::before { background: var(--acid); }
.topbar__connect:hover { background: #171A0E; border-color: #171A0E; color: var(--acid); }

/* ---------------- views ---------------- */

.views { flex: 1; width: 100%; max-width: 1240px; margin: 0 auto; padding: 2.2rem 1.6rem 4rem; }

.view-intro { position: relative; margin-bottom: 2rem; max-width: 56rem; }
.view-intro p { margin-top: 0.7rem; font-size: 0.95rem; }
.view-intro .pill { vertical-align: middle; margin-left: 0.7rem; transform: translateY(-0.3em); }
.view-intro::after {
  content: "";
  display: block;
  margin-top: 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--line-bright), var(--line) 55%, transparent 92%);
}
.view-intro::before {
  content: "";
  position: absolute;
  bottom: -3.5px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--paper);
  border: 1px solid var(--acid);
}

/* ---------------- hero: text left В· orb + garden right ---------------- */

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--r);
  background: #050603;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
  margin-bottom: 1.6rem;
}
.hero-card::before, .hero-card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  z-index: 3;
  pointer-events: none;
}
.hero-card::before { top: -1px; left: -1px; border-top: 1px solid var(--acid); border-left: 1px solid var(--acid); }
.hero-card::after  { bottom: -1px; right: -1px; border-bottom: 1px solid var(--acid); border-right: 1px solid var(--acid); }

.hero-card__text {
  position: relative;
  z-index: 2;
  padding: 3rem 2.4rem 3.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--acid);
  margin-bottom: 0.9rem;
}

.hero-card__giant {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
}
.hero-card__giant i { font-style: normal; color: var(--acid); }

.hero-card__sub { max-width: 34rem; margin-top: 1.1rem; color: var(--dim); font-size: 0.98rem; }

.hero-card__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.7rem;
}

.hero-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-card__link::before { content: ""; width: 9px; height: 9px; background: var(--acid); }
.hero-card__link:hover { color: var(--acid); }

/* right column: glowing orb over the ascii garden */
.hero-card__visual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line);
  min-height: 520px;
}

.hero-card__canvas {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 58%;
}

.orb {
  position: absolute;
  left: 50%;
  top: 26%;
  width: min(300px, 62%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, #CFFFE0 0%, #66FFA3 18%, #00FF66 42%, #00B84E 68%, #0A6B33 88%, #06331A 100%);
  box-shadow:
    0 0 60px rgba(0, 255, 102, 0.35),
    0 0 160px rgba(0, 255, 102, 0.18),
    inset -18px -24px 60px rgba(10, 14, 2, 0.55);
  animation: orbBreathe 7s ease-in-out infinite;
}
@keyframes orbBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -52%) scale(1.035); }
}
/* grain on the orb itself вЂ” Verity's texture */
.orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23g)' opacity='0.9'/%3E%3C/svg%3E");
  opacity: 0.16;
  mix-blend-mode: overlay;
}

.hero-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 6, 3, 0.55) 0%, transparent 40%);
  pointer-events: none;
}

.hero-card__glow {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 80%;
  height: 50%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 255, 102, 0.12), transparent 70%);
  filter: blur(46px);
  pointer-events: none;
}

.hud {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  pointer-events: none;
}
.hud--tl { top: 14px; left: 16px; }
.hud--tr { top: 14px; right: 16px; display: inline-flex; align-items: center; gap: 0.45rem; }
.hud__dot { width: 7px; height: 7px; background: var(--acid); animation: pulseTag 1.8s ease-in-out infinite; }

.telemetry {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 3, 0.78);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--faint);
  pointer-events: none;
}
.telemetry b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------------- guilloche deco ---------------- */

.deco { position: absolute; z-index: 1; pointer-events: none; opacity: 0.5; }
.deco svg { width: 100%; height: 100%; }
.deco--hero-l { left: 3%; bottom: 10%; width: 150px; height: 150px; opacity: 0.3; }
.deco--hero-r { right: 4%; top: 8%; width: 120px; height: 120px; opacity: 0.3; }
.deco--slow svg { animation: decoSpin 90s linear infinite; }
@keyframes decoSpin { to { transform: rotate(360deg); } }
.deco--report { right: -30px; bottom: -30px; width: 200px; height: 200px; opacity: 0.2; }

/* ---------------- powering: giant bracket number ---------------- */

.panel--light { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
.panel--light p { color: var(--dim); }

.powering { text-align: center; padding: 3.2rem 1.6rem 2.6rem; margin: 2.2rem 0; overflow: hidden; }

.powering__number {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 7.4vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 1.3rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.powering__number::before { content: "[↳ "; color: var(--acid); }
.powering__number::after  { content: " ]"; color: var(--acid); }

.powering__line { font-size: clamp(1.15rem, 2.4vw, 1.7rem); font-weight: 500; line-height: 1.5; color: var(--dim); letter-spacing: -0.01em; }

.highlight-pill {
  display: inline-block;
  background: var(--acid);
  color: #060704;
  padding: 0 0.35em;
  font-weight: 700;
}

.powering__stats { justify-content: center; margin: 2.2rem auto 0; border-top: 1px solid var(--line); }

.powering__engine {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}
.powering__engine.online { color: var(--dim); }
.powering__engine.online b { color: var(--acid); }

/* ---------------- pills / badges ---------------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--line-bright);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  background: transparent;
}
.pill--green { border-color: rgba(0, 255, 102, 0.5); color: var(--acid); }
.pill--green::before { content: ""; width: 6px; height: 6px; background: var(--acid); animation: pulseTag 2s ease-in-out infinite; }

.badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.5rem;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}
.badge--live { border-color: rgba(0, 255, 102, 0.5); color: var(--acid); }
.badge--live::before { content: ""; width: 5px; height: 5px; background: var(--acid); }
.badge--sold { background: var(--ink); color: #060704; border-color: var(--ink); }
.badge--reveal { color: var(--ink); border-color: var(--line-bright); }
.badge--unrev { color: var(--red); border-color: rgba(255, 92, 57, 0.45); }
.badge--chain { color: #060704; background: var(--acid); border-color: var(--acid); }

@keyframes pulseTag {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4); }
  50%      { box-shadow: 0 0 9px 2px rgba(0, 255, 102, 0.15); }
}

/* ---------------- ticker ---------------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 15, 8, 0.7);
  padding: 0.5rem 0;
  margin-bottom: 2.2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track { display: inline-flex; white-space: nowrap; animation: ticker 46s linear infinite; will-change: transform; }
.ticker__track > span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--dim);
  padding-right: 2.6rem;
}
.ticker__track .tick-sun { color: var(--acid); }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------------- panels ---------------- */

.panel { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem; }
.panel::before, .panel::after { content: ""; position: absolute; width: 8px; height: 8px; pointer-events: none; transition: border-color var(--fast) var(--ease); }
.panel::before { top: -1px; left: -1px; border-top: 1px solid var(--line-bright); border-left: 1px solid var(--line-bright); }
.panel::after  { bottom: -1px; right: -1px; border-bottom: 1px solid var(--line-bright); border-right: 1px solid var(--line-bright); }
.panel--link:hover::before, .panel--link:hover::after { border-color: var(--acid); }

.panel h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.5rem; color: var(--ink); }
.panel p { font-size: 0.86rem; }

.panel--link { display: block; text-decoration: none; transition: border-color var(--fast) var(--ease), background-color var(--fast) var(--ease), transform var(--std) var(--ease); }
.panel--link:hover { border-color: var(--line-bright); background: var(--panel-2); transform: translateY(-3px); }

.panel-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.panel__go {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acid);
}
.panel__go::before { content: ""; width: 7px; height: 7px; background: var(--acid); }

/* ---------------- token pill ---------------- */

.token-pill { display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1.3rem; padding: 0.5rem 0.95rem; background: var(--panel); border: 1px solid var(--line); }
.token-pill__tick { font-family: var(--font-mono); font-weight: 600; color: var(--ink); letter-spacing: 0.18em; }
.token-pill__ca { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; color: var(--acid); }

/* ---------------- launchpad ---------------- */

.launch__grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 1.3rem; align-items: start; margin-top: 1.8rem; }

.launch-form__head { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.launch-form__sub { margin: 0.6rem 0 1.4rem; font-size: 0.86rem; }

.launch-side { display: grid; gap: 1rem; }

.field { display: block; margin-bottom: 1rem; border: 0; padding: 0; min-width: 0; }
fieldset.field { margin-top: 0.3rem; }

.field__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--faint);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.field__input {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #040502;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.55rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  caret-color: var(--acid);
}
.field__input:hover { border-color: var(--line-bright); }
.field__input:focus { outline: none; border-color: var(--acid); box-shadow: 0 0 14px rgba(0, 255, 102, 0.15); }
.field__input::placeholder { color: var(--faint); opacity: 1; }
.field__textarea { min-height: 0; resize: vertical; font-size: 0.82rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.85rem; }

.radio {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.8rem 0.9rem;
  background: #040502;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 0.55rem;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--dim);
  transition: border-color var(--fast) var(--ease);
}
.radio b { color: var(--ink); }
.radio input { margin-top: 0.25rem; accent-color: var(--acid); }
.radio:has(input:checked) { border-color: var(--acid); background: var(--acid-08); color: var(--ink); }

.launch-form__note { border: 1px dashed var(--line-bright); border-radius: var(--r); padding: 0.8rem 0.95rem; font-size: 0.8rem; color: var(--dim); margin: 1rem 0 1.4rem; }
.launch-form__note b { color: var(--ink); }

.launch-status { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.78rem; line-height: 1.7; color: var(--dim); overflow-wrap: anywhere; }
.launch-status a { color: var(--acid); }
.launch-status b { color: var(--ink); }

/* ---------------- card grids ---------------- */

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.col-card { padding: 0; overflow: hidden; }
.col-card__idx {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  padding: 0.14rem 0.42rem;
  background: rgba(6, 7, 4, 0.85);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.col-card__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.col-card__thumbs .thumb { aspect-ratio: 1; overflow: hidden; }
.col-card__thumbs .thumb + .thumb { border-left: 1px solid var(--line); }
.col-card__thumbs svg { width: 100%; height: 100%; transition: transform 0.45s var(--ease); }
.col-card:hover .thumb svg { transform: scale(1.09); }
.col-card:hover { border-color: var(--line-bright); }

.col-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 1rem; }
.col-card__name { font-weight: 700; font-size: 1rem; letter-spacing: -0.015em; color: var(--ink); }
.col-card__owners { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; color: var(--faint); margin-top: 0.2rem; }
.col-card__floor { flex-shrink: 0; text-align: right; }
.col-card__floor .lbl { display: block; font-family: var(--font-mono); font-size: 0.54rem; font-weight: 600; letter-spacing: 0.2em; color: var(--faint); }
.col-card__floor .val { font-family: var(--font-mono); font-weight: 600; font-size: 0.85rem; color: var(--acid); }

.mint-card { display: flex; flex-direction: column; gap: 0.9rem; }
.mint-card__head { display: flex; align-items: center; gap: 0.85rem; }
.mint-card__avatar { width: 46px; height: 46px; flex-shrink: 0; overflow: hidden; border: 1px solid var(--line); }
.mint-card__avatar svg { width: 100%; height: 100%; transition: transform 0.4s var(--ease); }
.mint-card:hover .mint-card__avatar svg { transform: rotate(3deg) scale(1.08); }
.mint-card__name { font-weight: 700; font-size: 0.98rem; letter-spacing: -0.015em; color: var(--ink); }
.mint-card__by { font-family: var(--font-mono); font-size: 0.62rem; color: var(--faint); margin-top: 0.2rem; letter-spacing: 0.08em; }

.mint-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; border-top: 1px solid var(--line); padding-top: 0.8rem; }
.mint-card__stats .lbl { display: block; font-family: var(--font-mono); font-size: 0.54rem; font-weight: 600; letter-spacing: 0.18em; color: var(--faint); }
.mint-card__stats .val { font-family: var(--font-mono); font-weight: 600; font-size: 0.85rem; color: var(--ink); }

.meter { height: 10px; border: 1px solid var(--line); background: #040502; overflow: hidden; position: relative; }
.meter__fill { height: 100%; background: var(--acid); }
.meter__fill.full { background: var(--ink); }
.meter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 calc(10% - 2px), #060704 calc(10% - 2px) 10%);
  pointer-events: none;
}

/* ---------------- token view ---------------- */

.token-card { max-width: 640px; margin-bottom: 1rem; }
.token-card__head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.token-card__head h3 { margin: 0; font-size: 1.3rem; }
.token-card__sub { font-family: var(--font-mono); font-size: 0.62rem; color: var(--faint); letter-spacing: 0.14em; text-transform: uppercase; }
.token-card__mark { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(0, 255, 102, 0.5); color: var(--acid); font-size: 1rem; }
.token-card .pill { margin-left: auto; }

/* ---------------- rankings table ---------------- */

.table-card { padding: 0; overflow: hidden; }
.table-scroll { overflow-x: auto; }

.rank-table { width: 100%; min-width: 720px; border-collapse: collapse; font-family: var(--font-mono); font-size: 0.8rem; }
.rank-table th {
  text-align: left;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-bottom: 3px double var(--line-bright);
  white-space: nowrap;
}
.rank-table td { padding: 0.72rem 1rem; border-bottom: 1px solid var(--line); white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--dim); }
.rank-table tbody tr:last-child td { border-bottom: none; }
.rank-table tbody tr { transition: background-color var(--fast) var(--ease); }
.rank-table tbody tr:hover { background: var(--acid-08); }
.rank-table tbody tr:hover td { color: var(--ink); }
.rank-table .num { color: var(--faint); }
.rank-table .who { display: flex; align-items: center; gap: 0.7rem; min-width: 240px; white-space: normal; }
.rank-table .who .mini { width: 32px; height: 32px; flex-shrink: 0; overflow: hidden; border: 1px solid var(--line); }
.rank-table .who .mini svg { width: 100%; height: 100%; }
.rank-table .who .cname { font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
.rank-table .who .csym { font-size: 0.58rem; color: var(--faint); letter-spacing: 0.14em; }
.rank-table .owners { font-weight: 600; color: var(--acid); }

/* ---------------- feed ---------------- */

.feed { display: flex; flex-direction: column; gap: 0.6rem; max-width: 860px; }
.feed__item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.85rem 1.1rem; }
.feed__icon { font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.7; color: var(--acid); }
.feed__body { flex: 1; font-size: 0.86rem; color: var(--dim); }
.feed__body b { color: var(--ink); }
.feed__body a { color: var(--acid); }
.feed__when { font-family: var(--font-mono); font-size: 0.6rem; color: var(--faint); white-space: nowrap; padding-top: 0.3rem; letter-spacing: 0.1em; }

/* ---------------- empty states ---------------- */

.empty { max-width: 560px; padding: 2rem 1.5rem; background: var(--panel); border: 1px dashed var(--line-bright); border-radius: var(--r); text-align: center; }
.empty p { margin: 0.3rem 0; font-size: 0.88rem; }
.empty b { color: var(--ink); font-weight: 700; }
.empty a { color: var(--acid); }
.empty__mark { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 0.5rem; border: 1px solid rgba(0, 255, 102, 0.5); color: var(--acid); }

.footnote { margin-top: 1.5rem; font-size: 0.8rem; color: var(--faint); }
.footnote a { color: var(--acid); }

.loading::after { content: "▪"; color: var(--acid); margin-left: 0.3rem; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------------- docs / how ---------------- */

.prose { max-width: 780px; }
.prose h3 { margin: 1.4rem 0 0.5rem; }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.prose b { color: var(--ink); }
.prose a { color: var(--acid); }

.steps { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 900px; }
.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(0, 255, 102, 0.5);
  color: var(--acid);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
}

/* ---------------- drop page ---------------- */

.droppage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: start; }
.droppage__stats { max-width: 24rem; margin-top: 1.2rem; }
.droppage__meter { max-width: 24rem; margin-top: 0.8rem; }
.droppage__links { margin-top: 1.3rem; }
.droppage__links a { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--acid); }

.mintbox { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.5rem; }
.mintbox__total { font-family: var(--font-mono); font-size: 0.7rem; color: var(--faint); letter-spacing: 0.08em; }

.qty { display: inline-flex; align-items: center; background: #040502; border: 1px solid var(--line); overflow: hidden; }
.qty__btn { background: none; border: none; color: var(--ink); font-size: 1rem; min-width: 42px; min-height: 44px; transition: background-color var(--fast) var(--ease), color var(--fast) var(--ease); }
.qty__btn:hover { background: var(--acid); color: #060704; }
.qty__btn:focus-visible { outline-offset: -3px; }
.qty__num { font-family: var(--font-mono); font-weight: 600; min-width: 2.2rem; text-align: center; }

.public-reveal { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.3rem; padding: 0.95rem 1.1rem; font-size: 0.8rem; color: var(--dim); border-style: dashed; }

.creator-panel { margin-top: 1.5rem; }
.creator-panel h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.creator-panel__tag {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  background: var(--acid);
  color: #060704;
  padding: 0.2rem 0.5rem;
  margin-left: 0.6rem;
  vertical-align: middle;
  text-transform: uppercase;
}
.creator-panel__row { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 0.9rem; font-size: 0.8rem; color: var(--dim); }
.creator-panel__row .field__input { flex: 1; min-width: 200px; width: auto; }

.droppage__gallery-title { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 1rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.gallery__cell { background: var(--panel); border: 1px solid var(--line); overflow: hidden; transition: border-color var(--fast) var(--ease); }
.gallery__cell:hover { border-color: var(--acid); }
.gallery__img { aspect-ratio: 1; background: #040502; }
.gallery__img img { width: 100%; height: 100%; display: block; }
.gallery__cap { font-family: var(--font-mono); font-size: 0.58rem; font-weight: 600; color: var(--faint); padding: 0.3rem 0.5rem; border-top: 1px solid var(--line); letter-spacing: 0.12em; }
.droppage__empty { color: var(--dim); font-size: 0.86rem; }

/* ---------------- footer ---------------- */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}
.footer__ascii { font-family: var(--font-mono); font-size: 0.6rem; line-height: 1.15; letter-spacing: 0; color: var(--dim); white-space: pre; margin: 0; }
.footer__cols { text-align: right; line-height: 2.1; }

/* ---------------- wallet menu ---------------- */

.wallet-menu {
  position: fixed;
  z-index: 1002;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line-bright);
  border-radius: var(--r);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 22px rgba(0, 255, 102, 0.1);
  padding: 4px;
  display: flex;
  flex-direction: column;
  animation: rise 0.25s var(--ease);
}
.wallet-menu__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.62rem 0.85rem;
  background: none;
  border: 0;
  border-radius: var(--r);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--fast) var(--ease), color var(--fast) var(--ease);
}
.wallet-menu__item:hover { background: var(--acid-08); color: var(--acid); }

/* ---------------- toast ---------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 1000;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--acid);
  box-shadow: 0 0 28px rgba(0, 255, 102, 0.18);
  padding: 0.75rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--std) var(--ease), transform var(--std) var(--ease);
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast::before { content: "▪ "; color: var(--acid); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------------- discover split ---------------- */

.discover-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.8rem; align-items: start; margin-top: 2.2rem; }
.discover-split__stack { display: grid; gap: 1rem; }

.hero__stats { display: flex; gap: 2.6rem; border-top: 1px solid var(--line); padding-top: 1.1rem; max-width: 34rem; }
.hero__stats dt { font-family: var(--font-mono); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.2em; color: var(--faint); text-transform: uppercase; }
.hero__stats dd { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 600; margin-top: 0.3rem; color: var(--ink); font-variant-numeric: tabular-nums; }

.hero__art { position: relative; display: flex; justify-content: center; }
.hero__pill { position: absolute; top: -12px; right: 6%; z-index: 3; background: var(--paper); }

.hero__art::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(0, 255, 102, 0.3) 0 1px, transparent 1.4px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(115deg, transparent 15%, #000 60%, transparent 100%);
  mask-image: linear-gradient(115deg, transparent 15%, #000 60%, transparent 100%);
  pointer-events: none;
}

/* ---------------- easel ---------------- */

.easel { position: relative; z-index: 1; width: min(380px, 86vw); background: var(--panel); border: 1px solid var(--line-bright); overflow: hidden; }
.easel__frame { position: relative; aspect-ratio: 1; }
.easel__frame .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s var(--ease); }
.easel__frame .slide.on { opacity: 1; }
.easel__frame .slide svg { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.easel__frame .slide.on svg { animation: kenburns 9s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }

.easel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 42%, rgba(242, 244, 233, 0.16) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(130%); } }

.easel__caption { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 0.5rem 0.65rem; background: #040502; border-top: 1px solid var(--line); }
.easel__label { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.easel__nav { background: none; border: none; color: var(--dim); font-size: 1.2rem; line-height: 1; min-width: 32px; min-height: 32px; padding: 0.2rem 0.5rem; transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease); }
.easel__nav:hover { color: #060704; background: var(--acid); }

/* ---------------- motion kit ---------------- */

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.rise { opacity: 0; }
.rise.in { animation: rise 0.6s var(--ease) both; animation-delay: var(--d, 0ms); }

@keyframes floaty {
  0%, 100% { transform: translateY(-8px) rotate(var(--tilt, 0deg)); }
  50%      { transform: translateY(10px) rotate(var(--tilt, 0deg)); }
}
.float-card {
  position: absolute;
  z-index: 4;
  width: 104px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  box-shadow: 0 0 28px rgba(0, 255, 102, 0.14), 0 18px 40px rgba(0, 0, 0, 0.5);
  animation: floaty 6s ease-in-out infinite;
  cursor: grab;
}
.float-card:active { cursor: grabbing; }
.float-card.dragging { animation: none; box-shadow: 0 0 34px rgba(0, 255, 102, 0.3), 0 24px 50px rgba(0, 0, 0, 0.6); }
.float-card svg { width: 100%; height: 100%; display: block; pointer-events: none; }
.float-card--1 { left: 4%;  bottom: 24%; --tilt: -8deg; animation-delay: -1.2s; }
.float-card--2 { right: 5%; top: 10%;    --tilt: 7deg;  animation-delay: -3s;   width: 92px; }
.float-card--3 { right: 12%; bottom: 14%; --tilt: -4deg; animation-delay: -4.6s; width: 78px; }
.float-card__tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.15rem 0.3rem;
  background: rgba(6, 7, 4, 0.85);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--acid);
  text-transform: uppercase;
}

@media (max-width: 900px) { .float-card { display: none; } }

/* ---------------- responsive ---------------- */

@media (max-width: 1099px) {
  .sidebar { transform: translateX(-100%); transition: transform var(--std) var(--ease); }
  .sidebar.open { transform: translateX(0); }
  .shell { margin-left: 0; }
  .topbar__menu { display: inline-flex; }
  .hero-card { grid-template-columns: 1fr; min-height: 0; }
  .hero-card__visual { min-height: 380px; border-left: none; border-top: 1px solid var(--line); }
  .discover-split { grid-template-columns: 1fr; gap: 2.4rem; }
  .panel-row { grid-template-columns: 1fr; }
  .launch__grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .droppage__grid { grid-template-columns: 1fr; }
  .deco--hero-l, .deco--hero-r { display: none; }
}

@media (max-width: 680px) {
  .views { padding: 1.5rem 1rem 3rem; }

  /* compact one-line topbar: menu · title · connect */
  .topbar { padding: 0.55rem 0.9rem; gap: 0.7rem; }
  .topbar .topbar__chip, .topbar .topbar__clock { display: none; }
  .topbar__title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.14em; }
  .topbar__title::before { content: none; }
  /* clock is gone on phones, so the X takes over pushing the row right */
  .topbar .topbar__x { margin-left: auto; width: 28px; height: 28px; }
  .topbar__connect { margin-left: 0; min-height: 36px; padding: 0.4rem 0.8rem; font-size: 0.66rem; flex-shrink: 0; }

  .card-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
  .hero__stats dd { font-size: 1.15rem; }
  .hero-card__text { padding: 2rem 1.2rem 2.2rem; }
  .hero-card__cta .btn--big { width: 100%; }

  /* the orb sits fully inside the shorter visual column */
  .hero-card__visual { min-height: 340px; }
  .orb { width: 46%; top: 34%; }
  .orb-ring, .orb-sat { width: 60%; top: 34%; }
  .hero-card__canvas { height: 50%; }

  .telemetry { gap: 1rem; padding: 0.45rem 0.6rem; }

  /* inputs at 16px so iOS does not zoom on focus */
  .field__input { font-size: 16px; }

  /* stacked centered footer */
  .footer { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .footer__cols { text-align: center; }

  .powering { padding: 2.4rem 0.9rem 2rem; }
  .powering__stats { gap: 1.2rem; }
}

/* touch ergonomics */
@media (pointer: coarse) {
  .easel .easel__dots { gap: 10px; bottom: 12px; }
  .easel .easel__dots button { width: 14px; height: 14px; }
  .sidebar__meta .keys-hint { display: none; }
}

/* ---------------- extra motion & detail pass ---------------- */

/* every route change breathes in */
.view { animation: viewIn 0.4s var(--ease); }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* scroll progress — a dark hairline running across the acid band */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: #060704;
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* topbar network chip */
.topbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(6, 7, 4, 0.45);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #060704;
  text-transform: uppercase;
}

/* kicker types with a live block cursor */
.hero-kicker::after {
  content: "▪";
  margin-left: 0.35rem;
  animation: blink 1.1s steps(1) infinite;
}

/* the accent word underlines itself once */
.hero-card__giant i { position: relative; }
.hero-card__giant i::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 3px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.8s var(--ease) 0.6s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

/* orbit ring + satellite around the orb */
.orb-ring {
  position: absolute;
  left: 50%;
  top: 26%;
  width: min(370px, 78%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 255, 102, 0.3);
  border-radius: 50%;
  animation: ringSpin 60s linear infinite;
  pointer-events: none;
}
@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.orb-sat {
  position: absolute;
  left: 50%;
  top: 26%;
  width: min(370px, 78%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: satSpin 14s linear infinite;
  pointer-events: none;
}
@keyframes satSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.orb-sat i {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.8);
}

/* twinkling sparks around the orb */
.sparkle {
  position: absolute;
  z-index: 2;
  color: var(--acid);
  font-size: 0.8rem;
  animation: twinkle 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%      { opacity: 0.9; transform: scale(1.15); }
}

/* primary CTA sheen on hover */
.btn--primary, .btn--dark { position: relative; overflow: hidden; }
.btn--primary::after, .btn--dark::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after, .btn--dark:hover::after { left: 130%; }

/* nav rows nudge on hover */
.sidebar__nav a { transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease), transform var(--fast) var(--ease); }
.sidebar__nav a:hover { transform: translateX(3px); }

/* corner ticks grow toward the cursor */
.panel--link:hover::before, .panel--link:hover::after { width: 14px; height: 14px; }

/* meters ease into place */
.meter__fill { transition: width 0.8s var(--ease); }

/* gallery zoom */
.gallery__img img { transition: transform 0.5s var(--ease); }
.gallery__cell:hover .gallery__img img { transform: scale(1.06); }

/* chips fade in one by one */
.chip { opacity: 0; animation: chipIn 0.5s var(--ease) forwards; }
.chip:nth-child(1) { animation-delay: 0.55s; }
.chip:nth-child(2) { animation-delay: 0.7s; }
.chip:nth-child(3) { animation-delay: 0.85s; }
.chip:nth-child(4) { animation-delay: 1s; }
@keyframes chipIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chip:hover { border-color: var(--acid); color: var(--ink); }

/* telemetry values flash when the sensors tick */
.telemetry b { transition: color 0.35s var(--ease); }
.telemetry b.flash { color: var(--acid); }

/* easel pagination squares */
.easel__dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.easel__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(242, 244, 233, 0.5);
  background: rgba(6, 7, 4, 0.6);
  cursor: pointer;
  transition: background-color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.easel__dots button.on { background: var(--acid); border-color: var(--acid); }

/* ---------------- reduced motion ---------------- */

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