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

:root {
  --lime: #ccff00;
  --lime-hot: #e6ff4d;
  --lime-deep: #a8e000;
  --lime-glow: rgba(204, 255, 0, 0.55);
  --yolo-red: #e10600;
  --gold: #ffd200;
  --ink: #12161a;
  --ink-soft: #1c2329;
  --muted: #5a636c;
  --paper: #f3f6ea;
  --paper-deep: #e8efd4;
  --white: #ffffff;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  /* top / left thin ink · right / bottom thick Robinhood lime */
  --frame-t: 2px;
  --frame-l: 2px;
  --frame-r: 7px;
  --frame-b: 7px;
  --frame-shadow:
    8px 8px 0 var(--lime-glow),
    14px 14px 28px rgba(18, 22, 26, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background:
    radial-gradient(ellipse 90% 60% at 85% 10%, rgba(204, 255, 0, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(255, 210, 0, 0.08), transparent 50%),
    linear-gradient(165deg, var(--paper) 0%, var(--paper-deep) 48%, #dfe9c8 100%);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Page chrome: thicker lime on right + bottom ── */
.page-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 3px 10px 10px 3px;
  box-shadow:
    inset -10px -10px 0 rgba(204, 255, 0, 0.12),
    inset 0 0 40px rgba(204, 255, 0, 0.06);
}

.lime-frame {
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: var(--frame-t) var(--frame-r) var(--frame-b) var(--frame-l);
  box-shadow: var(--frame-shadow);
}

/* ── Ambient layers ── */
.aurora {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(from 120deg at 70% 30%, rgba(204, 255, 0, 0.2), transparent 28%, rgba(255, 210, 0, 0.1) 45%, transparent 60%, rgba(225, 6, 0, 0.06) 75%, transparent),
    radial-gradient(circle at 20% 40%, rgba(204, 255, 0, 0.15), transparent 40%);
  animation: aurora-drift 22s ease-in-out infinite alternate;
  filter: blur(40px);
  opacity: 0.85;
}

.spark-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime-glow);
  opacity: 0;
  animation: spark-float linear infinite;
}

.spark.gold {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 210, 0, 0.6);
}

.spark.red {
  background: var(--yolo-red);
  box-shadow: 0 0 8px rgba(225, 6, 0, 0.5);
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 250;
  opacity: 0.035;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(18, 22, 26, 0.35) 2px,
    rgba(18, 22, 26, 0.35) 3px
  );
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.container.narrow {
  width: min(720px, 92vw);
}

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

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(90deg, rgba(204, 255, 0, 0.94), rgba(230, 255, 77, 0.9) 55%, rgba(204, 255, 0, 0.94));
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 6px 0 var(--lime-glow);
  transition: box-shadow 0.25s, background 0.25s;
}

.site-header.scrolled {
  background: rgba(204, 255, 0, 0.98);
  box-shadow:
    0 6px 0 var(--lime-glow),
    0 16px 32px rgba(18, 22, 26, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 92vw);
  margin: 0 auto;
  height: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 4px 4px 2px;
  box-shadow: 3px 3px 0 var(--lime-glow);
  transition: transform 0.25s var(--ease-out);
}

.nav-brand:hover .nav-mark {
  transform: rotate(-6deg) scale(1.06);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  font-family: var(--font-body);
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  color: var(--yolo-red);
}

.nav-socials {
  display: flex;
  gap: 0.4rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 4px 4px 2px;
  background: transparent;
  color: var(--ink) !important;
  box-shadow: 3px 3px 0 rgba(18, 22, 26, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-social:hover {
  background: var(--ink) !important;
  color: var(--lime) !important;
  transform: translateY(-2px);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.1rem !important;
  background: var(--ink);
  color: var(--lime) !important;
  font-weight: 700 !important;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 5px 5px 2px;
  box-shadow: 4px 4px 0 var(--lime-glow);
  transition: background 0.2s, color 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--yolo-red) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 4px 4px 2px;
  cursor: pointer;
  padding: 8px;
  box-shadow: 3px 3px 0 var(--lime-glow);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 4rem;
  overflow: hidden;
  background: var(--lime);
  border-bottom: 3px solid var(--ink);
}

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

.hero-burst {
  position: absolute;
  inset: -20%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.12) 0deg 8deg,
      transparent 8deg 16deg
    );
  animation: burst-spin 48s linear infinite;
  opacity: 0.55;
  mix-blend-mode: soft-light;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: orb-float 10s ease-in-out infinite alternate;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  top: 12%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.55), transparent 70%);
  animation-duration: 9s;
}

.hero-orb-b {
  width: 180px;
  height: 180px;
  bottom: 28%;
  left: 6%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.35), transparent 70%);
  animation-duration: 12s;
  animation-delay: -2s;
}

.hero-orb-c {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 70%);
  animation-duration: 7s;
  animation-delay: -4s;
}

.hero-banner {
  position: absolute;
  right: max(2vw, 4%);
  bottom: 8%;
  width: min(52vw, 560px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(12px 18px 0 rgba(18, 22, 26, 0.35)) drop-shadow(0 0 40px rgba(204, 255, 0, 0.35));
  animation: hero-bob 5.5s var(--ease-out) infinite alternate;
  z-index: 1;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 3px 10px 10px 3px;
  box-shadow:
    12px 12px 0 var(--lime-glow),
    20px 20px 40px rgba(18, 22, 26, 0.35);
  background: var(--lime);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      105deg,
      rgba(18, 22, 26, 0.92) 0%,
      rgba(18, 22, 26, 0.72) 32%,
      rgba(18, 22, 26, 0.25) 55%,
      transparent 72%
    ),
    linear-gradient(
      to top,
      rgba(18, 22, 26, 0.55) 0%,
      transparent 40%
    );
}

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 56%
  );
  background-size: 220% 100%;
  animation: shine-sweep 7s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1100px, 92vw);
  margin: 0 auto;
  max-width: 560px;
  margin-left: max(4vw, calc((100vw - 1100px) / 2));
  animation: rise-in 0.9s var(--ease-out) both;
}

.hero-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}

.hero-brand-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--lime);
  text-shadow:
    4px 4px 0 var(--ink),
    8px 8px 0 rgba(204, 255, 0, 0.35),
    0 0 40px var(--lime-glow);
  animation: brand-pulse 3.2s ease-in-out infinite;
}

.yolo-chip {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  letter-spacing: 0.08em;
  background: var(--yolo-red);
  color: var(--white);
  padding: 0.35rem 0.7rem 0.25rem;
  align-self: center;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 5px 5px 2px;
  box-shadow: 5px 5px 0 var(--lime-glow);
  animation: chip-wiggle 4s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1.55;
}

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

.hero-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  top: var(--header-h);
  width: 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1rem 0;
  pointer-events: none;
}

.deco-slash {
  flex: 1;
  background: linear-gradient(180deg, var(--lime), transparent);
  opacity: 0.5;
  animation: slash-pulse 2.4s ease-in-out infinite;
}

.deco-slash:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0.85;
  background: var(--lime);
}

.deco-slash:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes aurora-drift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(12deg) scale(1.08); }
}

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

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -30px) scale(1.12); }
}

@keyframes hero-bob {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-14px) scale(1.02); }
}

@keyframes shine-sweep {
  0%, 40% { background-position: 120% 0; }
  70%, 100% { background-position: -20% 0; }
}

@keyframes brand-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

@keyframes chip-wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

@keyframes slash-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

@keyframes spark-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  15% { opacity: 1; }
  85% { opacity: 0.7; }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1.2) rotate(180deg);
  }
}

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

@keyframes blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

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

@keyframes glitter-shift {
  from { background-position: 0 0; }
  to { background-position: 120px 80px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 5px 5px 2px;
  box-shadow: 5px 5px 0 var(--lime-glow);
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 7px 9px 0 var(--lime-glow);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--lime-hot);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5) var(--lime) var(--lime) rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  color: var(--lime);
  background: rgba(18, 22, 26, 0.35);
}

.btn-ink {
  background: var(--ink);
  color: var(--lime);
}

.btn-ink:hover {
  background: var(--ink-soft);
  color: var(--lime-hot);
}

.btn-outline-ink {
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--lime);
}

.btn-lg {
  padding: 1.05rem 1.95rem;
  font-size: 0.95rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
}

.btn-copy.copied {
  background: var(--ink);
  color: var(--lime);
}

/* ── Ticker ── */
.ticker {
  background: var(--ink);
  color: var(--lime);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 3px solid var(--lime);
  border-bottom: 5px solid var(--lime);
  box-shadow: 0 8px 0 var(--lime-glow);
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.ticker-sep {
  opacity: 0.35;
  color: var(--gold);
}

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

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.section-text {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 34rem;
}

.section-text strong {
  color: var(--ink);
  font-weight: 700;
}

.section-text em {
  font-style: normal;
  color: var(--ink);
  background: var(--lime);
  padding: 0.05em 0.3em;
  box-shadow: 3px 3px 0 rgba(18, 22, 26, 0.15);
}

.section-sub {
  font-family: var(--font-body);
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
}

.mono-note {
  margin-top: 1.5rem;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-mono) !important;
}

.cursor-line {
  display: inline-flex;
  align-items: center;
}

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.1em;
  margin-left: 2px;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
  animation: blink 1.1s step-end infinite;
}

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(204, 255, 0, 0.12), transparent 45%),
    var(--ink);
  color: var(--white);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 18px,
    rgba(204, 255, 0, 0.04) 18px,
    rgba(204, 255, 0, 0.04) 20px
  );
  pointer-events: none;
}

.about .section-title {
  color: var(--white);
}

.about .section-title .accent {
  color: var(--lime);
}

.about .eyebrow {
  color: rgba(204, 255, 0, 0.55);
}

.about .section-text {
  color: rgba(255, 255, 255, 0.62);
}

.about .section-text strong {
  color: var(--lime);
}

.about .section-text em {
  color: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  background: var(--lime);
}

.portrait-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, var(--lime-glow), transparent 65%);
  animation: orb-float 8s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

.portrait-badge {
  position: absolute;
  z-index: 2;
  left: -0.5rem;
  bottom: 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  background: var(--yolo-red);
  color: var(--white);
  padding: 0.4rem 0.85rem 0.3rem;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 5px 5px 2px;
  box-shadow: 5px 5px 0 var(--lime-glow);
  transform: rotate(-4deg);
}

/* ── ASCII band ── */
.ascii-band {
  background: linear-gradient(90deg, var(--lime), var(--lime-hot), var(--lime));
  background-size: 200% 100%;
  animation: glitter-shift 8s linear infinite;
  border-top: 3px solid var(--ink);
  border-bottom: 6px solid var(--ink);
  box-shadow: 0 10px 0 var(--lime-glow);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}

.ascii-band pre {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  width: max-content;
  animation: band-scroll 40s linear infinite;
  letter-spacing: 0.08em;
}

/* ── Contract ── */
.contract {
  background: transparent;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 2.2vw, 0.82rem);
  color: var(--ink);
  word-break: break-all;
  line-height: 1.5;
}

.copy-toast {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
  color: var(--lime-deep);
}

/* ── Chart ── */
.chart-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(204, 255, 0, 0.1), transparent 50%),
    var(--ink-soft);
  color: var(--white);
}

.chart-section .section-title {
  color: var(--white);
}

.chart-section .eyebrow {
  color: rgba(204, 255, 0, 0.5);
}

.chart-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.chart-frame {
  background: #0e1216;
  min-height: 480px;
  overflow: hidden;
}

.dexscreener-embed {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

.chart-link-wrap {
  text-align: center;
  margin-top: 1.15rem;
}

.text-link {
  font-family: var(--font-body);
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  text-shadow: 0 0 16px var(--lime-glow);
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Memes gallery ── */
.memes {
  background:
    radial-gradient(circle at 50% 0%, rgba(204, 255, 0, 0.12), transparent 40%),
    transparent;
}

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

.meme-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: var(--lime);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.meme-item:hover,
.meme-item:focus-visible {
  transform: translateY(-6px) rotate(-0.5deg);
  outline: none;
  box-shadow:
    10px 12px 0 var(--lime-glow),
    16px 18px 32px rgba(18, 22, 26, 0.25);
}

.meme-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  background: var(--lime);
  transition: transform 0.45s var(--ease-out);
}

.meme-item:hover img {
  transform: scale(1.04);
}

.meme-art {
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, var(--ink) 0%, #243038 100%);
  position: relative;
  overflow: hidden;
}

.meme-art::before {
  content: attr(data-label);
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--lime);
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.meme-art::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.25), transparent 65%);
}

.meme-art-b {
  background: linear-gradient(160deg, #1a1020 0%, #2a1828 50%, var(--ink) 100%);
}

.meme-art-c {
  background: linear-gradient(160deg, #102018 0%, #1a3020 50%, var(--ink) 100%);
}

.meme-art-d {
  background: linear-gradient(160deg, #201810 0%, #302818 50%, var(--ink) 100%);
}

.meme-art-e {
  background: linear-gradient(160deg, var(--yolo-red) 0%, #8a0400 55%, var(--ink) 100%);
}

.meme-art-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--lime);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.meme-caption {
  display: block;
  padding: 0.7rem 0.85rem;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-top: 2px solid var(--lime);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
  background: rgba(18, 22, 26, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(920px, 92vw);
  max-height: min(78vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--lime);
}

.lightbox-caption {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--lime);
  text-align: center;
  max-width: 36rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-style: solid;
  border-color: var(--ink) var(--lime) var(--lime) var(--ink);
  border-width: 2px 5px 5px 2px;
  background: transparent;
  color: var(--lime);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--lime-glow);
  transition: background 0.2s, color 0.2s;
}

.lightbox-close:hover {
  background: var(--lime);
  color: var(--ink);
}

body.lightbox-open {
  overflow: hidden;
}

/* ── Buy ── */
.buy {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, var(--lime) 0%, var(--lime-hot) 40%, var(--lime-deep) 100%);
}

.buy-glitter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 20%, rgba(255, 210, 0, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.45) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 85% 60%, rgba(225, 6, 0, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.4) 0 1px, transparent 2px);
  background-size: 180px 140px;
  animation: glitter-shift 14s linear infinite;
  opacity: 0.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin: 2.25rem 0 2.75rem;
}

.step {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 1.7rem 1.35rem;
  transition: transform 0.25s var(--ease-out), background 0.25s, box-shadow 0.25s;
}

.step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    10px 12px 0 var(--lime-glow),
    16px 18px 28px rgba(18, 22, 26, 0.2);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.65rem;
  opacity: 0.3;
}

.step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.step p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(18, 22, 26, 0.68);
  line-height: 1.55;
}

.buy-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 3.25rem 0 2.25rem;
  border-top-style: solid;
  border-top-color: var(--lime);
  border-top-width: 6px;
  box-shadow: 0 -8px 0 var(--lime-glow);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

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

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  background: var(--lime);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0 20px var(--lime-glow);
}

.footer-brand span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
  font-family: var(--font-body);
  font-size: 0.74rem;
  max-width: 520px;
  line-height: 1.65;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .page-frame {
    border-width: 2px 7px 7px 2px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .hero-banner {
    width: min(58vw, 360px);
    opacity: 0.92;
    right: 2%;
    bottom: 6%;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--lime), var(--lime-hot));
    flex-direction: column;
    padding: 1.35rem;
    gap: 1rem;
    border-bottom: 4px solid var(--ink);
    box-shadow: 0 10px 0 var(--lime-glow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 3rem;
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.25rem);
  }

  .hero-visual {
    position: relative;
    height: min(52vw, 300px);
    flex-shrink: 0;
    margin-bottom: 0.5rem;
  }

  .hero-veil {
    background:
      linear-gradient(
        to top,
        rgba(18, 22, 26, 0.55) 0%,
        rgba(18, 22, 26, 0.15) 55%,
        transparent 100%
      );
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding: 0 4vw 0.5rem;
    max-width: 100%;
  }

  .hero-banner {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 4%;
    transform: translateX(-50%);
    width: min(58vw, 240px);
    max-height: 92%;
    z-index: 3;
    animation: none;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }

  .dexscreener-embed {
    height: 440px;
  }

  .meme-caption {
    padding: 0.5rem 0.55rem;
    font-size: 0.65rem;
  }

  .hero-deco {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-brand-text {
    font-size: 2.85rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }

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

  :root {
    --frame-r: 5px;
    --frame-b: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .hero-burst,
  .hero-orb,
  .hero-shine,
  .ticker-track,
  .ascii-band pre,
  .aurora,
  .spark,
  .buy-glitter,
  .cursor,
  .hero-brand-text,
  .yolo-chip,
  .deco-slash {
    animation: none;
  }

  .cursor {
    opacity: 1;
  }

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