:root {
  --bg: #3a203f;
  --bg-alt: #5a2b5a;
  --ink: #fff3fb;
  --muted: #f1cbe6;
  --accent: #ff6fae;
  --accent-2: #ffd27a;
  --accent-3: #f8b6ff;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 18% 18%, #7b3e7e 0%, var(--bg) 45%, #2a162c 100%);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

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

.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 122, 0.35), transparent 46%),
    radial-gradient(circle at 70% 15%, rgba(248, 182, 255, 0.38), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 111, 174, 0.32), transparent 58%);
  pointer-events: none;
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 64px);
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 1px;
}

.pill {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff8f2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(255, 210, 122, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.coingecko img {
  width: 20px;
  height: 20px;
}

.x-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0 clamp(16px, 4vw, 80px) 32px;
  flex: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 12vw, 110px);
  margin: 10px 0;
  line-height: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

.ticker {
  font-size: 18px;
  margin: 0 0 12px;
}

.tagline {
  font-size: clamp(20px, 3.5vw, 30px);
  margin: 0 0 16px;
}

.subcopy {
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 14px 30px rgba(255, 111, 174, 0.35), 0 0 18px rgba(255, 210, 122, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn.small {
  padding: 8px 14px;
  font-size: 14px;
  margin-top: 12px;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-card {
  background: #fffef9;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 28px;
  border: 2px solid rgba(255, 59, 48, 0.25);
  box-shadow: 0 0 40px rgba(255, 59, 48, 0.35), var(--shadow);
}

.hero-card img {
  width: min(320px, 70vw);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.ring {
  position: absolute;
  width: min(420px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px dashed rgba(255, 59, 48, 0.4);
  animation: spin 14s linear infinite;
  z-index: -1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #1d1a16;
}

.card h3 {
  margin-top: 0;
}

.mono {
  font-family: "Space Grotesk", monospace;
  font-size: 14px;
  word-break: break-all;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 111, 174, 0.5);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.how {
  display: grid;
  gap: 16px;
  text-align: center;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.step {
  background: #fffef5;
  border-radius: 18px;
  padding: 20px;
  border: 1px dashed rgba(255, 59, 48, 0.35);
  color: #1d1a16;
}

.step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-2);
  color: #1d1a16;
  font-weight: 700;
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(100%);
  background: #1d1a16;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-footer {
  text-align: center;
  padding: 18px 16px 28px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #49a9ff;
  text-decoration: underline;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
