:root {
  --green: #84fb7f;
  --green-dark: #49cc68;
  --ink: #090d14;
  --black: #000000;
  --white: #ffffff;
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.14);
  --panel: rgba(255,255,255,.07);
  --panel-strong: rgba(255,255,255,.12);
  --shadow: 0 26px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Proxima Nova", "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(9,13,20,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 118px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(132,251,127,.28);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  cursor: pointer;
  align-content: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  color: var(--ink);
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(132,251,127,.24);
  transition: transform .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); background: #a5ffa0; }

.btn-small { padding: 11px 17px; font-size: 13px; }

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-secondary:hover { background: rgba(255,255,255,.14); }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(78px, 9vw, 126px) clamp(18px, 4vw, 56px) 68px;
  background:
    linear-gradient(90deg, rgba(9,13,20,.96) 0%, rgba(9,13,20,.64) 48%, rgba(9,13,20,.92) 100%),
    radial-gradient(circle at 77% 26%, rgba(132,251,127,.24), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(87,157,255,.14), transparent 24%),
    linear-gradient(135deg, #090d14 0%, #111a26 46%, #06110b 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--ink));
}

.hero-copy { max-width: 700px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.035)),
    radial-gradient(circle at 74% 16%, rgba(132,251,127,.34), transparent 32%),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 74px 54px auto auto;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(132,251,127,.45);
  border-radius: 50%;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 118px auto auto 52px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 28px 80px rgba(132,251,127,.25);
}

.panel-shine {
  position: absolute;
  right: -72px;
  top: -72px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(132,251,127,.18);
  filter: blur(4px);
}

.orbital-card {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(9,13,20,.9);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.main-card { max-width: 390px; }

.orbital-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

.orbital-card strong {
  display: block;
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.orbital-card small { color: var(--muted); font-size: 14px; }

.progress-track {
  height: 8px;
  margin: 24px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.card-meta b {
  color: var(--white);
  font-size: 14px;
}

.balance-card {
  position: relative;
  z-index: 3;
  width: 220px;
  padding: 20px;
  border-radius: 22px;
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}

.balance-card span,
.balance-card small {
  display: block;
  color: rgba(9,13,20,.66);
  font-size: 13px;
  font-weight: 700;
}

.balance-card strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 31px;
  line-height: 1;
}

.asset-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  width: 100%;
}

.asset-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

.asset-chip span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(9,13,20,.08);
  overflow: hidden;
}

.asset-chip img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  padding: 34px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.stats article:last-child { border-right: 0; }

.stats span, .asset-board small { color: var(--muted); font-size: 13px; }

.stats strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

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

.reward-grid, .tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reward-grid article, .tier-grid article, .faq details {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,.04));
}

.reward-grid span {
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.staking {
  background: var(--white);
  color: var(--ink);
}

.staking .eyebrow { color: var(--green-dark); }

.staking p { color: rgba(9,13,20,.66); }

.tier-grid article {
  background: #f3f6f2;
  border-color: rgba(9,13,20,.1);
}

.tier-grid .featured {
  color: var(--ink);
  background: var(--green);
  transform: translateY(-12px);
  box-shadow: 0 26px 60px rgba(73,204,104,.26);
}

.tier-grid strong {
  display: inline-block;
  margin-top: 18px;
}

.assets {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.transparency {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: #ffffff;
  color: var(--ink);
}

.transparency .eyebrow { color: var(--green-dark); }

.transparency p { color: rgba(9,13,20,.66); }

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(9,13,20,.1);
  border-radius: 20px;
  background: #f7f8fc;
}

.timeline span {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 6px rgba(73,204,104,.12);
}

.timeline b {
  font-size: 18px;
}

.timeline small {
  color: rgba(9,13,20,.62);
}

.asset-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.asset-board div {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(132,251,127,.16), rgba(255,255,255,.06));
  border: 1px solid var(--line);
}

.asset-board span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  overflow: hidden;
}

.asset-board img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.asset-board b { font-size: 22px; }

.faq {
  max-width: 980px;
  margin: 0 auto;
}

.faq details {
  margin-bottom: 12px;
  border-radius: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #05070b;
}

.footer-logo {
  width: 132px;
}

.footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.48);
}

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

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
}

.socials svg {
  width: 19px;
  height: 19px;
  fill: var(--white);
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9,13,20,.96);
    box-shadow: 0 18px 50px rgba(0,0,0,.3);
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(255,255,255,.08);
  }

  .hero, .split, .assets, .transparency {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .stats, .reward-grid, .tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balance-card {
    width: 100%;
  }

  .tier-grid .featured { transform: none; }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 14px 16px;
  }

  .brand { font-size: 15px; }
  .brand-logo { width: 104px; }
  .btn-small { padding: 10px 13px; }

  h1 { font-size: 39px; line-height: 1.06; }
  h2 { font-size: 30px; line-height: 1.15; }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 24px;
  }

  .hero-panel::before {
    width: 150px;
    height: 150px;
    right: 24px;
  }

  .asset-stack {
    position: static;
    width: auto;
  }

  .balance-card {
    width: 100%;
    order: 2;
  }

  .asset-stack {
    order: 3;
  }

  .main-card {
    max-width: none;
    order: 1;
  }

  .panel-shine,
  .hero-panel::before,
  .hero-panel::after {
    display: none;
  }

  .stats, .reward-grid, .tier-grid, .asset-board {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer {
    grid-template-columns: 1fr;
  }
}
