* {
  box-sizing: border-box;
}

:root {
  --black: #070707;
  --paper: #f3ead8;
  --gold: #f4b942;
  --green: #49f57c;
  --muted: #bcb7ad;
  --line: rgba(255,255,255,.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: white;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  padding: 9px 0;
}

.ticker-track {
  display: inline-block;
  animation: scroll 18s linear infinite;
}

.ticker span {
  margin-right: 48px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(7,7,7,.88);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: Anton, Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
}

.nav nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav nav a:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  border: 2px solid var(--gold);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(244,185,66,.25);
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
}

.button.ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.35);
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 7vw;
  padding: 90px 7vw;
  background:
    radial-gradient(circle at 78% 35%, rgba(73,245,124,.12), transparent 28%),
    radial-gradient(circle at 18% 15%, rgba(244,185,66,.12), transparent 30%);
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 13px;
  margin-bottom: 20px;
}

h1, h2, h3 {
  margin: 0;
}

h1, h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: .94;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(68px, 9vw, 148px);
}

h1 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(52px, 7vw, 104px);
}

.hero p,
.copy-card p,
.roadmap p,
.disclaimer {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.hero-copy > p {
  max-width: 660px;
  margin: 28px 0;
}

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

.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  max-width: 650px;
}

.contract-box div {
  min-width: 0;
}

.contract-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.contract-box strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contract-box button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.coin-ring {
  width: min(540px, 78vw);
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe08a, #9f6512 42%, #ffd46b 72%, #694108);
  box-shadow: 0 0 80px rgba(244,185,66,.16);
}

.cat-card {
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at center, #2a2a2a, #050505 70%);
  border: 8px solid #151515;
  text-align: center;
}

.cat-emoji {
  font-size: clamp(130px, 18vw, 220px);
  filter: drop-shadow(0 14px 10px rgba(0,0,0,.45));
}

.cash {
  font-size: 42px;
  margin-top: -15px;
}

.cat-title {
  font-family: Anton, Impact, sans-serif;
  color: var(--gold);
  font-size: 68px;
  line-height: 1;
  margin-top: 8px;
}

.floating {
  position: absolute;
}

.badge {
  background: var(--paper);
  color: var(--black);
  font-weight: 900;
  padding: 14px 18px;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--gold);
  transform: rotate(-7deg);
}

.badge.one {
  left: 0;
  top: 13%;
}

.badge.two {
  right: -3%;
  bottom: 13%;
  transform: rotate(8deg);
  background: var(--green);
}

.section {
  padding: 110px 7vw;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.copy-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
}

.copy-card p:first-child {
  margin-top: 0;
}

.section-head {
  margin-bottom: 45px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.03);
}

.stats span {
  color: var(--muted);
}

.stats strong {
  font-family: Anton, Impact, sans-serif;
  font-size: 48px;
  color: var(--gold);
}

.disclaimer {
  font-size: 13px;
  margin-top: 20px;
}

.dark {
  background: #101010;
}

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

.roadmap article {
  min-height: 270px;
  padding: 28px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--black);
}

.roadmap article:nth-child(2) {
  background: var(--gold);
}

.roadmap article:nth-child(3) {
  background: var(--green);
}

.roadmap span {
  font-family: Anton, Impact, sans-serif;
  font-size: 60px;
}

.roadmap h3 {
  font-size: 30px;
  margin: 26px 0 12px;
}

.roadmap p {
  color: #2d2d2d;
}

.community {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: rgba(255,255,255,.03);
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

footer {
  padding: 48px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer .brand {
  color: white;
}

.legal {
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav nav {
    display: none;
  }

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

  .hero {
    padding-top: 70px;
  }

  .hero-art {
    min-height: 450px;
  }

  .stats,
  .roadmap {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 560px) {
  .nav {
    padding: 15px 5vw;
  }

  .brand {
    font-size: 23px;
  }

  .nav .button.small {
    padding: 0 13px;
  }

  .hero,
  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 50px;
  }

  .hero-art {
    min-height: 370px;
  }

  .cash {
    font-size: 28px;
  }

  .cat-title {
    font-size: 48px;
  }

  .badge {
    font-size: 12px;
  }

  .stats,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .contract-box {
    align-items: stretch;
    flex-direction: column;
  }

  .contract-box button {
    width: 100%;
  }
}
