:root {
  --ink: #050805;
  --paper: #f4f8ed;
  --green: #b7ff74;
  --green-2: #79ee32;
  --muted: #9da99b;
  --line: rgba(183, 255, 116, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

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

button {
  font: inherit;
}

.animated-cat {
  object-fit: cover;
  object-position: 10% center;
}

.sound-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  width: 100%;
  display: none;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  color: white;
  background: radial-gradient(circle, rgba(116,255,54,.22), transparent 42%), #030603;
  text-align: center;
}

.sound-gate.show {
  display: grid;
}

.sound-gate video {
  width: clamp(110px, 18vw, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(183,255,116,.3);
  margin-bottom: 22px;
}

.sound-gate strong {
  max-width: 980px;
  font-size: clamp(2.3rem, 7vw, 6rem);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .9;
}

.sound-gate span {
  color: var(--green);
  font: 800 .85rem/1 var(--font-geist-mono), monospace;
  letter-spacing: .08em;
}

.sound-gate > div {
  width: min(540px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.sound-gate button {
  padding: 18px;
  border: 2px solid var(--green);
  border-radius: 9px;
  color: #071006;
  background: var(--green);
  font-size: 1.1rem;
  font-weight: 950;
  cursor: pointer;
}

.sound-gate button:last-child {
  color: var(--green);
  background: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: rgba(5, 8, 5, 0.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.05em;
  font-size: 1.15rem;
}

.brand video {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c9d0c6;
  font-size: .88rem;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--green);
}

.mini-cta {
  padding: 11px 17px;
  color: #091006;
  background: var(--green);
  font-weight: 850;
  border-radius: 8px;
  font-size: .86rem;
}

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  padding: 150px 7vw 100px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  background:
    radial-gradient(circle at 76% 42%, rgba(98, 255, 51, .14), transparent 30%),
    linear-gradient(160deg, #060a06 0%, #030503 65%, #0b1508 100%);
}

.chart-grid {
  position: absolute;
  inset: 76px 0 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(183,255,116,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,255,116,.25) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 5%, black 50%, black 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 49%;
  right: 0;
  bottom: 125px;
  height: 180px;
  opacity: .38;
  background: linear-gradient(155deg, transparent 0 18%, var(--green) 18.5% 19.3%, transparent 19.8% 31%, var(--green) 31.5% 32.3%, transparent 32.8% 46%, var(--green) 46.5% 47.3%, transparent 47.8%);
  filter: drop-shadow(0 0 10px var(--green));
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  color: var(--green);
  font: 800 .74rem/1 var(--font-geist-mono), monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(183,255,116,.06);
  padding: 10px 13px;
  border-radius: 99px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(183,255,116,.12);
}

.hero h1 {
  margin: 27px 0 23px;
  font-size: clamp(4rem, 7.2vw, 7.4rem);
  line-height: .85;
  letter-spacing: -.085em;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: #b8c0b5;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.primary-button,
.ticker-button {
  min-height: 58px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 0 24px;
  background: var(--green);
  color: #071006;
  font-weight: 900;
}

.primary-button span {
  font-size: 1.3rem;
}

.ticker-button {
  min-width: 145px;
  display: grid;
  align-content: center;
  text-align: left;
  padding: 0 19px;
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

.ticker-button span {
  font: 700 .61rem/1.2 var(--font-geist-mono), monospace;
  color: var(--muted);
  letter-spacing: .12em;
}

.ticker-button strong {
  font-size: .98rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 26px;
  color: #8d9989;
  font-size: .72rem;
  font-family: var(--font-geist-mono), monospace;
}

.hero-art {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.coin-halo {
  position: absolute;
  width: min(34vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(183,255,116,.25);
  box-shadow: 0 0 120px rgba(112,255,56,.12), inset 0 0 80px rgba(112,255,56,.08);
}

.coin-halo::before,
.coin-halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 6%;
  border: 1px dashed rgba(183,255,116,.22);
}

.coin-halo::after {
  inset: 15%;
  border-style: solid;
}

.hero-cat {
  width: min(30vw, 440px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 10% center;
  border-radius: 50%;
  filter: saturate(.85) contrast(1.08);
  box-shadow: 0 0 60px rgba(112,255,56,.2);
  background: #070a07;
}

.floating-card {
  position: absolute;
  display: grid;
  padding: 12px 15px;
  min-width: 145px;
  border: 1px solid rgba(183,255,116,.25);
  background: rgba(8,14,7,.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.floating-card span {
  color: var(--muted);
  font: 700 .58rem/1.4 var(--font-geist-mono), monospace;
  letter-spacing: .12em;
}

.floating-card strong {
  color: var(--green);
  font-size: .95rem;
}

.card-top { top: 18%; right: 2%; transform: rotate(3deg); }
.card-bottom { bottom: 14%; left: 2%; transform: rotate(-3deg); }

.ticker-strip {
  position: absolute;
  z-index: 5;
  left: -1%;
  right: -1%;
  bottom: 10px;
  overflow: hidden;
  padding: 16px 0;
  background: var(--green);
  color: #071006;
  transform: rotate(-1deg);
}

.ticker-strip div {
  display: flex;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
  font-weight: 950;
  letter-spacing: -.02em;
}

.section {
  padding: 120px 7vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin: -8px 0 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  letter-spacing: -.07em;
  line-height: .95;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: #97a394;
  line-height: 1.75;
}

.story {
  background: #0a0d0a;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.post-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) .6fr;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.tweet-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: #f5f7f4;
  color: #111;
  border-radius: 16px;
}

.live-post {
  width: 100%;
  max-width: 790px;
  justify-self: center;
}

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

.tweet-head > b {
  margin-left: auto;
  font-size: 1.4rem;
}

.avatar {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.tweet-head div:nth-child(2) {
  display: grid;
  font-size: .88rem;
}

.tweet-head span {
  color: #657067;
}

.tweet-head i {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: white;
  background: #1d9bf0;
  font-size: .66rem;
  font-style: normal;
}

.tweet-card > p {
  margin: 24px 0 18px;
  font-size: 1.2rem;
  line-height: 1.45;
}

.post-video {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.post-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.post-video > span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #071006;
  background: var(--green);
  pointer-events: none;
  font: 900 .58rem/1 var(--font-geist-mono), monospace;
  letter-spacing: .08em;
}

.tweet-meta {
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6b746c;
  font-size: .78rem;
}

.tweet-card > a {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #d6dbd6;
  font-weight: 800;
}

.post-context {
  width: 100%;
  min-height: 100%;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(to bottom, rgba(5,8,5,.1) 20%, rgba(5,8,5,.96));
}

.post-context-cat {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% center;
  opacity: .72;
  z-index: 0;
}

.post-context {
  position: relative;
  overflow: hidden;
}

.post-context > *:not(.post-context-cat) {
  position: relative;
  z-index: 1;
}

.post-context h3 {
  margin: 20px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.post-context p {
  margin: 0;
  color: #9aa696;
  line-height: 1.65;
}

.sound-bars {
  height: 62px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 32px;
}

.sound-bars i {
  width: 8px;
  height: 22%;
  border-radius: 5px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(183,255,116,.45);
  animation: beat 900ms ease-in-out infinite alternate;
}

.sound-bars i:nth-child(2) { height: 58%; animation-delay: -200ms; }
.sound-bars i:nth-child(3) { height: 88%; animation-delay: -400ms; }
.sound-bars i:nth-child(4) { height: 44%; animation-delay: -600ms; }
.sound-bars i:nth-child(5) { height: 100%; animation-delay: -300ms; }
.sound-bars i:nth-child(6) { height: 64%; animation-delay: -500ms; }
.sound-bars i:nth-child(7) { height: 32%; animation-delay: -700ms; }

@keyframes beat {
  to { transform: scaleY(.35); opacity: .55; }
}

.manifesto {
  padding: 80px 7vw;
  text-align: center;
  overflow: hidden;
  background: var(--green);
  color: #071006;
}

.manifesto p,
.manifesto h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .86;
  text-transform: uppercase;
}

.manifesto p {
  font-size: clamp(2.4rem, 6vw, 6.2rem);
  color: rgba(7,16,6,.28);
}

.manifesto h2 {
  font-size: clamp(4rem, 10vw, 10rem);
}

.token {
  background: #050805;
}

.token-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.token-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: #0c100c;
}

.token-card span {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--green);
  font: 800 .66rem/1 var(--font-geist-mono), monospace;
  letter-spacing: .16em;
}

.token-card strong {
  max-width: 85%;
  font-size: 1.8rem;
  letter-spacing: -.04em;
}

.token-card small {
  margin-top: 8px;
  color: #7f8a7d;
}

.token-card.featured {
  grid-row: span 2;
  min-height: 476px;
  background: #101b0c;
}

.token-card.featured strong {
  z-index: 2;
  font-size: 3.3rem;
}

.token-card.featured video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  right: auto;
  top: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: .76;
  mask-image: linear-gradient(to bottom, black 68%, transparent 98%);
}

.contract-card {
  grid-column: 2 / 4;
}

.how {
  background: #0a0d0a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.steps article {
  min-height: 320px;
  padding: 26px 28px 34px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.steps article:last-child {
  border: 0;
}

.steps article > span {
  color: #647061;
  font: 700 .7rem/1 var(--font-geist-mono), monospace;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 50px 0 35px;
  display: grid;
  place-items: center;
  color: #071006;
  background: var(--green);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(183,255,116,.15);
}

.steps h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.steps p {
  margin: 0;
  color: #8c978a;
  line-height: 1.6;
}

.cta-section {
  margin: 0;
  padding: 55px 7vw;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 35px;
  align-items: center;
  color: #071006;
  background: var(--green);
}

.cta-section video {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #071006;
}

.cta-section span {
  font: 900 .65rem/1 var(--font-geist-mono), monospace;
  letter-spacing: .14em;
}

.cta-section h2 {
  margin: 8px 0 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -.07em;
  line-height: .95;
  text-transform: uppercase;
}

.cta-section button {
  padding: 17px 22px;
  border: 2px solid #071006;
  border-radius: 9px;
  color: #071006;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

footer {
  padding: 55px 7vw;
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  gap: 50px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.08);
}

footer p {
  margin: 0;
  color: #758072;
  font-size: .76rem;
  line-height: 1.7;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 950px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-art { min-height: 430px; }
  .hero-cat { width: min(70vw, 420px); }
  .coin-halo { width: min(80vw, 490px); }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .post-stage { grid-template-columns: 1fr; }
  .live-post { justify-self: stretch; max-width: none; }
  .post-context { min-height: 430px; }
  .token-grid { grid-template-columns: 1fr 1fr; }
  .token-card.featured { grid-column: span 2; grid-row: auto; min-height: 400px; }
  .contract-card { grid-column: span 2; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p { grid-column: span 2; }
}

@media (max-width: 620px) {
  .site-header { height: 66px; padding: 0 18px; }
  .site-header .brand span { font-size: .95rem; }
  .site-header .brand img { width: 36px; height: 36px; }
  .mini-cta { padding: 9px 11px; font-size: .74rem; }
  .hero { min-height: 950px; padding: 115px 20px 110px; }
  .hero h1 { font-size: 3.65rem; }
  .hero-actions { flex-direction: column; }
  .primary-button { justify-content: space-between; }
  .hero-art { min-height: 400px; }
  .card-top { right: -8px; }
  .card-bottom { left: -8px; }
  .section { padding: 85px 20px; }
  .section-heading h2 { font-size: 3rem; }
  .tweet-card { padding: 18px; }
  .tweet-meta { flex-direction: column; gap: 4px; }
  .post-video > span { font-size: .5rem; }
  .post-context { min-height: 390px; padding: 26px; }
  .manifesto { padding: 62px 20px; }
  .token-grid { grid-template-columns: 1fr; }
  .token-card.featured,
  .contract-card { grid-column: auto; }
  .token-card.featured { min-height: 350px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .cta-section { grid-template-columns: 72px 1fr; padding: 40px 20px; gap: 18px; }
  .cta-section video { width: 72px; height: 72px; }
  .cta-section button { grid-column: span 2; }
  footer { grid-template-columns: 1fr; padding: 48px 20px; }
  footer p { grid-column: auto; }
  footer > div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sound-bars i { animation: none; }
}
