/* ============================================
   FART BULL — Dark Brown Theme + Animations
   ============================================ */

:root {
  --brown-950: #0f0a07;
  --brown-900: #1a1008;
  --brown-850: #231609;
  --brown-800: #2e1e0f;
  --brown-700: #3d2814;
  --brown-600: #4b2c1d;
  --brown-500: #6b3f24;
  --brown-400: #8b5a2b;
  --orange-500: #d4782a;
  --orange-400: #e8943a;
  --green-toxic: #a2ad34;
  --green-glow: #7bc142;
  --green-dark: #3d4a18;
  --yellow-sick: #c4b832;
  --cream: #f5e6c8;
  --text: #e8dcc8;
  --text-muted: #a89070;
  --border: rgba(212, 120, 42, 0.2);
  --glow-orange: rgba(212, 120, 42, 0.4);
  --glow-green: rgba(162, 173, 52, 0.35);

  --font-display: "Bungee", cursive;
  --font-body: "Inter", system-ui, sans-serif;

  --nav-h: 72px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --content-max: min(1320px, calc(100vw - 3rem));
  --content-wide: min(1400px, calc(100vw - 2.5rem));
  --content-narrow: min(880px, calc(100vw - 3rem));
  --content-read: 42rem;
  --section-x: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--brown-950);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

/* ---- Background layers ---- */

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--green-toxic), var(--orange-400), var(--green-toxic));
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  box-shadow: 0 0 12px var(--glow-green);
  transition: width 0.08s linear;
}

@keyframes progressShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212, 120, 42, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(162, 173, 52, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(75, 44, 29, 0.5) 0%, transparent 70%);
}

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

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(15, 10, 7, 0.7) 100%);
}

/* ---- Navigation ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15, 10, 7, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(15, 10, 7, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--section-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--orange-400);
  letter-spacing: 0.02em;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-500);
  box-shadow: 0 0 12px var(--glow-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-toxic);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--cream);
}

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

.nav-socials {
  display: flex;
  gap: 0.5rem;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.25s;
}

.nav-social:hover {
  color: var(--green-toxic);
  border-color: var(--green-toxic);
  box-shadow: 0 0 16px var(--glow-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}

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

.hero-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 25% 65%, rgba(212, 120, 42, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 75% 35%, rgba(162, 173, 52, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--brown-900) 0%, var(--brown-950) 100%);
}

.hero-aurora {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 200deg at 70% 40%, transparent 0deg, rgba(162, 173, 52, 0.06) 60deg, transparent 120deg, rgba(212, 120, 42, 0.08) 200deg, transparent 280deg);
  filter: blur(60px);
  animation: auroraShift 14s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes auroraShift {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
  50% { transform: rotate(8deg) scale(1.05); opacity: 0.9; }
}

.hero-spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(212, 120, 42, 0.12) 0%, transparent 65%);
  filter: blur(40px);
  animation: spotlightPulse 6s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 8px;
  height: 8px;
  top: 25%;
  right: 20%;
  background: var(--green-glow);
  box-shadow: 0 0 20px var(--green-glow);
}

.hero-orb--2 {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 35%;
  background: var(--orange-400);
  box-shadow: 0 0 16px var(--orange-400);
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 10px;
  height: 10px;
  top: 40%;
  right: 12%;
  background: var(--yellow-sick);
  box-shadow: 0 0 24px var(--yellow-sick);
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  33% { transform: translate(-15px, -25px); opacity: 1; }
  66% { transform: translate(10px, -40px); opacity: 0.7; }
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(162, 173, 52, 0.5) 2px,
    rgba(162, 173, 52, 0.5) 4px
  );
  animation: scanMove 8s linear infinite;
  pointer-events: none;
}

@keyframes scanMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

.hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-ember {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-400), transparent);
  opacity: 0;
  animation: emberRise var(--dur, 4s) ease-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes emberRise {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(212, 120, 42, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 120, 42, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero-smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: smokeDrift 12s ease-in-out infinite;
}

.hero-smoke--1 {
  width: 400px;
  height: 300px;
  background: var(--green-dark);
  top: 20%;
  left: -5%;
}

.hero-smoke--2 {
  width: 350px;
  height: 250px;
  background: var(--brown-600);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

@keyframes smokeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  50% { transform: translate(30px, -20px) scale(1.1); opacity: 0.35; }
}

.hero-layout {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem) var(--section-x) clamp(2.5rem, 5vw, 4rem);
  width: 100%;
}

/* ---- Bull Stage & Breathing Animation ---- */

.hero-bull-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(340px, 42vh, 460px);
}

.bull-platform {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 40px;
}

.platform-glow {
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(ellipse, rgba(212, 120, 42, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  animation: platformPulse 4s ease-in-out infinite;
}

@keyframes platformPulse {
  0%, 100% { opacity: 0.6; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.08); }
}

.platform-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 120, 42, 0.3);
  animation: ringExpand 3s ease-out infinite;
}

.platform-ring--1 {
  width: 200px;
  height: 20px;
}

.platform-ring--2 {
  width: 260px;
  height: 26px;
  animation-delay: 1.5s;
}

@keyframes ringExpand {
  0% { opacity: 0.6; transform: translateX(-50%) scale(0.8); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.4); }
}

.bull-container {
  position: relative;
  width: min(360px, 34vw);
  --breath-scale: 1;
  --breath-y: 0px;
  --breath-rotate: 0deg;
  --chest-scale: 1;
}

.bull-shadow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
  animation: shadowBreath 4s ease-in-out infinite;
}

@keyframes shadowBreath {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.5; }
  40% { transform: translateX(-50%) scaleX(1.12); opacity: 0.65; }
  60% { transform: translateX(-50%) scaleX(1.08); opacity: 0.6; }
}

.bull-rig {
  position: relative;
  transform-origin: 50% 95%;
  transform:
    translateY(var(--breath-y))
    scale(var(--breath-scale))
    rotate(var(--breath-rotate));
  will-change: transform;
  transition: none;
}

.bull-body-layer {
  position: relative;
  transform-origin: 50% 70%;
  transform: scaleX(var(--chest-scale)) scaleY(calc(1 + (var(--chest-scale) - 1) * 0.5));
  will-change: transform;
}

.bull-image {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 40px rgba(212, 120, 42, 0.15));
  user-select: none;
  -webkit-user-drag: none;
}

/* ---- Gas System ---- */

.gas-system {
  position: absolute;
  bottom: 32%;
  right: -18%;
  width: 50%;
  height: 45%;
  pointer-events: none;
  transform-origin: 20% 60%;
}

.gas-cloud {
  position: absolute;
  animation: gasWaft 3s ease-in-out infinite;
}

.gas-cloud--main {
  bottom: 0;
  right: 0;
  width: 100%;
  animation: gasMain 2.8s ease-in-out infinite;
}

.gas-cloud--secondary {
  bottom: 15%;
  right: -10%;
  width: 55%;
  opacity: 0.6;
  animation: gasSecondary 3.5s ease-in-out infinite;
  animation-delay: -1.2s;
}

.gas-img {
  width: 100%;
  height: auto;
  transform: scaleX(-1);
  filter: drop-shadow(0 0 12px rgba(162, 173, 52, 0.4));
}

.gas-img--small {
  filter: drop-shadow(0 0 8px rgba(162, 173, 52, 0.3));
}

@keyframes gasMain {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.85;
  }
  25% {
    transform: translate(4px, -6px) scale(1.08) rotate(2deg);
    opacity: 1;
  }
  50% {
    transform: translate(-2px, -10px) scale(1.12) rotate(-1deg);
    opacity: 0.95;
  }
  75% {
    transform: translate(6px, -4px) scale(1.05) rotate(1deg);
    opacity: 0.9;
  }
}

@keyframes gasSecondary {
  0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.4; }
  50% { transform: translate(-8px, -12px) scale(1.1); opacity: 0.7; }
}

@keyframes gasWaft {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(10deg) brightness(1.1); }
}

.gas-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.5) 0%, rgba(162, 173, 52, 0.2) 50%, transparent 70%);
  animation: puffRise 2.5s ease-out infinite;
}

.gas-puff--1 {
  width: 30px;
  height: 30px;
  bottom: 20%;
  right: 30%;
  animation-delay: 0s;
}

.gas-puff--2 {
  width: 20px;
  height: 20px;
  bottom: 35%;
  right: 10%;
  animation-delay: -0.8s;
}

.gas-puff--3 {
  width: 24px;
  height: 24px;
  bottom: 10%;
  right: 50%;
  animation-delay: -1.6s;
}

@keyframes puffRise {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-20px, -60px) scale(1.5);
    opacity: 0;
  }
}

.stink-lines {
  position: absolute;
  bottom: 30%;
  right: 5%;
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.stink-lines span {
  display: block;
  width: 3px;
  background: linear-gradient(to top, var(--green-toxic), transparent);
  border-radius: 2px;
  animation: stinkWave 1.5s ease-in-out infinite;
}

.stink-lines span:nth-child(1) { height: 20px; animation-delay: 0s; }
.stink-lines span:nth-child(2) { height: 32px; animation-delay: 0.15s; }
.stink-lines span:nth-child(3) { height: 44px; animation-delay: 0.3s; }
.stink-lines span:nth-child(4) { height: 28px; animation-delay: 0.45s; }
.stink-lines span:nth-child(5) { height: 18px; animation-delay: 0.6s; }

@keyframes stinkWave {
  0%, 100% { transform: scaleY(0.6) translateY(4px); opacity: 0.4; }
  50% { transform: scaleY(1.2) translateY(-4px); opacity: 1; }
}

/* ---- Hero Content ---- */

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.hero-content-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(145deg, rgba(46, 30, 15, 0.75), rgba(26, 16, 8, 0.85));
  border: 1px solid rgba(212, 120, 42, 0.25);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 80px rgba(212, 120, 42, 0.08);
  overflow: hidden;
}

.hero-content-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(162, 173, 52, 0.5), transparent 40%, rgba(212, 120, 42, 0.5));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: panelBorderGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-content-panel::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
  animation: panelShine 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-content-panel > * {
  position: relative;
  z-index: 1;
}

@keyframes panelBorderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes panelShine {
  0% { transform: translateX(-30%) rotate(0deg); }
  100% { transform: translateX(30%) rotate(0deg); }
}

.hero-logo-wrap {
  position: relative;
  width: clamp(72px, 8vw, 96px);
  height: clamp(72px, 8vw, 96px);
  margin-bottom: 0.25rem;
}

.hero-mini-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--orange-500);
  object-fit: cover;
  position: relative;
  z-index: 1;
  animation: logoPulse 3s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 120, 42, 0.4), transparent 70%);
  filter: blur(8px);
  animation: logoPulse 3s ease-in-out infinite;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.badge-pump {
  background: rgba(162, 173, 52, 0.12);
  color: var(--green-toxic);
  border-color: rgba(162, 173, 52, 0.3);
}

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

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(123, 193, 66, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(123, 193, 66, 0); }
}

.badge-sol {
  background: rgba(212, 120, 42, 0.12);
  color: var(--orange-400);
  border-color: rgba(212, 120, 42, 0.3);
}

.hero-eyebrow {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--green-toxic);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0.15rem 0;
}

.title-fart {
  display: block;
  color: var(--green-toxic);
  text-shadow:
    0 0 30px var(--glow-green),
    0 0 60px rgba(162, 173, 52, 0.2),
    4px 4px 0 rgba(0, 0, 0, 0.5);
  animation: titleFartGlow 3s ease-in-out infinite, titleWobble 6s ease-in-out infinite;
}

.title-bull {
  display: block;
  color: var(--orange-400);
  text-shadow:
    0 0 30px var(--glow-orange),
    0 0 60px rgba(212, 120, 42, 0.2),
    4px 4px 0 rgba(0, 0, 0, 0.5);
  animation: titleBullPulse 4s ease-in-out infinite;
}

@keyframes titleWobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-0.5deg); }
  75% { transform: rotate(0.5deg); }
}

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

@keyframes titleFartGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  color: var(--cream);
  letter-spacing: 0.1em;
}

.ticker-glow {
  background: linear-gradient(90deg, var(--cream), var(--yellow-sick), var(--cream));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tickerShimmer 3s linear infinite;
  filter: drop-shadow(0 0 12px rgba(196, 184, 50, 0.4));
}

@keyframes tickerShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-tagline {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text);
  max-width: 100%;
  margin: 0.25rem 0 0.5rem;
  line-height: 1.65;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0.75rem 0 0.25rem;
  width: 100%;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  border-radius: 14px;
  flex: 1;
  min-width: 160px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(15, 10, 7, 0.55);
  border: 1px solid rgba(162, 173, 52, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  margin-top: 0.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--orange-400);
  text-shadow: 0 0 20px var(--glow-orange);
  animation: statPulse 3s ease-in-out infinite;
}

.stat:nth-child(1) .stat-value { animation-delay: 0s; }
.stat:nth-child(3) .stat-value { animation-delay: -1s; }
.stat:nth-child(5) .stat-value { animation-delay: -2s; }

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

.stat-label {
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: clamp(36px, 4vw, 44px);
  background: var(--border);
  flex-shrink: 0;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--brown-950);
  box-shadow: 0 4px 20px var(--glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-orange);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--cream);
  background: rgba(46, 30, 15, 0.5);
}

.btn-ghost:hover {
  border-color: var(--green-toxic);
  color: var(--green-toxic);
  box-shadow: 0 0 20px var(--glow-green);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--cream);
  background: rgba(46, 30, 15, 0.8);
}

.btn-sm:hover {
  border-color: var(--orange-400);
  color: var(--orange-400);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ---- Sections ---- */

.section {
  position: relative;
  z-index: 2;
  padding: var(--section-y) var(--section-x);
}

.section-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: var(--content-read);
  margin: 0 auto  clamp(2.5rem, 5vw, 4rem);
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.75;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-toxic);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}


/* ---- Lore ---- */

.lore {
  background: linear-gradient(180deg, transparent, rgba(35, 22, 9, 0.5) 50%, transparent);
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.lore-card {
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(46, 30, 15, 0.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.lore-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 120, 42, 0.08), transparent);
  transition: left 0.6s var(--ease-smooth);
}

.lore-card:hover::after {
  left: 150%;
}

.lore-card:hover {
  border-color: rgba(212, 120, 42, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 120, 42, 0.1);
}

.lore-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lore-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--orange-400);
  margin-bottom: 0.75rem;
}

.lore-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.lore-banner {
  position: relative;
  max-width: min(100%, 960px);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.lore-banner-img {
  width: 100%;
  display: block;
}

.lore-banner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 10, 7, 0.6) 100%);
  pointer-events: none;
}

/* ---- Tokenomics ---- */

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.token-card {
  text-align: center;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.25rem, 2vw, 2rem);
  background: rgba(46, 30, 15, 0.4);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: transform 0.3s;
}

.token-card:hover {
  transform: scale(1.03);
  border-color: rgba(162, 173, 52, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(162, 173, 52, 0.08);
}

.token-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.token-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(212, 120, 42, 0.15);
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: var(--orange-400);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: calc(327 - (327 * var(--pct) / 100));
  filter: drop-shadow(0 0 6px var(--glow-orange));
}

.ring-fill--green { stroke: var(--green-toxic); filter: drop-shadow(0 0 6px var(--glow-green)); }
.ring-fill--orange { stroke: var(--orange-400); }

.token-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
}

.token-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--orange-400);
  margin-bottom: 0.5rem;
}

.token-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Contract ---- */

.contract {
  background: rgba(35, 22, 9, 0.3);
}

.ca-box {
  width: 100%;
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(46, 30, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.ca-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ca-row code {
  flex: 1;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--green-toxic);
  word-break: break-all;
  padding: 0.75rem 1rem;
  background: rgba(15, 10, 7, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(162, 173, 52, 0.2);
}

.ca-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- Buy CTA ---- */

.buy {
  padding: clamp(5rem, 10vw, 8rem) var(--section-x);
}

.buy-inner {
  position: relative;
  width: 100%;
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  background: rgba(46, 30, 15, 0.5);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
}

.buy-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 120, 42, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.buy-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 3px solid var(--orange-500);
  box-shadow: 0 0 30px var(--glow-orange);
  animation: logoFloat 4s ease-in-out infinite;
}

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

.buy-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.buy-desc {
  color: var(--text-muted);
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---- Footer ---- */

.site-footer {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--section-x);
  border-top: 1px solid var(--border);
  background: rgba(15, 10, 7, 0.8);
}

.footer-inner {
  width: 100%;
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 1.5rem;
  max-width: 38rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--orange-400);
  margin-bottom: 1rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-toxic);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(168, 144, 112, 0.6);
}

/* ---- Toast ---- */

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 200;
  padding: 0.85rem 1.5rem;
  background: rgba(46, 30, 15, 0.95);
  border: 1px solid var(--green-toxic);
  border-radius: 12px;
  color: var(--green-toxic);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s;
  pointer-events: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

/* ---- Reveal animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
  transition-delay: var(--delay, 0s);
}

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

/* ---- Responsive ---- */

@media (min-width: 1440px) {
  :root {
    --content-max: 1280px;
    --content-wide: 1360px;
  }

  .hero-bull-stage {
    min-height: 440px;
  }

  .bull-container {
    width: min(400px, 32vw);
  }

  .hero-title {
    font-size: 7rem;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0.5rem;
    gap: 1.5rem;
  }

  .hero-bull-stage {
    order: -1;
    min-height: clamp(280px, 38vh, 340px);
  }

  .bull-container {
    width: min(300px, 70vw);
  }

  .hero-content-panel {
    align-items: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  .hero-logo-wrap {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-actions .btn-hero {
    flex: 1 1 auto;
    max-width: 280px;
  }

  .hero-tagline br {
    display: none;
  }

  .lore-grid,
  .token-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(15, 10, 7, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    gap: 1.25rem;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .bull-container {
    width: min(260px, 75vw);
  }

  .hero-title {
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 100%;
  }
}

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

  .bull-rig {
    transform: none !important;
  }
}
