/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ===================== TOKENS ===================== */
:root {
  --sky-1: #7CC8FF;
  --sky-2: #A8DBFF;
  --sky-3: #C5E7FF;
  --grass-1: #6FBE3D;
  --grass-2: #4EA025;
  --grass-3: #3B7E1A;
  --cloud: #FFFFFF;
  --cow-pink: #F4A6B0;
  --cow-pink-dark: #E37C8C;
  --barn-red: #D6362E;
  --barn-red-dark: #A8231D;
  --sun: #FFD24A;
  --sun-glow: #FFB700;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --paper: #FFF8E7;
  --hot-pink: #FF4DA6;
  --acid-yellow: #FFE600;
  --acid-green: #A4FF4D;
  --neon-purple: #B14DFF;
  --orange: #FF7A1A;
  --shadow: 0 6px 0 rgba(17,17,17,0.85);
  --shadow-lg: 0 10px 0 rgba(17,17,17,0.85);
  --radius: 18px;
}

body {
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 50%, var(--sky-3) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

/* ===================== SKY + CLOUDS ===================== */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.sun {
  position: absolute;
  top: 60px;
  right: 8%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFE787 0%, var(--sun) 50%, var(--sun-glow) 100%);
  box-shadow:
    0 0 80px rgba(255, 210, 74, 0.6),
    0 0 160px rgba(255, 183, 0, 0.4),
    0 6px 0 rgba(17,17,17,0.7);
  animation: sun-pulse 4s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.cloud {
  position: absolute;
  background: var(--cloud);
  border-radius: 100px;
  filter: drop-shadow(0 4px 0 rgba(17,17,17,0.5));
  opacity: 0.9;
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: var(--cloud);
  border-radius: 50%;
}
.cloud-1 { width: 120px; height: 36px; top: 12%; left: -150px; animation: drift 60s linear infinite; }
.cloud-1::before { width: 60px; height: 60px; top: -28px; left: 18px; }
.cloud-1::after  { width: 44px; height: 44px; top: -22px; left: 60px; }

.cloud-2 { width: 180px; height: 48px; top: 28%; left: -200px; animation: drift 90s linear infinite; animation-delay: -15s; }
.cloud-2::before { width: 80px; height: 80px; top: -40px; left: 30px; }
.cloud-2::after  { width: 60px; height: 60px; top: -32px; left: 90px; }

.cloud-3 { width: 100px; height: 30px; top: 45%; left: -120px; animation: drift 75s linear infinite; animation-delay: -30s; }
.cloud-3::before { width: 50px; height: 50px; top: -24px; left: 14px; }
.cloud-3::after  { width: 40px; height: 40px; top: -20px; left: 50px; }

.cloud-4 { width: 160px; height: 40px; top: 62%; left: -180px; animation: drift 110s linear infinite; animation-delay: -50s; }
.cloud-4::before { width: 70px; height: 70px; top: -36px; left: 24px; }
.cloud-4::after  { width: 56px; height: 56px; top: -30px; left: 80px; }

.cloud-5 { width: 140px; height: 38px; top: 78%; left: -160px; animation: drift 85s linear infinite; animation-delay: -65s; }
.cloud-5::before { width: 64px; height: 64px; top: -32px; left: 22px; }
.cloud-5::after  { width: 48px; height: 48px; top: -26px; left: 70px; }

.cloud-6 { width: 110px; height: 34px; top: 92%; left: -140px; animation: drift 95s linear infinite; animation-delay: -80s; }
.cloud-6::before { width: 54px; height: 54px; top: -26px; left: 16px; }
.cloud-6::after  { width: 42px; height: 42px; top: -22px; left: 56px; }

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 250px)); }
}

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 4px 0 rgba(17,17,17,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bungee', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  object-fit: cover;
}
.nav-logo-text {
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}
.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--hot-pink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--hot-pink);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Bungee', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(17,17,17,0.85);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(17,17,17,0.85);
}
.btn-primary {
  background: var(--hot-pink);
  color: white;
}
.btn-secondary {
  background: var(--cloud);
  color: var(--ink);
}
.btn-xl {
  font-size: 1.2rem;
  padding: 18px 32px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 64px 24px 220px;
  text-align: center;
  overflow: hidden;
}
.hero-grass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--grass-1) 30%, var(--grass-2) 100%);
  z-index: 0;
}
.hero-grass::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 24px;
  background:
    radial-gradient(circle at 10px 24px, var(--grass-1) 8px, transparent 9px),
    radial-gradient(circle at 30px 24px, var(--grass-1) 10px, transparent 11px),
    radial-gradient(circle at 50px 24px, var(--grass-1) 7px, transparent 8px),
    radial-gradient(circle at 70px 24px, var(--grass-1) 11px, transparent 12px),
    radial-gradient(circle at 90px 24px, var(--grass-1) 9px, transparent 10px);
  background-size: 100px 24px;
  background-repeat: repeat-x;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  background: var(--cloud);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 0 rgba(17,17,17,0.85);
}

.hero-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  margin: 0;
  letter-spacing: -0.01em;
  animation: title-pop 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  color: var(--cloud);
  -webkit-text-stroke: 6px var(--ink);
  text-shadow: 10px 10px 0 var(--ink);
}
.hero-title-dollar {
  display: inline-block;
  color: var(--acid-green);
  animation: dollar-spin 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes dollar-spin {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.08); }
}
@keyframes title-pop {
  0% { opacity: 0; transform: translateY(40px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-subtitle {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.2rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  margin: 56px auto 8px;
  color: var(--ink);
  position: relative;
  z-index: 4;
  max-width: 18ch;
  line-height: 1.15;
  background: var(--cloud);
  display: inline-block;
  padding: 6px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-tagline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  margin: 0 0 36px;
  color: var(--ink-soft);
}
.tag-strike {
  position: relative;
  display: inline-block;
  color: var(--barn-red);
}
.tag-strike::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 55%;
  height: 4px;
  background: var(--barn-red);
  border-radius: 4px;
  transform: rotate(-3deg);
  display: none;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--acid-green);
  font-family: 'Bungee', sans-serif;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 var(--hot-pink);
  cursor: pointer;
  margin-bottom: 36px;
  transition: transform 0.15s;
  max-width: 100%;
  overflow: hidden;
}
.ca-chip:hover {
  transform: translateY(-2px);
}
.ca-chip.copied {
  background: var(--acid-green);
  color: var(--ink);
}
.ca-label { color: var(--cow-pink); }
.ca-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  background: var(--hot-pink);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.stat {
  background: var(--cloud);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px 12px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}
.stat:nth-child(2n) { transform: rotate(1.5deg); background: var(--acid-yellow); }
.stat:nth-child(3n) { transform: rotate(-2deg); background: var(--cow-pink); }
.stat:nth-child(4n) { transform: rotate(2deg); background: var(--acid-green); }
.stat-num {
  font-family: 'Bungee', sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.stat-label {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-top: 6px;
  color: var(--ink-soft);
}

/* ===================== FLOATING COWS ===================== */
.floating-cow {
  position: absolute;
  bottom: 60px;
  width: 180px;
  z-index: 3;
  pointer-events: none;
}
.floating-cow img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-lg);
  background: var(--sky-2);
}
.floating-cow-left {
  left: 4%;
  animation: cow-bounce-l 3s ease-in-out infinite;
}
.floating-cow-right {
  right: 4%;
  animation: cow-bounce-r 3s ease-in-out infinite;
  transform: scaleX(-1);
}
@keyframes cow-bounce-l {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-20px) rotate(6deg); }
}
@keyframes cow-bounce-r {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(-6deg); }
  50% { transform: scaleX(-1) translateY(-20px) rotate(6deg); }
}

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--ink);
  color: var(--acid-yellow);
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
  font-family: 'Bungee', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  padding: 0 32px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== SECTION SHARED ===================== */
.eyebrow {
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--hot-pink);
  margin: 0 0 12px;
}
.eyebrow.centered { text-align: center; }
.eyebrow.light { color: var(--acid-yellow); }
.section-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--cloud); }
.section-title em {
  font-style: italic;
  color: var(--hot-pink);
}
.section-sub {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}
.section-sub.centered { text-align: center; }
.rainbow {
  background: linear-gradient(90deg, #FF4DA6, #FFE600, #6FBE3D, #7CC8FF, #B14DFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}

/* ===================== TREND SECTION ===================== */
.trend {
  position: relative;
  background: linear-gradient(180deg, var(--grass-2) 0%, var(--grass-3) 100%);
  padding: 100px 0 120px;
  color: var(--cloud);
}
.trend .eyebrow { color: var(--acid-yellow); }
.trend .section-title { color: var(--cloud); }
.trend .section-title em { color: var(--acid-yellow); font-style: normal; }

.trend-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.trend-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.trend-text .lede {
  font-size: 1.3rem;
  font-weight: 600;
}
.trend-text strong { color: var(--acid-yellow); }
.trend-text em { color: var(--acid-green); font-style: normal; font-weight: 700; }

.trend-stats {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trend-stat {
  background: rgba(0,0,0,0.25);
  border: 2px solid var(--cloud);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
}
.trend-stat span {
  font-family: 'Bungee', sans-serif;
  color: var(--acid-yellow);
  font-size: 1.2rem;
  margin-right: 8px;
}

.mascot-frame {
  position: relative;
  background: var(--cloud);
  border: 5px solid var(--ink);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}
.mascot-frame:hover { transform: rotate(0); }
.mascot-frame img {
  border-radius: 16px;
  border: 3px solid var(--ink);
}
.mascot-bubble {
  position: absolute;
  top: -30px;
  right: -40px;
  background: var(--acid-yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.4rem;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 6px 6px 0 var(--ink);
  animation: bubble-pop 2s ease-in-out infinite;
}
@keyframes bubble-pop {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.06); }
}

/* ===================== COMMENTS WALL ===================== */
.comments-wall {
  background: linear-gradient(180deg, #f7f1ff 0%, #fff8e7 100%);
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
}
.comments-wall .hl-pink {
  background: var(--hot-pink);
  color: white;
  padding: 0 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-2deg);
}
.comments-stage {
  position: relative;
  height: 640px;
  margin-top: 30px;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.comment-card {
  position: absolute;
  background: var(--cloud);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
  max-width: 280px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: bob 6s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comment-card:hover {
  z-index: 10;
  transform: translateY(-4px) rotate(0) scale(1.04) !important;
  box-shadow: 8px 8px 0 var(--hot-pink);
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}
.comment-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--acid-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', sans-serif;
  font-size: 0.8rem;
  overflow: hidden;
}
.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-body {
  flex: 1;
  min-width: 0;
}
.comment-user {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.comment-user .verified {
  color: #20D5EC;
  font-size: 0.85rem;
}
.comment-text {
  color: var(--ink);
  font-weight: 500;
}
.comment-meta {
  font-size: 0.7rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 4px;
  display: flex;
  gap: 10px;
}
.comment-meta .heart {
  color: var(--hot-pink);
}

/* tilted color variants */
.comment-card.c-pink   { background: var(--cow-pink); }
.comment-card.c-yellow { background: var(--acid-yellow); }
.comment-card.c-green  { background: var(--acid-green); }
.comment-card.c-blue   { background: var(--sky-3); }
.comment-card.c-orange { background: var(--orange); color: white; }
.comment-card.c-orange .comment-user, .comment-card.c-orange .comment-meta { color: white; opacity: 0.9; }
.comment-card.c-purple { background: var(--neon-purple); color: white; }
.comment-card.c-purple .comment-user, .comment-card.c-purple .comment-meta { color: white; opacity: 0.9; }
.comment-card.c-dark   { background: var(--ink); color: var(--cloud); }
.comment-card.c-dark .comment-user, .comment-card.c-dark .comment-meta { color: var(--cloud); opacity: 0.85; }
.comment-card.c-dark .comment-text { color: var(--acid-yellow); }

@media (max-width: 900px) {
  .comments-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }
  .comment-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100%;
    transform: none !important;
    animation: none;
  }
}

/* ===================== ARCHIVE ===================== */
.archive {
  background: var(--paper);
  padding: 100px 0 120px;
  position: relative;
}
.archive::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 30px;
  background: radial-gradient(circle at 15px 0, var(--paper) 14px, transparent 15px);
  background-size: 30px 30px;
}

.year-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.year-tab {
  font-family: 'Bungee', sans-serif;
  font-size: 1.1rem;
  background: var(--cloud);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 0.12s, background 0.2s, color 0.2s;
}
.year-tab:hover {
  transform: translateY(-2px);
}
.year-tab.active {
  background: var(--ink);
  color: var(--acid-yellow);
  box-shadow: 0 4px 0 var(--hot-pink);
}

.year-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.month-card {
  background: var(--cloud);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.month-card:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
  box-shadow: 14px 14px 0 var(--ink);
}
.month-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--hot-pink);
  color: white;
  border-bottom: 4px solid var(--ink);
}
.month-card-month {
  font-family: 'Bungee', sans-serif;
  font-size: 1.1rem;
}
.month-card-year {
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  background: var(--ink);
  color: var(--acid-yellow);
  padding: 4px 10px;
  border-radius: 999px;
}
.month-card-video {
  position: relative;
  aspect-ratio: 9 / 16;
  background:
    linear-gradient(135deg, var(--sky-2) 0%, var(--sky-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.month-card-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.month-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--ink);
  width: 100%;
  height: 100%;
}
.month-card-placeholder img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  margin-bottom: 12px;
  animation: cow-wobble 2.5s ease-in-out infinite;
}
@keyframes cow-wobble {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
.month-card-placeholder .ph-title {
  font-family: 'Bungee', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.month-card-placeholder .ph-sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.4;
}
.month-card-placeholder .ph-link {
  background: var(--ink);
  color: var(--acid-yellow);
  font-family: 'Bungee', sans-serif;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.month-card-placeholder .ph-link:hover {
  background: var(--hot-pink);
  color: white;
}
.month-card-meta {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--paper);
  border-top: 3px solid var(--ink);
}
.month-card-meta .meta-views {
  color: var(--hot-pink);
}

/* ===================== TOKENOMICS ===================== */
.tokenomics {
  background: linear-gradient(180deg, #2a1d4d 0%, #5b2a8c 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.tokenomics::before, .tokenomics::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--acid-green) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
}
.tokenomics::before { top: 20%; left: -50px; }
.tokenomics::after { bottom: 10%; right: -50px; background: radial-gradient(circle, var(--hot-pink) 0%, transparent 70%); }

.tok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.tok-card {
  background: var(--cloud);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.tok-card:hover { transform: translateY(-6px); }
.tok-card-1 { background: var(--acid-yellow); transform: rotate(-2deg); }
.tok-card-2 { background: var(--orange); transform: rotate(1.5deg); color: white; }
.tok-card-3 { background: var(--acid-green); transform: rotate(-1deg); }
.tok-card-4 { background: var(--cow-pink); transform: rotate(2deg); }
.tok-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
  line-height: 1;
}
.tok-num {
  font-family: 'Bungee', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
  word-break: keep-all;
  line-height: 1.1;
}
.tok-card-1 .tok-num { font-size: 1.05rem; letter-spacing: -0.02em; }
.tok-label {
  font-family: 'Bungee', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.8;
}
.tok-note {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ===================== HOW TO BUY ===================== */
.buy {
  background: linear-gradient(180deg, var(--sky-3) 0%, var(--cloud) 100%);
  padding: 100px 0 120px;
}
.buy .hl {
  background: var(--acid-yellow);
  padding: 0 8px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  display: inline-block;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 50px 0 40px;
}
.step {
  background: var(--cloud);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.step:hover { transform: translateY(-4px); }
.step:nth-child(1) { background: var(--cow-pink); }
.step:nth-child(2) { background: var(--acid-yellow); }
.step:nth-child(3) { background: var(--acid-green); }
.step:nth-child(4) { background: var(--hot-pink); color: white; }
.step-num {
  font-family: 'Bungee', sans-serif;
  font-size: 2.5rem;
  position: absolute;
  top: 12px; right: 16px;
  opacity: 0.25;
}
.step h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.buy-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ===================== FLYWHEEL ===================== */
.flywheel-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  padding: 100px 0 120px;
  color: var(--cloud);
  overflow: hidden;
}
.flywheel-section .light-sub {
  color: rgba(255,255,255,0.7);
}
.hl-acid {
  background: var(--acid-green);
  color: var(--ink);
  padding: 0 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-2deg);
}

.flywheel {
  position: relative;
  width: 720px;
  height: 720px;
  max-width: 100%;
  margin: 60px auto 0;
}
.flywheel-ring {
  position: absolute;
  inset: 60px;
  border: 4px dashed rgba(255,255,255,0.18);
  border-radius: 50%;
  animation: ring-spin 60s linear infinite;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.flywheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: var(--cloud);
  border: 5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px var(--acid-green),
    0 0 0 12px var(--ink),
    0 12px 0 var(--ink);
  z-index: 2;
}
.flywheel-hub img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  margin-bottom: 6px;
}
.flywheel-hub-text {
  font-family: 'Bungee', sans-serif;
  font-size: 1.3rem;
  color: var(--ink);
}

.flywheel-node {
  position: absolute;
  width: 220px;
  background: var(--cloud);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
  z-index: 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.flywheel-node:hover {
  transform: translate(-2px, -2px) scale(1.04);
  z-index: 4;
}
.fw-num {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--ink);
  color: var(--acid-green);
  font-family: 'Bungee', sans-serif;
  font-size: 0.85rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--acid-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-icon {
  font-size: 2.4rem;
  margin-bottom: 4px;
  line-height: 1;
}
.flywheel-node h3 {
  font-family: 'Bungee', sans-serif;
  font-size: 1rem;
  margin: 4px 0 6px;
  letter-spacing: 0.02em;
}
.flywheel-node p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Position 5 nodes around the circle (clock: 12, 2:24, 4:48, 7:12, 9:36) */
.fw-1 { top: 0;       left: 50%;   transform: translate(-50%, 0); }
.fw-2 { top: 32%;     right: 0;    transform: translate(0, -10%); }
.fw-3 { bottom: 0;    right: 8%; }
.fw-4 { bottom: 0;    left: 8%; }
.fw-5 { top: 32%;     left: 0;     transform: translate(0, -10%); }

/* Color accents per node */
.fw-1 { box-shadow: 6px 6px 0 var(--acid-yellow); }
.fw-2 { box-shadow: 6px 6px 0 var(--hot-pink); }
.fw-3 { box-shadow: 6px 6px 0 var(--acid-green); }
.fw-4 { box-shadow: 6px 6px 0 var(--orange); }
.fw-5 { box-shadow: 6px 6px 0 var(--neon-purple); }

@media (max-width: 900px) {
  .flywheel {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .flywheel-ring { display: none; }
  .flywheel-hub {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 160px;
    height: 160px;
    order: -1;
    margin-bottom: 10px;
  }
  .flywheel-hub img { width: 70px; height: 70px; }
  .flywheel-hub-text { font-size: 1.1rem; }
  .flywheel-node {
    position: relative;
    inset: auto !important;
    transform: none !important;
    width: min(320px, 100%);
  }
  .flywheel-node:hover { transform: translate(-2px, -2px) !important; }
  .flywheel-node::after {
    content: '↓';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    color: var(--acid-green);
    font-weight: 900;
  }
  .flywheel-node.fw-5::after {
    content: '↺';
    color: var(--acid-yellow);
  }
}

/* ===================== COMMUNITY ===================== */
.community {
  background:
    radial-gradient(ellipse at top, var(--sky-2) 0%, var(--grass-1) 100%);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
}
.community-title {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0 0 12px;
  color: var(--cloud);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
}
.community-sub {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 36px;
  text-shadow: 2px 2px 0 var(--cloud);
}
.community-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.comm-btn {
  font-family: 'Bungee', sans-serif;
  background: var(--cloud);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 var(--ink);
  font-size: 1rem;
  transition: transform 0.12s, box-shadow 0.12s;
}
.comm-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.comm-x  { background: var(--ink); color: var(--cloud); }
.comm-tt { background: var(--hot-pink); color: white; }
.comm-ds { background: var(--acid-green); color: var(--ink); }
.comm-soon {
  cursor: not-allowed;
  opacity: 0.85;
}
.comm-soon:hover {
  transform: none;
  box-shadow: 0 6px 0 var(--ink);
}
.comm-soon em {
  font-style: normal;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  letter-spacing: 0.06em;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: var(--cloud);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 3px solid var(--cloud);
}
.footer-logo {
  font-family: 'Bungee', sans-serif;
  font-size: 1.5rem;
  color: var(--acid-yellow);
}
.footer-tag {
  font-size: 0.85rem;
  color: var(--cow-pink);
}
.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .floating-cow { width: 100px; bottom: 20px; }
  .floating-cow-left { left: 0; }
  .floating-cow-right { right: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trend-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title {
    -webkit-text-stroke: 3px var(--ink);
    background-size: 140px 140px;
    filter: drop-shadow(5px 5px 0 var(--ink));
  }
  .hero-subtitle { margin-top: 32px; }
  .mascot-bubble {
    width: 100px; height: 100px;
    font-size: 1.1rem;
    top: -20px; right: -20px;
  }
}
@media (max-width: 540px) {
  .nav { padding: 10px 14px; gap: 10px; }
  .nav-cta { font-size: 0.8rem; padding: 10px 14px; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo img { width: 36px; height: 36px; }
  .hero { padding: 40px 16px 140px; }
  .floating-cow { display: none; }
  .badge-row { gap: 6px; margin-bottom: 18px; }
  .badge { font-size: 0.65rem; padding: 5px 10px; }
  .hero-title {
    background-size: 100px 100px;
    -webkit-text-stroke: 2.5px var(--ink);
    filter: drop-shadow(4px 4px 0 var(--ink));
  }
  .hero-subtitle { margin-top: 24px; font-size: 1.4rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 24px; }
  .hero-cta-row { gap: 10px; }
  .btn-xl { font-size: 1rem; padding: 14px 22px; }
  .ca-chip { font-size: 0.7rem; padding: 8px 12px; gap: 8px; max-width: calc(100vw - 40px); }
  .ca-value { font-size: 0.7rem; }
  .ca-copy { font-size: 0.65rem; padding: 3px 8px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 14px 8px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.6rem; }
  .marquee { font-size: 1rem; padding: 14px 0; }
  .section-title { font-size: 1.8rem; }
  .trend, .archive, .tokenomics, .buy, .roadmap, .community, .comments-wall { padding: 60px 0 70px; }
  .trend-text .lede { font-size: 1.1rem; }
  .trend-text p { font-size: 1rem; }
  .mascot-frame { padding: 12px; }
  .mascot-bubble { width: 80px; height: 80px; font-size: 0.9rem; top: -16px; right: -10px; }
  .year-tab { font-size: 0.9rem; padding: 8px 16px; }
  .year-panel { gap: 16px; }
  .month-card { border-width: 3px; }
  .tok-grid, .steps, .phase-grid { gap: 16px; }
  .tok-card, .step, .phase { padding: 22px 18px; }
  .tok-num { font-size: 1.3rem; }
  .tok-card-1 .tok-num { font-size: 1rem; }
  .buy-cta-wrap { flex-direction: column; align-items: center; }
  .community-title { font-size: 2.5rem; -webkit-text-stroke: 2px var(--ink); text-shadow: 3px 3px 0 var(--ink); }
  .comm-btn { font-size: 0.85rem; padding: 12px 18px; }
  .footer-disclaimer { font-size: 0.75rem; }
  .marquee-track { animation-duration: 30s; }
}
