:root {
  --void: #050705;
  --ink: #0a100a;
  --panel: #0e1610;
  --panel-hi: #152016;
  --lime: #c8ff00;
  --lime-hi: #e6ff66;
  --lime-deep: #8fcc00;
  --gold: #f0c84a;
  --gold-hi: #ffe28a;
  --ember: #ff6a1a;
  --mist: #c8d9b8;
  --grey: #7a8a72;
  --line: 1px solid rgba(200, 255, 0, 0.22);
  --font-display: "Orbitron", "Arial Black", sans-serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --header-h: 4.5rem;
  --glow: 0 0 24px rgba(200, 255, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--mist);
  font-family: var(--font-body);
  background:
    radial-gradient(900px 520px at 80% 8%, rgba(200, 255, 0, 0.12), transparent 58%),
    radial-gradient(700px 480px at 8% 88%, rgba(255, 106, 26, 0.08), transparent 55%),
    linear-gradient(180deg, #070a07 0%, var(--void) 45%, #060906 100%);
  overflow-x: hidden;
}

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

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.055;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.grid-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(0.9rem, 3vw, 2rem);
  background: rgba(5, 7, 5, 0.78);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: start;
  white-space: nowrap;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: cover;
  border: 1px solid rgba(200, 255, 0, 0.45);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.25);
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lime);
  text-shadow: var(--glow);
}

.logo-text span {
  color: var(--mist);
  margin-left: 0.2em;
}

.nav {
  display: none;
  gap: 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

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

.nav-cta {
  justify-self: end;
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--void);
  border: 1px solid var(--lime-hi);
  box-shadow: var(--glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(200, 255, 0, 0.5);
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease), box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--lime);
  color: var(--void);
  border-color: var(--lime-hi);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(200, 255, 0, 0.55);
}

.btn-ghost {
  background: rgba(14, 22, 16, 0.85);
  color: var(--lime);
  border-color: rgba(200, 255, 0, 0.35);
}

.btn-ghost:hover {
  border-color: var(--lime);
  background: rgba(200, 255, 0, 0.08);
}

.btn-gold {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold-hi);
  box-shadow: 0 0 20px rgba(240, 200, 74, 0.35);
}

/* Hero — full-bleed banner */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 3rem) 3.5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.88) 0%, rgba(5, 7, 5, 0.55) 42%, rgba(5, 7, 5, 0.2) 72%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.45) 0%, transparent 28%, transparent 55%, rgba(5, 7, 5, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 18px var(--lime);
  animation: scan 3.2s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  margin: 0;
  display: grid;
  gap: 0.12em;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9.5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--lime);
  text-shadow:
    0 0 30px rgba(200, 255, 0, 0.45),
    3px 4px 0 rgba(0, 0, 0, 0.85);
}

.hero-brand__line {
  display: block;
}

.hero-lede {
  margin: 1.15rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--mist);
  letter-spacing: 0.02em;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: rise 0.9s var(--ease) 0.22s both;
}

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

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes scan {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: min(100svh, 820px);
    align-items: end;
  }

  .hero-visual img {
    object-position: 28% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, 0.55) 0%, rgba(5, 7, 5, 0.35) 40%, rgba(5, 7, 5, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 7, 5, 0.55) 0%, transparent 60%);
  }

  .hero-brand {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-block: var(--line);
  background: #050805;
  color: var(--lime);
}

.ticker-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  animation: ticker 28s linear infinite;
}

.ticker-track b {
  color: var(--ember);
  font-weight: 400;
}

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

/* Shared sections */
.section-inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f4ffe8;
}

.section-lede {
  margin: 1rem 0 1.5rem;
  max-width: 34rem;
  color: var(--grey);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 400;
}

.about,
.token,
.buy,
.principles,
.chart {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

/* About */
.about-heading {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 380px);
    gap: 2.75rem;
  }

  .about-visual {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    width: 100%;
    max-width: 380px;
    justify-self: end;
  }
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.about-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 1.15rem;
  padding: 0 0 1.85rem;
}

.about-step:last-child {
  padding-bottom: 0;
}

.about-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.375rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--lime), transparent);
  transform: translateX(-50%);
}

.about-step__index {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 0, 0.45);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.2);
}

.about-step__body {
  padding-top: 0.35rem;
  min-width: 0;
}

.about-step__body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #f4ffe8;
}

.about-step__body p {
  margin: 0;
  max-width: 34rem;
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-step__body strong {
  color: var(--lime);
  font-weight: 600;
}

.lore-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid rgba(200, 255, 0, 0.28);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.08);
  overflow: hidden;
}

.lore-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(200, 255, 0, 0.2);
}

.lore-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--grey);
}

.lore-card figcaption b {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.rep-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .rep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rep {
  padding: 1.35rem 1.25rem 1.5rem;
  background: rgba(14, 22, 16, 0.75);
  border: 1px solid rgba(200, 255, 0, 0.18);
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

.rep:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 0, 0.5);
  box-shadow: 0 0 28px rgba(200, 255, 0, 0.12);
}

.rep > span {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--void);
  background: var(--lime);
  padding: 0.2rem 0.55rem;
  letter-spacing: 0.08em;
}

.rep h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #f4ffe8;
}

.rep p {
  margin: 0;
  color: var(--grey);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Token */
.ca-box {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.ca-box code {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  font-family: Consolas, Monaco, monospace;
  font-size: clamp(0.78rem, 2.2vw, 0.98rem);
  background: var(--panel);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 0, 0.28);
  word-break: break-all;
}

.token-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.token-meta span {
  padding: 0.45rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 255, 0, 0.2);
  background: var(--panel);
  color: var(--grey);
}

.token-meta b {
  color: var(--lime);
  margin-left: 0.35rem;
}

.token-note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.95rem;
}

/* How to Buy */
.buy {
  background:
    linear-gradient(180deg, rgba(200, 255, 0, 0.06), transparent 40%),
    var(--panel);
  border-block: var(--line);
}

.buy .eyebrow {
  color: var(--lime);
}

.buy-heading {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.buy-heading .section-lede {
  margin-top: 0.85rem;
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .buy-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.buy-steps li {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.45rem;
  background: rgba(5, 7, 5, 0.55);
  border: 1px solid rgba(200, 255, 0, 0.2);
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

.buy-steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 255, 0, 0.5);
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.1);
}

.buy-steps li > span {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--lime);
  color: var(--void);
}

.buy-steps b {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
  color: #f4ffe8;
}

.buy-steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--grey);
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

/* Chart */
.chart-shell {
  margin-top: 0.5rem;
  border: 1px solid rgba(200, 255, 0, 0.25);
  background: #050705;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.06);
}

.chart-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(200, 255, 0, 0.2);
  background: rgba(200, 255, 0, 0.08);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  background: #050705;
}

@media (min-width: 900px) {
  #dexscreener-embed {
    padding-bottom: 62%;
  }
}

#dexscreener-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-actions {
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem 3rem;
  border-top: var(--line);
  text-align: center;
  background: #040604;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lime);
}

.footer-brand img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border: 1px solid rgba(200, 255, 0, 0.4);
}

.site-footer p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: var(--grey);
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .hero-lede,
  .hero-actions,
  .hero-visual img,
  .ticker-track,
  .hero::after {
    animation: none !important;
  }
}
