:root {
  --lime: #c8ff00;
  --lime-hot: #deff4a;
  --lime-deep: #8fbf00;
  --ink: #050805;
  --ink-2: #0a120a;
  --ink-3: #101a10;
  --fog: rgba(200, 255, 0, 0.08);
  --text: #eef6e4;
  --muted: #9aab8f;
  --line: rgba(200, 255, 0, 0.28);
  --glow: 0 0 24px rgba(200, 255, 0, 0.35);
  --font-ui: "Chakra Petch", system-ui, sans-serif;
  --font-brand: "Playfair Display", Georgia, serif;
  --shell: min(1180px, calc(100% - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(200, 255, 0, 0.16), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(143, 191, 0, 0.12), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(200, 255, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #040704 0%, #070d07 45%, #050805 100%);
}

.mesh {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(700px) rotateX(58deg) translateY(-12%);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 75%);
  animation: mesh-drift 18s linear infinite;
}

.aurora {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 120deg at 30% 40%, transparent 0deg, rgba(200, 255, 0, 0.12) 40deg, transparent 90deg),
    conic-gradient(from 280deg at 70% 60%, transparent 0deg, rgba(143, 191, 0, 0.1) 50deg, transparent 100deg);
  filter: blur(40px);
  animation: aurora-spin 28s linear infinite;
}

#ember-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.speedlines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0 18px,
      rgba(200, 255, 0, 0.015) 18px 19px
    );
  mix-blend-mode: screen;
  animation: lines-shift 7s linear infinite;
}

.scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(200, 255, 0, 0.04) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: scan-sweep 6.5s ease-in-out infinite;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
}

@keyframes mesh-drift {
  to { background-position: 54px 54px, 54px 0; }
}

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

@keyframes lines-shift {
  to { transform: translateX(-40px); }
}

@keyframes scan-sweep {
  0%, 100% { background-position: 0 -40%; }
  50% { background-position: 0 140%; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 5, 0.72);
  border-bottom: 1px solid rgba(200, 255, 0, 0.12);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: var(--glow);
  animation: logo-pulse 3.2s ease-in-out infinite;
}

.brand em {
  font-style: normal;
  color: var(--lime);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-panel a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-panel a:hover {
  color: var(--lime);
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.45);
}

.nav-x {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(200, 255, 0, 0.28);
  background: rgba(200, 255, 0, 0.06);
  color: var(--lime) !important;
}

.nav-x img {
  width: 14px;
  height: 14px;
}

.nav-x:hover {
  border-color: var(--lime);
  background: rgba(200, 255, 0, 0.14);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.25);
}

.nav-buy {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--lime);
  color: var(--ink) !important;
  background: var(--lime);
  box-shadow: var(--glow);
}

.nav-buy:hover {
  color: var(--ink) !important;
  background: var(--lime-hot);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(200, 255, 0, 0.5);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.86rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

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

.btn-solid {
  background: linear-gradient(180deg, var(--lime-hot), var(--lime));
  color: var(--ink);
  box-shadow: var(--glow), inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

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

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(200, 255, 0, 0.06);
  color: var(--lime);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

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

.btn-line {
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  padding-inline: 0.2rem;
  min-height: auto;
  border-radius: 0;
}

.btn-line:hover {
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.55);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: center;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.hero-video.is-live {
  opacity: 0.28;
}

.hero-haze {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 8, 5, 0.92) 0%, rgba(5, 8, 5, 0.55) 48%, rgba(5, 8, 5, 0.78) 100%),
    radial-gradient(circle at 72% 45%, rgba(200, 255, 0, 0.18), transparent 42%);
}

.hero-slash {
  position: absolute;
  inset: auto 0 0;
  height: 14px;
  z-index: 2;
  background: repeating-linear-gradient(
    -45deg,
    var(--lime) 0 12px,
    #050805 12px 24px
  );
  box-shadow: 0 0 28px rgba(200, 255, 0, 0.35);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.ticker-chip {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(200, 255, 0, 0.4);
  background: rgba(200, 255, 0, 0.08);
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.18);
  animation: ticker-glow 2.8s ease-in-out infinite;
}

.brand-signal {
  margin: 0 0 1rem;
  font-family: var(--font-brand);
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--lime);
  text-shadow:
    0 0 22px rgba(200, 255, 0, 0.5),
    0 0 55px rgba(200, 255, 0, 0.25),
    0 2px 0 rgba(0, 0, 0, 0.45);
}

.lede {
  max-width: 36rem;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  isolation: isolate;
}

.mark-glow {
  position: absolute;
  width: min(420px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.35), transparent 68%);
  filter: blur(8px);
  animation: glow-breathe 3.4s ease-in-out infinite;
  z-index: 0;
}

.ring {
  position: absolute;
  border: 1px solid rgba(200, 255, 0, 0.28);
  border-radius: 50%;
  z-index: 1;
}

.ring-a {
  width: min(360px, 78%);
  aspect-ratio: 1;
  animation: spin 14s linear infinite;
  border-style: dashed;
}

.ring-b {
  width: min(300px, 66%);
  aspect-ratio: 1;
  animation: spin-rev 10s linear infinite;
  border-color: rgba(200, 255, 0, 0.45);
}

.ring-c {
  width: min(240px, 54%);
  aspect-ratio: 1;
  animation: spin 7s linear infinite;
  box-shadow: inset 0 0 24px rgba(200, 255, 0, 0.12);
}

.mark {
  position: relative;
  z-index: 2;
  width: min(240px, 58vw);
  border-radius: 22px;
  box-shadow:
    0 0 0 3px rgba(200, 255, 0, 0.35),
    0 0 40px rgba(200, 255, 0, 0.35),
    0 25px 60px rgba(0, 0, 0, 0.45);
  transform: translateZ(0);
  transition: transform 0.15s ease-out;
  animation: float-y 4.5s ease-in-out infinite;
}

.hazard-tape {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: min(280px, 70%);
  height: 10px;
  transform: translateX(-50%) rotate(-6deg);
  background: repeating-linear-gradient(
    -45deg,
    var(--lime) 0 10px,
    #050805 10px 20px
  );
  opacity: 0.85;
  z-index: 3;
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.3);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  z-index: 4;
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  border-radius: 999px;
  background: var(--lime);
  animation: cue-drop 1.6s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.7);
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 14px rgba(200, 255, 0, 0.35); }
  50% { box-shadow: 0 0 28px rgba(200, 255, 0, 0.7); }
}

@keyframes ticker-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

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

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

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes cue-drop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0.15; }
}

/* Sections */
.section {
  position: relative;
  padding: 6.5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

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

.section-head h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  background:
    linear-gradient(160deg, rgba(200, 255, 0, 0.08), transparent 55%),
    rgba(10, 18, 10, 0.72);
  border: 1px solid rgba(200, 255, 0, 0.16);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.16), transparent 70%);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 0, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(200, 255, 0, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--lime);
  filter: drop-shadow(0 0 10px rgba(200, 255, 0, 0.45));
}

.feature h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Community mosaic */
.community {
  margin-top: 3.25rem;
}

.community-head {
  margin-bottom: 1.25rem;
}

.community-head h3 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.community-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.85rem;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 0, 0.18);
  background: #0a120a;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.shot-wide {
  grid-row: 1 / span 2;
}

.shot-tall {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1.05) contrast(1.05);
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 8, 5, 0.45));
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.35s ease;
}

.shot:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.08) brightness(1.05);
}

.shot:hover::after {
  opacity: 0.25;
}

.shot:hover {
  border-color: rgba(200, 255, 0, 0.5);
  box-shadow: 0 0 28px rgba(200, 255, 0, 0.18);
}

/* How to buy */
.howtobuy {
  background:
    radial-gradient(700px 320px at 10% 20%, rgba(200, 255, 0, 0.08), transparent 60%),
    transparent;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--lime);
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.08), transparent 55%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.step:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.14), transparent 70%);
}

.step-num {
  font-family: var(--font-brand);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 16px rgba(200, 255, 0, 0.4);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.buy-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid rgba(200, 255, 0, 0.22);
  background: rgba(8, 14, 8, 0.85);
  box-shadow: inset 0 0 40px rgba(200, 255, 0, 0.04);
}

.ca-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

.ca-line {
  margin: 0;
  min-height: 1.5rem;
  color: var(--muted);
  word-break: break-all;
  font-size: 0.95rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.ca-line.is-empty::before {
  content: attr(data-placeholder);
  color: var(--muted);
  opacity: 0.75;
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.ca-line.is-ready {
  color: var(--text);
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

/* Chart */
.chart-frame {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(200, 255, 0, 0.25);
  background: rgba(4, 8, 4, 0.9);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.05), 0 0 50px rgba(200, 255, 0, 0.08);
}

.chart-frame-edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--lime), var(--lime)) top left / 42px 2px no-repeat,
    linear-gradient(var(--lime), var(--lime)) top left / 2px 42px no-repeat,
    linear-gradient(var(--lime), var(--lime)) top right / 42px 2px no-repeat,
    linear-gradient(var(--lime), var(--lime)) top right / 2px 42px no-repeat,
    linear-gradient(var(--lime), var(--lime)) bottom left / 42px 2px no-repeat,
    linear-gradient(var(--lime), var(--lime)) bottom left / 2px 42px no-repeat,
    linear-gradient(var(--lime), var(--lime)) bottom right / 42px 2px no-repeat,
    linear-gradient(var(--lime), var(--lime)) bottom right / 2px 42px no-repeat;
  opacity: 0.85;
  z-index: 2;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  z-index: 1;
}

.chart-placeholder img {
  width: 42px;
  height: 42px;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(200, 255, 0, 0.45));
}

.chart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

#dex-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.chart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.1rem;
}

.chart-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.chart-actions a img {
  width: 16px;
  height: 16px;
}

.chart-actions a:hover {
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.55);
}

/* Join Us */
.joinus {
  padding-bottom: 7rem;
}

.banner-stage {
  position: relative;
  margin-bottom: 1.75rem;
}

.banner-glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(ellipse at center, rgba(200, 255, 0, 0.28), transparent 70%);
  filter: blur(18px);
  animation: glow-breathe 3.8s ease-in-out infinite;
  z-index: 0;
}

.join-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(200, 255, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(200, 255, 0, 0.12);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 64px;
  border: 1px solid rgba(200, 255, 0, 0.22);
  background: rgba(200, 255, 0, 0.05);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social img {
  width: 20px;
  height: 20px;
}

.social:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: rgba(200, 255, 0, 0.12);
  box-shadow: var(--glow);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(200, 255, 0, 0.14);
  padding: 1.6rem 0 2rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(200, 255, 0, 0.3);
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
}

.footer-brand span {
  color: var(--lime);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* Reveal */
.rise {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.7s ease;
}

.rise.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-layout,
  .about-grid,
  .buy-bar,
  .socials {
    grid-template-columns: 1fr;
  }

  .community-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .shot-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .shot-tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 3.2rem;
  }

  .hero-mark {
    min-height: 320px;
    order: -1;
  }

  .buy-actions {
    justify-content: flex-start;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .community-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .shot,
  .shot-wide,
  .shot-tall {
    min-height: 210px;
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.2rem 1.2rem;
    background: rgba(5, 8, 5, 0.96);
    border-bottom: 1px solid rgba(200, 255, 0, 0.16);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(200, 255, 0, 0.08);
  }

  .nav-buy {
    margin-top: 0.5rem;
    text-align: center;
  }

  .brand-signal {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .chart-frame {
    min-height: 420px;
  }
}

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