:root {
  --void: #070806;
  --pitch: #0c0e0a;
  --smoke: #141811;
  --panel: rgba(16, 20, 14, 0.78);
  --line: rgba(246, 240, 228, 0.12);
  --cream: #f6f0e4;
  --milk: #fffaf2;
  --silk: #d8cbb6;
  --lime: #c8ff3a;
  --acid: #a6e214;
  --horn: #e4ff7a;
  --glow: rgba(200, 255, 58, 0.28);
  --display: "Modak", system-ui, sans-serif;
  --title: "Lilita One", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  cursor: none;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(200, 255, 58, 0.08), transparent 55%),
    radial-gradient(700px 420px at 8% 18%, rgba(200, 255, 58, 0.05), transparent 50%),
    radial-gradient(800px 500px at 92% 12%, rgba(200, 255, 58, 0.05), transparent 48%),
    linear-gradient(180deg, #080a07 0%, #050605 40%, #0a0c08 100%);
  color: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.svg-goo { position: absolute; width: 0; height: 0; }

.noise,
.fog,
.vignette,
#splash,
.goo-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: 40;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fog {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 80%, rgba(20, 28, 12, 0.55), transparent 36%),
    radial-gradient(circle at 80% 75%, rgba(18, 24, 10, 0.5), transparent 34%);
  animation: fogDrift 18s ease-in-out infinite alternate;
}

.vignette {
  z-index: 35;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.55) 100%);
}

#splash { z-index: 2; }

.goo-field {
  z-index: 2;
  filter: url("#goo");
}

.goo-field i {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fffdf6, #efe4ce 55%, #c8b89a);
  animation: blobFloat 11s ease-in-out infinite;
}

.goo-field i:nth-child(1) { width: 90px; height: 90px; left: 8%; top: 22%; animation-delay: 0s; }
.goo-field i:nth-child(2) { width: 54px; height: 54px; left: 18%; top: 70%; animation-delay: -2s; }
.goo-field i:nth-child(3) { width: 70px; height: 70px; right: 12%; top: 28%; animation-delay: -4s; }
.goo-field i:nth-child(4) { width: 42px; height: 42px; right: 20%; top: 64%; animation-delay: -6s; }
.goo-field i:nth-child(5) { width: 28px; height: 28px; left: 46%; top: 16%; animation-delay: -3s; }
.goo-field i:nth-child(6) { width: 36px; height: 36px; left: 62%; bottom: 12%; animation-delay: -5s; }
.goo-field i:nth-child(7) { width: 22px; height: 22px; left: 30%; top: 42%; animation-delay: -7s; }

.cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  z-index: 80;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: screen;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor span {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--cream);
}

.cursor.hot {
  width: 44px;
  height: 44px;
  background: rgba(200, 255, 58, 0.12);
}

.pour {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: #050605;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: pourGone 0.5s 2.2s forwards;
}

.pour.hide {
  opacity: 0;
  visibility: hidden;
}

.pour-drop {
  position: absolute;
  top: -8%;
  width: 28px;
  height: 42px;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(180deg, #fff, #efe6d4);
  animation: pourFall 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 24px rgba(255, 250, 240, 0.35);
}

.pour-pool {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(200, 255, 58, 0.35);
  box-shadow: 0 0 60px var(--glow);
  animation: poolPop 0.7s 0.9s both;
}

.pour-pool img { width: 100%; height: 100%; object-fit: cover; }

.pour-word {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 54px;
  letter-spacing: 0.04em;
  color: var(--milk);
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.35), 0 0 28px var(--glow);
  animation: riseIn 0.6s 1.1s both;
}

.pour-bar {
  width: 160px;
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(246, 240, 228, 0.12);
  overflow: hidden;
}

.pour-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--silk), var(--lime));
  animation: fillBar 1.15s ease forwards;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 10px;
  border-radius: 999px;
  background: rgba(10, 12, 8, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.brand-orb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200, 255, 58, 0.35);
  box-shadow: 0 0 18px var(--glow);
}

.brand-orb img { width: 100%; height: 100%; object-fit: cover; }

.brand-text {
  font-family: var(--title);
  letter-spacing: 0.08em;
  font-size: 20px;
}

.links {
  display: flex;
  gap: 22px;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--silk);
}

.links a {
  position: relative;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.links a:hover::after { transform: scaleX(1); }

.nav-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 240, 228, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-link img { width: 16px; height: 16px; }
.icon-link[data-link="x"] img { filter: invert(1) brightness(1.2); }
.icon-link:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  box-shadow: 0 0 16px var(--glow);
}

.buy-pill,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-pill {
  background: linear-gradient(180deg, var(--horn), var(--lime) 55%, var(--acid));
  color: #11150a;
  box-shadow: 0 8px 24px var(--glow);
}

.buy-pill img,
.btn img { width: 18px; height: 18px; }

.buy-pill:hover,
.btn:hover { transform: translateY(-2px) scale(1.02); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  position: relative;
}

.burger i {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--cream);
  transition: 0.25s ease;
}

.burger i:first-child { top: 16px; }
.burger i:last-child { top: 24px; }
.burger.open i:first-child { top: 20px; transform: rotate(40deg); }
.burger.open i:last-child { top: 20px; transform: rotate(-40deg); }

.sheet {
  position: fixed;
  inset: 86px 12px auto;
  z-index: 49;
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(10, 12, 8, 0.94);
  border: 1px solid var(--line);
}

.sheet.open { display: flex; }
.sheet a { font-family: var(--title); font-size: 28px; }
.sheet-buy { color: var(--lime); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 0;
  overflow: hidden;
}

.horn {
  position: absolute;
  top: 8%;
  width: 280px;
  height: 340px;
  pointer-events: none;
  filter: blur(0.2px);
  opacity: 0.85;
}

.horn::before,
.horn::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle at 30% 20%, var(--horn), var(--lime) 40%, transparent 70%);
  filter: blur(8px);
  animation: hornPulse 4.5s ease-in-out infinite;
}

.left-horn { left: -40px; }
.right-horn { right: -40px; transform: scaleX(-1); }

.horn::before {
  width: 70px;
  height: 240px;
  border-radius: 80% 20% 60% 40%;
  transform: rotate(-28deg);
  top: 20px;
  left: 90px;
}

.horn::after {
  width: 48px;
  height: 160px;
  border-radius: 70% 30% 50% 50%;
  transform: rotate(-12deg);
  top: 80px;
  left: 150px;
  animation-delay: -1.4s;
}

.hero-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.logo-well {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.horn-arc {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, transparent 0 40%, rgba(200, 255, 58, 0.16) 48%, transparent 62%),
    conic-gradient(from 20deg, transparent 0 40%, rgba(200, 255, 58, 0.16) 48%, transparent 62%);
  filter: blur(10px);
  animation: spinSlow 22s linear infinite;
}

.well-ring {
  position: absolute;
  inset: 6%;
  border-radius: 46% 54% 50% 50%;
  border: 2px solid rgba(246, 240, 228, 0.18);
  box-shadow: 0 0 80px rgba(200, 255, 58, 0.16), inset 0 0 40px rgba(0, 0, 0, 0.45);
  animation: morph 8s ease-in-out infinite;
}

.well-core {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.well-core img,
.well-core video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wellBreathe 5.5s ease-in-out infinite;
}

.well-core video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.well-core video.on { opacity: 1; }

.orbit {
  position: absolute;
  inset: 0;
  animation: spinSlow 16s linear infinite;
}

.orbit b {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #efe3cc);
  box-shadow: 0 0 16px rgba(255, 250, 240, 0.45);
}

.orbit b:nth-child(1) { width: 18px; height: 18px; top: 6%; left: 46%; }
.orbit b:nth-child(2) { width: 12px; height: 12px; top: 28%; right: 2%; }
.orbit b:nth-child(3) { width: 10px; height: 10px; bottom: 10%; right: 18%; }
.orbit b:nth-child(4) { width: 8px; height: 8px; bottom: 18%; left: 6%; }
.orbit b:nth-child(5) { width: 14px; height: 14px; top: 42%; left: 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200, 255, 58, 0.08);
  border: 1px solid rgba(200, 255, 58, 0.22);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip img {
  width: 14px;
  height: 14px;
  filter: invert(89%) sepia(47%) saturate(577%) hue-rotate(18deg) brightness(104%) contrast(103%);
}

.wordmark {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(72px, 11vw, 128px);
  line-height: 0.82;
  color: var(--milk);
  text-shadow:
    0 10px 0 rgba(0, 0, 0, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(200, 255, 58, 0.18);
}

.word-coin {
  display: block;
  color: var(--lime);
  text-shadow: 0 8px 0 rgba(80, 110, 10, 0.35), 0 0 24px var(--glow);
}

.symbol {
  margin-top: 10px;
  font-family: var(--title);
  letter-spacing: 0.18em;
  color: var(--silk);
}

.lead {
  margin-top: 18px;
  max-width: 520px;
  font-size: 22px;
  line-height: 1.45;
  color: #efe7d6;
}

.ca-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 520px);
  padding: 10px 10px 10px 14px;
  border-radius: 999px;
  background: rgba(8, 10, 7, 0.7);
  border: 1px solid var(--line);
}

.ca-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silk);
}

#caText {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: var(--cream);
}

.copy-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: #12160b;
  font-weight: 800;
}

.copy-btn.ok { background: var(--cream); }

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn.cream {
  background: linear-gradient(180deg, #fff7ea, #efe1c8);
  color: #1a160f;
}

.btn.ghost {
  background: rgba(246, 240, 228, 0.05);
  border: 1px solid var(--line);
}

.btn.ghost img[src*="x.svg"] { filter: invert(1); }
.btn.cream img,
.buy-pill img { filter: none; }

.marquee {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 16px 0;
  animation: ticker 22s linear infinite;
  font-family: var(--title);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: rgba(246, 240, 228, 0.55);
}

.marquee-track span:nth-child(odd) { color: var(--lime); }

section {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 20px;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.section-title {
  margin: 10px 0 36px;
  font-family: var(--title);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.about-copy p {
  color: var(--silk);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.facts li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.facts img { width: 22px; height: 22px; }
.facts li:first-child img {
  filter: invert(89%) sepia(47%) saturate(577%) hue-rotate(18deg) brightness(104%) contrast(103%);
}

.facts strong { display: block; font-size: 12px; color: var(--silk); }
.facts span { font-family: var(--title); font-size: 20px; }

.about-card {
  position: relative;
  padding: 28px 24px 20px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 80% 0%, rgba(200, 255, 58, 0.16), transparent 36%),
    rgba(12, 14, 10, 0.86);
  border: 1px solid var(--line);
  overflow: hidden;
}

.drip-cap {
  position: absolute;
  top: -8px;
  left: 28px;
  width: 18px;
  height: 34px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--lime), #8fb50f);
  box-shadow: 10px 16px 0 -4px var(--lime), 20px 8px 0 -6px #d4ff63;
  animation: drip 2.4s ease-in-out infinite;
}

.quote {
  font-family: var(--title);
  font-size: 36px;
  line-height: 1.05;
}

.quote-sub { margin-top: 10px; color: var(--silk); }

.about-logo {
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-logo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: wellBreathe 6s ease-in-out infinite;
}

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

.step {
  position: relative;
  padding: 24px 20px 22px;
  border-radius: 30px;
  background: rgba(12, 14, 10, 0.8);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto 18px -18px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 255, 58, 0.16);
  filter: blur(10px);
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 255, 58, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 24px var(--glow);
}

.step-num {
  font-family: var(--display);
  font-size: 42px;
  color: rgba(200, 255, 58, 0.7);
  line-height: 1;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 12px 0 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(246, 240, 228, 0.06);
}

.step-icon img { width: 30px; height: 30px; }
.step-icon.sol img {
  filter: invert(89%) sepia(47%) saturate(577%) hue-rotate(18deg) brightness(104%) contrast(103%);
}

.step h3 {
  font-family: var(--title);
  font-size: 26px;
  margin-bottom: 8px;
}

.step p { color: var(--silk); line-height: 1.55; font-size: 15px; }

.step-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--lime);
  font-weight: 800;
}

.chart-pool {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(200, 255, 58, 0.18);
  box-shadow: 0 0 0 8px rgba(246, 240, 228, 0.03), 0 30px 80px rgba(0, 0, 0, 0.45);
}

.pool-rim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(200, 255, 58, 0.08);
  border-radius: inherit;
}

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

.banner-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.banner-frame img {
  width: 100%;
  height: min(620px, 72vw);
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: bannerDrift 16s ease-in-out infinite alternate;
}

.banner-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 4, 0.88) 55%);
}

.banner-overlay p {
  font-family: var(--title);
  font-size: clamp(26px, 4vw, 40px);
  max-width: 640px;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.foot {
  width: min(1180px, calc(100% - 32px));
  margin: 80px auto 0;
  padding: 36px 0 48px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--silk);
  font-size: 14px;
}

.foot-links { display: flex; gap: 18px; font-weight: 700; color: var(--cream); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.8s ease forwards;
  animation-play-state: paused;
}

.reveal.in { animation-play-state: running; }

@keyframes pourFall {
  0% { transform: translateY(0) scale(1); }
  80% { transform: translateY(42vh) scale(1.05); }
  100% { transform: translateY(44vh) scale(0.2); opacity: 0; }
}

@keyframes poolPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fillBar { to { width: 100%; } }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -26px) scale(1.15); }
}

@keyframes hornPulse {
  0%, 100% { opacity: 0.45; filter: blur(10px); }
  50% { opacity: 0.95; filter: blur(6px); }
}

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

@keyframes morph {
  0%, 100% { border-radius: 46% 54% 50% 50%; }
  50% { border-radius: 54% 46% 48% 52%; }
}

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

@keyframes pourGone {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

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

@keyframes drip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes bannerDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-12px); }
}

@keyframes fogDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}

@media (max-width: 980px) {
  .links, .nav-end { display: none; }
  .burger { display: block; }
  .hero-stage,
  .about-grid,
  .steps { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .chart-pool iframe { height: 520px; }
  .pour-word { font-size: 40px; }
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .pour { animation: none; }
}
