:root {
  --ink: #1d1119;
  --cream: #f7efe4;
  --cream-2: #fffdf8;
  --pink: #ff3a93;
  --pink-hot: #ff6eb4;
  --teal: #3ecfc4;
  --teal-deep: #1a8f88;
  --night: #0c0a10;
  --night-2: #16111c;
  --night-3: #22182a;
  --muted: #b9a8b4;
  --line: rgba(255, 246, 236, 0.12);
  --display: "Titan One", cursive;
  --round: "Baloo 2", sans-serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-hot); text-decoration: none; }
a:hover { color: #ffa6cf; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--pink); color: var(--ink); padding: 8px 12px;
}
.skip:focus { left: 8px; z-index: 80; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 28px;
  background: rgba(12, 10, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.wordmark {
  font-family: var(--display);
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--cream-2);
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 0 0 18px rgba(255, 58, 147, 0.35);
}
.nav-links {
  display: flex; gap: 8px 22px; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a:focus { color: var(--cream); }
.nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--pink);
  padding: 10px 14px; border-radius: 999px;
  box-shadow: 0 0 0 3px var(--ink), 0 0 22px rgba(255, 58, 147, 0.45);
}
.nav-cta:hover { color: var(--ink) !important; background: #ff6eb4; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 36px 28px 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-figure {
  margin: 0;
  background:
    radial-gradient(80% 70% at 50% 40%, rgba(62, 207, 196, 0.16), transparent 70%),
    var(--night-2);
  border: 3px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 0 4px #f7efe4, 0 24px 60px rgba(0,0,0,.45);
}
.hero-figure img {
  width: 100%; height: auto; object-fit: cover;
  background: #d5d2d0;
}
.hero-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin: 0 0 16px;
  color: var(--pink);
  transform: skewX(-6deg);
  -webkit-text-stroke: 5px var(--ink);
  paint-order: stroke fill;
  text-shadow: 0 3px 0 rgba(255,255,255,.4);
}
.hero-lede {
  font-size: 19px; color: var(--cream);
  margin: 0 0 18px; max-width: 38ch;
}
.hero-note { color: var(--muted); font-size: 15px; margin: 0 0 26px; max-width: 42ch; }
.verbs {
  display: flex; gap: 10px; flex-wrap: wrap;
  list-style: none; margin: 0 0 28px; padding: 0;
}
.verbs li {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--line); padding: 6px 10px; border-radius: 999px;
  color: var(--cream-2);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 13px; border: 0; cursor: pointer;
  padding: 14px 20px; border-radius: 999px;
}
.btn-pink {
  background: var(--pink); color: var(--ink);
  box-shadow: 0 0 0 3px var(--ink), 0 0 24px rgba(255, 58, 147, 0.4);
}
.btn-pink:hover { background: #ff6eb4; }
.btn-ghost {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--line);
  margin-left: 10px;
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--cream); color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 0; }

/* SECTIONS */
.section {
  padding: 72px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  margin: 0 0 18px;
  color: var(--cream-2);
  -webkit-text-stroke: 4px var(--ink);
  paint-order: stroke fill;
}
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink-hot); margin: 0 0 8px;
}
.canon {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.canon p { margin: 0 0 14px; color: var(--cream); }
.aside {
  background: var(--night-2);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
}
.aside h3 {
  font-family: var(--round); font-size: 20px; margin: 0 0 8px; color: var(--teal);
}
.aside p { color: var(--muted); font-size: 15px; margin: 0 0 10px; }
.aside p:last-child { margin: 0; }

/* COLLECTION */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.card {
  background: var(--night-2);
  border: 3px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #f7efe4;
}
.card-art {
  aspect-ratio: 1 / 1.05;
  background: var(--night-3);
  overflow: hidden;
}
.card-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.swatch {
  height: 100%;
  display: grid; grid-template-rows: 1fr 1fr 1fr;
}
.swatch span { display: block; }
.card-body { padding: 16px 18px 20px; }
.card-body h3 {
  font-family: var(--round); font-size: 22px; margin: 0 0 6px;
}
.card-body p { margin: 0; color: var(--muted); font-size: 14px; }
.tag {
  display: inline-block; margin-top: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: var(--teal); padding: 4px 8px; border-radius: 999px;
}

/* KAIJUNATOR band */
.kj-band {
  padding: 0;
  max-width: none;
  background: #0d0a12;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kj-intro {
  max-width: 1100px; margin: 0 auto; padding: 64px 28px 20px;
}
.kj-intro p { max-width: 62ch; color: var(--muted); }

.kj-stage {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #0d0a12;
  padding: 0 0 48px;
}
.kj-frame {
  position: relative;
  width: 100%;
  max-width: 1672px;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #0d0a12;
}

.kj-camera {
  position: absolute; inset: 0;
  transform-origin: 47% 46%;
  transition: transform 3.4s cubic-bezier(.22, .61, .36, 1);
}

.kj-scene {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

.kj-chamber {
  position: absolute; z-index: 2;
  /* Tuck the chamber under the illustrated metal rim so no background slivers show. */
  left: 38.82%; top: 9.15%; width: 24.94%; height: 63.18%;
  overflow: hidden;
  background: #d2b9d2;
  clip-path: polygon(47.57% 1.02%, 40.39% 1.70%, 31.14% 3.40%, 25.30% 5.10%, 21.17% 6.80%, 17.52% 8.50%, 14.84% 10.20%, 12.41% 11.90%, 10.22% 13.61%, 8.52% 15.31%, 6.81% 17.01%, 5.60% 18.71%, 4.38% 20.41%, 3.41% 22.11%, 1.95% 25.51%, 0.97% 28.91%, 0.73% 32.31%, 0.61% 35.71%, 0.49% 40.82%, 0.24% 47.62%, 0.12% 54.42%, 0.00% 61.22%, 0.12% 68.03%, 0.97% 73.13%, 2.80% 78.23%, 4.74% 82.48%, 7.18% 85.88%, 11.80% 89.29%, 19.10% 92.69%, 27.13% 95.58%, 35.89% 97.79%, 47.57% 99.32%, 52.43% 99.32%, 64.11% 97.79%, 72.87% 95.58%, 80.90% 92.69%, 88.20% 89.29%, 92.82% 85.88%, 95.26% 82.48%, 97.20% 78.23%, 99.03% 73.13%, 99.88% 68.03%, 100.00% 61.22%, 99.88% 54.42%, 99.76% 47.62%, 99.51% 40.82%, 99.39% 35.71%, 99.27% 32.31%, 99.03% 28.91%, 98.05% 25.51%, 96.59% 22.11%, 95.62% 20.41%, 94.40% 18.71%, 93.19% 17.01%, 91.48% 15.31%, 89.78% 13.61%, 87.59% 11.90%, 85.16% 10.20%, 82.48% 8.50%, 78.83% 6.80%, 74.70% 5.10%, 68.86% 3.40%, 59.61% 1.70%, 52.43% 1.02%);
  -webkit-mask-image: radial-gradient(ellipse 8% 7% at 97.4% 27.2%, transparent 74%, #000 100%);
  mask-image: radial-gradient(ellipse 8% 7% at 97.4% 27.2%, transparent 74%, #000 100%);
}

.kj-chamber-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(210,255,250,.85) 0%, transparent 30%),
    radial-gradient(circle at 22% 68%, rgba(174,112,255,.8) 0%, transparent 44%),
    radial-gradient(circle at 78% 58%, rgba(255,92,188,.88) 0%, transparent 48%),
    linear-gradient(180deg, #6c3f83 0%, #c35b9b 48%, #521d67 100%);
  opacity: 0.5;
  transition: opacity 1.4s ease;
}

.kj-slot {
  position: absolute; z-index: 1; left: 7%; top: 1%; width: 86%; height: 98%;
  opacity: 0; pointer-events: none;
  transition: opacity 0.9s ease;
}
.kj-slot kaiju-viewer { display: block; width: 100%; height: 100%; }

.kj-smoke {
  position: absolute; inset: -40%;
  pointer-events: none; opacity: 0;
  z-index: 3;
  transition: opacity 1.1s ease;
}
.kj-lights {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0;
  z-index: 3;
  transition: opacity 0.6s ease;
  mix-blend-mode: screen;
}
.kj-lights::before,
.kj-lights::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
}
.kj-lights::before {
  inset: -25%;
  background: conic-gradient(from 0deg at 50% 55%, transparent 0 10%, rgba(135,255,246,.7) 13%, transparent 18% 37%, rgba(255,109,205,.75) 41%, transparent 47% 67%, rgba(215,170,255,.72) 72%, transparent 78% 100%);
  filter: blur(12px);
  animation: kjEnergySpin 2.8s linear infinite;
}
.kj-lights::after {
  left: 14%; right: 14%; top: -10%; bottom: 0;
  background: repeating-linear-gradient(90deg, transparent 0 13%, rgba(225,255,255,.35) 14%, transparent 16% 27%);
  filter: blur(7px);
  animation: kjBeamFlicker .7s steps(2) infinite;
}
.kj-bolt {
  position: absolute; border-radius: 50%;
  filter: blur(10px);
}
.kj-bolt-a {
  left: 18%; top: 8%; width: 64%; height: 28%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,170,230,.55) 40%, transparent 70%);
  animation: kjStrobe 0.28s steps(2) infinite;
}
.kj-bolt-b {
  left: -10%; top: 40%; width: 50%; height: 40%;
  background: radial-gradient(circle, rgba(180,255,250,.8) 0%, rgba(255,90,180,.35) 50%, transparent 72%);
  animation: kjStrobe 0.42s steps(2) infinite reverse;
}
.kj-bolt-c {
  right: -8%; top: 22%; width: 46%; height: 36%;
  background: radial-gradient(circle, rgba(255,240,180,.85) 0%, rgba(255,80,160,.4) 48%, transparent 70%);
  animation: kjStrobe 0.35s steps(2) infinite;
}
.kj-bolt-d {
  left: 20%; bottom: 4%; width: 60%; height: 30%;
  background: radial-gradient(circle, rgba(255,120,210,.9) 0%, rgba(120,80,255,.45) 50%, transparent 72%);
  animation: kjPulse 0.9s ease-in-out infinite;
}
.is-charging .kj-chamber-glow {
  animation: kjPulse 0.55s ease-in-out infinite;
}
.kj-puff {
  position: absolute; border-radius: 50%;
  animation: smokeDrift 7s ease-in-out infinite alternate;
}
.kj-puff-a {
  left: -10%; top: 20%; width: 80%; height: 80%;
  filter: blur(28px);
  background: radial-gradient(circle, rgba(186,120,255,.95) 0%, rgba(126,60,190,.7) 45%, rgba(70,20,110,0) 72%);
}
.kj-puff-b {
  left: 25%; top: 35%; width: 85%; height: 85%;
  filter: blur(34px);
  background: radial-gradient(circle, rgba(220,160,255,.9) 0%, rgba(150,70,215,.65) 45%, rgba(70,20,110,0) 72%);
  animation-duration: 9s; animation-delay: .4s;
}
.kj-puff-c {
  left: 5%; top: 50%; width: 95%; height: 70%;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(160,90,235,.85) 0%, rgba(95,35,155,.6) 50%, rgba(70,20,110,0) 75%);
  animation-duration: 11s; animation-delay: .9s;
}

.kj-puff-e {
  left: 10%; top: 70%; width: 90%; height: 55%;
  filter: blur(36px);
  background: radial-gradient(circle, rgba(255,255,255,.75) 0%, rgba(255,140,210,.55) 40%, rgba(70,20,110,0) 72%);
  animation-duration: 6s; animation-delay: .2s;
}
.kj-puff-f {
  left: -20%; top: 30%; width: 70%; height: 70%;
  filter: blur(30px);
  background: radial-gradient(circle, rgba(255,90,180,.85) 0%, rgba(90,40,160,.5) 50%, rgba(70,20,110,0) 75%);
  animation-duration: 8.5s; animation-delay: .7s;
}

.kj-puff-d {
  left: -15%; top: 5%; width: 70%; height: 70%;
  filter: blur(26px);
  background: radial-gradient(circle, rgba(235,195,255,.8) 0%, rgba(150,80,210,.5) 50%, rgba(70,20,110,0) 74%);
  animation-duration: 8s; animation-delay: 1.4s;
}

.kj-doors { position: absolute; inset: -1.25%; overflow: hidden; z-index: 4; pointer-events: none; }
.kj-door {
  position: absolute; top: 0; height: 100%; width: 50.3%;
  background: rgba(221, 195, 235, .16);
  transition: transform 1.9s cubic-bezier(.65, 0, .2, 1);
  will-change: transform;
}
.kj-door::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.28) 0%, rgba(219,242,240,.12) 35%, rgba(239,205,230,.10) 68%, rgba(255,255,255,.22) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.kj-door img {
  width: 100%; height: 100%; object-fit: fill;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: screen;
  filter: grayscale(1) sepia(.08) hue-rotate(235deg) saturate(.65) brightness(1.55) contrast(.82);
}
.kj-door-l { left: 0; }
.kj-door-r { right: 0; }

.kj-rim {
  position: absolute; inset: 0; z-index: 5;
  border-radius: 14% / 9%;
  box-shadow: inset 0 0 70px rgba(255,120,190,.85), inset 0 0 22px rgba(255,255,255,.7);
  opacity: 0.25;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

@keyframes kjEnergySpin {
  to { transform: rotate(360deg) scale(1.08); }
}
@keyframes kjBeamFlicker {
  0%, 100% { opacity: .35; transform: translateY(-1%); }
  50% { opacity: .9; transform: translateY(2%); }
}

.kj-hand { position: absolute; z-index: 20; pointer-events: none; }
.kj-hand-glove { left: 34.99%; top: 50.48%; width: 11.96%; height: 18.07%; }
.kj-hand-mint { left: 57.72%; top: 18.60%; width: 7.18%; height: 12.75%; }

.kj-button {
  position: absolute; z-index: 3;
  left: 36.4%; top: 69.5%; width: 21.5%; height: 14.5%;
  border-radius: 50%;
  cursor: pointer;
  border: 0; padding: 0; background: transparent;
  transition: transform .16s cubic-bezier(.3, .7, .3, 1);
}
.kj-button:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}
.kj-btn-glow, .kj-ring { display: none; }
.kj-btn-glow {
  position: absolute; left: 6%; top: 8%; width: 88%; height: 84%;
  border-radius: 50%;
  background: radial-gradient(60% 55% at 44% 32%, rgba(255,255,255,.55) 0%, rgba(255,160,205,.35) 40%, rgba(255,110,180,.12) 72%, rgba(255,110,180,0) 100%);
  animation: buttonPulse 2.2s ease-in-out infinite;
  mix-blend-mode: screen;
  transition: opacity .5s ease;
}
.kj-ring {
  position: absolute; inset: -14%;
  border-radius: 50%;
  border: 3px solid rgba(255,150,205,.75);
  animation: ringOut 2.2s ease-out infinite;
  pointer-events: none;
}
.kj-ring-b {
  border-color: rgba(255,150,205,.6);
  animation-delay: 1.1s;
}

.kj-flash {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 45%, rgba(190,110,255,.35), rgba(60,10,90,0) 70%);
  opacity: 0; transition: opacity 1s ease;
}

.kj-ui {
  position: absolute; left: 0; top: 0;
  width: 1672px; height: 941px;
  transform-origin: 0 0;
  pointer-events: none;
}

.kj-bubble {
  position: absolute;
  transition: opacity .5s ease, transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.kj-bubble-l { left: 360px; top: 34px; width: 280px; }
.kj-bubble-r { left: 1348px; top: 92px; width: 300px; }

.kj-bubble-body {
  position: relative;
  background: #fffdf8;
  border: 5px solid #1d1119;
  border-radius: 52px 60px 54px 58px;
  padding: 20px 18px 16px;
  box-shadow: 0 0 26px rgba(255,63,150,.4), 0 14px 34px rgba(18,4,24,.5);
}
.kj-bubble-r .kj-bubble-body {
  background: #fffdf8;
  border-radius: 56px 50px 58px 52px;
  padding: 24px 28px 22px;
  box-shadow: 0 0 26px rgba(120,235,220,.34), 0 14px 34px rgba(18,4,24,.5);
}
.kj-bubble-body p {
  margin: 0;
  font-family: var(--round);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.16;
  color: #25151f;
  text-align: center;
  text-wrap: pretty;
}
.kj-bubble-r .kj-bubble-body p { font-size: 27px; line-height: 1.2; }
.kj-bubble-r em {
  font-style: normal;
  display: inline-block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: .01em;
  color: #ff3a93;
  transform: skewX(-8deg) rotate(-2deg);
  -webkit-text-stroke: 3.5px #1d1119;
  paint-order: stroke fill;
  text-shadow: 0 3px 0 rgba(255,255,255,.55);
}
.kj-bubble-body p.kj-kaijunator-word {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: .005em;
  text-align: center;
  color: #ff3a93;
  transform: skewX(-8deg) rotate(-2.5deg) scaleY(1.06);
  -webkit-text-stroke: 3.5px #1d1119;
  paint-order: stroke fill;
  text-shadow: 0 4px 0 rgba(255,255,255,.6), 0 0 18px rgba(255,58,147,.5);
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 0 18px 2px rgba(255,110,180,.45), 0 0 52px 12px rgba(255,110,180,.18), inset 0 0 24px rgba(255,255,255,.35); }
  50% { box-shadow: 0 0 34px 8px rgba(255,140,200,.7), 0 0 86px 24px rgba(255,110,180,.28), inset 0 0 34px rgba(255,255,255,.55); }
}
@keyframes ringOut {
  0% { transform: scale(.85); opacity: .75; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes kjStrobe {
  0%, 40% { opacity: .15; transform: scale(.92); }
  50%, 100% { opacity: 1; transform: scale(1.08); }
}
@keyframes kjPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}
@keyframes smokeDrift {
  0% { transform: translate3d(0,0,0) scale(1) rotate(0deg); }
  50% { transform: translate3d(4%,-9%,0) scale(1.25) rotate(9deg); }
  100% { transform: translate3d(-3%,-18%,0) scale(1.5) rotate(-7deg); }
}

/* RESERVE */
.reserve-box {
  background: var(--night-2);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 0 0 4px #f7efe4;
  max-width: 640px;
}
.reserve-box p { color: var(--muted); }
.reserve-box .btn { margin-top: 8px; }
.reserve-status {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); border: 1px solid var(--teal); padding: 4px 8px; border-radius: 999px;
  margin-bottom: 12px;
}
#reserve-msg {
  min-height: 1.4em;
  font-size: 15px;
  color: var(--cream);
}

footer {
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
footer strong { color: var(--cream); }

@media (max-width: 860px) {
  .nav { padding: 10px 16px; }
  .nav-links { display: none; }
  .hero, .section, .kj-intro { padding-left: 16px; padding-right: 16px; }
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .canon, .grid { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 8px; }
}
