:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: rgba(9, 15, 24, 0.72);
  --panel-strong: #0b111b;
  --text: #f6fbff;
  --muted: #9fb1c4;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #2ee7ff;
  --lime: #adff35;
  --orange: #ff8a2a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.86), rgba(5, 7, 11, 0.25));
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(173, 255, 53, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #071007;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button,
.copy-button {
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.header-cta {
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 6vw, 82px) 58px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.94) 0%, rgba(5, 7, 11, 0.76) 36%, rgba(5, 7, 11, 0.25) 70%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.4) 0%, rgba(5, 7, 11, 0.1) 58%, #05070b 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

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

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(74px, 13vw, 172px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  color: #dce9f5;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.16;
  font-weight: 800;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 15px 19px;
}

.primary-button {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #06100d;
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.contract-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 560px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.72);
  box-shadow: var(--shadow);
}

.contract-label {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 900;
}

.contract-panel code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #eaf7ff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  flex: 0 0 auto;
  padding: 10px 13px;
  background: var(--orange);
  color: #180b02;
}

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

.ticker-strip span {
  min-height: 66px;
  display: grid;
  place-items: center;
  background: #060a11;
  color: #d8e7ef;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.meme-grid,
.stats-grid,
.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.stat,
.roadmap-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 255px;
  padding: 26px;
}

.card-number,
.roadmap-list span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
}

.feature-card p,
.step p,
.roadmap-list p {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
  background: #080d15;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.step span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--lime);
  color: #071007;
  font-weight: 900;
}

.step p {
  margin: 0;
  font-weight: 800;
}

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

.stat {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.stat strong {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.9;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.roadmap {
  background:
    radial-gradient(circle at 18% 10%, rgba(46, 231, 255, 0.12), transparent 30%),
    radial-gradient(circle at 86% 0%, rgba(255, 138, 42, 0.13), transparent 26%),
    #05070b;
}

.roadmap-list article {
  padding: 26px;
}

.roadmap-list span {
  margin-bottom: 34px;
  color: var(--orange);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 82px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.footer-links {
  gap: 18px;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 94px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.58)),
      linear-gradient(180deg, rgba(5, 7, 11, 0.18), rgba(5, 7, 11, 0.96));
  }

  .ticker-strip,
  .meme-grid,
  .stats-grid,
  .roadmap-list,
  .split-section {
    grid-template-columns: 1fr;
  }

  .ticker-strip span {
    min-height: 52px;
  }

  .contract-panel {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .copy-button {
    width: 100%;
  }

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

@media (max-width: 460px) {
  .header-cta {
    display: none;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }
}
