:root {
  --mike: #c8ff00;
  --mike-bright: #d4ff33;
  --mike-dark: #1a4d0a;
  --mike-deeper: #0a1f05;
  --ink: #000;
  --font-display: 'Bangers', system-ui, sans-serif;
  --font-graffiti: 'Luckiest Guy', 'Bangers', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: var(--mike);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.7);
  pointer-events: none;
}

.comic {
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
  text-shadow:
    2px 2px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    0 0 14px rgba(200, 255, 0, 0.3);
}

@media (min-width: 768px) {
  .comic {
    -webkit-text-stroke: 3px #000;
    text-shadow:
      4px 4px 0 #000,
      -2px -2px 0 #000,
      2px -2px 0 #000,
      -2px 2px 0 #000,
      0 0 24px rgba(200, 255, 0, 0.45);
  }
}

.grain {
  position: relative;
}

.grain::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
  background-size: 180px;
  mix-blend-mode: overlay;
}

.halftone {
  background-image: radial-gradient(circle, rgba(200, 255, 0, 0.12) 1.2px, transparent 1.4px);
  background-size: 10px 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  padding: 0.9rem 1.25rem;
  min-height: 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  user-select: none;
}

@media (min-width: 640px) {
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 1.05rem;
  }
}

.btn-primary {
  background: var(--mike);
  color: var(--ink);
  box-shadow: 4px 4px 0 #000;
}

.btn-primary:hover {
  background: var(--mike-bright);
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 6px 6px 0 #000;
}

.btn-secondary {
  background: var(--ink);
  color: var(--mike);
  border-color: var(--mike);
  box-shadow: 4px 4px 0 var(--mike);
}

.btn-secondary:hover {
  background: var(--mike);
  color: var(--ink);
  transform: scale(1.04) rotate(1deg);
  box-shadow: 6px 6px 0 var(--mike);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

@media (min-width: 640px) {
  .btn-block-sm {
    width: auto;
    min-width: 9.5rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding-top: env(safe-area-inset-top);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 255, 0, 0.2);
}

.nav {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 3px solid var(--mike);
  background: var(--ink);
  object-fit: cover;
  box-shadow: 0 0 0 2px #000;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mike);
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

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

.nav-cta {
  display: none;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 2px solid var(--mike);
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--mike);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(200, 255, 0, 0.2);
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mike);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .nav {
    padding: 0.75rem 1.5rem;
  }
  .nav-links,
  .nav-cta {
    display: flex;
  }
  .nav-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  overflow: clip;
  padding: 5.5rem 1rem 2.5rem;
  background: var(--ink);
}

@media (min-height: 700px) {
  .hero {
    min-height: 100svh;
  }
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(80px);
}

.hero-glow-a {
  top: 5rem;
  right: 10%;
  width: 8rem;
  height: 8rem;
  background: rgba(200, 255, 0, 0.2);
}

.hero-glow-b {
  top: 33%;
  left: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(26, 77, 10, 0.6);
}

.skyline {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 5.5rem;
  opacity: 0.4;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
  align-items: center;
}

.hero-copy {
  text-align: center;
  order: 2;
  min-width: 0;
}

.hero-mascot-wrap {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  overflow: visible;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid rgba(200, 255, 0, 0.5);
  background: rgba(200, 255, 0, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mike);
  margin: 0 0 0.65rem;
  max-width: 100%;
}

.badge i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--mike);
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-graffiti);
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--mike);
}

.hero h1 span {
  display: block;
}

.hero h1 .line-a {
  font-size: clamp(2.6rem, 13vw, 6.5rem);
}

.hero h1 .line-b {
  font-size: clamp(2rem, 10.5vw, 5.5rem);
}

.ticker-pill {
  display: inline-block;
  margin-top: 0.7rem;
  transform: rotate(-1deg);
  border: 3px solid #000;
  background: var(--mike-dark);
  padding: 0.35rem 1rem;
  box-shadow: 4px 4px 0 var(--mike);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  color: var(--mike);
}

.hero-mission {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-mission .neon {
  color: var(--mike);
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.55);
}

.hero-sub {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 0 0.25rem;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.mascot {
  width: min(210px, 58vw);
  height: min(210px, 58vw);
  border-radius: 999px;
  border: 4px solid var(--mike);
  background: var(--ink);
  object-fit: cover;
  box-shadow: 0 0 0 3px #000, 0 0 24px rgba(200, 255, 0, 0.45);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.mascot-ring {
  position: absolute;
  inset: -6%;
  border: 4px dashed rgba(200, 255, 0, 0.3);
  border-radius: 999px;
  animation: wiggle 2.5s ease-in-out infinite;
  z-index: 1;
}

.annotation {
  display: none;
  position: absolute;
  z-index: 3;
  max-width: 14rem;
  pointer-events: none;
}

.annotation div {
  border: 3px solid #000;
  background: var(--mike);
  border-radius: 1.15rem;
  padding: 0.75rem 1rem;
  box-shadow: 4px 4px 0 #000;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #000;
  text-transform: uppercase;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .hero {
    padding: 8rem 1.5rem 4.5rem;
  }
  .hero-glow-a,
  .hero-glow-b {
    width: 16rem;
    height: 16rem;
  }
  .skyline {
    height: 10rem;
  }
  .hero-grid {
    gap: 1.5rem;
  }
  .badge {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin: -1cm 0 0.75rem;
  }
  .mascot {
    width: 340px;
    height: 340px;
  }
  .hero-mission {
    font-size: 2rem;
  }
  .ticker-pill {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }
  .annotation {
    display: block;
  }
  .annotation div {
    font-size: 1.2rem;
    padding: 0.85rem 1.15rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 1.5rem 5.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .hero-copy {
    text-align: left;
    order: 1;
  }
  .hero-mascot-wrap {
    order: 2;
    min-height: 500px;
  }
  .hero-actions {
    justify-content: flex-start;
    margin-left: 0;
  }
  .hero-sub {
    margin-left: 0;
    font-size: 1.15rem;
  }
  .hero h1 .line-a {
    font-size: clamp(4.5rem, 7vw, 7.25rem);
  }
  .hero h1 .line-b {
    font-size: clamp(3.5rem, 5.8vw, 6rem);
  }
  .ticker-pill {
    font-size: 2.25rem;
    padding: 0.45rem 1.25rem;
  }
  .hero-mission {
    font-size: 2.25rem;
    margin-top: 1.6rem;
  }
  .mascot {
    width: 500px;
    height: 500px;
  }
  .badge {
    margin: -0.6cm 0 0.9rem;
    font-size: 0.72rem;
  }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 3px solid var(--mike);
  border-bottom: 3px solid var(--mike);
  background: var(--mike);
  color: #000;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  padding: 0.65rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  margin: 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .marquee-track span {
    margin: 0 1.5rem;
    font-size: 1.25rem;
  }
}

/* Sections */
.section {
  position: relative;
  overflow: clip;
  padding: 2.75rem 1rem;
}

.section-title {
  text-align: center;
  margin: 0 0 1.5rem;
  font-family: var(--font-graffiti);
  font-size: clamp(2.1rem, 10vw, 6rem);
  color: var(--mike);
  text-transform: uppercase;
  line-height: 0.95;
  transform: rotate(-1deg);
  padding: 0 0.25rem;
  word-break: break-word;
}

.section-tag {
  text-align: center;
  margin: -0.25rem 0 1.75rem;
  font-family: var(--font-graffiti);
  font-size: clamp(1.35rem, 5.5vw, 3rem);
  color: var(--mike);
  text-transform: uppercase;
  line-height: 1.05;
  transform: rotate(-1deg);
  padding: 0 0.5rem;
}

.section-dark {
  background: var(--ink);
}

.section-deep {
  background: var(--mike-deeper);
}

.container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section {
    padding: 4.5rem 1.5rem;
  }
  .section-title {
    margin-bottom: 2rem;
  }
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.dots i {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--mike);
  transform: rotate(45deg);
}

.dots b {
  width: 2rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(200, 255, 0, 0.7);
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-card {
  border: 3px solid #000;
  border-radius: 1.5rem;
  background: #000;
  padding: 1.25rem;
  box-shadow: 6px 6px 0 var(--mike);
}

.about-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  font-size: 1rem;
}

.about-card .punch {
  margin-top: 1.5rem;
  font-family: var(--font-graffiti);
  font-size: 1.5rem;
  color: var(--mike);
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bubble {
  position: relative;
  z-index: 2;
  max-width: 16rem;
  margin-bottom: -1.25rem;
  transform: rotate(-3deg);
  border: 3px solid #000;
  background: #fff;
  color: #000;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 5px 5px 0 #000;
  text-align: center;
}

.bubble strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.bubble small {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

.about-mascot {
  width: 12rem;
  border-radius: 999px;
  border: 4px solid var(--mike);
  background: #000;
  object-fit: cover;
  box-shadow: 0 0 0 3px #000;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 1.5rem;
  }
  .about-card {
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 8px 8px 0 var(--mike);
  }
  .about-mascot {
    width: 18rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Tokenomics */
.token-grid {
  display: grid;
  gap: 1.5rem;
}

.chart-window {
  overflow: hidden;
  border: 3px solid rgba(200, 255, 0, 0.5);
  border-radius: 1rem;
  background: #0b0e11;
  box-shadow: 4px 4px 0 var(--mike);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(200, 255, 0, 0.2);
  background: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 255, 0, 0.7);
}

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
}
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }

.chart-body {
  position: relative;
  height: 220px;
  background: #0b0e11;
}

.chart-body iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0e11;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1rem;
}

.fake-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 7rem;
  opacity: 0.4;
}

.fake-bars i {
  width: 0.75rem;
  border-radius: 0.2rem;
  background: var(--mike);
}

.chart-placeholder p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mike);
  text-transform: uppercase;
}

.stat-stack {
  display: grid;
  gap: 0.75rem;
}

.stat {
  border: 3px solid rgba(200, 255, 0, 0.4);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.1), transparent);
}

.stat label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 255, 0, 0.8);
}

.stat strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.copy-ca {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 3px solid var(--mike);
  border-radius: 1rem;
  background: rgba(200, 255, 0, 0.1);
  padding: 1rem;
  text-align: left;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.copy-ca:hover:not(:disabled) {
  background: var(--mike);
  color: #000;
  transform: scale(1.02) rotate(-1deg);
}

.copy-ca:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.copy-ca .meta label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mike);
}

.copy-ca:hover:not(:disabled) .meta label {
  color: #000;
}

.copy-ca .meta code {
  display: block;
  margin-top: 0.25rem;
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
}

.copy-ca .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  border-radius: 999px;
  background: var(--mike);
  color: #000;
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #000;
}

.copy-ca:hover:not(:disabled) .pill {
  background: #000;
  color: var(--mike);
}

@media (min-width: 400px) {
  .copy-ca {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 640px) {
  .chart-body {
    height: 360px;
  }
  .chart-window {
    box-shadow: 6px 6px 0 var(--mike);
  }
}

@media (min-width: 1024px) {
  .token-grid {
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
  }
  .chart-body {
    height: 440px;
  }
}

/* Gallery */
.gallery-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.gallery-grid {
  columns: 1;
  gap: 1rem;
}

.meme-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 100%;
}

.meme-card article {
  overflow: hidden;
  border: 4px solid #000;
  border-radius: 1.5rem;
  background: #000;
  box-shadow: 6px 6px 0 var(--mike);
}

.meme-card img {
  width: 100%;
  height: auto;
}

.meme-card figcaption {
  border-top: 4px solid #000;
  background: var(--mike);
  color: #000;
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .gallery-grid {
    columns: 2;
  }
  .meme-card:nth-child(1) { transform: rotate(-2deg); }
  .meme-card:nth-child(2) { transform: rotate(1.5deg); }
  .meme-card:nth-child(3) { transform: rotate(-1deg); }
  .meme-card:nth-child(4) { transform: rotate(2deg); }
  .meme-card:nth-child(5) { transform: rotate(-1.5deg); }
  .meme-card:nth-child(6) { transform: rotate(1deg); }
  .meme-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

/* CTA */
.cta-box {
  position: relative;
  overflow: hidden;
  border: 3px solid #000;
  border-radius: 1.5rem;
  background: var(--mike);
  color: #000;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 6px 6px 0 #000;
}

.cta-box h2 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 7vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-box p {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.cta-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-box .btn-secondary {
  border-color: #000;
  box-shadow: 4px 4px 0 #000;
}

.cta-box .btn-dark {
  background: #000;
  color: var(--mike);
  border-color: #000;
  box-shadow: 4px 4px 0 #000;
}

@media (min-width: 640px) {
  .cta-box {
    padding: 3rem 2rem;
    box-shadow: 10px 10px 0 #000;
  }
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Footer */
.footer {
  border-top: 3px solid rgba(200, 255, 0, 0.3);
  padding: 2.5rem 1rem 6rem;
  background: #000;
}

.footer-top {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 3px solid var(--mike);
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}

.footer-brand h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--mike);
}

.footer-brand p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-brand .line {
  margin-top: 0.75rem;
  font-family: var(--font-graffiti);
  color: rgba(200, 255, 0, 0.8);
  font-size: 1.1rem;
  transform: rotate(-1deg);
}

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

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  max-width: 80rem;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .footer {
    padding-bottom: 2rem;
  }
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-bottom p:last-child {
    text-align: right;
    max-width: 28rem;
  }
}

/* Floating X */
.float-x {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 3px solid #000;
  border-radius: 999px;
  background: var(--mike);
  color: #000;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000, 0 0 12px rgba(200, 255, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-x.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-x span:last-child {
  display: none;
}

@media (min-width: 640px) {
  .float-x span:last-child {
    display: inline;
  }
}

/* Reveal */
/* Reveal — plays when scrolling down or up */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.from-down {
  transform: translate3d(0, 40px, 0);
}

.reveal.from-up {
  transform: translate3d(0, -40px, 0);
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

@media (min-width: 640px) {
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mascot,
  .mascot-ring,
  .marquee-track,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
