:root {
  --void: #040605;
  --pitch: #070b08;
  --forest: #0c1610;
  --horn: #17321c;
  --aura: #7dff3c;
  --aura-hot: #c8ff62;
  --aura-mid: #4adf2a;
  --aura-dim: rgba(125, 255, 60, 0.14);
  --flesh: #e07848;
  --flesh-soft: #f3a06c;
  --diamond: #e7eef0;
  --stone: #8d968b;
  --ink: #d8e0d6;
  --mute: #8a9388;
  --line: rgba(125, 255, 60, 0.22);
  --display: "New Rocker", serif;
  --carved: "Cinzel", serif;
  --ui: "Barlow Condensed", sans-serif;
  --mono: "Share Tech Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--ui);
  min-height: 100%;
  color-scheme: dark;
}

::selection {
  background: rgba(125, 255, 60, 0.28);
  color: #f4ffe8;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050806;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4adf2a, #17321c);
  border: 2px solid #050806;
}

body {
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(125, 255, 60, 0.08), transparent 58%),
    radial-gradient(700px 480px at 86% 78%, rgba(224, 120, 72, 0.05), transparent 60%),
    linear-gradient(180deg, #050806 0%, #030403 48%, #061009 100%);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

#field,
.grain,
.spot,
.veins,
.horn {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#field {
  z-index: 1;
}

.grain {
  z-index: 2;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.spot {
  z-index: 1;
  background: radial-gradient(220px 220px at var(--sx, 50%) var(--sy, 30%), rgba(125, 255, 60, 0.1), transparent 70%);
  transition: background 0.08s linear;
}

.veins {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.vein {
  fill: none;
  stroke: var(--aura);
  stroke-width: 1.1;
  opacity: 0.16;
  stroke-dasharray: 8 18;
  animation: vein-crawl 16s linear infinite;
}

.vein-b {
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: 0.1;
}

.horn {
  z-index: 2;
  width: 280px;
  height: 420px;
  background:
    radial-gradient(circle at 30% 20%, rgba(125, 255, 60, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(23, 50, 28, 0.55), transparent 70%);
  filter: blur(2px);
  opacity: 0.45;
}

.horn-left {
  left: -90px;
  top: 80px;
  clip-path: polygon(18% 8%, 78% 0, 58% 38%, 96% 92%, 42% 70%, 8% 100%, 28% 48%);
  animation: horn-sway 7s ease-in-out infinite;
}

.horn-right {
  right: -90px;
  top: 120px;
  clip-path: polygon(82% 8%, 22% 0, 42% 38%, 4% 92%, 58% 70%, 92% 100%, 72% 48%);
  animation: horn-sway 8s ease-in-out infinite reverse;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #020302;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

.boot-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(125, 255, 60, 0.25);
  box-shadow: 0 0 40px rgba(125, 255, 60, 0.18);
  animation: spin 3.2s linear infinite;
}

.boot-ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--aura);
  border-left-color: var(--aura-hot);
}

.boot-mark {
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(125, 255, 60, 0.55));
  animation: floaty 2.4s ease-in-out infinite;
}

.boot-word {
  font-family: var(--display);
  letter-spacing: 0.18em;
  color: var(--aura-hot);
  text-shadow: 0 0 18px rgba(125, 255, 60, 0.55);
}

.boot-bar {
  width: 180px;
  height: 3px;
  background: #1a2a1c;
  overflow: hidden;
}

.boot-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--aura-mid), var(--aura-hot));
  animation: load 1.6s ease forwards;
}

.mast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(4, 6, 5, 0.82), rgba(4, 6, 5, 0.28) 80%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(125, 255, 60, 0.08);
}

.mast-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: 0.08em;
  font-size: 18px;
}

.mast-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(125, 255, 60, 0.45));
}

.mast-nav {
  display: flex;
  gap: 28px;
}

.mast-nav a {
  font-family: var(--carved);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
}

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

.mast-nav a:hover {
  color: var(--aura-hot);
}

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

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

.sigil {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 14, 9, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sigil img {
  width: 16px;
  height: 16px;
}

.sigil:hover {
  transform: translateY(-2px);
  border-color: var(--aura);
  box-shadow: 0 0 16px rgba(125, 255, 60, 0.28);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  gap: 5px;
}

.burger i {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--diamond);
}

.charge-btn,
.stone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  font-family: var(--carved);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.charge-btn {
  background: linear-gradient(180deg, #b6ff55, #4adf2a 55%, #2f9a1c);
  color: #071007;
  box-shadow: 0 0 0 1px #d8ff8a inset, 0 8px 24px rgba(125, 255, 60, 0.22);
}

.charge-btn.slim {
  min-height: 40px;
  padding: 0 14px;
}

.charge-btn img,
.stone-btn img {
  width: 16px;
  height: 16px;
}

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

.stone-btn {
  border: 1px solid var(--line);
  background: rgba(8, 14, 10, 0.72);
  color: var(--diamond);
}

.stone-btn img[src*="x.svg"],
.stone-btn img[src*="dexscreener.svg"] {
  filter: none;
}

.charge-btn:hover,
.stone-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.charge-btn:hover {
  box-shadow: 0 0 28px rgba(125, 255, 60, 0.4);
}

main,
footer {
  position: relative;
  z-index: 5;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 110px 64px 80px;
}

.hero-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--aura);
  opacity: 0.55;
}

.hero-spine span {
  animation: pulse-letter 3.6s ease-in-out infinite;
}

.hero-spine span:nth-child(odd) {
  animation-delay: 0.2s;
}

.hero-well {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.well-core {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(125, 255, 60, 0.28),
    0 0 0 10px rgba(7, 12, 9, 0.85),
    0 0 0 11px rgba(231, 238, 240, 0.18),
    0 0 60px rgba(125, 255, 60, 0.22),
    inset 0 0 40px rgba(0, 0, 0, 0.45);
}

.well-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: floaty 4.8s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(125, 255, 60, 0.28);
}

.r1 {
  inset: 4%;
  animation: spin 18s linear infinite;
}

.r2 {
  inset: -6%;
  border-style: solid;
  border-color: rgba(125, 255, 60, 0.12);
  animation: spin 26s linear infinite reverse;
}

.r3 {
  inset: 16%;
  border-color: rgba(224, 120, 72, 0.2);
  animation: spin 12s linear infinite;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--diamond);
  transform: rotate(45deg);
  box-shadow: 0 0 12px #fff;
  animation: twinkle 2.4s ease-in-out infinite;
  z-index: 4;
}

.s1 { top: 12%; right: 18%; }
.s2 { bottom: 16%; left: 14%; animation-delay: 0.5s; }
.s3 { top: 28%; left: 8%; animation-delay: 1s; width: 5px; height: 5px; }
.s4 { bottom: 22%; right: 10%; animation-delay: 1.4s; }

.hero-copy {
  max-width: 560px;
}

.kicker {
  font-family: var(--carved);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aura);
  margin-bottom: 12px;
}

h1,
h2 {
  font-family: var(--display);
  line-height: 0.9;
}

h1 {
  font-size: clamp(58px, 8vw, 108px);
  position: relative;
  margin-bottom: 18px;
}

.h-ghost,
.h-live {
  display: block;
}

.h-ghost {
  position: absolute;
  inset: 0 auto auto 4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(125, 255, 60, 0.25);
  transform: translate(6px, 6px);
}

.h-live {
  position: relative;
  background: linear-gradient(180deg, #f4ffe8, #8dff4a 58%, #e7a06a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(125, 255, 60, 0.18);
  animation: title-flicker 5s steps(2) infinite;
}

.say {
  font-family: var(--carved);
  font-size: 22px;
  color: var(--diamond);
  margin-bottom: 8px;
}

.lede {
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 22px;
}

.badge-row,
.hero-actions,
.ca-row,
.join-actions,
.foot-sigs,
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--aura-hot);
}

.chip.ghost {
  color: var(--ink);
}

.chip img {
  width: 14px;
  height: 14px;
}

.ca-row {
  margin: 22px 0 26px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(6, 12, 8, 0.75);
  max-width: 100%;
}

.ca-label {
  font-family: var(--carved);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--aura);
}

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

.copy-ca {
  padding: 6px 10px;
  border: 1px solid var(--line);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.copy-ca:hover,
.copy-ca.copied {
  border-color: var(--aura);
  color: var(--aura-hot);
}

.stampede {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(8, 16, 10, 0.55);
}

.stampede-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 14px 0;
  font-family: var(--display);
  letter-spacing: 0.16em;
  color: var(--aura);
  animation: stampede 22s linear infinite;
}

.stampede:hover .stampede-track {
  animation-play-state: paused;
}

.about,
.buy,
.chart {
  padding: 110px 64px;
}

.sec-head {
  margin-bottom: 48px;
}

.sec-head h2 {
  font-size: clamp(48px, 6vw, 80px);
  background: linear-gradient(180deg, #f3ffe6, #73e83a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grin-bar {
  margin-top: 16px;
  height: 2px;
  width: 180px;
  background: linear-gradient(90deg, transparent, var(--aura), var(--flesh), var(--aura), transparent);
  position: relative;
}

.grin-bar::before,
.grin-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--diamond);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 10px #fff;
}

.grin-bar::before { left: 0; }
.grin-bar::after { right: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.manifesto,
.slab,
.lane,
.vault {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(125, 255, 60, 0.04), transparent 28%),
    rgba(7, 12, 9, 0.72);
}

.manifesto {
  padding: 36px;
}

.pull {
  font-family: var(--carved);
  font-size: 28px;
  line-height: 1.25;
  color: var(--diamond);
  margin-bottom: 22px;
}

.manifesto p + p {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--mute);
}

.pillars {
  display: grid;
  gap: 16px;
}

.slab {
  padding: 22px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.slab:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 20px rgba(125, 255, 60, 0.12);
}

.slab-num {
  font-family: var(--mono);
  color: var(--aura);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.slab h3,
.lane h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 6px 0 8px;
}

.slab p,
.lane p {
  color: var(--mute);
  font-size: 18px;
  line-height: 1.45;
}

.rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rail::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: rgba(125, 255, 60, 0.12);
}

.rail-fill {
  position: absolute;
  top: 38px;
  left: 7%;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--aura-mid), var(--aura-hot));
  box-shadow: 0 0 12px var(--aura);
  transition: width 0.4s ease;
}

.lane {
  position: relative;
  padding: 28px 22px 24px;
}

.lane-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: #08110c;
  box-shadow: 0 0 16px rgba(125, 255, 60, 0.12);
}

.lane-mark img {
  width: 22px;
  height: 22px;
}

.lane a {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--carved);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aura-hot);
}

.vault {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.vault iframe {
  width: 100%;
  height: 640px;
  border: 0;
  background: #0b0f0c;
}

.vault-corners::before,
.vault-corners::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  border: 2px solid var(--aura);
  pointer-events: none;
}

.vault-corners::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.vault-corners::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.join {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.join-banner,
.join-shade {
  position: absolute;
  inset: 0;
}

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

.join-shade {
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.2), rgba(2, 4, 3, 0.55) 48%, rgba(2, 4, 3, 0.82)),
    radial-gradient(circle at 30% 50%, rgba(125, 255, 60, 0.12), transparent 46%);
}

.join-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 48px 24px;
}

.join-body h2 {
  font-size: clamp(56px, 8vw, 96px);
  margin-bottom: 16px;
  color: #f3ffe8;
  text-shadow: 0 0 24px rgba(125, 255, 60, 0.35);
}

.join-body p:not(.kicker) {
  font-size: 22px;
  color: #d7e6d3;
  margin-bottom: 28px;
}

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

.foot {
  padding: 36px 64px 48px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: #050806;
}

.foot-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.foot-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
}

.foot-brand span,
.foot small,
.foot p {
  color: var(--mute);
}

.foot small {
  font-size: 13px;
}

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

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

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

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

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

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: rotate(45deg) scale(0.7); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.15); }
}

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

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

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes horn-sway {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-8px); }
}

@keyframes vein-crawl {
  to { stroke-dashoffset: -260; }
}

@keyframes pulse-letter {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; text-shadow: 0 0 12px var(--aura); }
}

@keyframes title-flicker {
  0%, 92%, 100% { filter: none; }
  94% { filter: brightness(1.4); }
  96% { filter: brightness(0.85); }
}

@media (max-width: 1100px) {
  .hero,
  .about,
  .buy,
  .chart,
  .foot {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-spine { display: none; }

  .hero-copy { margin: 0 auto; }

  .badge-row,
  .hero-actions,
  .ca-row {
    justify-content: center;
  }

  .about-grid,
  .rail {
    grid-template-columns: 1fr;
  }

  .rail::before,
  .rail-fill {
    display: none;
  }
}

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

@media (max-width: 760px) {
  .mast-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(5, 10, 7, 0.96);
    border: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .mast-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .burger { display: grid; }

  .charge-btn.slim span { display: none; }

  h1 { font-size: 52px; }

  .hero-actions,
  .join-actions {
    flex-direction: column;
  }

  .vault,
  .vault iframe { min-height: 460px; height: 460px; }
}
