/* ==============================
   CSS VARIABLES & RESET
   ============================== */
:root {
  --cream: #fdf6e3;
  --cream-2: #f5e8c8;
  --green-dark: #16240d;
  --green-deep: #1c2b12;
  --green: #4a7c2f;
  --green-mid: #6fa93a;
  --green-light: #a3d84a;
  --green-pale: #cdeeb0;
  --accent-pink: #ef7a9a;
  --accent-yellow: #f6d259;
  --accent-purple: #b87eff;
  --radius: 20px;
  --shadow: 0 10px 0 rgba(28, 43, 18, 0.9);
  --shadow-soft: 0 8px 32px rgba(28, 43, 18, 0.2);
  --glow-green: 0 0 40px rgba(163, 216, 74, 0.35);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--green-deep);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .brand span {
  font-family: 'Baloo 2', cursive;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   STARFIELD CANVAS
   ============================== */
#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* ==============================
   FLOATING UFOs
   ============================== */
.floating-ufo {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.3));
  animation: hover 6s ease-in-out infinite;
  pointer-events: none;
}
.ufo-1 { top: 160px; left: 5%; width: 65px; animation-delay: 0s; }
.ufo-2 { top: 100px; right: 7%; width: 105px; animation-delay: 1.3s; }
.ufo-3 { top: 640px; right: 11%; width: 55px; animation-delay: 2.6s; opacity: 0.8; }

@keyframes hover {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(22, 36, 13, 0.6);
  border-bottom: 1px solid rgba(163, 216, 74, 0.1);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(22, 36, 13, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: var(--cream-2);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--green-light); }
.main-nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 3px solid var(--green-deep);
  cursor: pointer;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-light);
  color: var(--green-deep);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  box-shadow: 0 12px 0 rgba(28, 43, 18, 0.9), var(--glow-green);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253, 246, 227, 0.6);
}
.btn-outline:hover {
  background: rgba(253, 246, 227, 0.1);
  border-color: var(--cream);
}

.btn-ghost {
  background: rgba(253, 246, 227, 0.1);
  color: var(--cream);
  border-color: rgba(253, 246, 227, 0.3);
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-ghost:hover {
  background: rgba(253, 246, 227, 0.2);
  border-color: rgba(253, 246, 227, 0.6);
}

.btn-block { width: 100%; }

/* ==============================
   BADGES & PILLS
   ============================== */
.badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 5px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  border: 2px solid var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.badge-center { display: block; width: fit-content; margin: 0 auto 16px; }

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 50%, #111 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%; height: 120%;
  background: radial-gradient(ellipse, rgba(163, 216, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { color: var(--cream); }

.eyebrow {
  display: inline-block;
  background: rgba(163, 216, 74, 0.12);
  border: 1px solid rgba(163, 216, 74, 0.4);
  color: var(--green-light);
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  margin-bottom: 20px;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .accent { color: var(--green-light); }

.hero-sub {
  max-width: 500px;
  color: rgba(253, 246, 227, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--green-light); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(163, 216, 74, 0.2);
  border-radius: 16px;
  padding: 16px 24px;
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(253, 246, 227, 0.6);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.stat-divider {
  width: 1px; height: 40px;
  background: rgba(163, 216, 74, 0.2);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stat text (non-animated) */
.stat-num-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

/* Hero NFT card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(163, 216, 74, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-nft-card {
  position: relative;
  background: linear-gradient(135deg, rgba(28, 43, 18, 0.8) 0%, rgba(22, 36, 13, 0.9) 100%);
  border: 2px solid rgba(163, 216, 74, 0.4);
  border-radius: 24px;
  padding: 20px;
  width: 300px;
  box-shadow: var(--shadow-soft), var(--glow-green);
  backdrop-filter: blur(10px);
  animation: float-card 4s ease-in-out infinite;
  transition: transform var(--transition);
}

.hero-nft-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: var(--shadow-soft), 0 0 60px rgba(163, 216, 74, 0.5);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-nft-img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(163, 216, 74, 0.3);
  background: rgba(163, 216, 74, 0.15);
}

.hero-nft-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(22, 36, 13, 0.9);
  border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-nft-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(163, 216, 74, 0.15);
}

.nft-name {
  color: var(--cream);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
}

.nft-trait {
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(163, 216, 74, 0.1);
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(163, 216, 74, 0.3);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(253, 246, 227, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  animation: fade-bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(6px); }
}

/* ==============================
   REVEAL ANIMATION
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==============================
   ABOUT SECTION
   ============================== */
.about {
  background: var(--cream);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 18px;
  color: var(--green-deep);
}

.about-text p {
  color: #3a4a2e;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* About tagline */
.about-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 24px 0 20px;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
}
.tagline-item {
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: 999px;
  border: 2px solid var(--green-deep);
  box-shadow: 0 3px 0 rgba(28,43,18,0.7);
}
.tagline-sep {
  color: var(--green-mid);
  font-size: 1.2rem;
}

.trait-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.pill {
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid rgba(28, 43, 18, 0.15);
  transition: transform var(--transition), background var(--transition);
}
.pill:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.about-card {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-mid) 100%);
  border: 4px solid var(--green-deep);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
  transition: transform var(--transition);
}
.about-card:hover { transform: translateY(-6px) rotate(1deg); }

.about-card-img {
  width: 100%;
  border-radius: 14px;
  drop-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform var(--transition);
}
.about-card:hover .about-card-img { transform: scale(1.03); }

.about-card-ribbon {
  position: absolute;
  top: -16px; right: 20px;
  background: var(--accent-yellow);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 999px;
  border: 2px solid var(--green-deep);
  font-family: 'Baloo 2', cursive;
}

/* ==============================
   COLLECTION SECTION
   ============================== */
.collection {
  background: var(--green-deep);
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--cream);
}

.section-sub {
  text-align: center;
  color: rgba(253, 246, 227, 0.7);
  max-width: 500px;
  margin: 0 auto 50px;
  font-size: 1rem;
}

/* Override for light sections */
.about .section-title,
.faq .section-title,
.roadmap .section-title { color: var(--green-deep); }
.about .section-sub,
.faq .section-sub,
.roadmap .section-sub { color: #3a4a2e; }
.faq .badge, .roadmap .badge { background: var(--green-light); }

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

.nft-card {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(163, 216, 74, 0.2);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.nft-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-light);
  box-shadow: var(--glow-green);
}

.nft-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(163, 216, 74, 0.15);
}

.nft-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nft-card:hover .nft-card-img-wrap img { transform: scale(1.08); }

/* Hue variations */
.nft-hue-1 { filter: hue-rotate(40deg) saturate(1.2); }
.nft-hue-2 { filter: hue-rotate(200deg) saturate(1.3); }
.nft-hue-3 { filter: hue-rotate(280deg) saturate(0.9); }

.nft-overlay {
  position: absolute;
  top: 10px; left: 10px;
}

.nft-rarity {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nft-rarity.legendary { background: var(--accent-yellow); color: var(--green-deep); }
.nft-rarity.epic { background: var(--accent-purple); color: #fff; }
.nft-rarity.rare { background: #60a5fa; color: #fff; }
.nft-rarity.common { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

.nft-card-info {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nft-id {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
}

.nft-trait-tag {
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(163, 216, 74, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(163, 216, 74, 0.3);
}

.collection-note {
  text-align: center;
  color: rgba(253, 246, 227, 0.5);
  margin-top: 30px;
  font-size: 0.9rem;
  font-style: italic;
}

/* NFT card — no trait tag, just ID centered */
.nft-card-info {
  padding: 12px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==============================
   ECOSYSTEM SECTION
   ============================== */
.ecosystem {
  background: var(--cream);
  padding: 100px 0;
}

.ecosystem .section-title { color: var(--green-deep); }
.ecosystem .section-sub { color: #3a4a2e; }
.ecosystem .badge { background: var(--green-light); }

.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 60px;
}

.flow-step {
  background: #fff;
  border: 2px solid rgba(163, 216, 74, 0.3);
  border-radius: 18px;
  padding: 20px 28px;
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.flow-step:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-soft), var(--glow-green);
}

.flow-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.flow-step h3 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.flow-step p {
  font-size: 0.88rem;
  color: #4a5a3e;
  margin: 0;
}

.flow-result {
  background: linear-gradient(135deg, rgba(163, 216, 74, 0.08), rgba(163, 216, 74, 0.02));
  border-color: var(--green-light);
}

.flow-arrow {
  font-size: 1.6rem;
  color: var(--green-mid);
  font-weight: 700;
  padding: 4px 0;
  line-height: 1;
}

.flow-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-mid);
  font-family: 'Baloo 2', cursive;
}

.split-pct {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.split-left .split-pct { color: #ef4444; }
.split-right .split-pct { color: var(--green-mid); }

.burn-icon { filter: none; }
.give-icon { filter: none; }

.split-left { border-color: rgba(239, 68, 68, 0.3); }
.split-left:hover { border-color: rgba(239, 68, 68, 0.7); box-shadow: var(--shadow-soft), 0 0 20px rgba(239,68,68,0.15); }

.split-right { border-color: rgba(163, 216, 74, 0.4); }

.loops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.loop-card {
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.loop-card.deflation {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border: 2px solid rgba(239, 68, 68, 0.25);
}

.loop-card.redistribution {
  background: linear-gradient(135deg, rgba(163, 216, 74, 0.08), #fff);
  border: 2px solid rgba(163, 216, 74, 0.3);
}

.loop-label {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deflation .loop-label { color: #dc2626; }
.redistribution .loop-label { color: var(--green); }

.loop-card p {
  font-size: 0.88rem;
  color: #4a5a3e;
  line-height: 1.7;
  margin: 0;
}

/* ==============================
   MINT INFO SECTION
   ============================== */
.mint-info {
  background: var(--green-deep);
  padding: 100px 0;
}

.mint-info .section-title { color: var(--cream); }
.mint-info .section-sub { color: rgba(253,246,227,0.7); }

.mint-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.mint-tier {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(163, 216, 74, 0.2);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mint-tier:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: var(--glow-green);
}

.mint-tier.gtd {
  border-color: var(--green-light);
  background: rgba(163, 216, 74, 0.06);
  position: relative;
}

.mint-tier.gtd::before {
  content: '⭐ Best Value';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: var(--green-deep);
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 999px;
  border: 2px solid var(--green-deep);
  white-space: nowrap;
}

.tier-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-badge {
  background: rgba(163, 216, 74, 0.15);
  border: 1px solid var(--green-light);
  color: var(--green-light);
  padding: 3px 12px;
  border-radius: 999px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.mint-tier.fcfs .tier-badge { background: rgba(96,165,250,0.1); border-color: #60a5fa; color: #60a5fa; }
.mint-tier.public .tier-badge { background: rgba(253,246,227,0.08); border-color: rgba(253,246,227,0.4); color: var(--cream-2); }

.tier-label {
  color: rgba(253,246,227,0.5);
  font-size: 0.78rem;
  font-weight: 600;
}

.tier-price {
  font-family: 'Baloo 2', cursive;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

.tier-price span {
  font-size: 1rem;
  color: rgba(253,246,227,0.5);
}

.mint-tier.public .tier-price { color: rgba(253,246,227,0.7); }

.tier-desc {
  color: rgba(253,246,227,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.tier-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tier-perks li {
  color: rgba(253,246,227,0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.tier-btn {
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Baloo 2', cursive;
  font-size: 0.9rem;
  background: transparent;
  color: rgba(253,246,227,0.4);
  border: 2px solid rgba(253,246,227,0.15);
  cursor: not-allowed;
}

.mint-note {
  text-align: center;
  color: rgba(253,246,227,0.55);
  font-size: 0.9rem;
}

.mint-note strong { color: var(--green-light); }
.mint-note a { color: var(--green-light); font-weight: 700; text-decoration: none; }
.mint-note a:hover { text-decoration: underline; }

/* ==============================
   ROADMAP SECTION
   ============================== */
.roadmap {
  background: var(--cream);
  padding: 100px 0;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), var(--green-pale), rgba(163, 216, 74, 0.1));
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  padding-left: 10px;
  position: relative;
}

.timeline-dot {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 3px solid rgba(163, 216, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Baloo 2', cursive;
  color: var(--green-deep);
  font-size: 0.9rem;
  z-index: 1;
  transition: all var(--transition);
}

.timeline-item.done .timeline-dot {
  background: var(--green-light);
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.timeline-item.active .timeline-dot {
  background: var(--green-light);
  border-color: var(--green-deep);
  box-shadow: 0 0 0 6px rgba(163, 216, 74, 0.2);
}

.timeline-dot.pulse {
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 4px rgba(163, 216, 74, 0.25); }
  50% { box-shadow: 0 0 0 12px rgba(163, 216, 74, 0.05); }
}

.timeline-content {
  padding: 20px 24px;
  background: #fff;
  border: 2px solid rgba(163, 216, 74, 0.2);
  border-radius: 16px;
  flex: 1;
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.timeline-item.active .timeline-content {
  border-color: var(--green-light);
  box-shadow: var(--shadow-soft), var(--glow-green);
}

.phase {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.timeline-content p {
  color: #4a5a3e;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==============================
   COUNTDOWN SECTION
   ============================== */
.countdown-section {
  background: var(--green-dark);
  padding: 70px 0;
}

.countdown-card {
  background: linear-gradient(135deg, rgba(163, 216, 74, 0.08) 0%, rgba(28, 43, 18, 0.5) 100%);
  border: 2px solid rgba(163, 216, 74, 0.25);
  border-radius: 28px;
  padding: 52px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.countdown-label {
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.countdown-title {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.tba-badge {
  display: inline-block;
  background: rgba(163, 216, 74, 0.08);
  border: 1px solid rgba(163, 216, 74, 0.25);
  color: rgba(253, 246, 227, 0.65);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 36px;
  line-height: 1.5;
}

.tba-badge a {
  color: var(--green-light);
  font-weight: 700;
  text-decoration: none;
}
.tba-badge a:hover { text-decoration: underline; }

.countdown-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.opensea-btn {
  border-color: rgba(253, 246, 227, 0.4);
}

/* ==============================
   WHITELIST SECTION
   ============================== */
.whitelist {
  background: var(--green-deep);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
}

.whitelist .section-title { color: var(--cream); }
.whitelist .section-sub { color: rgba(253, 246, 227, 0.7); }

.tasks {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 46px;
}

.task-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(253, 246, 227, 0.05);
  border: 2px solid rgba(163, 216, 74, 0.25);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--cream);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

a.task-card:hover {
  background: rgba(163, 216, 74, 0.1);
  border-color: var(--green-light);
  transform: translateX(4px);
}

.task-card.completed {
  border-color: var(--green-light);
  background: rgba(163, 216, 74, 0.12);
}

.task-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Baloo 2', cursive;
  font-size: 0.95rem;
}

.task-card.completed .task-icon {
  background: var(--green-light);
}

.task-text { flex: 1; }
.task-text h3 { margin-bottom: 4px; font-size: 1.02rem; }
.task-text p { color: rgba(253, 246, 227, 0.6); font-size: 0.88rem; margin: 0; }

.task-check { opacity: 0.2; font-weight: 800; font-size: 1.1rem; }
.task-card.completed .task-check { opacity: 1; color: var(--green-light); }

/* Form */
.wl-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--green-deep);
  border-radius: var(--radius);
  border: 3px solid var(--green-deep);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--green);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color var(--transition);
}

.input-wrap:focus-within { border-color: var(--green-deep); }

.input-prefix {
  padding: 12px 0 12px 14px;
  color: var(--green-mid);
  font-weight: 700;
}

.input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  padding: 12px 14px 12px 4px;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
}

.form-row input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid var(--green);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-row input[type="text"]:focus { border-color: var(--green-deep); }

.checkbox-row { display: flex; align-items: flex-start; }
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.4;
}
.checkbox-label input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--green); cursor: pointer; }

.wl-message {
  text-align: center;
  min-height: 22px;
  margin: 16px 0 0;
  font-weight: 700;
  font-size: 0.92rem;
}
.wl-message.success { color: var(--green); }
.wl-message.error { color: #c0392b; }

/* Disabled form elements */
.wl-form input:disabled {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(163, 216, 74, 0.3);
  color: rgba(28, 43, 18, 0.5);
  cursor: not-allowed;
}

.wl-form .input-wrap:has(input:disabled) {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(163, 216, 74, 0.3);
}

.wl-form button:disabled {
  background-color: rgba(163, 216, 74, 0.4);
  border-color: rgba(28, 43, 18, 0.3);
  color: rgba(28, 43, 18, 0.5);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* ==============================
   FAQ SECTION
   ============================== */
.faq {
  background: var(--cream);
  padding: 100px 0;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 2px solid rgba(163, 216, 74, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--green-light);
  box-shadow: var(--glow-green);
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
  font-family: 'Baloo 2', cursive;
  user-select: none;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-item[open] .faq-question { color: var(--green); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--green-mid);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-answer {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(163, 216, 74, 0.15);
}

.faq-answer p {
  color: #4a5a3e;
  font-size: 0.95rem;
  margin-top: 14px;
  line-height: 1.7;
}

/* ==============================
   MINT SECTION
   ============================== */
.mint {
  padding: 100px 0;
  text-align: center;
  background: var(--cream-2);
}

.mint-ufo {
  width: 120px;
  margin: 0 auto 12px;
  animation: hover 5s ease-in-out infinite;
}

.mint-inner { position: relative; }

.mint .section-title { color: var(--green-deep); }
.mint .section-sub { color: #4a5a3e; }

.btn-mint {
  background: var(--cream);
  color: var(--green-deep);
  flex-direction: column;
  gap: 3px;
  padding: 18px 46px;
  cursor: not-allowed;
  box-shadow: var(--shadow);
}
.btn-mint:hover { transform: none !important; }

.mint-strike {
  font-size: 1.3rem;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  opacity: 0.55;
}

.mint-tag {
  background: var(--accent-pink);
  color: var(--green-deep);
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 2px solid var(--green-deep);
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--green-dark);
  color: var(--cream-2);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(163, 216, 74, 0.1);
  margin-bottom: 28px;
}

.footer-brand .brand { display: inline-flex; }
.footer-brand .brand span { color: var(--cream); }

.footer-tagline {
  color: rgba(253, 246, 227, 0.5);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-nav, .footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav h4, .footer-socials h4 {
  color: var(--green-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.footer-nav a {
  color: rgba(253, 246, 227, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--green-light); }

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(253, 246, 227, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.social-link:hover { color: var(--green-light); }

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(253, 246, 227, 0.4);
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  opacity: 0.6;
}

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-stats {
    margin: 0 auto 36px;
    justify-content: center;
  }

  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .hero-visual { order: -1; }

  .hero-nft-card { width: 240px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .loops-grid { grid-template-columns: 1fr; }

  .mint-tiers { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(22, 36, 13, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(163, 216, 74, 0.15);
    padding: 12px 0;
  }

  .main-nav.open {
    display: flex;
    animation: slide-down 0.2s ease;
  }

  @keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav a {
    padding: 12px 24px;
    width: 100%;
  }
  .main-nav a::after { display: none; }

  .hamburger { display: flex; }

  .header-x { display: none; }

  .site-header { position: relative; }

  .floating-ufo { display: none; }

  .hero { min-height: unset; padding: 80px 0 60px; }

  .hero-stats {
    gap: 4px;
    padding: 14px 16px;
  }
  .stat-item { min-width: 60px; }
  .stat-num { font-size: 1.3rem; }

  .flow-split { grid-template-columns: 1fr; gap: 8px; }
  .split-divider { display: none; }
  .loops-grid { grid-template-columns: 1fr; }
  .mint-tiers { grid-template-columns: 1fr; }
  .mint-tier.gtd { margin-top: 14px; }

  .countdown-card { padding: 36px 20px; }
  .count-num { min-width: 70px; height: 70px; font-size: 2rem; }
  .count-sep { font-size: 1.8rem; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .wl-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-nft-card { width: 220px; }
  .timeline::before { left: 16px; }
  .timeline-dot { width: 34px; height: 34px; min-width: 34px; }
}
