:root {
  --bg: #050508;
  --bg2: #0a0c14;
  --panel: rgba(12, 16, 28, 0.82);
  --panel-border: rgba(192, 192, 210, 0.12);
  --chrome: linear-gradient(180deg, #f8fafc 0%, #94a3b8 38%, #cbd5e1 52%, #64748b 100%);
  --gold: #c9a227;
  --gold-dim: #8a7020;
  --neon: #ff1a1a;
  --neon-glow: rgba(255, 26, 26, 0.55);
  --blue: #1e3a8a;
  --blue-bright: #3b82f6;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e8ecf4;
  --muted: #8b95a8;
  --star: #dbeafe;
  --header-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
}

/* ── fixed header stack ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ── ticker ── */
.ticker-wrap {
  position: relative;
  background: linear-gradient(90deg, #0b1020, #12182a, #0b1020);
  border-bottom: 1px solid rgba(255, 26, 26, 0.35);
  box-shadow: 0 0 24px rgba(255, 26, 26, 0.12);
  overflow: hidden;
  height: 38px;
}

.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.85rem;
  background: linear-gradient(90deg, #12080a 70%, transparent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon-glow);
}

.ticker-label .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-left 55s linear infinite;
  padding-left: 140px;
}

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

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.4rem;
  height: 38px;
  white-space: nowrap;
  font-size: 0.82rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.ticker-item.flash-up { background: rgba(34, 197, 94, 0.15); }
.ticker-item.flash-down { background: rgba(239, 68, 68, 0.15); }

.ticker-x {
  font-weight: 700;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.ticker-price { font-variant-numeric: tabular-nums; font-weight: 600; }

.ticker-change {
  font-variant-numeric: tabular-nums;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.ticker-change small,
.stock-change small {
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.03em;
}

.ticker-change.up { color: var(--green); background: rgba(34, 197, 94, 0.12); }
.ticker-change.down { color: var(--red); background: rgba(239, 68, 68, 0.12); }

/* ── layout ── */
.page-offset { padding-top: var(--header-h); padding-bottom: 38px; }

.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 15% 10%, rgba(255, 26, 26, 0.08), transparent),
    radial-gradient(ellipse 40% 30% at 85% 20%, rgba(59, 130, 246, 0.07), transparent),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 162, 39, 0.05), transparent);
}

#chartCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.floating-tickers {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.float-symbol {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  opacity: 0.04;
  color: #fff;
  animation: float-drift 18s ease-in-out infinite;
}

@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}

nav {
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.nav-ca {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.65rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  line-height: 1;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--panel-border);
  border-radius: 7px;
  color: var(--muted);
  cursor: default;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  max-width: min(280px, 42vw);
}

.nav-ca:not(:disabled) {
  cursor: pointer;
  color: #e2e8f0;
}

.nav-ca:not(:disabled):hover {
  border-color: rgba(165, 180, 252, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.nav-ca.copied {
  border-color: rgba(34, 197, 94, 0.55);
}

.nav-ca-label {
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}

.nav-ca-val {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.nav-ca-val.awaiting {
  color: var(--muted);
}

.nav-ca.has-ca .nav-ca-val {
  color: #a5b4fc;
}

.nav-ca-copy {
  flex-shrink: 0;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-ca.has-ca .nav-ca-copy {
  opacity: 0.55;
}

.nav-ca.has-ca:hover .nav-ca-copy {
  opacity: 1;
}

.nav-logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.25));
}

.nav-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-title span { color: var(--neon); text-shadow: 0 0 16px var(--neon-glow); }

.nav-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, #ff2d2d, #b91c1c);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 45, 45, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(255, 45, 45, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover { border-color: rgba(255, 255, 255, 0.45); }

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-chrome {
  background: var(--chrome);
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(148, 163, 184, 0.25);
}

section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  position: relative;
  max-width: none;
  width: 100%;
  overflow: visible;
  min-height: auto;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  align-self: start;
  padding-top: 2.85rem;
}

/* Trump stands above platform box — box hides the waist cut */
.trump-stage {
  position: relative;
  width: min(440px, 100%);
  margin-right: 0;
  margin-left: -2.5rem;
}

.trump-figure {
  position: relative;
  z-index: 1;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.trump-figure img {
  width: 106%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -10%;
  margin-bottom: 0;
  transform: translateX(-6%);
  filter: drop-shadow(-6px 8px 28px rgba(0, 0, 0, 0.45));
}

.stat-grid-visual {
  width: 100%;
  max-width: min(440px, 100%);
  margin-top: 0.75rem;
}

.hero-logo {
  width: min(340px, 82%);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 26, 26, 0.2)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
  animation: logo-float 5s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid;
}

.badge-live {
  color: var(--green);
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
}

.badge-sol {
  color: #14f195;
  border-color: rgba(20, 241, 149, 0.35);
  background: rgba(20, 241, 149, 0.06);
}

.badge-verified {
  color: var(--blue-bright);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.08);
}

.badge-soon {
  color: var(--gold);
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.08);
}

.empty-state {
  text-align: center;
  padding: 2rem 1.25rem;
  color: var(--muted);
}

.empty-state .empty-icon {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  opacity: 0.45;
}

.empty-state strong { color: var(--text); display: block; margin-bottom: 0.35rem; }

.empty-state p { font-size: 0.85rem; max-width: 420px; margin: 0 auto; line-height: 1.55; }

.pending-addr {
  color: var(--muted) !important;
  font-style: italic;
}

.holdings-zero { color: var(--muted); font-weight: 600; }

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

h1 .chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 var(--gold-dim));
}

h1 .neon-text {
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow), 0 0 60px rgba(255, 26, 26, 0.25);
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.tagline strong { color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

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

.stat-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  backdrop-filter: blur(8px);
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.stat-value.green { color: var(--green); }
.stat-value.gold { color: var(--gold); }

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }

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

.step {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 26, 26, 0.15);
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step p { font-size: 0.85rem; color: var(--muted); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.stock-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 1.1rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.stock-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
  pointer-events: none;
}

.stock-card:hover {
  border-color: rgba(255, 26, 26, 0.3);
  transform: translateY(-2px);
}

.stock-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.stock-symbol {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.stock-underlying { font-size: 0.75rem; color: var(--muted); }

.stock-price {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stock-change { font-size: 0.78rem; font-weight: 600; }
.stock-change.up { color: var(--green); }
.stock-change.down { color: var(--red); }

.alloc-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.65rem 0;
}

.alloc-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon), var(--gold));
}

.stock-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

.mini-chart {
  height: 36px;
  margin-top: 0.65rem;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.mini-bar {
  flex: 1;
  background: rgba(34, 197, 94, 0.35);
  border-radius: 1px 1px 0 0;
  min-height: 4px;
}

.mini-bar.down { background: rgba(239, 68, 68, 0.35); }

/* ── proof ── */
.proof-section {
  max-width: 1200px;
}

.proof-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-bottom: 1.5rem;
}

.proof-banner strong { color: var(--green); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.proof-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}

.proof-panel h3 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-panel h3 .icon { font-size: 1.1rem; }

.addr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  word-break: break-all;
}

.addr-row code { color: #a5b4fc; flex: 1; }

.copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--muted);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.copy-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }

.verify-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue-bright);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.verify-link:hover { text-decoration: underline; }

.tx-table-wrap {
  overflow-x: auto;
  max-height: 320px;
  overflow-y: auto;
}

.tx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.tx-table th {
  text-align: left;
  padding: 0.55rem 0.5rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.65rem;
  border-bottom: 1px solid var(--panel-border);
  position: sticky;
  top: 0;
  background: rgba(12, 16, 28, 0.98);
}

.tx-table td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-variant-numeric: tabular-nums;
}

.tx-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.tx-hash {
  font-family: "JetBrains Mono", monospace;
  color: #a5b4fc;
  font-size: 0.7rem;
}

.tx-type {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tx-type.buy { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.tx-type.payout { background: rgba(59, 130, 246, 0.15); color: var(--blue-bright); }
.tx-type.fee { background: rgba(201, 162, 39, 0.15); color: var(--gold); }

.countdown-box {
  text-align: center;
  padding: 1.5rem;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.countdown-unit {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  min-width: 64px;
}

.countdown-unit .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon-glow);
}

.countdown-unit .lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.leaderboard {
  margin-top: 1.5rem;
}

.lb-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
}

.lb-row:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }

.lb-rank {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
}

.lb-rank.gold { color: var(--gold); }
.lb-rank.silver { color: #94a3b8; }
.lb-rank.bronze { color: #b45309; }

.lb-wallet {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #cbd5e1;
}

.lb-amount { font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; }
.lb-share { color: var(--muted); font-size: 0.75rem; }

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--panel-border);
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

footer .footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: #fff;
}

footer .footer-brand span { color: var(--neon); }

.disclaimer {
  max-width: 680px;
  margin: 1rem auto 0;
  line-height: 1.6;
  opacity: 0.7;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; align-items: start; }
  .hero-visual {
    order: -1;
    padding-top: 0;
    gap: 0;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-logo { width: min(240px, 62vw); margin-bottom: -0.5rem; }
  .trump-stage { margin-left: 0; width: min(360px, 92vw); }
  .trump-figure img { transform: none; width: 100%; margin-left: 0; margin-bottom: 0; }
  .stat-grid-visual { max-width: 420px; margin-left: auto; margin-right: auto; }
  .tagline, .hero-cta { margin-left: auto; margin-right: auto; justify-content: center; }
  .steps { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .trump-stage { margin-right: 0; }
  .trump-figure img { transform: none; width: 100%; margin-bottom: -28px; }
}

@media (min-width: 961px) {
  .hero-content { padding-right: clamp(0rem, 4vw, 2rem); }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .trump-stage { display: none; }
  .stat-grid-visual { margin-top: 0.5rem; }
  .market-bar { display: none; }
  .page-offset { padding-top: 38px; --header-h: 38px; }
  nav { top: 38px; }
  .etf-terminal { display: none; }
}

/* ── market bar ── */
.market-bar {
  position: relative;
  height: 32px;
  background: rgba(8, 10, 18, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.market-bar-scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.market-bar-scroll::-webkit-scrollbar { display: none; }

.market-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.mb-label { color: var(--muted); font-weight: 600; letter-spacing: 0.06em; }
.mb-val { font-weight: 700; color: #fff; }
.mb-val.up { color: var(--green); }
.mb-val.down { color: var(--red); }
.mb-val.muted-val { color: var(--muted); font-weight: 600; }
.mb-val.feed-ok { color: var(--green); }
.mb-val.feed-err { color: var(--red); }
.nyse-open { color: var(--green) !important; animation: pulse 2s ease infinite; }
.nyse-closed { color: var(--muted) !important; }

/* ── scanlines ── */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 2px,
    rgba(0, 0, 0, 0.4) 4px
  );
}

/* ── ETF terminal ── */
.etf-terminal {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.term-dot { width: 9px; height: 9px; border-radius: 50%; }
.term-dot.red { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.green { background: #28c840; }

.terminal-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-left: 0.35rem;
}

.terminal-live {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: var(--green);
  letter-spacing: 0.06em;
}

.terminal-body { padding: 0.65rem 0.85rem; }

.term-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.28rem 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.term-row:last-child { border-bottom: none; }
.term-key { color: var(--neon); min-width: 7rem; flex-shrink: 0; }
.term-val { color: #e2e8f0; }
.term-val.dim { color: var(--muted); }
.term-val.up { color: var(--green); }
.term-val.down { color: var(--red); }
.gold-text { color: var(--gold) !important; }

.stat-card-live {
  position: relative;
  overflow: hidden;
}

.stat-card-live::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: stat-shine 4s ease-in-out infinite;
}

@keyframes stat-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* ── sparklines & portfolio FX ── */
.sparkline-wrap {
  height: 36px;
  margin-top: 0.5rem;
}

.sparkline {
  width: 100%;
  height: 36px;
  display: block;
}

.sparkline-fill { opacity: 0.15; }

.vol-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-top: 0.35rem;
  opacity: 0.5;
}

.vol-bar {
  flex: 1;
  background: var(--green);
  border-radius: 1px 1px 0 0;
  min-height: 2px;
  animation: vol-pulse 2s ease-in-out infinite;
}

.vol-bar.down { background: var(--red); }

@keyframes vol-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

.stock-card {
  animation: card-in 0.5s ease backwards;
}

.stock-card:nth-child(1) { animation-delay: 0.02s; }
.stock-card:nth-child(2) { animation-delay: 0.04s; }
.stock-card:nth-child(3) { animation-delay: 0.06s; }
.stock-card:nth-child(4) { animation-delay: 0.08s; }
.stock-card:nth-child(5) { animation-delay: 0.1s; }

@keyframes card-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stock-price.tick-flash-up { animation: tick-up 0.4s ease; }
.stock-price.tick-flash-down { animation: tick-down 0.4s ease; }

@keyframes tick-up {
  0% { color: var(--green); text-shadow: 0 0 12px rgba(34, 197, 94, 0.5); }
  100% { color: inherit; text-shadow: none; }
}

@keyframes tick-down {
  0% { color: var(--red); text-shadow: 0 0 12px rgba(239, 68, 68, 0.5); }
  100% { color: inherit; text-shadow: none; }
}

/* ── bottom ticker ── */
.ticker-bottom {
  top: auto;
  bottom: 0;
  border-top: 1px solid rgba(255, 26, 26, 0.25);
  border-bottom: none;
  opacity: 0.85;
}

.ticker-reverse { animation: scroll-right 60s linear infinite; padding-left: 0; }

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

/* ── proof extras ── */
.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.facts-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facts-table td:first-child { color: var(--muted); }
.facts-table td:last-child { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

.fact-tag {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-tag.soon { background: rgba(201, 162, 39, 0.15); color: var(--gold); }
.fact-tag.live { background: rgba(34, 197, 94, 0.15); color: var(--green); }

.proof-banner-live {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.06));
  border-color: rgba(34, 197, 94, 0.25);
}

.countdown-box {
  text-align: center;
  padding: 1rem 0.5rem;
}

.activity-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.activity-col {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
}

.activity-col.empty { opacity: 0.7; }

.ac-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.ac-val {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.ac-sub { display: block; font-size: 0.68rem; color: var(--muted); margin-top: 0.25rem; }

/* ── transparency section ── */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.roadmap { display: flex; flex-direction: column; gap: 0.85rem; }

.road-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
}

.road-item p { color: var(--muted); font-size: 0.78rem; margin-top: 0.15rem; }

.road-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--muted);
}

.road-item.done .road-dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.road-item.active .road-dot { background: var(--gold); border-color: var(--gold); animation: pulse 1.5s ease infinite; }

.stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.stack-badge {
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #93c5fd;
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.flow-node {
  width: 100%;
  text-align: center;
  padding: 0.55rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
}

.flow-node.highlight {
  border-color: rgba(255, 26, 26, 0.35);
  background: rgba(255, 26, 26, 0.08);
  color: var(--neon);
}

.flow-arrow { color: var(--muted); font-size: 0.85rem; }

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.82rem;
}

.trust-list li { display: flex; gap: 0.5rem; align-items: flex-start; }
.trust-list .check { color: var(--green); flex-shrink: 0; }
.trust-list .check.pending { color: var(--gold); }

@media (max-width: 960px) {
  .infra-grid { grid-template-columns: 1fr; }
  .activity-cols { grid-template-columns: 1fr 1fr; }
}
