@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #09070e;
  --panel: #15101f;
  --panel-2: #1c1429;
  --text: #ffffff;
  --muted: #bcb4c9;
  --purple: #7c3cff;
  --purple-2: #b26cff;
  --gold: #f5b62f;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(124,60,255,.24), transparent 32%),
    radial-gradient(circle at 15% 30%, rgba(178,108,255,.12), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 26px;
  position: sticky;
  top: 12px;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12,9,18,.78);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,182,47,.12);
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: .93rem;
}
.nav a:hover { color: #fff; }
.menu-button { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: white;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 12px 38px rgba(124,60,255,.28);
}
.button-small { min-height: 42px; padding: 0 16px; }
.button-outline {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}
.disabled { opacity: .55; cursor: not-allowed; }

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
}
.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 30px;
  padding-top: 70px;
}
.eyebrow {
  display: inline-flex;
  color: var(--purple-2);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 16px;
}
h1, h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  margin: 0;
}
h1 {
  font-size: clamp(6rem, 14vw, 12rem);
  letter-spacing: -.04em;
  text-shadow: 7px 7px 0 rgba(124,60,255,.55);
}
h2 { font-size: clamp(3rem, 7vw, 6.2rem); }
.hero-subtitle {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 12px; margin: 30px 0; flex-wrap: wrap; }
.contract-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 620px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.contract-card strong { color: #fff; font-size: .95rem; }
.contract-card button {
  border: 0;
  border-radius: 9px;
  padding: 9px 13px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  isolation: isolate;
}
.hero-art img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 34px 55px rgba(0,0,0,.55));
}
.glow {
  position: absolute;
  z-index: 1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,60,255,.9), rgba(124,60,255,0) 67%);
  inset: 13% 12%;
  filter: blur(25px);
}

.ticker {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--purple);
  transform: rotate(-1deg) scale(1.02);
}
.ticker div {
  font-weight: 900;
  letter-spacing: .12em;
  animation: move 18s linear infinite;
}
@keyframes move { to { transform: translateX(-50%); } }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-copy {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading p { color: var(--muted); }

.cards {
  display: grid;
  gap: 18px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.card-number { color: var(--purple-2); font-weight: 900; }
.card h3 { font-size: 1.4rem; margin-top: 70px; }
.card p { color: var(--muted); line-height: 1.7; }

.timeline { display: grid; gap: 14px; }
.phase {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.phase .dot {
  width: 16px;
  height: 16px;
  margin-top: 6px;
  border-radius: 50%;
  border: 3px solid var(--purple);
}
.phase.active { background: linear-gradient(90deg, rgba(124,60,255,.22), rgba(255,255,255,.03)); }
.phase.active .dot { background: var(--purple); box-shadow: 0 0 22px var(--purple); }
.phase span { color: var(--purple-2); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.phase h3 { margin: 8px 0; font-size: 1.45rem; }
.phase p { margin: 0; color: var(--muted); line-height: 1.6; }

.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-inline: 38px;
  border: 1px solid rgba(124,60,255,.45);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(124,60,255,.24), rgba(255,255,255,.03));
}
.community p { color: var(--muted); }
.socials { display: grid; gap: 12px; align-content: center; }
.social {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  font-weight: 800;
}
.social span { color: var(--muted); font-weight: 500; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
}
.faq details p { color: var(--muted); line-height: 1.7; max-width: 780px; }

footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 40px auto 0;
  padding: 34px 0 50px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .9rem;
}
.fine-print { text-align: right; }

@media (max-width: 850px) {
  .site-header { flex-wrap: wrap; }
  .menu-button {
    display: block;
    margin-left: auto;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.5rem;
  }
  .nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding: 10px 0;
  }
  .nav.open { display: flex; }
  .site-header > .button-small { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .hero-copy { order: 2; }
  .hero-art { order: 1; max-width: 560px; margin: 0 auto; }
  .hero-subtitle, .contract-card { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .contract-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about, .community { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .fine-print { text-align: center; }
}

@media (max-width: 520px) {
  .section { padding: 74px 0; }
  h1 { font-size: 5.6rem; }
  .hero { padding-top: 42px; }
  .community { padding-inline: 22px; }
}
.steps {
  max-width: 700px;
  margin: 35px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: yerrr-step;
}

.steps li {
  counter-increment: yerrr-step;
  margin: 12px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  text-align: left;
}

.steps li::before {
  content: counter(yerrr-step);
  font-weight: 800;
  margin-right: 12px;
}
