:root {
  --red: #c8102e;
  --red-soft: #ff244d;
  --black: #090909;
  --black-2: #111013;
  --white: #ffffff;
  --cream: #fff5df;
  --gold: #ffd54a;
  --gold-deep: #dca314;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
  --font-display: "Luckiest Guy", Impact, fantasy;
  --font-accent: "Bangers", Impact, fantasy;
  --font-body: "Baloo 2", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

:root,
html,
body {
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 213, 74, 0.18), transparent 32rem),
    radial-gradient(circle at 12% 12%, rgba(200, 16, 46, 0.24), transparent 28rem),
    linear-gradient(180deg, #111013 0%, #070707 52%, #12070a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -40px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 0.7px, transparent 0.8px),
    radial-gradient(circle, rgba(255, 213, 74, 0.12) 0 0.6px, transparent 0.7px),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.05) 46%, transparent 52%);
  background-position: 0 0, 3px 5px, 0 0;
  background-size: 7px 7px, 11px 11px, 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.18;
  animation: grainDance 0.9s steps(2) infinite;
}

@keyframes grainDance {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-8px, 5px, 0);
  }
  50% {
    transform: translate3d(6px, -7px, 0);
  }
  75% {
    transform: translate3d(-4px, -4px, 0);
  }
  100% {
    transform: translate3d(8px, 6px, 0);
  }
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
}

button {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--gold);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #070707;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-badge {
  display: grid;
  gap: 16px;
  justify-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.loader-badge img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 28px;
  border: 2px solid rgba(255, 213, 74, 0.5);
  box-shadow: 0 0 48px rgba(200, 16, 46, 0.5);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.7);
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  width: 380px;
  height: 380px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 213, 74, 0.14), rgba(200, 16, 46, 0.09) 34%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

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

.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.75) 86%);
}

.stadium-halo {
  position: absolute;
  top: -18%;
  width: 40vw;
  min-width: 340px;
  height: 72vh;
  background: conic-gradient(from 190deg, transparent 0deg, rgba(255, 255, 255, 0.26) 24deg, rgba(255, 213, 74, 0.22) 36deg, transparent 62deg);
  filter: blur(16px);
  opacity: 0.38;
  transform-origin: top center;
  animation: sweep 8s ease-in-out infinite alternate;
}

.halo-left {
  left: -8%;
  transform: rotate(16deg);
}

.halo-right {
  right: -8%;
  transform: rotate(-16deg) scaleX(-1);
  animation-delay: -2s;
}

@keyframes sweep {
  to {
    opacity: 0.52;
    transform: rotate(-8deg);
  }
}

.red-smoke {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.24), transparent 68%);
  filter: blur(42px);
  animation: smokeDrift 12s ease-in-out infinite alternate;
}

.smoke-a {
  left: -120px;
  bottom: 4%;
}

.smoke-b {
  right: -160px;
  top: 28%;
  animation-delay: -4s;
}

@keyframes smokeDrift {
  to {
    transform: translate3d(60px, -40px, 0) scale(1.12);
  }
}

.pitch-lines {
  position: absolute;
  left: 50%;
  bottom: -22%;
  width: min(920px, 88vw);
  aspect-ratio: 1 / 0.54;
  transform: translateX(-50%) perspective(650px) rotateX(68deg);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.particle-field {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  animation: floatParticle var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: var(--o);
}

.particle.spark {
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.8);
}

.particle.confetti {
  border-radius: 3px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  transform: rotate(var(--r));
}

@keyframes floatParticle {
  50% {
    transform: translate3d(18px, -28px, 0) rotate(12deg);
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 800;
  transition: top 0.25s ease;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(9, 9, 9, 0.52);
  box-shadow: 0 16px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(9, 9, 9, 0.86);
  border-color: rgba(255, 213, 74, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--font-accent);
  font-size: 1.25rem;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(200, 16, 46, 0.42);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a,
.quick-links a,
.quick-links button,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.quick-links a:hover,
.quick-links button:hover,
.footer-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-buy,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), #fff0a6 48%, var(--gold-deep));
  font-family: var(--font-display);
  box-shadow: 0 0 24px rgba(255, 213, 74, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.nav-buy::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.nav-buy:hover,
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(255, 213, 74, 0.26), 0 0 30px rgba(200, 16, 46, 0.35);
}

.nav-buy:hover::before,
.btn:hover::before {
  transform: translateX(120%);
}

.btn svg,
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
}

.hero-bg-word {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: -1;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 17rem);
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.2rem;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(200, 16, 46, 0.9);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 0.94;
}

h1 {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  text-shadow: 0 10px 0 rgba(0, 0, 0, 0.28), 0 0 34px rgba(200, 16, 46, 0.32);
}

h1::first-line,
h2 span {
  color: var(--gold);
}

.ticker-headline span {
  display: block;
}

.ticker-headline span:first-child {
  color: var(--gold);
}

.ticker-headline span:last-child {
  color: var(--white);
}

.mascot-name {
  width: fit-content;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 213, 74, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-accent);
  font-size: 1.2rem;
  box-shadow: 0 0 22px rgba(200, 16, 46, 0.16);
}

.hero-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  line-height: 1.55;
  font-weight: 600;
}

.hero-copy .hero-lede {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.quick-links {
  margin-top: 18px;
}

.quick-links a {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.quick-links button {
  min-height: 38px;
  border: 1px solid rgba(255, 213, 74, 0.3);
  background: rgba(255, 213, 74, 0.1);
  font: inherit;
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 610px;
}

.spotlight {
  position: absolute;
  top: -90px;
  width: 210px;
  height: 720px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 213, 74, 0.07), transparent);
  filter: blur(12px);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.6;
  transform-origin: top center;
  animation: heroLight 5.8s ease-in-out infinite alternate;
}

.spotlight-one {
  left: 5%;
  transform: rotate(-18deg);
}

.spotlight-two {
  right: 3%;
  transform: rotate(18deg);
  animation-delay: -2s;
}

@keyframes heroLight {
  to {
    opacity: 0.34;
    transform: rotate(4deg);
  }
}

.mascot-card {
  position: relative;
  width: min(520px, 92vw);
  margin: 0;
  border-radius: 38px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)) padding-box,
    linear-gradient(135deg, var(--gold), #fff3a0 18%, var(--red) 50%, var(--gold) 100%) border-box;
  border: 3px solid transparent;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 213, 74, 0.26),
    0 0 54px rgba(255, 213, 74, 0.2),
    0 0 86px rgba(200, 16, 46, 0.26);
  backdrop-filter: blur(18px);
  isolation: isolate;
  animation: mascotFloat 5.5s ease-in-out infinite;
}

.mascot-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 3;
  border-radius: 24px;
  pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) left top / 72px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top / 3px 72px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 72px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 3px 72px no-repeat,
    linear-gradient(var(--red), var(--red)) left bottom / 72px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) left bottom / 3px 72px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 72px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 3px 72px no-repeat;
  opacity: 0.84;
  filter: drop-shadow(0 0 12px rgba(255, 213, 74, 0.34));
}

.mascot-card::after,
.about-photo::after,
.narrative-side::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 245, 223, 0.24) 0 0.85px, transparent 1px) 0 0 / 7px 7px,
    radial-gradient(circle, rgba(0, 0, 0, 0.2) 0 0.75px, transparent 0.9px) 3px 4px / 9px 9px,
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 42%, rgba(255, 213, 74, 0.08));
  mix-blend-mode: soft-light;
  opacity: 0.42;
}

.mascot-card::after {
  inset: 16px 16px 68px;
  border-radius: 28px;
}

@keyframes mascotFloat {
  50% {
    transform: translateY(-16px) rotate(1.2deg);
  }
}

.mascot-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 26px;
  background: radial-gradient(circle at 70% 18%, rgba(255, 213, 74, 0.28), transparent 30%), #101010;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.46);
}

.mascot-card figcaption {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px 4px;
  color: rgba(255, 255, 255, 0.72);
}

.mascot-card strong {
  color: var(--white);
}

.mascot-glow {
  position: absolute;
  inset: 14%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.32);
  filter: blur(56px);
}

.mascot-orbit {
  position: absolute;
  inset: 0;
  animation: slowFloat 7s ease-in-out infinite;
}

@keyframes slowFloat {
  50% {
    transform: translateY(14px);
  }
}

.orbit-tag,
.photo-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.tag-top {
  top: 10%;
  left: 0;
  transform: rotate(-8deg);
}

.tag-bottom {
  right: -2%;
  bottom: 12%;
  color: var(--white);
  background: var(--red);
  transform: rotate(7deg);
}

.ticker-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.96), rgba(255, 213, 74, 0.92), rgba(200, 16, 46, 0.96));
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  padding: 16px 34px;
  color: var(--black);
  font-family: var(--font-display);
  white-space: nowrap;
}

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

.glass,
.info-card,
.phase,
.faq-item,
.social-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(255, 245, 223, 0.13) 0 0.8px, transparent 0.95px) 0 0 / 8px 8px,
    radial-gradient(circle, rgba(255, 213, 74, 0.11) 0 0.65px, transparent 0.8px) 4px 5px / 11px 11px,
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-card {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 36px;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 213, 74, 0.14), transparent 28rem);
  pointer-events: none;
}

.about-card h2,
.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.about-card p {
  position: relative;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.22rem;
  line-height: 1.55;
  font-weight: 600;
}

.about-photo {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.about-video {
  padding: 8px;
  border-radius: 40px;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(135deg, var(--gold), #fff3a0 22%, var(--red) 52%, var(--gold) 100%) border-box;
  border: 2px solid transparent;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 213, 74, 0.24),
    0 0 44px rgba(255, 213, 74, 0.18),
    0 0 72px rgba(200, 16, 46, 0.22);
}

.about-video::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  border-radius: 30px;
  pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) left top / 64px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top / 3px 64px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 64px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right top / 3px 64px no-repeat,
    linear-gradient(var(--red), var(--red)) left bottom / 64px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) left bottom / 3px 64px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 64px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 3px 64px no-repeat;
  opacity: 0.86;
  filter: drop-shadow(0 0 10px rgba(255, 213, 74, 0.32));
}

.about-photo img,
.about-photo video {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 32px;
  background: linear-gradient(150deg, rgba(200, 16, 46, 0.22), rgba(255, 213, 74, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.about-video {
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
}

.about-video video {
  display: block;
}

.video-hint {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.about-video:hover .video-hint,
.about-video:focus-visible .video-hint {
  opacity: 1;
  transform: translateY(0);
}

.photo-chip {
  z-index: 3;
  right: 18px;
  bottom: 18px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .section-kicker {
  margin: 0 auto;
}

.narrative-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.narrative-card {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  overflow: hidden;
}

.narrative-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 213, 74, 0.14), transparent 24rem),
    radial-gradient(circle at 100% 100%, rgba(200, 16, 46, 0.18), transparent 28rem);
  pointer-events: none;
}

.narrative-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.62;
  font-weight: 700;
}

.narrative-card p + p {
  margin-top: 18px;
}

.narrative-card strong {
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 213, 74, 0.2);
}

.narrative-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.narrative-card-wide p:nth-of-type(1),
.narrative-card-wide p:nth-of-type(2),
.narrative-card-wide p:nth-of-type(3) {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.34rem;
  line-height: 1.25;
}

.story-mark {
  position: absolute;
  right: 28px;
  top: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
}

.narrative-side {
  position: relative;
  min-height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(200, 16, 46, 0.22), rgba(255, 213, 74, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.narrative-side::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12%;
  width: 46%;
  height: 78%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 213, 74, 0.08), transparent);
  filter: blur(10px);
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  opacity: 0.56;
}

.narrative-side img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  object-fit: contain;
  padding: 26px 16px 130px;
}

.narrative-quote {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.narrative-quote span {
  display: block;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.08rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -20% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.28);
  filter: blur(20px);
}

.info-card span,
.phase span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.1rem;
}

.info-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.35vw, 2.1rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.info-card:hover,
.faq-item:hover,
.social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 213, 74, 0.55);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56), 0 0 30px rgba(200, 16, 46, 0.2);
}

.roadmap {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.45);
}

.phase {
  position: relative;
  min-height: 300px;
  padding: 78px 24px 24px;
  border-radius: 30px;
}

.phase::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 26px;
  height: 26px;
  border: 6px solid var(--black);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 213, 74, 0.16), 0 0 30px rgba(255, 213, 74, 0.5);
}

.phase h3 {
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
}

.phase ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.phase li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(200, 16, 46, 0.8);
}

.faq-layout {
  width: min(960px, 100%);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 213, 74, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 100%, rgba(200, 16, 46, 0.22), transparent 20rem);
}

.faq-question {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 72px 20px 22px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  line-height: 1.05;
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 0 24px rgba(255, 213, 74, 0.26);
  font-size: 1.05rem;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-item.is-open .faq-question::after {
  content: "-";
  color: var(--black);
  background: var(--gold);
}

.faq-answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.55;
}

.faq-answer strong {
  color: var(--gold);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.social-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 213, 74, 0.18), transparent 22rem),
    radial-gradient(circle at 80% 0%, rgba(200, 16, 46, 0.2), transparent 18rem);
}

.social-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--black);
  background: var(--gold);
  font-family: var(--font-display);
  font-size: 1.55rem;
  box-shadow: 0 0 30px rgba(255, 213, 74, 0.28);
}

.social-card strong,
.social-card p,
.social-card small {
  position: relative;
  z-index: 1;
}

.social-card strong {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.social-card p {
  max-width: 300px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
}

.social-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 800;
}

.disclaimer {
  padding-top: 24px;
}

.disclaimer-card {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4.5vw, 48px);
  border-radius: 32px;
  overflow: hidden;
}

.disclaimer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 10%, rgba(255, 213, 74, 0.16), transparent 24rem),
    radial-gradient(circle at 100% 100%, rgba(200, 16, 46, 0.24), transparent 28rem);
}

.disclaimer-card .section-kicker,
.disclaimer-card h2,
.disclaimer-copy {
  position: relative;
  z-index: 1;
}

.disclaimer-card h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
}

.disclaimer-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.disclaimer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.58;
}

.disclaimer-copy strong {
  color: var(--gold);
}

.site-footer {
  position: relative;
  padding: 42px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.footer-inner span,
.footer-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 700;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

.is-revealed {
  opacity: 1;
  transform: none;
}

[data-link-pending="true"] {
  cursor: url("assets/images/cat-paw-cursor.png") 12 8, pointer;
}

@media (max-width: 1060px) {
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 102px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(9, 9, 9, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: block;
  }

  .nav-buy {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
  }

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

  .token-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .narrative-layout,
  .narrative-card-wide {
    grid-template-columns: 1fr;
  }

  .narrative-card-wide {
    row-gap: 0;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: min(100% - 20px, 1180px);
    min-height: 66px;
    border-radius: 20px;
  }

  .brand span {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 5rem);
  }

  .hero-copy p,
  .hero-copy .hero-lede,
  .about-card p,
  .narrative-card p {
    font-size: 1.08rem;
  }

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

  .quick-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-links a {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
    padding-top: 10px;
    margin-bottom: 18px;
  }

  .mascot-card {
    width: min(100%, 300px);
    border-radius: 26px;
    padding: 10px;
  }

  .mascot-card::before {
    inset: 16px;
    border-radius: 16px;
    background:
      linear-gradient(var(--gold), var(--gold)) left top / 42px 2px no-repeat,
      linear-gradient(var(--gold), var(--gold)) left top / 2px 42px no-repeat,
      linear-gradient(var(--gold), var(--gold)) right top / 42px 2px no-repeat,
      linear-gradient(var(--gold), var(--gold)) right top / 2px 42px no-repeat,
      linear-gradient(var(--red), var(--red)) left bottom / 42px 2px no-repeat,
      linear-gradient(var(--red), var(--red)) left bottom / 2px 42px no-repeat,
      linear-gradient(var(--red), var(--red)) right bottom / 42px 2px no-repeat,
      linear-gradient(var(--red), var(--red)) right bottom / 2px 42px no-repeat;
  }

  .mascot-card img {
    border-radius: 20px;
  }

  .mascot-card::after {
    inset: 10px 10px 58px;
    border-radius: 20px;
  }

  .mascot-card figcaption {
    padding: 10px 4px 2px;
    flex-direction: column;
    gap: 0;
    font-size: 0.86rem;
  }

  .orbit-tag {
    display: none;
  }

  .about-photo,
  .about-photo img,
  .about-photo video {
    min-height: 360px;
  }

  .video-hint {
    opacity: 1;
    transform: none;
    border-radius: 18px;
  }

  .narrative-card {
    border-radius: 26px;
    padding: 26px;
  }

  .narrative-side {
    min-height: 360px;
    border-radius: 26px;
  }

  .narrative-side img {
    min-height: 360px;
    padding: 18px 12px 120px;
  }

  .story-mark {
    right: 20px;
    top: 18px;
    font-size: 4.3rem;
  }

  .narrative-quote span {
    border-radius: 18px;
  }

  .token-grid,
  .timeline,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    min-height: 70px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 18px 60px 18px 16px;
  }

  .faq-question span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .faq-question::after {
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .faq-answer p {
    padding: 0 18px;
    font-size: 1.02rem;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 20px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(42px);
  }

  .info-card,
  .phase,
  .social-card {
    min-height: 220px;
  }

  .disclaimer-card {
    border-radius: 26px;
    padding: 26px;
  }

  .disclaimer-copy p {
    font-size: 1rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
