:root {
  --bg: #050505;
  --bg-elevated: #0c0f0f;
  --bg-card: #121414;
  --lime: #d4ff00;
  --lime-soft: #abd600;
  --lime-dim: rgba(212, 255, 0, 0.12);
  --lime-glow: rgba(212, 255, 0, 0.35);
  --text: #f4f7f0;
  --muted: #8b9488;
  --border: rgba(212, 255, 0, 0.14);
  --danger: #ff5c5c;
  --radius: 18px;
  --max: 1180px;
  --header-h: 76px;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212, 255, 0, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(212, 255, 0, 0.06), transparent 50%),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(212, 255, 0, 0.35), 0 0 24px var(--lime-glow);
}

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

.nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--lime);
  color: #0a0a0a !important;
  font-weight: 700;
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: #0a0a0a !important;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: var(--text);
  position: relative;
  transition: transform 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #070907, #0d1208 50%, #070907);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.9rem 0;
  animation: ticker 38s linear infinite;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.ticker-item .pair {
  color: var(--lime);
}

.ticker-item .up {
  color: var(--lime-soft);
}

.ticker-item .down {
  color: var(--danger);
}

.ticker-item .pair.muted,
.ticker-item .down.pair {
  color: var(--muted);
}

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 4rem;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 255, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 255, 0, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--lime);
  color: #111;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
  animation: pulse 1.6s ease-in-out infinite;
}

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

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--lime);
  text-shadow: 0 0 40px var(--lime-glow);
}

.hero-copy {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.9rem 1.55rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

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

.btn-primary {
  background: var(--lime);
  color: #0b0b0b;
  box-shadow: 0 14px 40px var(--lime-glow);
}

.btn-primary:hover {
  box-shadow: 0 18px 50px rgba(212, 255, 0, 0.45);
}

.btn-ghost {
  border: 2px solid var(--lime);
  color: var(--lime);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--lime);
  color: #0b0b0b;
}

.ca-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 34rem);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(18, 20, 20, 0.9);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ca-chip:hover {
  border-color: rgba(212, 255, 0, 0.4);
  background: #151818;
}

.ca-chip .label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.ca-chip .value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.ca-chip .copy-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.ca-chip.copied {
  border-color: var(--lime);
}

.ca-chip.copied .copy-icon {
  color: var(--lime);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-glow), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.logo-frame {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  border-radius: 28px;
  padding: 0.55rem;
  background:
    linear-gradient(145deg, rgba(212, 255, 0, 0.55), rgba(212, 255, 0, 0.05) 45%, rgba(255, 255, 255, 0.05)),
    #0a0a0a;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(212, 255, 0, 0.18);
  animation: float 6s ease-in-out infinite;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.float-badge {
  position: absolute;
  right: -0.4rem;
  bottom: 1.4rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: var(--lime);
  color: #111;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: rotate(3deg);
}

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

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2,
.story-copy h2,
.cta-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-head h2 .accent,
.story-copy h2 .accent,
.cta-panel h2 .accent {
  color: var(--lime);
}

.section-head p,
.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Banner story */
.banner-stage {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 255, 0, 0.05);
}

.banner-stage img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0b0e0b, #080908);
}

.banner-caption strong {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}

.banner-caption span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.story-card {
  position: relative;
  padding: 1.4rem 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(212, 255, 0, 0.05), transparent 40%),
    var(--bg-card);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 255, 0, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.story-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--lime-dim);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.story-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Values */
.values {
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(212, 255, 0, 0.08), transparent 60%),
    var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(12, 15, 15, 0.9);
  min-height: 100%;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--lime-dim);
  color: var(--lime);
  border: 1px solid rgba(212, 255, 0, 0.2);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Manifesto / CTA */
.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.manifesto-panel,
.cta-panel {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.manifesto-panel {
  background:
    linear-gradient(135deg, rgba(212, 255, 0, 0.08), transparent 45%),
    var(--bg-elevated);
}

.quote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.quote span {
  color: var(--lime);
}

.pillars {
  display: grid;
  gap: 0.75rem;
}

.pillar {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pillar strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.pillar span {
  color: var(--muted);
  font-size: 0.92rem;
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime-glow);
  flex-shrink: 0;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(500px 240px at 80% 20%, rgba(212, 255, 0, 0.14), transparent 60%),
    #0a0d0a;
}

.cta-panel p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.stat {
  padding: 0.9rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

.stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lime);
  letter-spacing: 0.03em;
}

.stat span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 2.75rem 0 5.5rem;
  background: #080908;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* FAB */
.trade-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #111;
  box-shadow: 0 16px 40px var(--lime-glow);
  transition: transform 0.18s ease;
}

.trade-fab:hover {
  transform: scale(1.08);
}

.trade-fab svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 980px) {
  .hero-grid,
  .manifesto,
  .story-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(8, 9, 8, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }

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

  .nav a,
  .nav-cta {
    width: 100%;
    padding: 0.9rem 0.75rem;
    border-radius: 12px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero-grid,
  .manifesto,
  .story-grid,
  .values-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .float-badge {
    right: 0.5rem;
    bottom: 0.75rem;
  }

  .logo-frame {
    width: min(100%, 360px);
  }
}

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

  .ticker-track,
  .logo-frame,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Cinematic art direction */
body {
  overflow-x: hidden;
  background-color: #020302;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 15% 20%, rgba(190, 255, 0, 0.09), transparent 24rem),
    radial-gradient(circle at 85% 65%, rgba(212, 255, 0, 0.06), transparent 30rem),
    linear-gradient(180deg, #030403, #070907 50%, #020302);
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 255, 0, 0.07), transparent 65%);
  filter: blur(10px);
}

.site-header {
  border-color: rgba(212, 255, 0, 0.18);
  background: linear-gradient(180deg, rgba(2, 3, 2, 0.9), rgba(2, 3, 2, 0.68));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 3.35rem;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.brand:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.18);
}

.nav-cta::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.7), transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.nav-cta:hover::before,
.btn-primary:hover::before {
  transform: translateX(130%);
}

.ticker {
  position: relative;
  z-index: 10;
  box-shadow: inset 0 0 40px rgba(212, 255, 0, 0.04);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 8rem;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #030403, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #030403, transparent);
}

.hero {
  min-height: calc(100svh - var(--header-h) - 58px);
  display: grid;
  align-items: center;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: #020302;
  isolation: isolate;
}

.hero::before {
  z-index: -1;
  opacity: 0.75;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, #020302 0%, rgba(2, 3, 2, 0.96) 19%, rgba(2, 3, 2, 0.42) 53%, rgba(2, 3, 2, 0.05) 100%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.18), rgba(2, 3, 2, 0.15) 70%, #020302),
    url("/asset/robinhoodies-hero.png") 72% center / cover no-repeat;
  filter: saturate(1.15) contrast(1.05);
  animation: heroBreath 12s ease-in-out infinite alternate;
}

.hero-vignette {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(ellipse at 73% 42%, transparent 20%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, transparent 65%, #020302);
  pointer-events: none;
}

.hero-streak {
  position: absolute;
  z-index: -1;
  width: 2px;
  height: 38vh;
  background: linear-gradient(transparent, var(--lime), transparent);
  filter: blur(0.2px);
  opacity: 0.55;
  transform: rotate(24deg);
  box-shadow: 0 0 18px var(--lime);
}

.streak-one {
  top: -8%;
  left: 52%;
  animation: streak 7s ease-in-out infinite;
}

.streak-two {
  right: 11%;
  bottom: -10%;
  animation: streak 8s ease-in-out -3s infinite reverse;
}

@keyframes heroBreath {
  to {
    transform: scale(1.035);
    filter: saturate(1.35) contrast(1.08);
  }
}

@keyframes streak {
  50% {
    opacity: 0.1;
    transform: translate3d(80px, 80px, 0) rotate(24deg);
  }
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  min-height: 600px;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero h1 {
  font-size: clamp(4.3rem, 8.6vw, 8.2rem);
  max-width: 8.2ch;
  margin-left: -0.05em;
  line-height: 0.83;
  letter-spacing: -0.06em;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.65));
}

.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 247, 240, 0.78);
  text-shadow: none;
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.glitch::before {
  color: white;
  transform: translateX(3px);
  clip-path: inset(15% 0 60%);
}

.glitch::after {
  color: #6aff00;
  transform: translateX(-3px);
  clip-path: inset(65% 0 8%);
}

.glitch:hover::before,
.glitch:hover::after {
  animation: glitchFlash 0.35s steps(2) infinite;
}

@keyframes glitchFlash {
  50% {
    opacity: 0.7;
    transform: translateX(-2px);
  }
}

.hero-copy {
  color: rgba(233, 240, 229, 0.7);
  text-shadow: 0 2px 12px #000;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 2px 16px 2px 16px;
}

.btn-primary {
  box-shadow:
    0 16px 48px rgba(212, 255, 0, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.ca-chip {
  background: rgba(4, 6, 4, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.hero-visual {
  min-height: 500px;
}

.logo-frame {
  width: min(100%, 520px);
  aspect-ratio: 16 / 10.65;
  padding: 0;
  border-radius: 20px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  background: transparent;
  opacity: 0.48;
  mix-blend-mode: screen;
  box-shadow: 0 0 90px rgba(212, 255, 0, 0.18);
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(212, 255, 0, 0.46);
  border-radius: inherit;
  clip-path: polygon(0 0, 35% 0, 35% 1px, 100% 1px, 100% 70%, calc(100% - 1px) 70%, calc(100% - 1px) 100%, 70% 100%, 70% calc(100% - 1px), 0 calc(100% - 1px));
}

.logo-frame img {
  border-radius: inherit;
  filter: contrast(1.08);
}

.float-badge {
  right: 1rem;
  bottom: -1rem;
}

.hero-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  50% {
    transform: scale(1.18);
    opacity: 0.65;
  }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(212, 255, 0, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.orbit-a {
  width: 440px;
  height: 180px;
  transform: rotate(-18deg);
  animation: orbitSpin 13s linear infinite;
}

.orbit-b {
  width: 360px;
  height: 520px;
  transform: rotate(32deg);
  animation: orbitSpin 18s linear infinite reverse;
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  font: 0.62rem var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--lime), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  50% {
    transform: scaleY(0.35);
    transform-origin: bottom;
  }
}

.section {
  position: relative;
  isolation: isolate;
}

.section-head h2 {
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.section-kicker {
  position: relative;
  padding: 0 2.5rem;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime));
}

.section-kicker::before {
  left: 0;
}

.section-kicker::after {
  right: 0;
  transform: rotate(180deg);
}

.banner-stage {
  transform: perspective(1400px) rotateX(1.5deg);
  border-color: rgba(212, 255, 0, 0.3);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(212, 255, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.banner-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(212, 255, 0, 0.11), transparent 60%);
  transform: translateX(-100%);
  animation: bannerScan 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerScan {
  55%,
  100% {
    transform: translateX(110%);
  }
}

.story-card,
.value-card {
  backdrop-filter: blur(12px);
}

.story-card::after,
.value-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(35px);
  opacity: 0.08;
  transition: opacity 0.25s ease;
}

.story-card:hover::after,
.value-card:hover::after {
  opacity: 0.26;
}

/* Meme gallery */
.meme-section {
  overflow: hidden;
  padding-top: clamp(5rem, 10vw, 9rem);
  background:
    linear-gradient(rgba(3, 4, 3, 0.86), rgba(3, 4, 3, 0.95)),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(212, 255, 0, 0.035) 34px 35px);
}

.meme-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 50%;
  width: 60rem;
  height: 60rem;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 255, 0, 0.08);
  box-shadow:
    0 0 0 80px rgba(212, 255, 0, 0.015),
    0 0 0 160px rgba(212, 255, 0, 0.01);
}

.energy-feather {
  position: absolute;
  z-index: -1;
  top: 6rem;
  right: -5rem;
  width: min(38vw, 34rem);
  opacity: 0.2;
  mix-blend-mode: screen;
  filter: saturate(1.25);
  transform: rotate(8deg);
}

.meme-word {
  position: absolute;
  z-index: -1;
  font: clamp(8rem, 22vw, 22rem) / 0.8 var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 255, 0, 0.05);
  letter-spacing: -0.08em;
  pointer-events: none;
}

.meme-word-left {
  top: 9rem;
  left: -3rem;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
}

.meme-word-right {
  right: -4rem;
  bottom: 7rem;
  writing-mode: vertical-rl;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

.meme-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(212, 255, 0, 0.16);
  border-radius: 4px 24px 4px 24px;
  background: #090b09;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.meme-card-wide {
  grid-column: span 8;
}

.meme-card-tall {
  grid-row: span 2;
}

.meme-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0, 1), filter 0.4s ease;
}

.meme-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(120deg, rgba(212, 255, 0, 0.12), transparent 35%);
  pointer-events: none;
}

.meme-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--lime), transparent 30%, transparent 70%, var(--lime)) 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.meme-card:hover {
  z-index: 3;
  border-color: rgba(212, 255, 0, 0.6);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.55), 0 0 35px rgba(212, 255, 0, 0.13);
  transform: translateY(-8px) scale(1.01);
}

.meme-card:hover::after {
  opacity: 1;
}

.meme-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.04);
}

.meme-overlay {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.5rem 1.25rem 1.2rem;
}

.meme-overlay span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lime);
  font: 0.66rem var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meme-overlay strong {
  display: block;
  font: 1.12rem var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.meme-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 13rem;
  gap: 0.85rem;
  max-width: 1040px;
  margin-inline: auto;
  padding: 0.55rem;
  border: 1px solid rgba(212, 255, 0, 0.16);
  border-radius: 28px;
  background: rgba(8, 10, 8, 0.82);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  backdrop-filter: blur(18px);
}

.meme-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 8%;
  border-radius: 50%;
  background: rgba(212, 255, 0, 0.1);
  filter: blur(80px);
}

.meme-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 22px;
  background: #030403;
}

.meme-stage-media {
  position: absolute;
  inset: 0;
}

.meme-stage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.32) 62%, #030403 100%),
    linear-gradient(90deg, transparent 60%, rgba(0, 0, 0, 0.15));
}

.meme-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.26s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

.meme-stage-media img.is-changing {
  opacity: 0;
  transform: scale(1.035);
}

.meme-stage-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 7rem clamp(1.4rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.7rem);
}

.meme-stage-copy > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--lime);
  font: 0.7rem var(--font-mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.meme-stage-copy h3 {
  margin: 0 0 0.55rem;
  font: clamp(2rem, 5vw, 4.1rem) / 0.95 var(--font-display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.meme-stage-copy p {
  max-width: 34rem;
  margin: 0;
  color: rgba(240, 244, 237, 0.68);
  font-size: 0.98rem;
}

.meme-progress {
  width: min(100%, 34rem);
  height: 2px;
  margin-top: 1.35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.meme-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  animation: memeProgress 7s linear forwards;
  box-shadow: 0 0 10px var(--lime);
}

@keyframes memeProgress {
  to {
    transform: scaleX(1);
  }
}

.meme-selector {
  display: grid;
  grid-auto-rows: 7.4rem;
  gap: 0.55rem;
  max-height: 650px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 255, 0, 0.55) transparent;
  overscroll-behavior: contain;
}

.meme-selector::-webkit-scrollbar {
  width: 4px;
}

.meme-selector::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(212, 255, 0, 0.55);
}

.meme-thumb {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: #0d100d;
  text-align: left;
  opacity: 0.48;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.meme-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
}

.meme-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.meme-thumb span {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: 0.65rem;
  left: 0.7rem;
  font: 0.7rem var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.meme-thumb b {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--lime);
  font-weight: 600;
}

.meme-thumb:hover,
.meme-thumb.is-active {
  opacity: 1;
  border-color: rgba(212, 255, 0, 0.55);
  transform: translateX(-3px);
}

.meme-thumb:hover img,
.meme-thumb.is-active img {
  transform: scale(1.06);
}

.meme-thumb.is-active {
  box-shadow: 0 0 22px rgba(212, 255, 0, 0.1);
}

.values {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(212, 255, 0, 0.1), transparent 60%),
    linear-gradient(180deg, #030403, #090b09 50%, #030403);
}

.value-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(212, 255, 0, 0.07), transparent 45%),
    rgba(10, 13, 10, 0.88);
}

.value-icon {
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.1);
}

.manifesto {
  grid-template-columns: 0.8fr 1.2fr;
}

.manifesto-panel {
  position: relative;
  overflow: hidden;
}

.manifesto-panel::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 30px solid rgba(212, 255, 0, 0.025);
  box-shadow: 0 0 0 30px rgba(212, 255, 0, 0.015);
}

.cta-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  justify-content: flex-end;
  border-color: rgba(212, 255, 0, 0.32);
  background: #020302;
}

.portal-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0, 1), filter 0.5s ease;
}

.cta-panel:hover .portal-art {
  transform: scale(1.035);
  filter: saturate(1.25);
}

.cta-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 3, 2, 0.05) 18%, rgba(2, 3, 2, 0.72) 58%, #020302 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "ROBINHOODIES";
  position: absolute;
  left: 50%;
  bottom: -0.24em;
  color: transparent;
  font: clamp(5rem, 15vw, 13rem) var(--font-display);
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1px rgba(212, 255, 0, 0.045);
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(2, 3, 2, 0.96), rgba(2, 3, 2, 0.35)),
      linear-gradient(180deg, transparent 55%, #020302),
      url("/asset/robinhoodies-hero.png") 58% center / cover no-repeat;
  }

  .hero-visual {
    display: none;
  }

  .meme-card {
    grid-column: span 6;
  }

  .meme-card-wide {
    grid-column: span 12;
  }

  .meme-showcase {
    grid-template-columns: 1fr;
  }

  .meme-stage {
    min-height: 650px;
  }

  .meme-selector {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--lime) transparent;
  }

  .meme-thumb {
    flex: 0 0 9rem;
    height: 7rem;
  }

  .meme-thumb:hover,
  .meme-thumb.is-active {
    transform: translateY(-2px);
  }

  .manifesto {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 820px;
    padding-top: 5rem;
    align-items: end;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(2, 3, 2, 0.08) 10%, rgba(2, 3, 2, 0.45) 40%, #020302 73%),
      url("/asset/robinhoodies-hero.png") 68% top / auto 64% no-repeat,
      #020302;
  }

  .hero-grid {
    min-height: auto;
    align-items: end;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.1rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-scroll {
    display: none;
  }

  .meme-grid {
    grid-template-columns: 1fr;
  }

  .meme-card,
  .meme-card-wide,
  .meme-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .meme-showcase {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    padding: 0.4rem;
    border-radius: 20px;
  }

  .meme-stage {
    min-height: 500px;
    border-radius: 16px;
  }

  .meme-stage-copy h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .energy-feather,
  .meme-word,
  .cursor-glow {
    display: none;
  }

  .cta-panel {
    min-height: 620px;
  }
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}
