:root {
  --cream: #f7efe0;
  --cream-deep: #efe2c8;
  --ink: #2a1c12;
  --ink-soft: #5c4330;
  --gold: #e2b14a;
  --gold-bright: #f3d27a;
  --gold-deep: #b8872a;
  --sky: #8ec8e8;
  --sky-deep: #5fa7d4;
  --blue-soft: #a9d4f5;
  --coral: #ff5a5a;
  --lime: #7dff6b;
  --cyan: #49e7ff;
  --violet: #b07cff;
  --orange: #ff9a3c;
  --glass: rgba(255, 250, 240, 0.55);
  --glass-strong: rgba(255, 248, 236, 0.82);
  --shadow: 0 24px 60px rgba(74, 42, 12, 0.18);
  --radius: 28px;
  --header-h: 78px;
  --font-display: "Fredoka", sans-serif;
  --font-body: "Nunito", sans-serif;
  --font-meme: "Comic Neue", cursive;
}

*,
*::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(--cream);
  overflow-x: hidden;
}

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

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

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

.bg-world {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(243, 210, 122, 0.55), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(142, 200, 232, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 60%, rgba(255, 154, 60, 0.18), transparent 50%),
    linear-gradient(180deg, #f8f1e4 0%, #f3e7d0 40%, #e8f4fb 100%);
  animation: skyShift 18s ease-in-out infinite alternate;
}

.bg-sun {
  position: absolute;
  top: -8vmax;
  right: -4vmax;
  width: 34vmax;
  height: 34vmax;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #fff7d6 0%, #f3d27a 28%, rgba(226, 177, 74, 0.35) 48%, transparent 70%);
  filter: blur(2px);
  animation: sunPulse 8s ease-in-out infinite;
}

.bg-rays {
  position: absolute;
  inset: -20%;
  background:
    repeating-conic-gradient(
      from 0deg at 80% 8%,
      rgba(255, 236, 170, 0.08) 0deg 8deg,
      transparent 8deg 18deg
    );
  animation: raySpin 60s linear infinite;
  opacity: 0.55;
  mix-blend-mode: soft-light;
}

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

.floating-words {
  position: absolute;
  inset: 0;
}

.floating-words span {
  position: absolute;
  font-family: var(--font-meme);
  font-weight: 700;
  opacity: 0.28;
  animation: wordDrift linear infinite;
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35);
}

.petal-field .petal {
  position: absolute;
  top: -40px;
  width: 14px;
  height: 18px;
  border-radius: 70% 10% 70% 10%;
  background: linear-gradient(135deg, #ffd56a, #ff9a3c);
  opacity: 0.55;
  animation: petalFall linear infinite;
  filter: blur(0.2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(14px);
  background: rgba(247, 239, 224, 0.72);
  border-bottom: 1px solid rgba(226, 177, 74, 0.25);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(247, 239, 224, 0.9);
  box-shadow: 0 10px 30px rgba(74, 42, 12, 0.08);
}

.site-header.hidden {
  transform: translateY(-110%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(226, 177, 74, 0.7), 0 8px 20px rgba(184, 135, 42, 0.35);
  animation: logoFloat 4.5s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--ink-soft);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(226, 177, 74, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  filter: invert(18%) sepia(24%) saturate(900%) hue-rotate(350deg);
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--gold-bright);
  box-shadow: 0 10px 20px rgba(226, 177, 74, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 177, 74, 0.35);
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenBurns 28s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 239, 224, 0.35) 0%, rgba(247, 239, 224, 0.55) 45%, rgba(247, 239, 224, 0.92) 100%),
    radial-gradient(circle at 50% 30%, rgba(243, 210, 122, 0.25), transparent 50%);
}

.hero-shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  animation: shineSweep 7s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-orbit {
  position: relative;
  width: clamp(150px, 22vw, 220px);
  height: clamp(150px, 22vw, 220px);
  margin-bottom: 1.25rem;
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(243, 210, 122, 0.85),
    0 0 40px rgba(226, 177, 74, 0.55),
    0 20px 50px rgba(74, 42, 12, 0.25);
  animation: logoFloat 5s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(226, 177, 74, 0.7);
  animation: spin 18s linear infinite;
}

.orbit-sparkles::before,
.orbit-sparkles::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px var(--gold);
  top: 8%;
  left: 50%;
  animation: sparkOrbit 6s linear infinite;
}

.orbit-sparkles::after {
  width: 8px;
  height: 8px;
  background: var(--sky);
  animation-duration: 9s;
  animation-direction: reverse;
}

.hero-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-size: 0.9rem;
}

.hero-title {
  margin: 0.35rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #3a2414 0%, #8a5a20 45%, #e2b14a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.35));
  animation: titleGlow 3.5s ease-in-out infinite;
}

.hero-bio {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-gold {
  color: #2a1c12;
  background: linear-gradient(135deg, #ffe39a, #e2b14a 45%, #c8922e);
  box-shadow: 0 12px 28px rgba(184, 135, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 36px rgba(184, 135, 42, 0.45);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(226, 177, 74, 0.55);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost .btn-icon {
  filter: invert(35%) sepia(40%) saturate(700%) hue-rotate(5deg);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-links a img {
  width: 15px;
  height: 15px;
  filter: invert(25%) sepia(20%) saturate(800%) hue-rotate(350deg);
}

.hero-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.75);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(90, 60, 30, 0.35);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--gold-deep);
  animation: cueBounce 1.6s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

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

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-size: 0.85rem;
}

.section-head h2,
.about-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.section-head p,
.about-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.about-visual {
  position: relative;
}

.about-art {
  width: 100%;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}

.about-visual:hover .about-art {
  transform: rotate(0deg) scale(1.02);
}

.frame-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(226, 177, 74, 0.35), transparent 65%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

.stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(42, 28, 18, 0.82);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  animation: stampPop 3.5s ease-in-out infinite;
}

.lead {
  font-weight: 800;
  color: var(--ink) !important;
  font-size: 1.15rem !important;
}

.token-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--glass-strong);
  border: 1px solid rgba(226, 177, 74, 0.4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
}

.token-chip img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.token-chip strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.token-chip span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.copy-btn {
  margin-left: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe39a, #e2b14a);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.copy-btn:hover {
  transform: scale(1.05);
}

.howtobuy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(142, 200, 232, 0.12));
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--glass-strong);
  border: 1px solid rgba(226, 177, 74, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(243, 210, 122, 0.35), transparent 65%);
  transition: transform 0.45s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(74, 42, 12, 0.16);
}

.step:hover::before {
  transform: translateY(-20px);
}

.step-num {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.step h3 {
  position: relative;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.step p {
  position: relative;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.buy-actions .btn-ghost .btn-icon,
.buy-actions .btn-gold .btn-icon {
  filter: none;
}

.buy-actions .btn-gold .btn-icon {
  filter: invert(18%) sepia(24%) saturate(900%) hue-rotate(350deg);
}

.buy-actions .btn-ghost .btn-icon {
  filter: invert(35%) sepia(40%) saturate(700%) hue-rotate(5deg);
}

.chart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.chart-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(42, 28, 18, 0.88);
  color: #fff8ea;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.chart-links a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.chart-links a:hover {
  transform: translateY(-2px);
  background: #3d2a1a;
}

.chart-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 2px solid rgba(226, 177, 74, 0.45);
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.35);
  background: #0b0e11;
  min-height: 560px;
}

.chart-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(226, 177, 74, 0.12);
}

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

.joinus .banner-stage {
  position: relative;
  margin: 0 auto 2rem;
  width: min(980px, 100%);
}

.join-banner {
  width: 100%;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  animation: bannerBob 5s ease-in-out infinite;
}

.banner-glow {
  position: absolute;
  inset: 8% 4% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(226, 177, 74, 0.45), transparent 70%);
  filter: blur(24px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: min(980px, 100%);
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: var(--glass-strong);
  border: 1px solid rgba(226, 177, 74, 0.35);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-card img {
  width: 28px;
  height: 28px;
  filter: invert(25%) sepia(30%) saturate(800%) hue-rotate(350deg);
}

.social-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.social-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: #fffaf1;
}

.site-footer {
  padding: 2rem 1.25rem 2.5rem;
  border-top: 1px solid rgba(226, 177, 74, 0.25);
  background: rgba(255, 250, 240, 0.65);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
}

.footer-brand span,
.site-footer p {
  color: var(--ink-soft);
  margin: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 120%);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(42, 28, 18, 0.92);
  color: #fff8ea;
  font-weight: 700;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 100;
}

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes skyShift {
  from { filter: hue-rotate(0deg) saturate(1); }
  to { filter: hue-rotate(12deg) saturate(1.08); }
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

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

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

@keyframes sparkOrbit {
  from { transform: rotate(0deg) translateX(110px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(110px) rotate(-360deg); }
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.35)); }
  50% { filter: drop-shadow(0 8px 0 rgba(255, 255, 255, 0.35)) drop-shadow(0 0 18px rgba(226, 177, 74, 0.45)); }
}

@keyframes kenBurns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}

@keyframes shineSweep {
  0%, 100% { transform: translateX(-30%) rotate(8deg); opacity: 0.2; }
  50% { transform: translateX(30%) rotate(8deg); opacity: 0.55; }
}

@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.35; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes stampPop {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(-2deg) scale(1.05); }
}

@keyframes bannerBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wordDrift {
  from { transform: translateY(0) rotate(var(--rot)) scale(1); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.2; }
  to { transform: translateY(-110vh) rotate(calc(var(--rot) * -1)) scale(1.1); opacity: 0; }
}

@keyframes petalFall {
  to { transform: translate3d(var(--x), 110vh, 0) rotate(720deg); }
}

@media (max-width: 980px) {
  .about-grid,
  .buy-steps,
  .social-row {
    grid-template-columns: 1fr;
  }

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    background: rgba(247, 239, 224, 0.96);
    border-bottom: 1px solid rgba(226, 177, 74, 0.3);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .nav a:hover {
    background: rgba(226, 177, 74, 0.15);
  }

  .menu-toggle {
    display: grid;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 460px;
  }
}

@media (max-width: 640px) {
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .token-chip {
    flex-wrap: wrap;
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

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

@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;
  }
}
