:root {
  --void: #040404;
  --ink: #0b0b0b;
  --panel: #101410;
  --smoke: #f5f5f5;
  --mist: #b7b7b7;
  --toxic: #39ff14;
  --toxic-deep: #1c8a0a;
  --horn: #6dff4a;
  --fat: "Bagel Fat One", system-ui, sans-serif;
  --yell: "Bungee", system-ui, sans-serif;
  --body: "Sora", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--void);
  color: var(--smoke);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;
}

body.is-touch {
  cursor: auto;
}

a,
button {
  cursor: none;
}

body.is-touch a,
body.is-touch button {
  cursor: pointer;
}

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

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

button {
  font: inherit;
}

#cursorSmoke,
#ambientSmoke {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 80;
}

#ambientSmoke {
  z-index: 0;
  opacity: 0.55;
}

.void-wash {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(57, 255, 20, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(57, 255, 20, 0.05), transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(255, 255, 255, 0.04), transparent 50%),
    #030303;
}

.toxic-haze {
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(57, 255, 20, 0.08), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.05), transparent 30%);
  animation: haze-drift 22s ease-in-out infinite alternate;
  filter: blur(40px);
}

.ash-grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.12;
  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");
  animation: grain-shift 0.8s steps(2) infinite;
}

.rim-shade {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
}

.horn {
  position: fixed;
  top: 12vh;
  width: min(18vw, 220px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(57, 255, 20, 0.45)) drop-shadow(0 0 40px rgba(57, 255, 20, 0.2));
  animation: horn-breathe 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.88;
}

.horn-left {
  left: -2vw;
  transform-origin: 80% 20%;
}

.horn-right {
  right: -2vw;
  transform-origin: 20% 20%;
  animation-delay: -2.4s;
}

.mast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.7rem 1.2rem;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.mast.is-stuck {
  background: rgba(4, 4, 4, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.18);
}

.mast-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.mast-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--fat);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.mast-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  animation: puff-float 5s ease-in-out infinite;
}

.mast-nav {
  display: flex;
  gap: 1.15rem;
  margin-left: auto;
}

.mast-nav a {
  font-family: var(--yell);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  position: relative;
}

.mast-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--toxic);
  transition: width 0.25s ease;
  box-shadow: 0 0 8px var(--toxic);
}

.mast-nav a:hover,
.mast-nav a.is-now {
  color: var(--smoke);
}

.mast-nav a:hover::after,
.mast-nav a.is-now::after {
  width: 100%;
}

.mast-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mast-links > a:not(.smog-btn) {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mast-links > a:not(.smog-btn):hover {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--toxic);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.35);
}

.mast-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mast-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  background: transparent;
  position: relative;
  margin-left: auto;
}

.mast-burger i {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--smoke);
  transition: 0.25s ease;
}

.mast-burger i:nth-child(1) { top: 14px; }
.mast-burger i:nth-child(2) { top: 21px; }
.mast-burger i:nth-child(3) { top: 28px; }

.mast-burger.is-open i:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.mast-burger.is-open i:nth-child(2) { opacity: 0; }

.mast-burger.is-open i:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.side-brand {
  position: fixed;
  left: 1.1rem;
  top: 50%;
  z-index: 35;
  margin: 0;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--yell);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: rgba(57, 255, 20, 0.38);
  pointer-events: none;
  animation: pip 3.6s ease-in-out infinite;
}

.crawl {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 40;
  overflow: hidden;
  border-block: 1px solid rgba(57, 255, 20, 0.16);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.crawl-lane {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  padding: 0.45rem 0;
  animation: crawl 28s linear infinite;
  font-family: var(--yell);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--toxic);
}

.crawl-lane b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--smoke);
  box-shadow: 0 0 10px #fff;
  flex: none;
}

.plume-stage {
  position: relative;
  min-height: 100vh;
  padding: 10.5rem 1.4rem 5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-reel {
  position: absolute;
  inset: 8% 10% auto;
  width: 80%;
  height: 58%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.7) contrast(1.15) brightness(0.7);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.hero-reel.is-live {
  opacity: 0.38;
}

.plume-core {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 999px;
  font-family: var(--yell);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--toxic);
}

.live-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--toxic);
  box-shadow: 0 0 10px var(--toxic);
  animation: pip 1.4s ease-in-out infinite;
}

.logo-well {
  position: relative;
  width: min(320px, 68vw);
  margin: 0.4rem auto 0.6rem;
}

.logo-halo {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(57, 255, 20, 0.08) 40%, transparent 70%);
  filter: blur(18px);
  animation: halo-pulse 4.5s ease-in-out infinite;
}

.logo-puff {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.28));
  animation: puff-float 6s ease-in-out infinite;
}

h1 {
  margin: 0.2rem 0 0;
  line-height: 0.86;
}

.title-fat {
  display: block;
  font-family: var(--fat);
  font-size: clamp(4.2rem, 14vw, 8.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff 20%, #d7d7d7 55%, #39ff14 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 10px 0 rgba(57, 255, 20, 0.08));
  animation: title-wobble 5s ease-in-out infinite;
}

.title-coin {
  display: block;
  margin-top: 0.15em;
  font-family: var(--yell);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--toxic);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.45);
}

.ticker {
  margin: 0.85rem 0 0.35rem;
  font-family: var(--yell);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.22em;
  color: #fff;
}

.lede {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.6;
}

.stat-row,
.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.stat-puff {
  min-width: 140px;
  padding: 0.85rem 1.1rem;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: cloud-morph 9s ease-in-out infinite;
}

.stat-puff img {
  width: 18px;
  height: 18px;
  margin: 0 auto 0.4rem;
  filter: brightness(0) invert(1);
}

.stat-puff strong {
  display: block;
  font-family: var(--yell);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.stat-puff span {
  color: var(--mist);
  font-size: 0.75rem;
}

.smog-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-family: var(--yell);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.smog-btn {
  background: var(--toxic);
  color: #041204;
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.45);
  animation: smog-idle 3.2s ease-in-out infinite;
}

.smog-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.55);
}

.smog-btn img,
.ghost-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.smog-btn img {
  filter: brightness(0);
}

.smog-btn-tiny {
  padding: 0.55rem 0.85rem;
  font-size: 0.68rem;
}

.ghost-btn {
  background: rgba(8, 8, 8, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--smoke);
}

.ghost-btn:hover {
  transform: translateY(-3px);
  border-color: var(--toxic);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.22);
}

.ghost-btn img {
  filter: brightness(0) invert(1);
}

.ca-slab {
  margin: 1.7rem auto 0;
  width: min(640px, 100%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(57, 255, 20, 0.22);
  animation: cloud-morph 11s ease-in-out infinite reverse;
}

.ca-label {
  font-family: var(--yell);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--toxic);
}

#caValue {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
  color: #e8e8e8;
}

#copyCa {
  border: 0;
  background: #161616;
  color: var(--smoke);
  padding: 0.5rem 0.8rem;
  font-family: var(--yell);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  cursor: none;
}

body.is-touch #copyCa {
  cursor: pointer;
}

#copyCa:hover,
#copyCa.is-done {
  background: var(--toxic);
  color: #041204;
}

.band {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.4rem 1rem;
}

.band-head {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--yell);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--toxic);
}

.band-head h2,
.join-copy h2 {
  margin: 0;
  font-family: var(--fat);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.95;
}

.section-blurb,
.join-copy p:not(.section-kicker) {
  margin: 0.7rem auto 0;
  max-width: 36rem;
  color: var(--mist);
  line-height: 1.65;
}

.ink-cloud {
  border: 2px solid rgba(57, 255, 20, 0.55);
  background: rgba(8, 10, 8, 0.72);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8) inset,
    0 0 24px rgba(57, 255, 20, 0.08);
  animation: cloud-morph 10s ease-in-out infinite;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about-story {
  padding: 1.8rem 1.6rem;
}

.about-story h3,
.fact-puff h3,
.buy-puff h3 {
  margin: 0 0 0.7rem;
  font-family: var(--fat);
  font-size: 1.7rem;
}

.about-story p,
.fact-puff p,
.buy-puff p {
  margin: 0 0 0.9rem;
  color: var(--mist);
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fact-puff {
  padding: 1.25rem 1.15rem;
}

.fact-puff img,
.buy-puff img {
  width: 28px;
  height: 28px;
  margin-bottom: 0.7rem;
  object-fit: contain;
}

.fact-puff:nth-child(2) { animation-delay: -2s; }
.fact-puff:nth-child(3) { animation-delay: -4s; }
.fact-puff:nth-child(4) { animation-delay: -6s; }

.buy-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.buy-puff {
  position: relative;
  padding: 1.5rem 1.15rem 1.3rem;
}

.buy-index {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--yell);
  font-size: 1.1rem;
  color: var(--toxic);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.buy-puff:nth-child(2) { animation-delay: -2.5s; }
.buy-puff:nth-child(3) { animation-delay: -5s; }
.buy-puff:nth-child(4) { animation-delay: -7.5s; }

.chart-shell {
  overflow: hidden;
  height: min(720px, 78vh);
  padding: 0.55rem;
}

.chart-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b0b;
  border-radius: 1.5rem;
}

.join-band {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  min-height: 88vh;
  display: grid;
  place-items: end center;
}

.join-banner-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-drift 18s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.2) 10%, rgba(4, 4, 4, 0.82) 78%),
    radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.45) 100%);
}

.join-copy {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 2rem));
  margin-bottom: 4rem;
  text-align: center;
  padding: 1.5rem 1rem;
}

.join-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.foot {
  position: relative;
  z-index: 2;
  padding: 2.4rem 1.4rem 3rem;
  border-top: 1px solid rgba(57, 255, 20, 0.14);
  background: #050505;
}

.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.foot .mast-mark {
  justify-content: center;
  margin-bottom: 0.8rem;
}

.foot p {
  margin: 0.35rem 0;
  color: var(--mist);
  font-size: 0.88rem;
}

.foot-tag {
  font-family: var(--yell);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--toxic) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  animation: rise-in 0.85s ease forwards;
}

.about-story.reveal { animation-delay: 0.05s; }
.fact-puff.reveal:nth-child(1) { animation-delay: 0.1s; }
.fact-puff.reveal:nth-child(2) { animation-delay: 0.2s; }
.fact-puff.reveal:nth-child(3) { animation-delay: 0.3s; }
.fact-puff.reveal:nth-child(4) { animation-delay: 0.4s; }
.buy-puff.reveal:nth-child(1) { animation-delay: 0.05s; }
.buy-puff.reveal:nth-child(2) { animation-delay: 0.15s; }
.buy-puff.reveal:nth-child(3) { animation-delay: 0.25s; }
.buy-puff.reveal:nth-child(4) { animation-delay: 0.35s; }

@keyframes haze-drift {
  from { transform: translate3d(-4%, -2%, 0) scale(1); }
  to { transform: translate3d(5%, 3%, 0) scale(1.08); }
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 1%); }
}

@keyframes horn-breathe {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(57, 255, 20, 0.35)); transform: scale(1) rotate(0deg); }
  50% { filter: drop-shadow(0 0 28px rgba(57, 255, 20, 0.65)); transform: scale(1.03) rotate(1.2deg); }
}

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

@keyframes halo-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes title-wobble {
  0%, 100% { transform: rotate(-0.4deg) scale(1); }
  50% { transform: rotate(0.5deg) scale(1.012); }
}

@keyframes pip {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}

@keyframes crawl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cloud-morph {
  0%, 100% { border-radius: 42% 58% 48% 52% / 52% 40% 60% 48%; }
  33% { border-radius: 58% 42% 62% 38% / 40% 62% 38% 60%; }
  66% { border-radius: 38% 62% 44% 56% / 60% 36% 64% 40%; }
}

@keyframes smog-idle {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.35); }
  70% { box-shadow: 0 0 0 12px rgba(57, 255, 20, 0); }
}

@keyframes rise-in {
  to { opacity: 1; transform: none; }
}

@keyframes banner-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-2%); }
}

@media (max-width: 980px) {
  .horn,
  .side-brand { display: none; }
  .about-split,
  .about-grid,
  .buy-stack {
    grid-template-columns: 1fr;
  }
  .mast-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    padding: 1rem;
    background: rgba(6, 6, 6, 0.94);
    border: 1px solid rgba(57, 255, 20, 0.25);
  }
  .mast-nav.is-open { display: flex; }
  .mast-burger { display: block; }
  .mast-links .smog-btn { display: none; }
  body { cursor: auto; }
}

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

@media (max-width: 640px) {
  .ca-slab { flex-wrap: wrap; }
  #caValue { flex-basis: 100%; }
  .title-fat { font-size: 3.4rem; }
  .crawl { top: 70px; }
}
