:root {
  --bg: #07111F;
  --bg-2: #08162A;
  --surface: #0F1B31;
  --surface-2: #12213D;
  --blue: #3B82F6;
  --blue-2: #60A5FA;
  --gold: #F5C84C;
  --gold-2: #FFE08A;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --line: rgba(148, 163, 184, .18);
  --line-blue: rgba(59, 130, 246, .36);
  --line-gold: rgba(245, 200, 76, .35);
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, .22), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(245, 200, 76, .13), transparent 28rem),
    linear-gradient(180deg, #07111F 0%, #07111F 40%, #09162A 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 80%);
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  width: 38rem;
  height: 38rem;
  filter: blur(70px);
  opacity: .2;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.page-glow-blue {
  background: var(--blue);
  left: -12rem;
  top: 8rem;
}

.page-glow-gold {
  background: var(--gold);
  right: -14rem;
  top: 10rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(7, 17, 31, .78);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 76px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.05em;
  background:
    linear-gradient(180deg, rgba(245, 200, 76, .12), rgba(59, 130, 246, .08)),
    var(--bg);
  border: 2px solid var(--gold);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow:
    0 0 28px rgba(245, 200, 76, .22),
    inset 0 0 18px rgba(59, 130, 246, .16);
}

.brand-mark.small {
  width: 44px;
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
  opacity: .86;
}

.nav a:hover {
  opacity: 1;
  color: var(--blue-2);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(96,165,250,.62);
  border-radius: 12px;
  background: linear-gradient(180deg, #2563EB, #1D4ED8);
  box-shadow: 0 0 28px rgba(59, 130, 246, .36);
  opacity: 1 !important;
}

.hero, .section, .footer {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(18px, 5vw, 76px);
  padding-right: clamp(18px, 5vw, 76px);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 42px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 66px;
  position: relative;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow.gold {
  color: var(--gold);
}

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

h1 {
  font-size: clamp(48px, 7.6vw, 94px);
  line-height: .96;
  letter-spacing: -.075em;
  max-width: 780px;
  margin-bottom: 26px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 820px;
  margin-bottom: 16px;
  text-wrap: balance;
}

h3 {
  letter-spacing: -.035em;
}

.blue-word {
  color: var(--blue-2);
  text-shadow: 0 0 30px rgba(59, 130, 246, .36);
}

.gold-word {
  color: var(--gold-2);
  text-shadow: 0 0 34px rgba(245, 200, 76, .24);
}

.hero-copy {
  max-width: 680px;
  color: #C8D2E7;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
}

.primary {
  background: linear-gradient(180deg, #3B82F6, #1D4ED8);
  color: white;
  box-shadow:
    0 18px 44px rgba(37, 99, 235, .34),
    inset 0 1px rgba(255, 255, 255, .32);
  border: 1px solid rgba(147, 197, 253, .55);
}

.secondary {
  border: 1px solid rgba(96, 165, 250, .42);
  background: rgba(15, 27, 49, .66);
  color: var(--text);
}

.gold-button {
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, rgba(245, 200, 76, .18), rgba(245, 200, 76, .08));
  color: var(--gold-2);
}

.hero-notice {
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 650;
}

.notice-icon {
  color: var(--gold);
  margin-right: 6px;
}

.hero-visual {
  position: relative;
  height: min(540px, 52vw);
  min-height: 420px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 2% 0 0;
  background:
    radial-gradient(circle at center, rgba(96, 165, 250, .28), transparent 34%),
    radial-gradient(ellipse at center, rgba(59, 130, 246, .13), transparent 56%),
    radial-gradient(circle at 50% 45%, rgba(245, 200, 76, .18), transparent 18%);
  border-radius: 50%;
  filter: blur(3px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 9% 10%;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, .28);
  box-shadow:
    inset 0 0 60px rgba(59, 130, 246, .18),
    0 0 90px rgba(37, 99, 235, .2);
  background:
    linear-gradient(90deg, transparent 49%, rgba(96,165,250,.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(96,165,250,.13) 50%, transparent 51%);
}

.orbit {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, .38);
  box-shadow:
    0 0 20px rgba(59,130,246,.28),
    inset 0 0 24px rgba(245,200,76,.12);
}

.orbit-1 {
  width: 82%;
  height: 34%;
}

.orbit-2 {
  width: 62%;
  height: 26%;
  border-color: rgba(245, 200, 76, .33);
}

.orbit-3 {
  width: 42%;
  height: 18%;
}

.core-badge {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.05em;
  background:
    radial-gradient(circle at 50% 24%, rgba(245, 200, 76, .28), transparent 42%),
    linear-gradient(180deg, #0B1730, #08111F);
  border: 3px solid var(--gold);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow:
    0 0 48px rgba(245, 200, 76, .34),
    0 0 86px rgba(59, 130, 246, .32),
    inset 0 0 26px rgba(59, 130, 246, .26);
}

.node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #DDE8FF;
  font-size: 13px;
  line-height: 1.2;
  padding: 8px 10px;
  border: 1px solid rgba(96, 165, 250, .34);
  border-radius: 14px;
  background: rgba(7, 17, 31, .66);
  box-shadow: 0 0 34px rgba(59, 130, 246, .18);
}

.node span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, var(--blue-2), transparent 62%),
    rgba(59, 130, 246, .22);
  border: 1px solid rgba(96, 165, 250, .8);
}

.node-issuance { top: 12%; left: 48%; }
.node-supply { top: 36%; left: 6%; }
.node-ownership { top: 34%; right: 3%; }
.node-flow { bottom: 18%; left: 13%; }
.node-rule { bottom: 20%; right: 9%; }

.section {
  padding-top: 74px;
  padding-bottom: 74px;
  border-top: 1px solid var(--line);
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.muted {
  color: var(--muted);
  max-width: 760px;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.proof-card {
  background:
    linear-gradient(180deg, rgba(18, 33, 61, .84), rgba(10, 22, 42, .86));
  border: 1px solid var(--line-blue);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.proof-card:hover {
  border-color: rgba(96, 165, 250, .65);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(59, 130, 246, .18);
}

.icon-shell {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--blue-2);
  font-weight: 950;
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(96, 165, 250, .55);
  box-shadow: inset 0 0 18px rgba(59, 130, 246, .24);
}

.proof-card p {
  color: var(--muted);
}

.proof-card span {
  display: block;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
}

.panel {
  background:
    linear-gradient(180deg, rgba(15, 27, 49, .92), rgba(8, 22, 42, .86));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-wide {
  border-color: rgba(96, 165, 250, .24);
}

.launch-panel {
  border-color: rgba(245, 200, 76, .22);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stack-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(148, 163, 184, .13);
}

.stack-grid strong {
  color: var(--gold-2);
}

.stack-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: #DDE8FF;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue-2);
  border: 1px solid var(--line-blue);
  font-size: 12px;
}

.text-link {
  color: var(--blue-2);
  font-weight: 900;
  text-decoration: none;
}

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

.release-section {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 32px;
  align-items: center;
}

.release-section p {
  color: var(--muted);
  font-size: 18px;
}

.risk-card {
  border: 1px solid var(--line-gold);
  border-radius: 30px;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 24%, rgba(245, 200, 76, .16), transparent 18rem),
    linear-gradient(180deg, rgba(21, 31, 54, .94), rgba(10, 22, 42, .92));
  box-shadow:
    var(--shadow),
    0 0 42px rgba(245, 200, 76, .08);
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 28px;
  align-items: center;
}

.risk-list {
  columns: 2;
  color: var(--muted);
  margin: 0;
  padding-left: 20px;
}

.status-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.status-section article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.status-section strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.status-section p {
  color: var(--muted);
  margin-bottom: 0;
}

.mini-icon {
  color: var(--gold);
  font-size: 26px;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  padding-bottom: 48px;
  color: var(--muted);
  display: grid;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  color: var(--text);
  font-size: 20px;
}

.footer-brand p {
  margin-bottom: 0;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

.footer a:hover {
  color: var(--blue-2);
}

.footer-disclaimer {
  max-width: 950px;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    height: 460px;
  }

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

  .split-section,
  .release-section,
  .risk-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 360px;
    height: 380px;
  }

  .node {
    font-size: 11px;
    padding: 6px 8px;
  }

  .core-badge {
    width: 94px;
    height: 94px;
    font-size: 24px;
  }

  .proof-cards,
  .stack-grid,
  .status-section {
    grid-template-columns: 1fr;
  }

  .risk-list {
    columns: 1;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
  }
}
