:root {
  --bg: #080a0f;
  --bg-soft: #0d1017;
  --card: #10131b;
  --card-2: #0d1017;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-2: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.05);
  --primary: #34e88f;
  --primary-soft: rgba(209, 254, 102, 0.1);
  --primary-line: rgba(209, 254, 102, 0.35);
  --shadow: rgba(0, 0, 0, 0.35);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  selection-background-color: var(--primary);
}

body::selection,
*::selection {
  background: var(--primary);
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(100% - 64px, 1152px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 960px;
}

.center {
  text-align: center;
}

.navbar {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1160px);
  min-height: 64px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 10, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 28px rgba(209, 254, 102, 0.3);
  font-family: var(--mono);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-button,
.button.primary {
  background: var(--primary);
  color: #000;
}

.button.outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.section,
.section-lg {
  position: relative;
  border-top: 1px solid var(--line-soft);
}

.section {
  padding: 80px 0;
}

.section-lg {
  padding: 160px 0 96px;
}

.hero {
  border-top: 0;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(209, 254, 102, 0.1);
  filter: blur(120px);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 30px;
  border-radius: 999px;
  border: 1px solid var(--primary-line);
  background: var(--primary-soft);
  color: var(--primary);
  font: 700 12px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  animation: pulse 1.5s ease-in-out infinite;
}

.pulse-dot.green {
  background: #34d399;
}

.zap {
  font-size: 11px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

h1 span,
h2 span,
.accent {
  color: var(--primary);
}

.hero-text,
.section-copy,
.cta p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
  margin: 0 auto;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
}

.stat-pill span,
.live-label,
.note,
.mono,
.table-head,
.mini-badge,
.compare-card small,
.fee-line span,
.maker-bubble small,
.verified-bubble {
  font-family: var(--mono);
}

.stat-pill span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-pill strong {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 14px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1.6;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.data-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.table-row {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr 3fr;
  gap: 16px;
  align-items: center;
  min-height: 65px;
  padding: 16px 32px 16px 24px;
  border-bottom: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: background 0.2s ease;
}

.fee-table .table-row {
  grid-template-columns: 3fr 4fr 2fr 3fr;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.table-head {
  min-height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(8, 10, 15, 0.4);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.right {
  text-align: right;
  justify-self: end;
  font-family: var(--mono);
}

.muted {
  color: rgba(255, 255, 255, 0.6);
}

.white {
  color: rgba(255, 255, 255, 0.82);
}

.asset {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asset img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 2px;
}

.popular-row {
  position: relative;
  background: rgba(209, 254, 102, 0.04);
}

.popular-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--primary);
}

.mini-badge {
  margin-left: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(209, 254, 102, 0.4);
  border-radius: 999px;
  color: var(--primary);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.compare-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.compare-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 254, 102, 0.3);
}

.compare-card {
  padding: 24px;
}

.compare-card.highlight {
  border-color: rgba(209, 254, 102, 0.4);
  background: rgba(209, 254, 102, 0.06);
  box-shadow: 0 0 30px rgba(209, 254, 102, 0.08);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.card-top strong {
  color: var(--text);
}

.highlight .card-top strong,
.highlight .fee-line strong {
  color: var(--primary);
}

.card-top span {
  margin-top: 3px;
  color: rgba(209, 254, 102, 0.7);
  /*font: 700 10px/1 var(--mono);*/
  text-transform: uppercase;
}

.compare-card small {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.highlight small {
  color: rgba(209, 254, 102, 0.6);
}

.fee-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.fee-line span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-transform: uppercase;
}

.fee-line strong {
  color: rgba(255, 255, 255, 0.8);
  font: 800 18px/1 var(--mono);
}

.note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.check,
.checks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--primary);
  background: rgba(209, 254, 102, 0.1);
  border: 1px solid rgba(209, 254, 102, 0.35);
  border-radius: 999px;
  font-weight: 900;
}

.check {
  width: 40px;
  height: 40px;
}

.free-section {
  padding: 96px 0;
}

.right-glow {
  position: absolute;
  top: 50%;
  right: -140px;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(209, 254, 102, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.deposit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 64px;
}

.checks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.checks span {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  font-size: 12px;
}

.vault-wrap {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.vault-svg {
  width: 100%;
  height: 100%;
}

.vault-svg line {
  stroke: var(--primary);
  stroke-width: 1.2;
  stroke-opacity: 0.45;
  stroke-dasharray: 3 5;
}

.orbit-ring {
  stroke: var(--primary);
  stroke-opacity: 0.15;
  stroke-width: 1;
  stroke-dasharray: 2 6;
  fill: none;
  transform-origin: 220px 220px;
  animation: spin 60s linear infinite;
}

.wave {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1;
  transform-origin: 220px 220px;
  animation: wave 3s ease-out infinite;
}

.wave-2 {
  animation-delay: 1s;
}

.wave-3 {
  animation-delay: 2s;
}

.vault-core {
  transform-origin: 220px 220px;
  animation: floatCore 4s ease-in-out infinite;
}

.vault-core text {
  fill: var(--primary);
  font: 900 36px/1 var(--mono);
  filter: drop-shadow(0 0 6px rgba(209, 254, 102, 0.7));
}

.coin {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0f1117;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
  animation: coinIn 0.55s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.coin img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.coin-btc { top: 32px; left: calc(50% - 22px); border-color: rgba(247, 147, 26, 0.65); animation-delay: 0.2s; }
.coin-eth { top: 106px; right: 70px; border-color: rgba(98, 126, 234, 0.65); animation-delay: 0.28s; }
.coin-usdt { bottom: 104px; right: 70px; border-color: rgba(38, 161, 123, 0.65); animation-delay: 0.36s; }
.coin-sol { bottom: 32px; left: calc(50% - 22px); border-color: rgba(153, 69, 255, 0.65); animation-delay: 0.44s; }
.coin-ton { bottom: 104px; left: 70px; border-color: rgba(0, 136, 204, 0.65); animation-delay: 0.52s; }
.coin-bnb { top: 106px; left: 70px; border-color: rgba(240, 185, 11, 0.65); animation-delay: 0.6s; }

.maker-bubble {
  position: absolute;
  top: 14px;
  right: 8px;
  transform: rotate(-8deg);
  padding: 11px 16px;
  border-radius: 18px;
  background: var(--primary);
  color: #000;
  border: 1px solid rgba(209, 254, 102, 0.6);
  box-shadow: 0 8px 30px rgba(209, 254, 102, 0.4);
}

.maker-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(209, 254, 102, 0.4);
  filter: blur(24px);
  z-index: -1;
}

.maker-bubble small {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.maker-bubble strong {
  font: 900 28px/1.05 var(--mono);
}

.verified-bubble {
  position: absolute;
  bottom: 10px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta {
  padding: 96px 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(209, 254, 102, 0.08);
  filter: blur(100px);
  pointer-events: none;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 38px;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


.reveal {
  animation: reveal 0.65s ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes wave {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.4); }
}

@keyframes floatCore {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes coinIn {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .cards.four,
  .cards.two,
  .deposit-grid {
    grid-template-columns: 1fr;
  }

  .deposit-grid {
    gap: 44px;
  }

  .section-lg {
    padding-top: 140px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1152px);
  }

  .navbar {
    top: 10px;
    border-radius: 18px;
  }

  .nav-button {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }

  .section,
  .section-lg,
  .free-section,
  .cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-lg {
    padding-top: 128px;
  }

  .hero-text,
  .section-copy,
  .cta p {
    font-size: 16px;
  }

  .data-table {
    overflow-x: auto;
  }

  .table-row {
    min-width: 650px;
    padding-right: 22px;
  }

  .stats {
    align-items: stretch;
  }

  .stat-pill {
    width: 100%;
    justify-content: space-between;
  }

  .vault-wrap {
    max-width: 360px;
  }

  .coin {
    width: 38px;
    height: 38px;
  }

  .coin img {
    width: 24px;
    height: 24px;
  }

  .coin-btc { top: 26px; left: calc(50% - 19px); }
  .coin-eth { top: 88px; right: 56px; }
  .coin-usdt { bottom: 88px; right: 56px; }
  .coin-sol { bottom: 26px; left: calc(50% - 19px); }
  .coin-ton { bottom: 88px; left: 56px; }
  .coin-bnb { top: 88px; left: 56px; }

  .maker-bubble {
    right: -4px;
    top: 4px;
  }

  .verified-bubble {
    left: -4px;
    bottom: 0;
    font-size: 10px;
  }
}

/* Combined static hash pages */
:root {
  --primary: #34e88f;
  --primary-soft: rgba(209,254,102,.12);
  --bg: #070a10;
  --card: #101623;
  --card-2: #141b2a;
  --text: #ffffff;
  --muted: rgba(255,255,255,.58);
  --line: rgba(255,255,255,.09);
  --danger: #ff5f77;
  --warning: #fbbf24;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); }
.app-shell { min-height: 100vh; background: radial-gradient(circle at top, rgba(209,254,102,.06), transparent 36%), var(--bg); }
.page-section { display: none; min-height: 70vh; }
.page-section.active { display: block; animation: pageIn .28s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.navbar { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(7,10,16,.78); border-bottom: 1px solid var(--line); }
.nav-links a.active { color: var(--primary); }
.menu-toggle { display:none; width:40px; height:40px; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.04); color:#fff; font-size:20px; }
.hero.compact { padding: 8rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.05); position: relative; overflow: hidden; }
.hero.compact:before, .legal-hero:before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(209,254,102,0.10), rgba(209,254,102,0.03) 45%, transparent 75%); pointer-events:none; }
.hero .container, .legal-hero .container { position: relative; z-index: 2; }
.hero h1 span, h2 span { color: var(--primary); }
.hero-text.left { margin-left: 0; margin-right: 0; text-align: left; }
.hero-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top: 26px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 18px; border-radius:14px; font-weight:700; text-decoration:none; transition:.2s ease; border:1px solid var(--line); cursor:pointer; }
.btn.primary { background: var(--primary); color:#05070b; border-color: var(--primary); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 14px 40px rgba(209,254,102,.18); }
.btn.ghost { color:#fff; background:rgba(255,255,255,.04); }
.btn.ghost:hover { border-color:rgba(209,254,102,.35); }
.left-stats { justify-content:flex-start; }
.eyebrow { color: rgba(209,254,102,.85); font: 700 12px/1.2 ui-monospace,SFMono-Regular,Menlo,monospace; letter-spacing:.18em; text-transform:uppercase; margin-bottom: 12px; }
.link-card { text-decoration:none; color:inherit; }
.cards.one { grid-template-columns: 1fr; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card { border:1px solid var(--line); background:linear-gradient(180deg,var(--card-2),var(--card)); border-radius:24px; padding:28px; }
.step-card b { color:var(--primary); font-family: ui-monospace,SFMono-Regular,Menlo,monospace; font-size:12px; }
.step-card h3 { margin:16px 0 8px; font-size:22px; }
.step-card p { color:var(--muted); line-height:1.65; }
.bad { width:32px; height:32px; display:grid; place-items:center; flex:0 0 auto; border-radius:50%; color:#fff; background:rgba(255,95,119,.14); border:1px solid rgba(255,95,119,.28); }

/* Markets */
.market-toolbar { display:flex; gap:14px; justify-content:space-between; align-items:center; margin-bottom:24px; flex-wrap:wrap; }
.search-box { flex:1 1 280px; min-height:48px; border:1px solid var(--line); background:rgba(255,255,255,.04); border-radius:16px; display:flex; align-items:center; gap:10px; padding:0 14px; color:rgba(255,255,255,.38); }
.search-box input { width:100%; border:0; outline:0; background:transparent; color:#fff; font:inherit; }
.chip-row { display:flex; flex-wrap:wrap; gap:8px; }
.chip { border:1px solid var(--line); background:rgba(255,255,255,.04); color:rgba(255,255,255,.65); padding:10px 13px; border-radius:999px; cursor:pointer; font-weight:700; font-size:13px; }
.chip.active, .chip:hover { color:#05070b; background:var(--primary); border-color:var(--primary); }
.market-panels { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-bottom:20px; }
.mini-panel { border:1px solid var(--line); background:linear-gradient(180deg,var(--card-2),var(--card)); border-radius:22px; overflow:hidden; }
.mini-panel h3 { font-size:14px; padding:16px 18px; border-bottom:1px solid rgba(255,255,255,.06); }
.mini-row, .market-row { display:grid; grid-template-columns: 1.3fr .8fr .7fr .45fr; gap:12px; align-items:center; padding:14px 18px; border-bottom:1px solid rgba(255,255,255,.05); }
.mini-row { grid-template-columns: 1fr auto; }
.coin { display:flex; align-items:center; gap:10px; font-weight:800; }
.coin-icon { width:30px; height:30px; border-radius:50%; display:grid; place-items:center; color:#05070b; background:var(--primary); font-size:11px; font-weight:900; }
.price, .change { font-family: ui-monospace,SFMono-Regular,Menlo,monospace; text-align:right; }
.change.up { color:var(--primary); }
.change.down { color:var(--danger); }
.favorite { border:0; background:transparent; color:rgba(255,255,255,.4); cursor:pointer; font-size:19px; }
.favorite.active { color:var(--primary); }
.market-table .table-head { grid-template-columns: 1.3fr .8fr .7fr .45fr; }
.market-row:hover, .mini-row:hover { background:rgba(255,255,255,.025); }

/* Status */
.status-list { border:1px solid var(--line); background:var(--card); border-radius:28px; overflow:hidden; }
.status-row { display:grid; grid-template-columns: 1.2fr 1.5fr .8fr; gap:18px; align-items:center; padding:20px 22px; border-bottom:1px solid rgba(255,255,255,.055); }
.status-row:last-child { border-bottom:0; }
.status-name { display:flex; gap:12px; align-items:center; }
.status-icon { width:40px; height:40px; border-radius:14px; background:rgba(209,254,102,.1); border:1px solid rgba(209,254,102,.22); display:grid; place-items:center; color:var(--primary); }
.bars { display:flex; align-items:end; height:28px; gap:2px; }
.bars span { flex:1; min-width:2px; border-radius:2px; background:rgba(209,254,102,.75); }
.status-pill { justify-self:end; display:inline-flex; align-items:center; gap:7px; border-radius:999px; color:var(--primary); background:rgba(209,254,102,.1); border:1px solid rgba(209,254,102,.25); padding:7px 10px; font-size:12px; font-weight:800; }
.status-pill:before { content:""; width:7px; height:7px; border-radius:50%; background:var(--primary); }

/* Contact */
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:28px; align-items:start; }
.contact-form { border:1px solid var(--line); background:linear-gradient(180deg,var(--card-2),var(--card)); border-radius:28px; padding:28px; }
.contact-form h2 { font-size:32px; margin-bottom:20px; }
.contact-form label { display:block; color:rgba(255,255,255,.68); font-size:13px; font-weight:700; margin-bottom:14px; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; margin-top:8px; border:1px solid var(--line); background:rgba(255,255,255,.04); color:#fff; border-radius:14px; padding:13px 14px; outline:none; font:inherit; }
.contact-form textarea { resize:vertical; }
.form-note { color:rgba(255,255,255,.46); font-size:13px; margin-top:12px; }

/* Brand */
.logo-grid, .palette-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.logo-grid article, .palette-grid article { border:1px solid var(--line); background:var(--card); border-radius:22px; overflow:hidden; padding:0; }
.logo-grid h3, .logo-grid p { padding: 0 18px; }
.logo-grid h3 { margin-top: 16px; }
.logo-grid p { color:rgba(255,255,255,.45); margin: 6px 0 18px; font-family: ui-monospace,SFMono-Regular,Menlo,monospace; }
.logo-sample { aspect-ratio: 4/3; display:grid; place-items:center; gap:8px; font-size:24px; }
.logo-sample.dark { background:#0d0d0d; }
.logo-sample.bright { background:#d2ff66; color:#0d0d0d; }
.logo-sample.light { background:#ebedec; color:#0d0d0d; }
.brand-mark.big { width:56px; height:56px; font-size:26px; }
.brand-mark.black { background:#0d0d0d; color:#d2ff66; }
.palette-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
.palette-grid article { padding:18px; position:relative; min-height:150px; display:flex; flex-direction:column; justify-content:end; }
.palette-grid article:before { content:""; position:absolute; inset:0 0 auto 0; height:72px; background:var(--sw); border-bottom:1px solid var(--line); }
.palette-grid b, .palette-grid span, .palette-grid small { position:relative; z-index:1; }
.palette-grid span { color:rgba(255,255,255,.56); font-family:ui-monospace,SFMono-Regular,Menlo,monospace; margin-top:6px; }
.palette-grid small { color:var(--primary); text-transform:uppercase; letter-spacing:.12em; margin-top:6px; }

/* Legal */
.legal-hero { position:relative; padding:8rem 0 3.5rem; border-bottom:1px solid rgba(255,255,255,.06); overflow:hidden; }
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:22px; color:rgba(255,255,255,.42); font:700 12px/1 ui-monospace,SFMono-Regular,Menlo,monospace; text-transform:uppercase; letter-spacing:.12em; flex-wrap:wrap; }
.breadcrumb a { color:rgba(255,255,255,.5); text-decoration:none; }
.breadcrumb strong { color:var(--primary); }
.legal-hero h1 { font-size:clamp(40px,7vw,72px); line-height:1.02; letter-spacing:-.045em; margin-bottom:18px; }
.legal-hero p { color:rgba(255,255,255,.65); max-width:760px; line-height:1.7; }
.legal-meta { display:flex; flex-wrap:wrap; gap:18px; color:rgba(255,255,255,.46); font:700 12px/1 ui-monospace,SFMono-Regular,Menlo,monospace; text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px; }
.legal-content { padding-top:48px; }
.legal-prose { max-width:900px; }
.legal-prose h2 { font-size:22px; color:#fff; margin:38px 0 14px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.06); }
.legal-prose h2:first-child { margin-top:0; }
.legal-prose h3 { margin:24px 0 8px; color:#fff; }
.legal-prose p, .legal-prose li { color:rgba(255,255,255,.72); line-height:1.7; font-size:15px; }
.legal-prose p { margin-bottom:14px; }
.legal-prose ul { list-style:none; padding:0; margin:0 0 16px; }
.legal-prose li { position:relative; padding-left:22px; margin-bottom:10px; }
.legal-prose li:before { content:""; position:absolute; left:4px; top:11px; width:6px; height:6px; border-radius:50%; background:var(--primary); opacity:.65; }
.legal-prose strong { color:#fff; }
.legal-prose a { color:var(--primary); }
.clause-num { color:var(--primary); font-family:ui-monospace,SFMono-Regular,Menlo,monospace; margin-right:8px; }
.legal-bottom { margin-top:60px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; color:rgba(255,255,255,.45); font-size:14px; }

/* Footer */
.footer { border-top:1px solid var(--line); padding:42px 0; background:rgba(0,0,0,.18); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:24px; }
.footer p { color:rgba(255,255,255,.42); margin-top:10px; }
.footer h4 { color:#fff; margin-bottom:12px; }
.footer a:not(.brand) { display:block; color:rgba(255,255,255,.52); text-decoration:none; margin:8px 0; }
.footer a:hover { color:var(--primary); }

@media (max-width: 900px) {
  .menu-toggle { display:grid; place-items:center; }
  .nav-links { position:absolute; left:16px; right:16px; top:70px; display:none; padding:14px; border:1px solid var(--line); background:rgba(13,18,28,.96); border-radius:18px; flex-direction:column; align-items:stretch; }
  .nav-links.open { display:flex; }
  .nav-button { display:none; }
  .cards.three, .market-panels, .logo-grid, .palette-grid, .contact-grid, .footer-grid { grid-template-columns:1fr; }
  .status-row { grid-template-columns:1fr; }
  .status-pill { justify-self:start; }
  .market-row, .market-table .table-head { grid-template-columns:1.2fr .8fr .7fr .3fr; font-size:13px; }
}

/* Fix: navbar inherited centered/fixed positioning from the original page CSS.
   In the combined hash version it is sticky, so left:50% + transform caused
   horizontal overflow and an empty scroll area on pages like #fees. */
html,
body,
.app-shell {
  max-width: 100%;
  overflow-x: hidden;
}

.app-shell .navbar {
  left: auto;
  right: auto;
  transform: none;
  width: 100%;
  max-width: none;
  border-radius: 0;
}

#fees .data-table {
  max-width: 100%;
}

@media (max-width: 720px) {
  #fees .data-table {
    overflow-x: auto;
  }

  #fees .table-row {
    min-width: 640px;
  }
}
