/* ═══════════════════════════════════════════════
   JMJ · JaMarrion Jackson · Personal Brand Site
   DB #15 · Jackson Academy
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --bg:        #08080F;
  --bg-alt:    #0C0C18;
  --surface:   #0F0F1A;
  --surface2:  #141425;
  --blue:      #00BFFF;
  --blue-dim:  #0066AA;
  --blue-pale: rgba(0,191,255,0.08);
  --blue-mid:  rgba(0,191,255,0.18);
  --gold:      #FFD700;
  --white:     #F0F4FF;
  --muted:     rgba(240,244,255,0.45);
  --border:    rgba(0,191,255,0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ══════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 12px var(--blue), 0 0 24px rgba(0,191,255,0.4);
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0,191,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out-expo), opacity 0.3s;
  box-shadow: 0 0 16px rgba(0,191,255,0.15);
}
.cursor--hover { width: 16px; height: 16px; background: var(--gold); }
.cursor-trail--hover { width: 52px; height: 52px; border-color: rgba(255,215,0,0.4); }

/* ══════════════════════════════════
   GRAIN OVERLAY
══════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9997;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav--scrolled {
  background: rgba(8, 8, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
  transition: filter 0.35s, transform 0.25s;
  filter: drop-shadow(0 0 8px rgba(0,191,255,0.45));
}
.nav__logo:hover {
  filter: drop-shadow(0 0 18px rgba(0,191,255,0.8)) drop-shadow(0 0 6px rgba(255,215,0,0.3));
  transform: scale(1.04);
}
.nav__logo-svg { display: block; overflow: visible; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.3s var(--ease-out-expo);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0,191,255,0.4);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video BG */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,15,0.75) 0%,
    rgba(8,8,15,0.45) 50%,
    rgba(8,8,15,0.80) 100%
  );
}

/* Ghost watermark */
.hero__watermark {
  position: absolute;
  bottom: -2vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,191,255,0.06);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  animation: watermarkPulse 6s ease-in-out infinite;
}
@keyframes watermarkPulse {
  0%,100% { -webkit-text-stroke-color: rgba(0,191,255,0.06); }
  50%      { -webkit-text-stroke-color: rgba(0,191,255,0.12); }
}

/* Manga SFX floating text */
.sfx {
  position: absolute;
  font-family: var(--font-display);
  color: rgba(0,191,255,0.07);
  pointer-events: none;
  z-index: 1;
  animation: sfxFloat 8s ease-in-out infinite;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.sfx--1 { top: 15%; left: 5%; font-size: clamp(1.5rem,3vw,4rem); animation-delay: 0s; transform: rotate(-15deg); }
.sfx--2 { top: 25%; right: 8%; font-size: clamp(2rem,4vw,5rem); animation-delay: 1s; transform: rotate(8deg); }
.sfx--3 { bottom: 35%; left: 3%; font-size: clamp(3rem,6vw,8rem); animation-delay: 2s; transform: rotate(-8deg); opacity: 0.04; }
.sfx--4 { top: 60%; right: 5%; font-size: clamp(1rem,2vw,3rem); animation-delay: 1.5s; transform: rotate(12deg); }
.sfx--5 { bottom: 20%; left: 12%; font-size: clamp(1.2rem,2.5vw,3.5rem); animation-delay: 3s; transform: rotate(-5deg); }
@keyframes sfxFloat {
  0%,100% { transform: translateY(0) rotate(var(--r, -15deg)); opacity: 0.07; }
  50%      { transform: translateY(-12px) rotate(var(--r, -15deg)); opacity: 0.12; }
}

/* Lightning bolts */
.lightning {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.lightning--1 {
  top: 0; left: 20%;
  width: 2px; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  animation: lightningStrike 4s ease-in-out infinite;
}
.lightning--2 {
  top: 0; right: 25%;
  width: 1px; height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0,191,255,0.8), transparent);
  animation: lightningStrike 4s ease-in-out infinite 1.5s;
}
.lightning--3 {
  top: 0; left: 50%;
  width: 2px; height: 25%;
  background: linear-gradient(to bottom, transparent, rgba(0,191,255,0.6), transparent);
  animation: lightningStrike 5s ease-in-out infinite 3s;
}
@keyframes lightningStrike {
  0%, 90%, 100% { opacity: 0; transform: scaleX(1); }
  92% { opacity: 1; transform: scaleX(3); }
  94% { opacity: 0.3; transform: scaleX(1); }
  96% { opacity: 0.9; transform: scaleX(2); }
  98% { opacity: 0; }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 13rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 40px rgba(0,191,255,0.3),
    0 0 80px rgba(0,191,255,0.15);
  margin-bottom: 1.5rem;
}
.hero__name-line {
  display: block;
  overflow: hidden;
}
.name-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) skewX(-5deg);
  animation: charIn 0.6s var(--ease-out-expo) calc(0.5s + var(--i) * 0.04s) forwards;
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0) skewX(0); }
}

/* Electric flash on name chars */
.name-char.flash {
  animation: charFlash 0.15s ease-out forwards;
  color: var(--blue);
  text-shadow: 0 0 30px var(--blue), 0 0 60px rgba(0,191,255,0.5);
}
@keyframes charFlash {
  0%  { color: var(--blue); }
  100%{ color: var(--white); }
}

.hero__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) var(--delay, 0.8s) forwards;
}
.hero__tag { color: var(--white); }
.hero__sep { color: var(--blue); }
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) var(--delay, 1s) forwards;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  animation: fadeIn 1s 2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease-out-expo);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn--primary {
  background: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0,191,255,0.3), 0 0 40px rgba(0,191,255,0.1);
}
.btn--primary:hover {
  background: #33CCFF;
  box-shadow: 0 0 30px rgba(0,191,255,0.6), 0 0 60px rgba(0,191,255,0.2);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn--ghost::before { background: var(--blue-pale); }
.btn--ghost:hover {
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,191,255,0.2);
}
.btn--ghost:hover::before { transform: translateX(0); }
.btn--large {
  padding: 1.1rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
}
.btn--submit {
  width: 100%;
  justify-content: center;
  gap: 1rem;
}
.btn__arrow {
  transition: transform 0.3s var(--ease-out-expo);
}
.btn--submit:hover .btn__arrow { transform: translateX(4px); }

/* ══════════════════════════════════
   SECTIONS — shared
══════════════════════════════════ */
.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  position: relative;
}
.section__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section__label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--blue);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.accent { color: var(--blue); }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about { background: var(--bg-alt); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 2rem;
}
.about__image-wrap {
  position: relative;
}
.about__image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,191,255,0.12) 0%, transparent 70%);
  border-radius: 4px;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.02); }
}
.about__image {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}
.about__image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(0,191,255,0.2);
}
.about__image-badge {
  position: absolute;
  top: -16px; right: -16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--bg);
  background: var(--blue);
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,191,255,0.5);
  letter-spacing: 0;
}
.about__bio {
  color: rgba(240,244,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.about__bio--second {
  color: rgba(240,244,255,0.55);
  font-size: 0.95rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 2.5rem 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--border);
}
.stat {
  background: var(--surface);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background 0.3s;
}
.stat:hover { background: var(--surface2); }
.stat__num {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px rgba(0,191,255,0.3);
}
.stat__label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Details */
.about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s;
}
.detail:hover { border-color: rgba(0,191,255,0.4); }
.detail__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}
.detail__value {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* ══════════════════════════════════
   HIGHLIGHTS
══════════════════════════════════ */
.highlights {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.highlights__header {
  max-width: 1300px;
  margin: 0 auto 3rem;
}
.highlights__sub {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: -1rem;
}
.highlights__main {
  max-width: 1300px;
  margin: 0 auto 3rem;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.video-embed:hover {
  border-color: rgba(0,191,255,0.4);
  box-shadow: 0 0 40px rgba(0,191,255,0.1);
}
.video-embed__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
}
.video-embed__icon {
  width: 72px; height: 72px;
  color: var(--blue);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.video-embed:hover .video-embed__icon { opacity: 1; transform: scale(1.1); }
.video-embed__label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
}
.video-embed__sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Highlight cards */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.hcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s, box-shadow 0.4s;
}
.hcard:hover {
  transform: translateY(-6px);
  border-color: rgba(0,191,255,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,191,255,0.1);
}
.hcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0A0A1A 0%, #101028 100%) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hcard__thumb--anime1 { background-image: url('assets/jmj-tackle-boom.png'); background-size: cover; background-position: center; }
.hcard__thumb--anime2 { background-image: url('assets/jmj-overwhelming.png'); background-size: cover; background-position: center top; }
.hcard__thumb--anime3 { background-image: url('assets/jmj-power-overload.png'); background-size: cover; background-position: center; }

/* Hudl video embed */
.hudl-embed {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.hudl-embed__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,191,255,0.25);
  box-shadow: 0 0 60px rgba(0,191,255,0.12), 0 20px 60px rgba(0,0,0,0.5);
}
.hudl-embed__frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Highlights feature image */
.highlights__feature {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,191,255,0.2);
}
.highlights__feature-img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
}
.highlights__feature-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.highlights__feature-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--blue);
}
.hcard__play {
  width: 48px; height: 48px;
  background: rgba(0,191,255,0.15);
  border: 1px solid rgba(0,191,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}
.hcard:hover .hcard__play {
  background: var(--blue);
  color: var(--bg);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0,191,255,0.5);
}
.hcard__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,191,255,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.hcard:hover .hcard__glow { opacity: 1; }
.hcard__info { padding: 1.2rem 1.4rem; }
.hcard__tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hcard__title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.hcard__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery {
  background: var(--bg-alt);
  overflow: hidden;
}
.gallery__title { max-width: 800px; margin-bottom: 4rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto 3rem;
  align-items: stretch;
}
.gallery__panel {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.gallery__panel-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.4s;
}
.gallery__panel:hover .gallery__panel-inner { border-color: rgba(0,191,255,0.5); }
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out-expo);
  display: block;
}
.gallery__panel:hover .gallery__img { transform: scale(1.04); }
.gallery__panel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(8,8,15,0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.gallery__panel:hover .gallery__panel-overlay { transform: translateY(0); }
.gallery__panel-overlay--electric {
  background: linear-gradient(to top, rgba(0,20,40,0.95) 0%, transparent 100%);
}
.gallery__panel-label {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.gallery__panel-desc {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Electric aura on the second panel */
.gallery__aura {
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 4px;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow:
    0 0 30px rgba(0,191,255,0.3),
    0 0 60px rgba(0,191,255,0.15),
    inset 0 0 30px rgba(0,191,255,0.05);
}
.gallery__panel--electric:hover .gallery__aura { opacity: 1; }

/* Sparks */
.gallery__sparks { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.spark {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--blue);
  animation: sparkFly 0.6s ease-out forwards;
}
@keyframes sparkFly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* Manga strip */
.manga-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--border);
}
.manga-cell {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.5rem;
  transition: background 0.3s;
}
.manga-cell:hover { background: var(--surface2); }
.manga-cell span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color 0.3s;
}
.manga-cell:hover span { color: var(--white); }
.manga-cell--accent { background: var(--blue); }
.manga-cell--accent span { color: var(--bg); font-size: clamp(1rem, 2vw, 1.6rem); }
.manga-cell--accent:hover { background: #33CCFF; }
.manga-cell--accent:hover span { color: var(--bg); }

/* ══════════════════════════════════
   PHOTO TABS + GRID
══════════════════════════════════ */
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__title { margin-bottom: 0; }
.photo-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.photo-tab {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all 0.25s;
  cursor: none;
}
.photo-tab:hover,
.photo-tab--active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: 3px;
  max-width: 1300px;
  margin: 0 auto 3rem;
}
.photo-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.photo-card--wide      { grid-column: span 2; }
.photo-card--tall      { grid-row: span 2; }
.photo-card--landscape { grid-column: span 2; }
.photo-card--hidden    { display: none; }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.photo-card--landscape img { object-position: center center; }
.photo-card:hover img { transform: scale(1.05); }

/* Overlay */
.photo-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(8,8,15,0.92) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.photo-card:hover .photo-card__overlay { transform: translateY(0); }
.photo-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}
.photo-card__tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(0,191,255,0.7);
  flex-shrink: 0;
}
.photo-card__label {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin-bottom: 0.55rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.photo-card__sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(240,244,255,0.55);
  letter-spacing: 0.07em;
}

/* Corner number */
.photo-card__corner {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(240,244,255,0.2);
  letter-spacing: 0.05em;
  z-index: 2;
  transition: color 0.3s;
}
.photo-card:hover .photo-card__corner { color: var(--blue); }

/* ══════════════════════════════════
   NIL
══════════════════════════════════ */
.nil {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.nil::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.nil__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 30rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,191,255,0.04);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.nil__sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}
.nil__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  text-align: left;
}
.nil-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.nil-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,191,255,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.nil-card:hover {
  border-color: rgba(0,191,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,191,255,0.08);
}
.nil-card:hover::before { opacity: 1; }
.nil-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,191,255,0.4));
}
.nil-card__title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.nil-card__desc {
  font-size: 0.88rem;
  color: rgba(240,244,255,0.6);
  line-height: 1.7;
}

/* Partners */
.partners {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.partners__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.partners__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.partner-slot {
  border: 1px dashed rgba(240,244,255,0.1);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(240,244,255,0.15);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.partner-slot:hover {
  border-color: rgba(0,191,255,0.2);
  color: rgba(0,191,255,0.3);
}

.nil__cta { margin-top: 1rem; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact { background: var(--bg); }
.contact__sub {
  color: var(--muted);
  max-width: 500px;
  font-size: 1rem;
  margin-bottom: 4rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(240,244,255,0.25); }
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0,191,255,0.1);
}
.form-select { cursor: none; }
.form-select option { background: var(--surface); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Contact info panel */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
  position: relative;
}
.contact__card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}
.contact__card-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.contact__card-value {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, transform 0.3s, background 0.3s;
}
.social-link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.social-link:hover {
  border-color: var(--blue);
  color: var(--white);
  transform: translateX(4px);
  background: var(--surface2);
}
.social-link:hover svg { color: var(--blue); }
.contact__number-art {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,191,255,0.12);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  text-align: right;
  margin-top: auto;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(0,191,255,0.4);
}
.footer__copy {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer__motto {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,191,255,0.2);
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════
   TOAST
══════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--blue);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  z-index: 200;
  transition: transform 0.4s var(--ease-out-expo);
  white-space: nowrap;
  box-shadow: 0 0 30px rgba(0,191,255,0.4);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ══════════════════════════════════
   UTILITY
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-wrap { max-width: 480px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card--tall { grid-row: span 1; }
}

@media (max-width: 900px) {
  .nav { padding: 1.2rem 2rem; }
  .nav--scrolled { padding: 0.8rem 2rem; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(8,8,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 3rem;
    gap: 2rem;
    transition: right 0.4s var(--ease-out-expo);
    border-left: 1px solid var(--border);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1.1rem; }
  .nav__hamburger { display: flex; }

  .highlight-cards { grid-template-columns: 1fr; }
  .nil__cards { grid-template-columns: 1fr; }
  .partners__logos { grid-template-columns: repeat(2, 1fr); }
  .manga-strip { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 1.2rem; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.5rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about__details { grid-template-columns: 1fr; }
  .manga-strip { grid-template-columns: repeat(2, 1fr); }
  .manga-cell:last-child { display: none; }
  .partners__logos { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .nav { padding: 1rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}

@media (max-width: 400px) {
  .hero__name { font-size: clamp(3.5rem, 15vw, 5rem); }
}

/* ══════════════════════════════════
   COMIC BOOK CAPTIONS
══════════════════════════════════ */
.comic-caption {
  position: absolute;
  z-index: 15;
  padding: 5px 12px 4px;
  border: 2.5px solid #000;
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.3vw, 0.88rem);
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
  max-width: 220px;
  word-break: break-word;
}

/* Ben-Day dot halftone on all captions */
.comic-caption::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.11) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}

/* Color variants */
.comic-caption--yellow {
  background: var(--gold);
  color: #000;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.9);
}
.comic-caption--blue {
  background: var(--blue);
  color: #000;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.9);
}
.comic-caption--white {
  background: #fff;
  color: #000;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.9);
}
.comic-caption--dark {
  background: #06060F;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 3px 3px 0 var(--gold);
}
.comic-caption--dark::after {
  background-image: radial-gradient(circle, rgba(255,215,0,0.12) 1px, transparent 1px);
}

/* Positions */
.cc-tl { top: 14px; left: 14px; }
.cc-tr { top: 14px; right: 14px; }
.cc-bl { bottom: 60px; left: 14px; }
.cc-br { bottom: 14px; right: 14px; }

/* Tilt */
.cc-tilt-l { transform: rotate(-1.5deg); }
.cc-tilt-r { transform: rotate(1.8deg); }

/* Sub-line inside caption (narrator detail text) */
.comic-cap-sub {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.58em;
  letter-spacing: 0.14em;
  margin-top: 1px;
  opacity: 0.72;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .comic-caption { font-size: 0.65rem; padding: 4px 9px 3px; max-width: 160px; }
  .cc-tl { top: 10px; left: 10px; }
  .cc-tr { top: 10px; right: 10px; }
  .cc-bl { bottom: 50px; left: 10px; }
  .cc-br { bottom: 10px; right: 10px; }
}
