:root {
  --neon: #ccff00;
  --ink: #110e08;
  --ink-2: #1a1610;
  --cream: #f4f1ea;
  --muted: #8d8778;
  --white: #ffffff;
  --line: rgba(204, 255, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(17, 14, 8, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--neon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links > a:not(.icon-link) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 0 8px;
}

.nav-links > a:not(.icon-link):hover {
  color: var(--neon);
}

.icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.logo-x {
  width: 15px;
  height: auto;
}

.logo-pons {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.logo-tiktok {
  width: 18px;
  height: 18px;
}

.invert {
  filter: invert(1);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 64px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--neon);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.story .eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(92px, 16vw, 168px);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: var(--neon);
  text-transform: uppercase;
}

.lede {
  margin-top: 22px;
  max-width: 36ch;
  font-size: 20px;
  color: #d9d3c5;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  margin-top: 32px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ca {
  margin-top: 12px;
  padding: 11px 16px;
  border: 1.5px solid var(--neon);
  border-radius: 14px;
  background: rgba(204, 255, 0, 0.1);
  color: var(--neon);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ca:hover {
  background: rgba(204, 255, 0, 0.2);
  transform: translateY(-1px);
}

.ca-copied,
.ca-copied:hover {
  background: var(--neon);
  color: var(--ink);
  animation: ca-pop 0.55s ease;
}

@keyframes ca-pop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

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

.btn-neon:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 241, 234, 0.18);
}

.btn-ghost:hover {
  border-color: var(--neon);
}

.btn-tiktok {
  margin-top: 8px;
  background: #111;
  color: var(--white);
  border-color: #222;
  width: fit-content;
}

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

.pfp-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: var(--neon);
  filter: blur(48px);
  opacity: 0.28;
}

.pfp {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--neon);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: float 5.4s ease-in-out infinite;
}

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

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

.story {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 48px;
}

.story-card {
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(180deg, #18150f 0%, #12100c 100%);
  border: 1px solid var(--line);
}

.story-card h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.story-card p:not(.eyebrow) {
  color: #c8c1b2;
  font-size: 18px;
  max-width: 46ch;
  margin-bottom: 14px;
}

.story-card .punch {
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 22px;
}

.memes {
  padding: 12px 0 56px;
}

.carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 8px 0;
  animation: scroll 48s linear infinite;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-track a {
  display: block;
  flex: 0 0 auto;
  cursor: pointer;
}

.carousel-track img {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-track a:hover img {
  transform: translateY(-4px);
  border-color: var(--neon);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(17, 14, 8, 0.88);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 2px solid var(--neon);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  justify-self: start;
}

.footer-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: center;
}

.footer-buttons a {
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.footer-buttons a:hover {
  transform: translateY(-2px);
}

.footer-buttons .logo-x {
  width: 18px;
}

.footer-buttons .logo-tiktok {
  width: 20px;
  height: 20px;
}

.footer-buttons .logo-pons {
  width: 28px;
  height: 28px;
}

.footer p {
  max-width: 42ch;
  text-align: right;
}

@media (max-width: 860px) {
  .nav {
    padding: 14px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px 20px 12px;
    text-align: center;
  }

  .lede {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .cta {
    margin-inline: auto;
  }

  .hero-art {
    order: -1;
  }

  .pfp {
    width: min(320px, 78vw);
  }

  .story {
    padding: 24px 20px 32px;
  }

  .carousel-track img {
    height: 180px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 20px 36px;
  }

  .footer-brand,
  .footer-buttons,
  .footer p {
    justify-self: center;
    text-align: center;
  }
}
