:root {
  --moss-950: #061208;
  --moss-900: #0c1c0f;
  --moss-800: #14301a;
  --moss-700: #1f4726;
  --clover: #5f9a3a;
  --clover-bright: #7ec24f;
  --dew: #e8f5dc;
  --snow: #f7fff2;
  --pink: #f3b8b8;
  --pink-deep: #e48a8a;
  --gold: #f0c56d;
  --gold-soft: #ffe6a8;
  --ink: #102016;
  --glass: rgba(232, 245, 220, 0.08);
  --glass-border: rgba(232, 245, 220, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-bull: "Lilita One", system-ui, sans-serif;
  --font-script: "Berkshire Swash", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dew);
  background: var(--moss-950);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

/* Atmosphere */
#frost-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.meadow-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%, rgba(126, 194, 79, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(240, 197, 109, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(243, 184, 184, 0.1), transparent 55%),
    linear-gradient(180deg, #07150b 0%, #0d2212 40%, #0a1a0e 100%);
  animation: meadowPulse 12s ease-in-out infinite alternate;
}

@keyframes meadowPulse {
  0% { filter: saturate(1) brightness(1); }
  100% { filter: saturate(1.15) brightness(1.05); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.nav,
main,
footer,
.toast {
  position: relative;
  z-index: 5;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
  background: rgba(6, 18, 8, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
  z-index: 50;
}

.nav.scrolled {
  border-bottom-color: var(--glass-border);
  background: rgba(6, 18, 8, 0.82);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

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

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(126, 194, 79, 0.45);
  box-shadow: 0 0 20px rgba(126, 194, 79, 0.35);
  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% { box-shadow: 0 0 16px rgba(126, 194, 79, 0.3), 0 0 0 0 rgba(243, 184, 184, 0.2); }
  50% { box-shadow: 0 0 28px rgba(126, 194, 79, 0.55), 0 0 40px rgba(243, 184, 184, 0.25); }
}

.nav-word {
  font-family: var(--font-bull);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--snow);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.78;
  position: relative;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clover-bright), var(--gold));
  transition: width 0.35s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(126, 194, 79, 0.1);
  border: 1px solid rgba(126, 194, 79, 0.28);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  transition: filter 0.3s, transform 0.3s;
}

.icon-btn:hover {
  transform: translateY(-3px) scale(1.06);
  background: rgba(240, 197, 109, 0.16);
  border-color: rgba(240, 197, 109, 0.55);
  box-shadow: 0 8px 22px rgba(240, 197, 109, 0.18);
}

.icon-btn:hover img {
  filter: brightness(1.15) saturate(1.1);
  transform: scale(1.08);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--snow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Shared */
.eyebrow {
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.2rem, 5vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title {
  font-family: var(--font-bull);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--snow);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.accent-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(243, 184, 184, 0.35);
}

.section-sub {
  margin-top: 1rem;
  color: rgba(232, 245, 220, 0.72);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-bull);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, border-color 0.35s;
  border: 2px solid transparent;
}

.btn-ico {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.btn-primary .btn-ico {
  filter: brightness(0) saturate(100%) invert(12%) sepia(28%) saturate(700%) hue-rotate(78deg);
}

.btn-ghost .btn-ico {
  filter: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clover-bright), #4e8a2e 55%, var(--gold) 160%);
  color: var(--moss-950);
  box-shadow:
    0 12px 30px rgba(94, 154, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 18px 40px rgba(94, 154, 58, 0.5),
    0 0 40px rgba(240, 197, 109, 0.25);
}

.btn-ghost {
  background: rgba(232, 245, 220, 0.06);
  border-color: var(--glass-border);
  color: var(--snow);
}

.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 197, 109, 0.55);
  background: rgba(240, 197, 109, 0.1);
}

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

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

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 5vw, 3.5rem) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-orbit {
  position: absolute;
  width: min(70vw, 620px);
  height: min(70vw, 620px);
  right: -4%;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(243, 184, 184, 0.18), transparent 45%),
    radial-gradient(circle at 60% 60%, rgba(126, 194, 79, 0.2), transparent 50%);
  filter: blur(10px);
  animation: orbitDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes orbitDrift {
  from { transform: translate(-10px, 0) scale(1); }
  to { transform: translate(16px, 18px) scale(1.08); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.title-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--pink);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 40px rgba(243, 184, 184, 0.4);
  animation: softGlow 3.5s ease-in-out infinite alternate;
}

@keyframes softGlow {
  from { text-shadow: 0 0 20px rgba(243, 184, 184, 0.25); }
  to { text-shadow: 0 0 48px rgba(243, 184, 184, 0.55), 0 0 80px rgba(240, 197, 109, 0.2); }
}

.title-bull {
  font-family: var(--font-bull);
  font-size: clamp(3.4rem, 10vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--snow) 20%, var(--dew) 55%, var(--clover-bright) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.28));
}

.hero-ticker {
  margin: 1rem 0 1.25rem;
}

.ticker-chip {
  display: inline-block;
  font-family: var(--font-bull);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(126, 194, 79, 0.25), rgba(240, 197, 109, 0.2));
  border: 1px solid rgba(126, 194, 79, 0.45);
  color: var(--gold-soft);
  animation: chipPulse 2.8s ease-in-out infinite;
}

@keyframes chipPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-lede {
  max-width: 34rem;
  font-size: 1.12rem;
  color: rgba(232, 245, 220, 0.82);
  margin-bottom: 1.75rem;
}

.hero-lede strong {
  color: var(--gold-soft);
  font-weight: 800;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--glass-border);
  max-width: 100%;
}

.ca-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clover-bright);
}

.ca-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--snow);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(52vw, 320px);
}

.ca-copy {
  margin-left: auto;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(126, 194, 79, 0.2);
  border: 1px solid rgba(126, 194, 79, 0.4);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}

.ca-copy:hover {
  background: rgba(126, 194, 79, 0.35);
  transform: scale(1.05);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.stage-ring {
  position: absolute;
  width: min(88%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(126, 194, 79, 0.35);
  animation: spinSlow 28s linear infinite;
}

.stage-ring.delay {
  width: min(100%, 480px);
  border-style: solid;
  border-color: rgba(243, 184, 184, 0.2);
  animation-duration: 40s;
  animation-direction: reverse;
}

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

.hero-mascot {
  width: min(88%, 400px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  border: 3px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 10px rgba(126, 194, 79, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(240, 197, 109, 0.25);
  animation: mascotFloat 5s ease-in-out infinite, blobMorph 10s ease-in-out infinite;
  z-index: 2;
}

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

@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%; }
  33% { border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%; }
  66% { border-radius: 48% 52% 42% 58% / 58% 48% 52% 42%; }
}

.stage-shadow {
  position: absolute;
  bottom: 6%;
  width: 55%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(6px);
  z-index: 1;
  animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(0.85); opacity: 0.45; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-bull);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--snow);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 245, 220, 0.55);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(232, 245, 220, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  animation: cueDrop 1.6s ease-in-out infinite;
}

@keyframes cueDrop {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-visual {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.frame-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(126, 194, 79, 0.28), transparent 65%);
  filter: blur(20px);
  animation: meadowPulse 8s ease-in-out infinite alternate;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px 48px 28px 48px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: transform 0.6s var(--ease-out);
}

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

.story-block {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.story-block:first-child {
  padding-top: 0;
}

.story-block h3 {
  font-family: var(--font-bull);
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
  color: var(--gold-soft);
}

.story-block p {
  color: rgba(232, 245, 220, 0.78);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.about-pills span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(243, 184, 184, 0.12);
  border: 1px solid rgba(243, 184, 184, 0.35);
  color: var(--pink);
  transition: transform 0.3s, background 0.3s;
}

.about-pills span:hover {
  transform: translateY(-3px);
  background: rgba(243, 184, 184, 0.22);
}

.about-strip {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.strip-img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.about-strip blockquote {
  padding: 1.75rem;
  border-left: 4px solid var(--clover-bright);
  background: linear-gradient(135deg, rgba(126, 194, 79, 0.1), rgba(243, 184, 184, 0.08));
  border-radius: 0 20px 20px 0;
}

.about-strip blockquote p {
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--snow);
}

/* How to buy */
.howto {
  position: relative;
}

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

.step {
  position: relative;
  padding: 1.6rem 1.25rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(232, 245, 220, 0.07), rgba(232, 245, 220, 0.02));
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(circle, rgba(126, 194, 79, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 194, 79, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.step-num {
  font-family: var(--font-bull);
  font-size: 2.4rem;
  color: rgba(126, 194, 79, 0.28);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(126, 194, 79, 0.12);
  border: 1px solid rgba(126, 194, 79, 0.3);
  margin-bottom: 1rem;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.step:hover .step-icon {
  background: rgba(240, 197, 109, 0.14);
  border-color: rgba(240, 197, 109, 0.45);
  box-shadow: 0 0 20px rgba(126, 194, 79, 0.2);
}

.step-icon img {
  width: 28px;
  height: 28px;
}

.frost-mark {
  font-family: var(--font-bull);
  font-size: 1.6rem;
  color: var(--pink);
  background: rgba(243, 184, 184, 0.15) !important;
}

.step h3 {
  font-family: var(--font-bull);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--snow);
}

.step p {
  font-size: 0.95rem;
  color: rgba(232, 245, 220, 0.7);
}

.howto-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Chart */
.chart-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
  min-height: 560px;
}

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

/* Join */
.join-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  animation: bannerDrift 18s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.06) translateX(-1.5%); }
}

.banner-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 18, 8, 0.55) 100%);
  pointer-events: none;
}

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

.join-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.35rem 1.2rem;
  border-radius: 20px;
  background: rgba(232, 245, 220, 0.05);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s var(--ease-out), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.join-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 0.5rem;
  transition: transform 0.4s var(--ease-out), filter 0.35s;
  filter: drop-shadow(0 0 8px rgba(126, 194, 79, 0.25));
}

.join-card span {
  font-family: var(--font-bull);
  font-size: 1.2rem;
  color: var(--snow);
}

.join-card small {
  color: rgba(232, 245, 220, 0.55);
  font-weight: 700;
}

.join-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 197, 109, 0.45);
  background: rgba(240, 197, 109, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.join-card:hover img {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 0 14px rgba(240, 197, 109, 0.45)) brightness(1.1);
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem clamp(1.2rem, 5vw, 3.5rem) 3rem;
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-note {
  color: rgba(232, 245, 220, 0.5);
  font-size: 0.9rem;
  max-width: 420px;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(126, 194, 79, 0.1);
  border: 1px solid rgba(126, 194, 79, 0.28);
  transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.footer-socials a img {
  width: 18px;
  height: 18px;
  transition: filter 0.3s;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 197, 109, 0.55);
  background: rgba(240, 197, 109, 0.14);
  box-shadow: 0 8px 20px rgba(240, 197, 109, 0.15);
}

.footer-socials a:hover img {
  filter: brightness(1.15);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(16, 40, 22, 0.95);
  border: 1px solid rgba(126, 194, 79, 0.45);
  color: var(--snow);
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  z-index: 100;
  pointer-events: none;
}

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

/* Responsive */
@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-visual {
    position: relative;
    top: auto;
    max-width: 420px;
    margin: 0 auto;
  }

  .steps,
  .join-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stage {
    order: -1;
  }

  .hero-mascot {
    width: min(70%, 320px);
  }

  .hero-orbit {
    top: 8%;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6, 18, 8, 0.96);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(232, 245, 220, 0.06);
  }

  .burger {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .scroll-cue {
    display: none;
  }

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

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

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