:root {
  --green: #8bff00;
  --green-2: #bfff00;
  --green-3: #47b300;
  --dark: #050805;
  --dark-2: #0a130a;
  --forest: #102f12;
  --cream: #fff8d8;
  --gold: #ffd743;
  --brown: #3b2417;
  --muted: #b4c6a4;
  --card: rgba(12, 35, 14, 0.74);
  --card-2: rgba(255, 255, 255, 0.08);
  --line: rgba(191, 255, 0, 0.22);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --page-pad: 40px;
  --font-display: "Anton", "Inter", ui-sans-serif, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(139, 255, 0, 0.12), transparent 25rem),
    linear-gradient(145deg, #020302 0%, var(--dark) 46%, #0a1609 100%);
  color: var(--cream);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 255, 0, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -3;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

#forest-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

.section-shell {
  width: min(var(--max), calc(100% - var(--page-pad)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(var(--max), calc(100% - 30px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 16px;
  border: 1px solid rgba(191, 255, 0, 0.18);
  border-radius: 20px;
  background: rgba(3, 12, 4, 0.88);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(191, 255, 0, 0.42);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 255, 0, 0.25), rgba(255, 215, 67, 0.12));
  box-shadow: 0 0 30px rgba(139, 255, 0, 0.24);
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  letter-spacing: 0;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--green-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 248, 216, 0.78);
  font-weight: 700;
  font-size: 0.86rem;
  transition: 180ms ease;
}

.site-nav a:hover {
  color: #041306;
  background: var(--green);
  box-shadow: 0 0 30px rgba(139, 255, 0, 0.25);
}

.header-cta {
  padding: 14px 18px;
  border-radius: 999px;
  color: #041306;
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-weight: 950;
  box-shadow: 0 12px 42px rgba(139, 255, 0, 0.26);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
  border-radius: 2px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
  min-height: min(780px, calc(100svh - 112px));
  padding: 76px 0 84px;
  overflow: hidden;
}

.hero-bg-ribbons span {
  position: absolute;
  pointer-events: none;
  filter: blur(0.2px);
  opacity: 0.72;
}

.hero-bg-ribbons span:nth-child(1) {
  width: 380px;
  height: 380px;
  right: 4%;
  top: 10%;
  border: 1px solid rgba(191, 255, 0, 0.20);
  border-radius: 44% 56% 66% 34% / 36% 42% 58% 64%;
  animation: morph 10s ease-in-out infinite;
}

.hero-bg-ribbons span:nth-child(2) {
  width: 280px;
  height: 280px;
  left: -3%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 255, 0, 0.08), transparent 70%);
  animation: pulseBlob 6s ease-in-out infinite;
}

.hero-bg-ribbons span:nth-child(3) {
  width: 74%;
  height: 1px;
  left: 13%;
  top: 54%;
  background: linear-gradient(90deg, transparent, rgba(191, 255, 0, 0.35), transparent);
  transform: rotate(-12deg);
}

.hero-bg-ribbons span:nth-child(1),
.hero-bg-ribbons span:nth-child(2) {
  display: none;
}

.hero-bg-ribbons {
  display: none;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 rgba(139, 255, 0, 0.7);
  animation: pulse 1.7s ease-out infinite;
}

.hero h1,
.section-heading h2,
.details-copy h2,
.about-card h2,
.community-card h2 {
  margin: 18px 0 0;
  color: #fffde9;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 4.9rem, 7.2rem);
  line-height: 1.04;
  letter-spacing: 0.028em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  text-shadow: 0 12px 0 rgba(139, 255, 0, 0.06);
}

.text-pop {
  background: linear-gradient(120deg, var(--green-2), var(--gold) 60%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 24px;
}

.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 248, 216, 0.78);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  font-weight: 950;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 44%);
  transition: opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  color: #071306;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 18px 56px rgba(139, 255, 0, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.btn-ghost {
  background: rgba(139, 255, 0, 0.08);
  color: var(--green-2);
}

.contract-card {
  width: min(100%, 560px);
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(191, 255, 0, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contract-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract-card strong {
  display: block;
  margin-top: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: var(--cream);
}

.copy-contract {
  border: 0;
  border-radius: 15px;
  padding: 13px 17px;
  color: #071306;
  background: var(--green);
  font-weight: 950;
  cursor: pointer;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 64svh, 680px);
  isolation: isolate;
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  width: min(34%, 148px);
  bottom: -3%;
  left: -9%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
  transform: rotate(-11deg);
  animation: stickerDrift 6.5s ease-in-out infinite;
}

.logo-plate {
  position: relative;
  width: min(92vw, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(139, 255, 0, 0.22), rgba(255, 215, 67, 0.12));
  box-shadow:
    0 46px 120px rgba(0, 0, 0, 0.48),
    0 0 90px rgba(139, 255, 0, 0.22);
  transform-style: preserve-3d;
  animation: floatHero 5s ease-in-out infinite;
}

.logo-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.26), transparent 42%);
  transform: translateX(-100%);
  animation: shine 5s ease-in-out infinite;
  z-index: 2;
}

.logo-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.moon-glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(92vw, 570px);
  height: min(92vw, 570px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 255, 0, 0.18), rgba(139, 255, 0, 0.04) 48%, transparent 70%);
  filter: blur(4px);
  animation: pulseBlob 5.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px dashed rgba(191, 255, 0, 0.22);
}

.orbit-one {
  width: min(96vw, 600px);
  height: min(96vw, 600px);
  animation: rotate 19s linear infinite;
}

.orbit-two {
  width: min(78vw, 470px);
  height: min(78vw, 470px);
  border-color: rgba(255, 215, 67, 0.18);
  animation: rotate 14s linear infinite reverse;
}

.arrow {
  position: absolute;
  color: var(--gold);
  font-size: 4.4rem;
  text-shadow: 0 0 30px rgba(255, 215, 67, 0.35);
  z-index: 3;
  animation: arrowDrift 6s ease-in-out infinite;
}

.arrow-a { top: 78px; right: 70px; transform: rotate(-32deg); }
.arrow-b { bottom: 82px; left: 46px; transform: rotate(136deg); animation-delay: -2s; }
.arrow-c { top: 42%; right: -10px; transform: rotate(14deg); animation-delay: -4s; }

.trend-line {
  position: absolute;
  width: 72%;
  height: 42%;
  right: 0;
  bottom: 15%;
  border-top: 2px solid rgba(139, 255, 0, 0.7);
  border-right: 2px solid rgba(139, 255, 0, 0.7);
  clip-path: polygon(0 80%, 12% 76%, 24% 82%, 36% 58%, 50% 64%, 62% 38%, 73% 44%, 86% 16%, 100% 0, 100% 100%, 0 100%);
  transform: skewY(-14deg) rotate(-5deg);
  opacity: 0.42;
  z-index: 1;
}

.market-signal {
  position: absolute;
  top: 82px;
  right: 10px;
  z-index: 5;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: rgba(4, 14, 5, 0.76);
  box-shadow: 14px 18px 0 rgba(139, 255, 0, 0.08);
  transform: rotate(3deg);
}

.market-signal span,
.market-signal small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-signal strong {
  color: var(--green-2);
  font-size: 1.8rem;
  line-height: 0.95;
}

.candle-stack {
  position: absolute;
  right: 18%;
  bottom: 12%;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 112px;
  transform: rotate(-7deg);
  opacity: 0.72;
}

.candle-stack i {
  position: relative;
  display: block;
  width: 10px;
  height: 44px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(139, 255, 0, 0.3);
}

.candle-stack i::before,
.candle-stack i::after {
  content: "";
  position: absolute;
  left: 4px;
  width: 2px;
  background: var(--green-2);
}

.candle-stack i::before { top: -18px; height: 18px; }
.candle-stack i::after { bottom: -12px; height: 12px; }
.candle-stack i:nth-child(1) { height: 28px; }
.candle-stack i:nth-child(2) { height: 42px; }
.candle-stack i:nth-child(3) { height: 36px; }
.candle-stack i:nth-child(4) { height: 62px; }
.candle-stack i:nth-child(5) { height: 76px; }
.candle-stack i:nth-child(6) { height: 96px; }

.hero-badge {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  border: 1px solid rgba(191, 255, 0, 0.24);
  border-radius: 999px;
  background: rgba(4, 19, 6, 0.76);
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.badge-top {
  top: 78px;
  left: 18px;
}

.badge-bottom {
  bottom: 96px;
  right: 14px;
}

.ticker-strip {
  border-block: 1px solid rgba(191, 255, 0, 0.18);
  background: linear-gradient(90deg, rgba(139, 255, 0, 0.07), rgba(255, 215, 67, 0.08), rgba(139, 255, 0, 0.07));
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 248, 216, 0.82);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.ticker-track span::after {
  content: "✦";
  margin-left: 18px;
  color: var(--green);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 78px 0 28px;
}

.stats-grid article,
.lore-card,
.step-card,
.roadmap-item,
.allocation-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 255, 0, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
  transition: transform 260ms ease;
  will-change: transform;
}

.stats-grid article::before,
.lore-card::before,
.step-card::before,
.roadmap-item::before,
.allocation-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(139, 255, 0, 0.18), transparent 42%);
  transition: opacity 180ms ease;
}

.stats-grid article:hover::before,
.lore-card:hover::before,
.step-card:hover::before,
.roadmap-item:hover::before,
.allocation-grid article:hover::before {
  opacity: 1;
}

.stats-grid article {
  padding: 26px;
}

.stat-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(139, 255, 0, 0.35));
}

.stat-number {
  display: block;
  color: var(--green-2);
  font-size: clamp(2.45rem, 3.35rem, 4.3rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
}

.stats-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.details-copy h2,
.about-card h2,
.community-card h2 {
  font-size: clamp(2.45rem, 4rem, 5.45rem);
}

.section-heading p:not(.kicker),
.details-copy p,
.about-card p,
.community-card p {
  margin: 20px auto 0;
  color: rgba(255, 248, 216, 0.72);
  font-size: 1.06rem;
  line-height: 1.72;
}

.lore,
.how-to-buy,
.details,
.about,
.roadmap,
.community {
  padding: 92px 0;
}

.lore-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lore-card,
.step-card,
.roadmap-item {
  padding: 30px;
}

.lore-card span,
.roadmap-item span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lore-head,
.roadmap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lore-icon,
.roadmap-head .icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  opacity: 0.85;
  transition: transform 260ms ease;
}

.lore-card:hover .lore-icon,
.roadmap-item:hover .roadmap-head .icon {
  transform: rotate(-8deg) scale(1.12);
}

.lore-card h3,
.step-card h3,
.roadmap-item h3 {
  margin: 34px 0 12px;
  color: #fffde9;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: 0.024em;
  text-transform: uppercase;
}

.lore-card p,
.step-card p,
.roadmap-item p {
  margin: 0;
  color: rgba(255, 248, 216, 0.68);
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-num {
  display: block;
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.step-icon {
  width: 58px;
  height: 58px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #071306;
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-weight: 1000;
  box-shadow: 0 18px 38px rgba(139, 255, 0, 0.20);
  transition: transform 260ms ease;
}

.step-icon .icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.9;
}

.step-card:hover .step-icon {
  transform: rotate(-6deg) translateY(-2px);
}

.step-card h3 {
  margin-top: 28px;
}

.details-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(191, 255, 0, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 255, 0, 0.15), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.coin-3d {
  position: absolute;
  top: -26px;
  left: 42px;
  z-index: 3;
  width: 84px;
  height: 84px;
  perspective: 700px;
}

.coin-face,
.coin-edge {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.coin-face {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 67, 0.6);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), 0 0 26px rgba(139, 255, 0, 0.25);
  backface-visibility: hidden;
}

.coin-front {
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.3), transparent 55%), linear-gradient(135deg, var(--green), var(--gold));
  animation: coinSpinFront 6s linear infinite;
}

.coin-front img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.coin-back {
  color: #071306;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold), var(--green));
  animation: coinSpinBack 6s linear infinite;
}

.coin-edge {
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(4, 19, 6, 0.28);
  pointer-events: none;
}

.token-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.token-tags span {
  padding: 11px 13px;
  border: 1px solid rgba(191, 255, 0, 0.18);
  border-radius: 999px;
  color: rgba(255, 248, 216, 0.78);
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.82rem;
  font-weight: 850;
}

.token-wheel {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 80%, var(--gold) 80% 90%, #f7ff96 90% 95%, #5bd01d 95% 100%);
  box-shadow: 0 0 70px rgba(139, 255, 0, 0.20);
  animation: rotateSlow 14s linear infinite;
}

.token-wheel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.wheel-center {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(191, 255, 0, 0.18);
  animation: rotateSlow 14s linear infinite reverse;
}

.wheel-center strong {
  align-self: end;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.wheel-center span {
  align-self: start;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.allocation-grid article {
  padding: 24px;
}

.allocation-grid .icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: var(--gold);
}

.allocation-grid strong {
  display: block;
  color: var(--green-2);
  font-size: 2.2rem;
  letter-spacing: 0;
}

.allocation-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 216, 0.68);
  font-weight: 850;
}

.roadmap-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.roadmap-line::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 255, 0, 0.40), transparent);
}

.roadmap-item {
  min-height: 260px;
}

.community-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(191, 255, 0, 0.18);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 215, 67, 0.14), transparent 26rem),
    radial-gradient(circle at 90% 90%, rgba(139, 255, 0, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.community-actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  border-top: 1px solid rgba(191, 255, 0, 0.16);
  color: rgba(255, 248, 216, 0.62);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(191, 255, 0, 0.42);
  background: linear-gradient(135deg, rgba(139, 255, 0, 0.25), rgba(255, 215, 67, 0.12));
  box-shadow: 0 0 30px rgba(139, 255, 0, 0.18);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--cream);
}

.footer-brand span {
  margin-top: 3px;
  font-size: 0.82rem;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: right;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 80;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 13px 18px;
  border-radius: 999px;
  color: #071306;
  background: var(--green);
  font-weight: 950;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
  transition: 220ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }
.delay-3 { transition-delay: 320ms; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 255, 0, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(139, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 255, 0, 0); }
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-18px) rotateX(2deg) rotateY(-4deg); }
}

@keyframes shine {
  0%, 62% { transform: translateX(-120%) skewX(-12deg); }
  84%, 100% { transform: translateX(120%) skewX(-12deg); }
}

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

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

@keyframes arrowDrift {
  0%, 100% { translate: 0 0; opacity: 0.86; }
  50% { translate: 14px -12px; opacity: 1; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes stickerDrift {
  0%, 100% { transform: rotate(-9deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-8px); }
}

@keyframes coinSpinFront {
  to { transform: rotateY(360deg); }
}

@keyframes coinSpinBack {
  from { transform: rotateY(180deg); }
  to { transform: rotateY(540deg); }
}

@keyframes morph {
  0%, 100% { border-radius: 44% 56% 66% 34% / 36% 42% 58% 64%; transform: rotate(0deg); }
  50% { border-radius: 62% 38% 38% 62% / 58% 34% 66% 42%; transform: rotate(14deg); }
}

@keyframes pulseBlob {
  0%, 100% { transform: scale(0.96); opacity: 0.68; }
  50% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 1040px) {
  :root {
    --page-pad: 32px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    display: grid;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(3, 15, 4, 0.94);
    backdrop-filter: blur(20px);
  }

  .site-header.nav-open .site-nav a {
    padding: 15px 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    padding-top: 70px;
    gap: 34px;
    text-align: left;
  }

  .hero-visual {
    min-height: 500px;
    order: 0;
  }

  .hero-content {
    display: block;
    order: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .stats-grid,
  .steps,
  .allocation-grid,
  .roadmap-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .lore-layout,
  .details-card,
  .community-card {
    grid-template-columns: 1fr;
  }

  .token-wheel {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .community-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
    gap: 22px;
    text-align: center;
  }

  .hero-visual {
    min-height: 500px;
    order: 0;
  }

  .hero-content {
    display: grid;
    justify-items: center;
    order: 1;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 28px;
  }

  .section-shell,
  .site-footer {
    width: min(100% - var(--page-pad), var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 10px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 48px;
    gap: 18px;
  }

  .hero h1 {
    font-size: 3.35rem;
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .community-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .contract-card {
    align-items: stretch;
    flex-direction: column;
    text-align: left;
  }

  .contract-card strong {
    overflow-wrap: anywhere;
  }

  .copy-contract {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-art {
    width: min(100%, 390px);
    border-radius: 20px;
  }

  .hero-content {
    padding-top: 8px;
  }

  .hero-sticker {
    width: min(30%, 110px);
    bottom: -2%;
    left: -4%;
  }

  .moon-glow {
    width: 330px;
    height: 330px;
  }

  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 270px; height: 270px; }
  .arrow { display: none; }
  .trend-line { width: 88%; right: -8%; bottom: 14%; }
  .market-signal { top: 12px; right: 0; transform: rotate(2deg) scale(0.82); transform-origin: top right; }
  .candle-stack { right: 13%; bottom: 14%; transform: rotate(-7deg) scale(0.78); transform-origin: bottom right; }
  .hero-badge {
    padding: 9px 11px;
    font-size: 0.62rem;
    max-width: 44%;
    white-space: normal;
    text-align: center;
  }
  .badge-top { top: 24px; left: 0; }
  .badge-bottom { bottom: 28px; right: 0; }

  .stats-grid,
  .steps,
  .lore-layout,
  .allocation-grid,
  .roadmap-line {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    padding-top: 58px;
  }

  .lore,
  .how-to-buy,
  .details,
  .about,
  .roadmap,
  .community {
    padding: 64px 0;
  }

  .section-heading h2,
  .details-copy h2,
  .about-card h2,
  .community-card h2 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .details-card,
  .community-card {
    padding: 28px;
    border-radius: 26px;
  }

  .coin-3d {
    top: -20px;
    left: 24px;
    width: 62px;
    height: 62px;
  }

  .coin-back {
    font-size: 0.62rem;
  }

  .token-tags span {
    width: 100%;
    border-radius: 16px;
  }

  .token-wheel {
    width: min(100%, 300px);
  }

  .roadmap-line::before {
    display: none;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}

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

/* Narrative add-ons inspired by the tokenized self-belief lore */
.chant-wall {
  position: relative;
  overflow: hidden;
  padding: 48px 0 26px;
  border-bottom: 1px solid rgba(191, 255, 0, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 255, 0, 0.13), transparent 34rem),
    rgba(0, 0, 0, 0.08);
}

.chant-wall::before,
.chant-wall::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20vw;
  z-index: 2;
  pointer-events: none;
}

.chant-wall::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}

.chant-wall::after {
  right: 0;
  background: linear-gradient(270deg, var(--dark), transparent);
}

.chant-track {
  display: flex;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.chant-track span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 255, 0, 0.44);
  font-size: clamp(3rem, 5.5rem, 8.5rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chant-track-two {
  margin-top: 16px;
  animation: marqueeReverse 32s linear infinite;
}

.chant-track-one {
  animation: marquee 30s linear infinite;
}

.chant-track-two span {
  -webkit-text-stroke-color: rgba(255, 215, 67, 0.38);
}

.about-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  padding: 42px;
  border: 1px solid rgba(191, 255, 0, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 215, 67, 0.12), transparent 26rem),
    radial-gradient(circle at 100% 100%, rgba(139, 255, 0, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.about-card h2 {
  font-size: clamp(2.8rem, 4rem, 5.6rem);
}

.about-copy {
  align-self: end;
}

.about-copy p:first-child {
  margin-top: 0;
}

@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1040px) {
  .about-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-card {
    padding: 28px;
    border-radius: 26px;
  }

  .chant-wall {
    padding: 34px 0 18px;
  }

  .chant-track span {
    font-size: 3rem;
  }
}
