:root {
  --black: #080706;
  --panel: #12100d;
  --panel-2: #1a160f;
  --gold: #f6bf32;
  --gold-light: #ffe47b;
  --gold-dark: #9d6508;
  --cream: #fff7dc;
  --muted: #b7aa8b;
  --line: rgba(246, 191, 50, 0.22);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0%, rgba(164, 100, 0, 0.18), transparent 30rem),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: #111;
  background: var(--gold-light);
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 74px;
  padding: .7rem max(1.2rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 6, .88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: fit-content;
  color: var(--gold-light);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
nav { display: flex; gap: 2rem; }
nav a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}
nav a:hover, nav a:focus-visible { color: var(--gold-light); }
.header-cta {
  justify-self: end;
  padding: .62rem 1rem;
  color: #111;
  background: var(--gold);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 5.4rem) 1.2rem 4rem;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 10% 20% auto;
  height: 70%;
  background: rgba(246, 191, 50, .14);
  filter: blur(100px);
  pointer-events: none;
}
.launch-strip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.4rem;
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(14, 12, 9, .78);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc83d;
  box-shadow: 0 0 0 6px rgba(255, 200, 61, .12);
}
.hero-banner {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  border: 1px solid rgba(255, 220, 108, .25);
  border-radius: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .58), 0 0 70px rgba(196, 120, 0, .1);
}
.hero-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold {
  color: #171007;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: #ffde73;
}
.button-dark { background: #16130f; }
.button-dark:hover, .button-dark:focus-visible { border-color: var(--gold); }
.hero-note {
  position: relative;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}
.contract-card {
  position: relative;
  display: grid;
  gap: .35rem;
  width: min(100%, 760px);
  margin: 1.2rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(18, 16, 13, .92);
}
.contract-card span {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contract-card code {
  color: var(--cream);
  font-size: clamp(.72rem, 2vw, .92rem);
  overflow-wrap: anywhere;
}
.contract-card a {
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 800;
}

.section {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
}
h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.story {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}
.story-copy > p { max-width: 650px; color: #d1c6aa; }
blockquote {
  margin: 2rem 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-style: italic;
  line-height: 1.12;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.steps div { padding: 1.2rem .75rem 0 0; }
.steps span, .steps strong, .steps small { display: block; }
.steps span { color: var(--gold); font-size: .75rem; font-weight: 900; }
.steps strong { margin: .35rem 0; }
.steps small { color: var(--muted); font-size: .82rem; line-height: 1.4; }
.mascot-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(160deg, #fff9e7, #e6d4ad);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  transform: rotate(1.5deg);
}
.mascot-card img { border-radius: 1.3rem; }
.crown-label {
  position: absolute;
  top: -1rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) rotate(-1.5deg);
  width: max-content;
  padding: .5rem 1rem;
  color: #171007;
  background: var(--gold);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.memes { border-top: 1px solid var(--line); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-heading > p { max-width: 390px; color: var(--muted); }
.meme-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.meme-grid figure {
  position: relative;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--panel);
}
.meme-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .45s ease;
}
.meme-grid figure:hover img { transform: scale(1.02); }
.meme-grid figcaption {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  padding: .35rem .65rem;
  color: var(--gold-light);
  background: rgba(8, 7, 6, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
}

.status {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}
.status-intro p:last-child { color: var(--muted); }
.progress-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.progress-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.progress-list span { color: var(--muted); font-size: .85rem; }
.progress-list strong { text-align: right; }
.progress-list .complete span { color: #87d897; }
.progress-list .current span { color: var(--gold); }

.official {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(120deg, rgba(246, 191, 50, .1), rgba(255, 255, 255, .02));
}
.official > img { border-radius: 50%; }
.official h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.official p:last-child { margin-bottom: 0; color: var(--muted); }
.official-links { display: grid; gap: .75rem; min-width: 150px; }
.safety {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 5rem auto;
  padding: 1.2rem 1.4rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  background: var(--panel);
}
.safety strong { color: var(--cream); }
.safety p { margin: .3rem 0 0; font-size: .9rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem max(1.2rem, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .85rem;
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .brand span { font-size: .78rem; }
  .story, .status { grid-template-columns: 1fr; }
  .story-copy { order: 2; }
  .mascot-card { width: min(100%, 520px); margin: 0 auto; }
  .section-heading { align-items: start; flex-direction: column; }
  .official { grid-template-columns: 96px 1fr; }
  .official-links { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .site-header { min-height: 64px; padding-block: .55rem; }
  .brand img { width: 38px; height: 38px; }
  .header-cta { padding: .55rem .8rem; font-size: .78rem; }
  .hero { padding-inline: .7rem; }
  .hero-banner { border-radius: .9rem; }
  .launch-strip { font-size: .65rem; letter-spacing: .08em; }
  .hero-actions { display: grid; }
  .steps { grid-template-columns: 1fr; }
  .steps div { padding-bottom: .8rem; }
  .meme-grid { grid-template-columns: 1fr; }
  .meme-grid figure { grid-column: auto; }
  .official { grid-template-columns: 72px 1fr; padding: 1.2rem; }
  .official-links { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
