:root {
  --lime: #c8ff00;
  --lime-hot: #e0ff4a;
  --lime-dim: #8fb800;
  --ink: #070807;
  --ink-2: #0e120c;
  --ink-3: #161b12;
  --smoke: #a8b09a;
  --paper: #f4f7ec;
  --line: rgba(200, 255, 0, 0.18);
  --glow: 0 0 40px rgba(200, 255, 0, 0.35);
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-brand: "Bungee", sans-serif;
  --font-display: "Anton", sans-serif;
  --font-body: "Sora", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

code {
  font-family: var(--font-body);
}

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

/* ===== Stage / background ===== */
.stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(200, 255, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(200, 255, 0, 0.07), transparent 50%),
    radial-gradient(ellipse 45% 35% at 10% 80%, rgba(100, 140, 0, 0.12), transparent 45%),
    linear-gradient(165deg, #050605 0%, #0c1009 45%, #080a07 100%);
}

.stage-wash {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(200, 255, 0, 0.015) 18px 19px
    );
  opacity: 0.7;
}

#speed-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  mix-blend-mode: screen;
}

.halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 255, 0, 0.11) 1px, transparent 1.2px);
  background-size: 7px 7px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  opacity: 0.35;
  animation: halftone-drift 18s linear infinite;
}

.ink-sweep {
  position: absolute;
  height: 18vmin;
  width: 140%;
  left: -20%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.55) 20%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.55) 80%,
    transparent
  );
  filter: blur(1px);
  transform: skewY(-4deg);
  opacity: 0.35;
}

.ink-a {
  top: 28%;
  animation: ink-slide 14s ease-in-out infinite;
}

.ink-b {
  bottom: 18%;
  opacity: 0.22;
  animation: ink-slide 18s ease-in-out infinite reverse;
}

.lime-pulse {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  left: 50%;
  top: 35%;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.14), transparent 65%);
  animation: pulse-glow 5.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%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  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.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.4s steps(2) infinite;
}

.cursor-slash {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid var(--lime);
  border-radius: 2px;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translate(-50%, -50%) rotate(45deg);
}

body.has-pointer .cursor-slash {
  opacity: 0.85;
}

/* ===== Header ===== */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.top.scrolled {
  background: rgba(7, 8, 7, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

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

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

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

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
}

.brand-stack strong {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.brand-stack small {
  font-size: 0.7rem;
  color: var(--smoke);
  letter-spacing: 0.12em;
}

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

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

.nav-panel a:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

.nav-x {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(200, 255, 0, 0.04);
}

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

.nav-buy {
  padding: 0.55rem 0.95rem !important;
  background: var(--lime) !important;
  color: var(--ink) !important;
  border-radius: 4px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: filter 0.2s ease, transform 0.2s ease !important;
}

.nav-buy:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) !important;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lime);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[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;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: var(--glow);
}

.btn-lime:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-ink {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  color: var(--paper);
}

.btn-ink:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.btn-ink img {
  filter: invert(1);
  opacity: 0.9;
}

.btn-lime img {
  filter: none;
}

.btn-icon {
  padding: 0.85rem;
  width: 48px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-video.is-missing {
  opacity: 0;
}

.hero-impact {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 40%, rgba(200, 255, 0, 0.22), transparent 35%),
    radial-gradient(circle at 30% 60%, rgba(200, 255, 0, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.25) 0%, rgba(7, 8, 7, 0.55) 55%, rgba(7, 8, 7, 0.92) 100%);
  pointer-events: none;
}

.hero:has(.hero-video.is-missing) .hero-impact {
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 255, 0, 0.28), transparent 32%),
    conic-gradient(from 0deg at 50% 45%, transparent 0deg, rgba(200, 255, 0, 0.08) 8deg, transparent 16deg),
    linear-gradient(180deg, #0a0e08 0%, #0c1209 50%, #070807 100%);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.88) 0%, rgba(7, 8, 7, 0.55) 42%, rgba(7, 8, 7, 0.2) 70%, transparent 100%),
    linear-gradient(180deg, transparent 40%, rgba(7, 8, 7, 0.9) 100%);
  pointer-events: none;
}

.hero-rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-rays span {
  position: absolute;
  left: 58%;
  top: 38%;
  width: 140vmax;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.55), transparent 70%);
  transform-origin: left center;
  opacity: 0.35;
  animation: ray-spin 12s linear infinite;
}

.hero-rays span:nth-child(2) {
  animation-duration: 16s;
  animation-direction: reverse;
  opacity: 0.22;
  height: 1px;
}

.hero-rays span:nth-child(3) {
  animation-duration: 20s;
  top: 48%;
  opacity: 0.18;
}

.hero-rays span:nth-child(4) {
  animation-duration: 10s;
  top: 30%;
  opacity: 0.28;
  height: 3px;
}

.hero-frame {
  position: relative;
  z-index: 3;
  padding: 7.5rem 0 5.5rem;
}

.brand-mark {
  margin: 0 0 0.6rem;
  font-family: var(--font-brand);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--lime);
  text-shadow:
    0 0 30px rgba(200, 255, 0, 0.45),
    4px 4px 0 #1a2200;
  animation: brand-punch 4s ease-in-out infinite;
}

.hero h1 {
  margin: 0 0 0.85rem;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--paper);
}

.hero-lede {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--smoke);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ca-rail {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.ca-tag {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--lime);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.ca-rail code {
  font-size: 0.8rem;
  color: var(--smoke);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 280px);
}

.ca-rail button {
  flex-shrink: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: background 0.2s ease;
}

.ca-rail button:hover {
  background: rgba(200, 255, 0, 0.1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 4;
  translate: -50% 0;
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: cue-drop 1.6s ease-in-out infinite;
}

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

.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}

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

.section-head h2,
.about-copy h2,
.join-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-head p,
.about-copy p,
.join-copy > p {
  margin: 0;
  color: var(--smoke);
  line-height: 1.65;
  font-size: 1.02rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

/* About */
.about {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(200, 255, 0, 0.04), transparent 30%),
    transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.logo-burst {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}

.logo-burst img {
  position: relative;
  z-index: 2;
  width: min(78%, 320px);
  border-radius: 10px;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(200, 255, 0, 0.35),
    12px 12px 0 rgba(0, 0, 0, 0.45);
  animation: logo-float 5s ease-in-out infinite;
}

.burst-ring {
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(200, 255, 0, 0.35);
  border-radius: 12px;
  animation: ring-spin 10s linear infinite;
  clip-path: polygon(0 12%, 12% 0, 88% 0, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0 88%);
}

.burst-ring-2 {
  inset: 0;
  border-color: rgba(200, 255, 0, 0.15);
  animation-direction: reverse;
  animation-duration: 16s;
}

.signal-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--lime);
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.08), transparent);
  font-weight: 600;
}

.signal-list span {
  font-family: var(--font-display);
  color: var(--lime);
  letter-spacing: 0.06em;
}

/* How to buy */
.howtobuy {
  border-top: 1px solid var(--line);
}

.beat-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.beat {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  background: linear-gradient(160deg, rgba(200, 255, 0, 0.07), rgba(0, 0, 0, 0.25));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.beat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.beat:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 0, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), var(--glow);
}

.beat:hover::before {
  transform: scaleY(1);
}

.beat-num {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  color: var(--lime);
  margin-bottom: 0.7rem;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.beat h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.buy-actions,
.chart-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Chart */
.chart {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(200, 255, 0, 0.03) 40%, transparent);
}

.chart-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.05), 0 20px 60px rgba(0, 0, 0, 0.45);
  min-height: 520px;
}

.chart-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(200, 255, 0, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(200, 255, 0, 0.04);
}

.chart-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

/* Join Us — banner only here */
.joinus {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.join-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.join-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: banner-ken 20s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.55) 0%, rgba(7, 8, 7, 0.35) 35%, rgba(7, 8, 7, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 8, 7, 0.65), transparent 55%);
}

.join-copy {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4.5rem;
  max-width: 40rem;
}

.join-copy .kicker {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.join-copy h2 {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.join-copy > p {
  color: rgba(244, 247, 236, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2rem;
  background: rgba(0, 0, 0, 0.45);
}

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

.brand-foot span {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  color: var(--lime);
}

.footer-row > p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 0.55rem;
}

.footer-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(200, 255, 0, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  border-color: var(--lime);
  background: rgba(200, 255, 0, 0.12);
  transform: translateY(-2px);
}

.footer-links img {
  width: 16px;
  height: 16px;
  filter: invert(86%) sepia(48%) saturate(700%) hue-rotate(28deg) brightness(108%) contrast(104%);
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px) skewY(1deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Animations */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes ink-slide {
  0%,
  100% {
    transform: skewY(-4deg) translateX(-4%);
  }
  50% {
    transform: skewY(-4deg) translateX(4%);
  }
}

@keyframes halftone-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 70px 40px;
  }
}

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

@keyframes logo-kick {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-2px) rotate(-1.5deg);
  }
  70% {
    transform: translateY(1px) rotate(1deg);
  }
}

@keyframes brand-punch {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.015);
    filter: brightness(1.08);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(-1.5%, 1%);
  }
}

@keyframes ray-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

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

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes banner-ken {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, 1%);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .logo-burst {
    max-width: 320px;
  }

  .beat-track {
    grid-template-columns: 1fr;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(7, 8, 7, 0.35) 0%, rgba(7, 8, 7, 0.7) 50%, rgba(7, 8, 7, 0.95) 100%);
  }

  .hero-frame {
    padding-top: 6.5rem;
  }
}

@media (max-width: 820px) {
  .burger {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(7, 8, 7, 0.95);
    border: 1px solid var(--line);
    border-radius: 8px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

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

  .nav-panel a {
    padding: 0.75rem 0.85rem;
    border-radius: 4px;
  }

  .nav-panel a:hover {
    background: rgba(200, 255, 0, 0.08);
  }

  .nav-x,
  .nav-buy {
    width: 100%;
    justify-content: center;
  }

  .nav-buy {
    clip-path: none !important;
    text-align: center;
  }

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

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

@media (max-width: 560px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .brand-mark {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-icon {
    width: 100%;
  }

  .ca-rail {
    width: 100%;
  }

  .ca-rail code {
    max-width: 40vw;
  }

  .joinus {
    min-height: 80vh;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
