:root {
  --bg: #0a0c0f;
  --bg-2: #11141a;
  --bg-3: #161a21;
  --ink: #e8eaef;
  --ink-soft: #a3a8b3;
  --ink-dim: #6b7280;
  --line: #1c2128;
  --line-soft: #20262f;
  --accent: #f7931a;
  --accent-soft: #ffb454;
  --danger: #ff6b6b;
  --max: 1080px;
  --radius: 14px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ───── BACKGROUND LAYERS ───── */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(247,147,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,147,26,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: -2;
  mask-image: radial-gradient(ellipse at top, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 25%, transparent 70%);
  animation: gridMove 50s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}
.glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}
.glow-1 { background: #f7931a; top: -200px; right: -200px; animation: float 18s ease-in-out infinite; }
.glow-2 { background: #5a3aff; bottom: -300px; left: -200px; opacity: 0.15; animation: float 22s ease-in-out infinite reverse; }
@keyframes float {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(40px, -30px); }
}

/* ───── HEADER ───── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10,12,15,0.72);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--accent);
  text-decoration: none;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
  letter-spacing: -0.02em;
}
nav { display: flex; gap: 26px; }
nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}
nav a:hover { color: var(--accent); }
nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.25s;
}
nav a:hover::after { width: 100%; }
.status {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-dim);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.status .dot {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}

main { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ───── HERO ───── */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 100px 0 80px;
  min-height: 88vh;
}
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}
.kicker .bar {
  display: inline-block; width: 28px; height: 1px;
  background: var(--accent);
}
h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #fff 30%, #8a8f99 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #f7931a 0%, #ffb454 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center;
}
.btn.primary {
  background: var(--accent);
  color: #0a0c0f;
  box-shadow: 0 8px 24px rgba(247,147,26,0.25);
}
.btn.primary:hover { background: var(--accent-soft); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247,147,26,0.35); }
.btn.ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.btn.ghost:hover { color: var(--accent); border-color: var(--accent); }

.hero-visual { display: flex; justify-content: center; }
.orbit { width: 100%; max-width: 360px; }
.orbit-dot { transform-origin: 160px 160px; animation: spin 14s linear infinite; }
.orbit-dot-rev { transform-origin: 160px 160px; animation: spin 22s linear infinite reverse; }
.orbit-dot-slow { transform-origin: 160px 160px; animation: spin 30s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.orbit text { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { opacity: 0.95; }
  50%     { opacity: 0.5; }
}

/* ───── STATS STRIP ───── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(247,147,26,0.03), transparent);
  margin: 0 0 80px;
  overflow: hidden;
}
.stat {
  padding: 28px 24px;
  text-align: left;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.5;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* ───── BLOCKS / SECTIONS ───── */
.block { margin: 90px 0; }
.block-head { margin-bottom: 32px; max-width: 680px; }
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
}
.block-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}
.block-sub {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 16px;
}

.block p {
  margin: 0 0 20px;
  color: #cfd2d8;
  max-width: 720px;
}
.lead { font-size: 18px; color: #d8dae0 !important; }

/* ───── SPLIT LAYOUTS ───── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.flip > *:first-child { order: 2; }

.flow {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.flow-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-dim);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.pool-ring { animation: poolRot 18s linear infinite; transform-origin: 160px 110px; }
@keyframes poolRot { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ───── CARDS ───── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(247,147,26,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { border-color: rgba(247,147,26,0.4); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}

/* ───── CHECKLIST ───── */
.checklist {
  list-style: none;
  padding: 24px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.checklist li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: none; }
.tick, .cross {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.tick { background: rgba(74,222,128,0.12); color: #4ade80; }
.cross { background: rgba(255,107,107,0.12); color: var(--danger); }

/* ───── FEE BAR ───── */
.fee-bar {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 24px;
}
.fee-track {
  position: relative;
  height: 48px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fee-zone {
  position: absolute;
  top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.05em;
}
.fee-zone span { padding: 0 8px; }
.fee-zone.too-low { background: rgba(255,107,107,0.15); color: #ff8b8b; }
.fee-zone.healthy {
  background: linear-gradient(90deg, rgba(74,222,128,0.18), rgba(247,147,26,0.18));
  color: #6fe89a;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.fee-zone.too-high { background: rgba(255,107,107,0.1); color: #ff8b8b; }
.fee-axis {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-dim);
}

/* ───── WARNINGS ───── */
.warnings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.warn {
  display: flex; gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,107,107,0.05), var(--bg-2));
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: var(--radius);
}
.warn-icon {
  width: 32px; height: 32px;
  background: rgba(255,107,107,0.15);
  color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  flex-shrink: 0;
}
.warn h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.warn p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}

/* ───── FIGURES ───── */
figure {
  margin: 50px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
figure.wide {
  margin-left: -60px; margin-right: -60px;
}
figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: filter 0.6s, transform 0.8s;
}
figure:hover img { filter: saturate(1) brightness(1); transform: scale(1.02); }
figcaption {
  padding: 14px 22px;
  font-size: 13px;
  color: var(--ink-dim);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  border-top: 1px solid var(--line);
}

/* ───── FAQ ───── */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
details {
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s;
}
details:last-child { border-bottom: none; }
details[open] { background: rgba(247,147,26,0.03); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--accent); }
.chev {
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.25s;
  margin-right: 6px;
}
details[open] .chev {
  transform: rotate(-135deg);
  border-color: var(--accent);
}
details p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

/* ───── CLOSING ───── */
.closing {
  margin: 80px 0 40px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(247,147,26,0.08), transparent 50%),
    var(--bg-2);
  text-align: center;
}
.closing h3 {
  font-size: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.closing p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ───── FOOTER ───── */
footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 36px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--accent); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-dim);
}

/* ───── REVEAL ANIMATION ───── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr 1fr; }
  .warnings { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.flip > *:first-child { order: 0; }
  figure.wide { margin-left: -28px; margin-right: -28px; }
}
@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .status { display: none; }
  nav { gap: 16px; }
  nav a { font-size: 13px; }
  main { padding: 0 20px; }
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 60px 0 50px; min-height: auto; }
  .hero-visual { order: -1; }
  .orbit { max-width: 240px; }
  .stats { grid-template-columns: 1fr 1fr; margin-bottom: 50px; }
  .stat { padding: 22px 18px; }
  .stat-num { font-size: 26px; }
  .cards { grid-template-columns: 1fr; }
  .block { margin: 60px 0; }
  figure.wide { margin-left: 0; margin-right: 0; }
  .closing { padding: 26px; }
  footer { padding: 28px 20px; }
  body { font-size: 15.5px; }
}