:root {
  color-scheme: dark;
  --ink: #f7fbf3;
  --muted: #a9b7ac;
  --bg: #07120f;
  --panel: rgba(9, 26, 22, 0.76);
  --panel-strong: rgba(14, 39, 33, 0.92);
  --line: rgba(227, 255, 233, 0.15);
  --mint: #6ff2a3;
  --cyan: #6ad7ff;
  --lime: #c9ff70;
  --coral: #ff7c5c;
  --gold: #ffd166;
  --shadow: rgba(0, 0, 0, 0.35);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(111, 242, 163, 0.16), transparent 34%),
    linear-gradient(225deg, rgba(255, 124, 92, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(7, 18, 15, 0.4), #07120f 620px),
    #07120f;
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 18, 15, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.ticker-band,
.route-map,
.activate {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 40px;
  object-fit: contain;
}

.site-header nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-header nav a:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 56px;
  min-height: 94vh;
  padding: 132px 7vw 72px;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 84px;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: 48px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-lede,
.dashboard-copy p,
.trust-band p,
.activate p {
  color: #d7e4d9;
  font-size: 20px;
  line-height: 1.55;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 34px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--mint);
  color: #07120f;
  box-shadow: 0 18px 50px rgba(111, 242, 163, 0.22);
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.signal-panel,
.loop-grid article,
.product-shell,
.trust-band,
.activate {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 90px var(--shadow);
  backdrop-filter: blur(22px);
}

.signal-panel {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 24px;
  overflow: hidden;
}

.panel-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.panel-topline strong {
  color: var(--mint);
}

.vault-meter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 230px;
  min-width: 0;
  margin: 28px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(0deg, transparent, transparent 41px, rgba(255, 255, 255, 0.06) 42px);
}

.vault-meter span {
  height: var(--height);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--lime), var(--mint) 48%, var(--cyan));
  box-shadow: 0 0 28px rgba(111, 242, 163, 0.24);
  transform-origin: bottom;
  animation: pulse-bar 2.8s ease-in-out infinite;
}

.vault-meter span:nth-child(2) {
  animation-delay: 0.25s;
}

.vault-meter span:nth-child(3) {
  animation-delay: 0.5s;
}

.vault-meter span:nth-child(4) {
  animation-delay: 0.75s;
}

.vault-meter span:nth-child(5) {
  animation-delay: 1s;
}

.hero-stats,
.allocation dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.hero-stats div,
.allocation dl div,
.product-row div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

dt,
.product-row span,
.product-sidebar span {
  color: var(--muted);
  font-size: 12px;
}

dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.ticker-band {
  justify-content: center;
  gap: 12px;
  padding: 18px 7vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #eef9ef;
  font-weight: 800;
}

.ticker-band span {
  white-space: nowrap;
}

.ticker-band span::after {
  margin-left: 12px;
  color: var(--coral);
  content: "/";
}

.ticker-band span:last-child::after {
  content: "";
}

.mechanism,
.dashboard-section,
.activate {
  max-width: 1180px;
  margin: 0 auto;
}

.mechanism {
  padding: 112px 28px 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  margin-bottom: 34px;
}

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

.loop-grid article {
  min-height: 260px;
  padding: 22px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  border-radius: 50%;
  background: rgba(255, 209, 102, 0.16);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.loop-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(500px, 1fr);
  gap: 42px;
  padding: 64px 28px 110px;
}

.dashboard-copy {
  align-self: center;
}

.product-shell {
  display: grid;
  grid-template-columns: 166px 1fr;
  min-width: 0;
  min-height: 440px;
  overflow: hidden;
  background: var(--panel-strong);
}

.product-sidebar {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.product-sidebar strong,
.product-sidebar span {
  display: block;
}

.product-main {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-row strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}

.route-map {
  gap: 10px;
  justify-content: space-between;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(5, 14, 12, 0.45);
}

.route-map span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #eef9ef;
  font-weight: 900;
}

.route-map i {
  flex: 1;
  height: 2px;
  min-width: 20px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--coral));
}

.allocation {
  align-self: end;
}

.allocation-bar {
  display: flex;
  height: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.allocation-bar .reward {
  width: 90%;
  background: var(--mint);
}

.allocation-bar .burn {
  width: 7%;
  background: var(--coral);
}

.allocation-bar .reserve {
  width: 3%;
  background: var(--gold);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto 92px;
  padding: 30px;
}

.trust-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.trust-band strong {
  font-size: 32px;
  line-height: 1.05;
}

.trust-band p,
.activate p {
  margin-bottom: 0;
}

.activate {
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 64px;
  padding: 34px;
}

.activate div {
  max-width: 720px;
}

.activate h2 {
  margin-bottom: 16px;
}

@keyframes pulse-bar {
  0%,
  100% {
    transform: scaleY(0.92);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 22px;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .dashboard-section,
  .section-heading,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding: 112px 24px 56px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

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

  .dashboard-section {
    padding-top: 28px;
  }

  .ticker-band {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 680px) {
  .brand span {
    font-size: 15px;
  }

  .hero {
    display: block;
    padding-inline: 18px;
  }

  .hero-copy,
  .hero-lede {
    max-width: calc(100vw - 36px);
  }

  .signal-panel {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-top: 34px;
    padding: 18px;
  }

  .vault-meter {
    gap: 8px;
    height: 230px;
    padding: 14px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.03;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-lede,
  .dashboard-copy p,
  .trust-band p,
  .activate p {
    font-size: 17px;
  }

  .signal-panel,
  .mechanism,
  .dashboard-section,
  .trust-band,
  .activate {
    padding-inline: 18px;
  }

  .loop-grid,
  .hero-stats,
  .allocation dl,
  .product-row {
    grid-template-columns: 1fr;
  }

  .product-shell {
    grid-template-columns: 1fr;
  }

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

  .route-map {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-map span {
    width: 100%;
  }

  .route-map i {
    width: 2px;
    height: 22px;
    min-width: 0;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--mint), var(--cyan), var(--coral));
  }

  .activate {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticker-band {
    flex-wrap: wrap;
    gap: 8px 10px;
    justify-content: flex-start;
    overflow: visible;
  }

  .ticker-band span {
    white-space: normal;
  }
}
