* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --card: #101010;
  --text: #f5f5f5;
  --muted: #8b8b8b;
  --line: #242424;
  --accent: #b8ff3d;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,7,7,.82);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav a {
  font-size: 13px;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  padding: 150px 7% 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

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

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(58px, 9vw, 125px);
  line-height: .84;
  letter-spacing: -5px;
  font-weight: 900;
}

h1 span,
.big-meme span {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-top: 25px;
}

.hero-text {
  color: var(--muted);
  margin-top: 25px;
  font-size: 17px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.btn {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--accent);
  color: #050505;
}

.secondary {
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.hero-marmot {
  width: 390px;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--accent);
  opacity: .09;
  filter: blur(90px);
  border-radius: 50%;
}

.marmot-placeholder {
  width: 280px;
  height: 280px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  background: radial-gradient(circle, #171717, #080808);
  box-shadow: 0 0 80px rgba(184,255,61,.08);
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 7%;
}

.section h2 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -3px;
  margin-bottom: 35px;
}

.section-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 20px;
}

.quote-section {
  padding: 90px 7%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote {
  font-size: clamp(30px, 5vw, 65px);
  font-weight: 800;
  letter-spacing: -2px;
}

.quote-small {
  color: var(--muted);
  margin-top: 15px;
}

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

.lore-grid > div {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 220px;
}

.lore-grid span,
.phase span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.lore-grid h3,
.phase h3 {
  margin: 25px 0 12px;
  font-size: 20px;
}

.lore-grid p,
.phase p {
  color: var(--muted);
  font-size: 14px;
}

.token {
  text-align: center;
}

.token .section-text {
  margin-left: auto;
  margin-right: auto;
}

.token h2 {
  font-size: clamp(70px, 12vw, 150px);
}

.token-card {
  max-width: 850px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--card);
}

.token-card div {
  padding: 25px;
  border-right: 1px solid var(--line);
}

.token-card div:last-child {
  border-right: 0;
}

.token-card span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.token-card strong {
  font-size: 13px;
}

.roadmap-list {
  border-top: 1px solid var(--line);
}

.phase {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.phase h3 {
  margin: 0;
}

.final {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.big-meme {
  font-size: clamp(55px, 11vw, 150px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -6px;
}

.final p {
  margin: 30px 0;
  color: var(--muted);
  letter-spacing: 5px;
  font-size: 12px;
}

footer {
  padding: 35px 7%;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

footer div:first-child {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-marmot {
    width: 100%;
    height: 300px;
  }

  .marmot-placeholder {
    width: 230px;
    height: 230px;
    font-size: 95px;
  }

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

  .token-card {
    grid-template-columns: 1fr;
  }

  .token-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .token-card div:last-child {
    border-bottom: 0;
  }

  .phase {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    flex-direction: column;
  }

  h1 {
    letter-spacing: -3px;
  }
}
