:root {
  color-scheme: dark;
  --ink: #f4fff7;
  --muted: #a9c8b5;
  --line: rgba(181, 255, 203, 0.18);
  --green: #00c805;
  --green-soft: #81f16d;
  --deep: #06150b;
  --panel: rgba(10, 34, 18, 0.72);
  --panel-strong: rgba(14, 55, 27, 0.9);
  --gold: #f2c35d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 200, 5, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(129, 241, 109, 0.16), transparent 22rem),
    linear-gradient(140deg, #020503 0%, #06150b 46%, #092915 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 4, 0.76);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border: 2px solid var(--green);
  border-radius: 0.8rem;
}

.site-header nav {
  justify-content: center;
  gap: 0.35rem;
}

.site-header nav a,
.header-action,
.primary-action,
.secondary-action {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  font-weight: 800;
}

.site-header nav a {
  padding: 0 0.9rem;
  color: var(--muted);
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.header-action,
.primary-action {
  padding: 0 1rem;
  background: var(--green);
  color: #011905;
}

.social-action {
  width: 2.7rem;
  min-width: 2.7rem;
  padding: 0;
  font-size: 1.05rem;
}

main {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
}

.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 30rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 3rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-soft);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(5rem, 18vw, 12.5rem);
  line-height: 0.78;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 6vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
}

.lede {
  max-width: 46rem;
  margin-top: 1.4rem;
  color: #d9f4df;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action {
  min-width: 10rem;
  padding: 0 1.15rem;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.x-action {
  min-width: 3.5rem;
  border-color: rgba(129, 241, 109, 0.35);
  color: var(--green-soft);
}

.disclaimer {
  max-width: 40rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34rem;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 96%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(0, 200, 5, 0.28), rgba(242, 195, 93, 0.1)),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 38%);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
  z-index: -2;
}

.orbital-ring {
  position: absolute;
  width: 108%;
  aspect-ratio: 1;
  border: 1px solid rgba(129, 241, 109, 0.38);
  border-radius: 999px;
  transform: rotate(-10deg);
  z-index: -1;
}

.hero-visual img {
  width: min(74vw, 24rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.market-strip span,
.token-grid span,
.steps span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-strip,
.token-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.market-strip {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel);
}

.market-strip div,
.token-grid article,
.steps article,
.story-panel {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel);
}

.market-strip div {
  display: grid;
  gap: 0.35rem;
  min-height: 5rem;
  padding: 1rem;
}

.market-strip strong {
  font-size: 1.15rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  margin: 0 0 5rem;
}

.story-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #dcefe0;
  font-size: 1rem;
  line-height: 1.72;
}

.token-section,
.roadmap {
  margin-bottom: 5rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.token-grid {
  grid-template-columns: repeat(3, 1fr);
}

.token-grid article,
.steps article {
  display: grid;
  gap: 0.75rem;
  min-height: 12rem;
  padding: 1.2rem;
}

.token-grid strong {
  font-size: 2rem;
}

.token-grid .contract-address {
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps span {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 200, 5, 0.16);
  color: var(--green-soft);
}

footer {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

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

  .site-header nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .market-strip,
  .token-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

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

  h1 {
    font-size: clamp(4.6rem, 28vw, 7rem);
  }

  .market-strip,
  .token-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
