:root {
  --navy: #0a1024;
  --navy-deep: #050812;
  --blue: #1c3f8c;
  --blue-bright: #3a6fd8;
  --red: #c41e3a;
  --red-hot: #e63946;
  --gold: #e8c547;
  --gold-bright: #ffe08a;
  --gold-deep: #a67c1a;
  --cream: #f5e6c8;
  --ink: #f7f3ea;
  --muted: #b8b0a0;
  --glass: rgba(18, 24, 48, 0.55);
  --line: rgba(232, 197, 71, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Bebas Neue", sans-serif;
  --font-music: "Bungee", sans-serif;
  --font-head: "Oswald", sans-serif;
  --font-body: "Barlow", sans-serif;
  --radius: 18px;
  --header-h: 76px;
  --ca: "J6AzegrwPyA8ti3Q6qvByEqM4r3E77A62xSdGZ7Xpump";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--navy-deep);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- Stage background ---------- */
.stage-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(196, 30, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(28, 63, 140, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 35% at 85% 15%, rgba(196, 30, 58, 0.25), transparent 50%),
    linear-gradient(180deg, #070b18 0%, #0d1530 40%, #0a0f1f 100%);
}

.flag-wash {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 28px,
      rgba(196, 30, 58, 0.55) 28px 56px
    ),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.25) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 8% 40%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px);
  background-size: 100% 100%, 120px 120px, 90px 90px, 70px 70px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 55%);
  animation: flag-drift 28s linear infinite;
}

@keyframes flag-drift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 40px 20px, -30px 15px, 20px -25px; }
}

.stage-beam {
  position: absolute;
  top: -10%;
  width: 42vw;
  height: 120vh;
  filter: blur(40px);
  opacity: 0.35;
  mix-blend-mode: screen;
  transform-origin: top center;
  animation: beam-sweep 9s ease-in-out infinite;
}

.beam-red {
  left: 8%;
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.55), transparent 70%);
  animation-delay: 0s;
}

.beam-blue {
  right: 5%;
  left: auto;
  background: linear-gradient(180deg, rgba(58, 111, 216, 0.5), transparent 70%);
  animation-delay: -3s;
}

.beam-gold {
  left: 35%;
  width: 28vw;
  opacity: 0.22;
  background: linear-gradient(180deg, rgba(232, 197, 71, 0.45), transparent 65%);
  animation-delay: -5.5s;
  animation-duration: 12s;
}

@keyframes beam-sweep {
  0%, 100% { transform: rotate(-8deg) scaleX(1); opacity: 0.28; }
  50% { transform: rotate(10deg) scaleX(1.15); opacity: 0.45; }
}

#notes-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.eq-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 4vw 10px;
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.eq-floor span {
  flex: 1;
  max-width: 10px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--red), var(--blue));
  animation: eq-bounce 1.1s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 18, 0.72);
  border-bottom: 1px solid rgba(232, 197, 71, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(232, 197, 71, 0.45), 0 0 24px rgba(196, 30, 58, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(232, 197, 71, 0.25);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: 1.5rem;
}

.site-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.icon-link img {
  width: 18px;
  height: 18px;
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(232, 197, 71, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-gold {
  color: #1a1205;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 40%, var(--gold-deep));
  box-shadow: 0 8px 28px rgba(232, 197, 71, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 36px rgba(232, 197, 71, 0.5);
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(232, 197, 71, 0.3); }
  50% { box-shadow: 0 8px 36px rgba(232, 197, 71, 0.55), 0 0 0 6px rgba(232, 197, 71, 0.08); }
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(232, 197, 71, 0.08);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 4rem) 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  right: -10%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.18), rgba(196, 30, 58, 0.08), transparent 70%);
  animation: glow-breathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(58, 111, 216, 0.4);
  background: rgba(28, 63, 140, 0.25);
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--cream);
}

.ticker-pill img {
  width: 18px;
  height: 18px;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-music);
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff6d4 0%, var(--gold-bright) 28%, var(--gold) 55%, var(--red-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(196, 30, 58, 0.35));
  animation: brand-shimmer 5s ease-in-out infinite;
  background-size: 100% 200%;
}

@keyframes brand-shimmer {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 0 100%; }
}

.hero-tagline {
  max-width: 34rem;
  margin: 1.1rem 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.text-link img {
  width: 20px;
  height: 20px;
}

.text-link:hover {
  opacity: 1;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(62vw, 520px);
  transition: transform 0.35s ease-out;
}

.hero-logo {
  width: min(100%, 460px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(232, 197, 71, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(196, 30, 58, 0.25);
  animation: logo-float 5.5s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.logo-orbit,
.logo-pulse {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.logo-orbit {
  width: 86%;
  height: 86%;
  border: 1px dashed rgba(232, 197, 71, 0.35);
  animation: spin 28s linear infinite;
}

.logo-pulse {
  width: 78%;
  height: 78%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.2), transparent 70%);
  animation: pulse-ring 3.2s ease-out infinite;
}

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

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.sound-ring {
  position: absolute;
  border: 2px solid rgba(58, 111, 216, 0.35);
  border-radius: 50%;
  z-index: 1;
  animation: sound-expand 3.6s ease-out infinite;
}

.ring-1 { width: 70%; height: 70%; animation-delay: 0s; }
.ring-2 { width: 85%; height: 85%; animation-delay: 1.2s; border-color: rgba(196, 30, 58, 0.3); }
.ring-3 { width: 100%; height: 100%; animation-delay: 2.4s; border-color: rgba(232, 197, 71, 0.25); }

@keyframes sound-expand {
  0% { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0; }
}

.hero-eq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 0 8%;
  opacity: 0.55;
}

.hero-eq span {
  width: 6px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--blue-bright));
  animation: eq-bounce 0.9s ease-in-out infinite;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.section-kicker {
  margin: 0 0 0.6rem;
  font-family: var(--font-music);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-hot);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--cream), var(--gold), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(180deg, transparent, rgba(28, 63, 140, 0.12), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-copy .section-title,
.about-copy .section-kicker,
.about-copy .section-lead {
  text-align: left;
}

.about-points {
  margin-top: 2rem;
  display: grid;
  gap: 1.15rem;
}

.about-points li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s, transform 0.25s;
}

.about-points li:hover {
  border-color: rgba(232, 197, 71, 0.35);
  transform: translateX(6px);
}

.point-bar {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), var(--gold), var(--blue-bright));
  animation: bar-glow 2.4s ease-in-out infinite;
}

@keyframes bar-glow {
  0%, 100% { opacity: 0.7; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.3); }
}

.about-points strong {
  display: block;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--gold);
}

.about-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.token-card {
  padding: 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(232, 197, 71, 0.12), transparent 40%),
    rgba(12, 16, 36, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.token-card-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(196, 30, 58, 0.3);
  animation: logo-float 5.5s ease-in-out infinite;
}

.token-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-head);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
}

.meta-value.gold {
  color: var(--gold);
}

.meta-value.chain {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-value.chain img {
  width: 20px;
  height: 20px;
}

/* ---------- How to buy ---------- */
.howtobuy {
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 30, 58, 0.12), transparent 55%);
}

.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.buy-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(10, 14, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.buy-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.buy-step:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 197, 71, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.buy-step:hover::before {
  transform: scaleX(1);
}

.step-num {
  display: block;
  font-family: var(--font-music);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.buy-step h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.buy-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-link img {
  width: 18px;
  height: 18px;
}

/* ---------- Chart ---------- */
.chart-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b0e17;
  min-height: 520px;
}

.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

.chart-note {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Join Us ---------- */
.joinus {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(232, 197, 71, 0.1), transparent 50%),
    linear-gradient(180deg, transparent, rgba(12, 16, 36, 0.6));
}

.banner-wrap {
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgba(196, 30, 58, 0.15),
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(28, 63, 140, 0.2);
  position: relative;
}

.banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 8, 18, 0.35));
  pointer-events: none;
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-ken 18s ease-in-out infinite alternate;
}

@keyframes banner-ken {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.join-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.join-card {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  background: rgba(10, 14, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.join-card img {
  width: 36px;
  height: 36px;
}

.join-card span {
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-card small {
  color: var(--muted);
  font-size: 0.85rem;
}

.join-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 197, 71, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(232, 197, 71, 0.15);
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 2.5rem;
  background: rgba(5, 8, 18, 0.85);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-icons {
  display: flex;
  gap: 0.65rem;
}

.footer-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}

.footer-icons img {
  width: 18px;
  height: 18px;
}

.footer-icons a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Reveal / toast ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1205;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  z-index: 100;
  transition: transform 0.35s ease;
  pointer-events: none;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-tagline,
  .about-copy .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas,
  .hero-links {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
  }

  .hero-logo {
    width: min(78vw, 360px);
  }

  .about-grid,
  .buy-steps,
  .join-links {
    grid-template-columns: 1fr;
  }

  .buy-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-copy .section-title,
  .about-copy .section-kicker {
    text-align: center;
  }

  .about-points li {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-nav,
  .header-actions .btn,
  .header-actions .icon-link {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: rgba(5, 8, 18, 0.96);
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }

  .site-header.is-open .header-actions {
    display: none;
  }

  .buy-steps {
    grid-template-columns: 1fr;
  }

  .chart-frame iframe {
    height: 480px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
