/* ═══ NEXA HP — WPCode CSS Snippet ═══
   Paste this in WPCode → Add Snippet → CSS Snippet
   Code Type: CSS Snippet
   Location:  Site Wide Header
   Insert Method: Auto Insert
   ═══════════════════════════════════ */

:root {
  --nexa-black: #000000;
  --nexa-dark: #080808;
  --nexa-white: #ffffff;
  --nexa-yellow: #FACB10;
  --nexa-yellow-dim: rgba(250,203,16,0.15);
  --nexa-yellow-glow: rgba(250,203,16,0.35);
  --nexa-grey: rgba(255,255,255,0.55);
  --nexa-grey-dim: rgba(255,255,255,0.2);
  --nexa-ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --nexa-ease-out: cubic-bezier(0.16,1,0.3,1);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* RESET INSIDE WIDGET */
.nhp-wrap,
.nhp-wrap *,
.nhp-wrap *::before,
.nhp-wrap *::after {
  box-sizing: border-box;
}
.nhp-wrap {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nhp-wrap.nhp-ready {
  opacity: 1;
}
.nhp-wrap {
  width: 100%;
  background: var(--nexa-black);
  color: var(--nexa-white);
  font-family: var(--font-body);
  overflow: clip;
}

/* ─────────────────────────────
   HORIZONTAL SCROLL ENGINE
───────────────────────────── */
.nhp-spacer {
  position: relative;
  width: 100%;
  background: var(--nexa-black);
}

.nhp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(250,203,16,0.07), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(250,203,16,0.06), transparent 28%),
    var(--nexa-black);
}

.nhp-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.nhp-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nexa-black);
}

/* Scanline texture */
.nhp-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px),
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, transparent 15%, transparent 85%, rgba(0,0,0,0.92) 100%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.38) 100%);
  z-index: 1;
}

/* Slide divider line */
.nhp-slide::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(250,203,16,0.35), transparent);
  z-index: 2;
}

/* ─────────────────────────────
   LAYOUT
───────────────────────────── */
.nhp-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0 clamp(42px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 90px);
}

.nhp-col-v {
  flex: 0 0 45%;
  height: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nhp-col-c {
  flex: 0 0 45%;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nhp-centered {
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

/* ─────────────────────────────
   TYPOGRAPHY
───────────────────────────── */
.nhp-label {
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--nexa-yellow);
  margin-bottom: 18px;
}

.nhp-h-accent,
.nhp-h-white {
  font-family: var(--font-display);
  font-weight: 950;
  font-size: clamp(48px, 7.4vw, 100px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin: 0;
}

.nhp-h-accent {
  color: var(--nexa-yellow);
  text-shadow: 0 0 60px rgba(250,203,16,0.18), 0 0 120px rgba(250,203,16,0.07);
}

.nhp-h-white {
  color: var(--nexa-white);
}

.nhp-body {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.0vw, 16px);
  line-height: 1.85;
  color: rgba(255,255,255,0.52);
  max-width: 440px;
  margin: 22px 0 0;
}

.nhp-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 52px;
  margin-top: 38px;
  padding: 0 42px;
  border: 1.5px solid var(--nexa-yellow);
  color: var(--nexa-yellow);
  background: transparent;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.35s var(--nexa-ease), box-shadow 0.35s var(--nexa-ease), transform 0.35s var(--nexa-ease);
}

.nhp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nexa-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--nexa-ease);
  z-index: -1;
}

.nhp-cta:hover {
  color: var(--nexa-black);
  box-shadow: 0 0 42px rgba(250,203,16,0.35);
  transform: translateY(-2px);
}

.nhp-cta:hover::before {
  transform: scaleX(1);
}

/* ─────────────────────────────
   PROGRESS BAR (game UI style)
─────────────────────────────── */
.nhp-progress {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(250,203,16,0.2);
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(14px);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--nexa-ease);
}

.nhp-progress.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nhp-prog-track {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.nhp-prog-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--nexa-yellow);
  box-shadow: 0 0 8px var(--nexa-yellow-glow);
  transition: width 0.45s var(--nexa-ease);
  width: 0%;
}

.nhp-prog-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--nexa-yellow);
  white-space: nowrap;
  user-select: none;
}

.nhp-dot { display: none; }
.nhp-pline { display: none; }

/* ─────────────────────────────
   PIXEL-PERFECT ARROWS
───────────────────────────── */
.nhp-arrow {
  --arrow-width: 74px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  margin-bottom: 27px;
}

.nhp-arrow-line {
  position: relative;
  width: var(--arrow-width);
  height: 1px;
  background: linear-gradient(90deg, rgba(250,203,16,0), rgba(250,203,16,0.85));
}

.nhp-arrow-line::before,
.nhp-arrow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 1px;
  background: var(--nexa-yellow);
  transform-origin: right center;
}

.nhp-arrow-line::before {
  transform: translateY(-50%) rotate(35deg);
}

.nhp-arrow-line::after {
  transform: translateY(-50%) rotate(-35deg);
}

.nhp-arrow-text {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--nexa-yellow);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

.nhp-diamond-sm {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.nhp-diamond-sm::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--nexa-yellow);
  transform: rotate(45deg);
  opacity: 0.95;
  box-shadow: 0 0 18px rgba(250,203,16,0.28);
}

.nhp-diamond-sm::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(250,203,16,0.22);
  transform: rotate(45deg);
}

/* ─────────────────────────────
   IMAGE TREATMENT / SHAPES
───────────────────────────── */
.nhp-char-img {
  position: relative;
  z-index: 4;
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.68))
    drop-shadow(0 0 22px rgba(250,203,16,0.07));
  user-select: none;
  pointer-events: none;
}

.nhp-img-card {
  position: absolute;
  z-index: 7;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(250,203,16,0.18);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.48),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.nhp-img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.02);
}

.nhp-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250,203,16,0.15), transparent 42%, rgba(0,0,0,0.3));
  z-index: 2;
  pointer-events: none;
}

.nhp-mask-teardrop {
  width: 278px;
  height: 278px;
  border-radius: 50% 50% 50% 4px;
}

.nhp-mask-arch {
  width: 230px;
  height: 292px;
  border-radius: 120px 120px 16px 16px;
}

.nhp-mask-soft {
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.nhp-mask-corner {
  width: 270px;
  height: 330px;
  border-radius: 12px 12px 76px 12px;
}

.nhp-video-thumb {
  width: 168px;
  height: 96px;
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 86% 100%, 0 100%);
}

.nhp-video-thumb::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(250,203,16,0.8);
  background: rgba(0,0,0,0.4);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.nhp-video-thumb .nhp-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--nexa-yellow);
  z-index: 4;
}

/* 25 YEARS BADGE */
.nhp-years-badge {
  position: absolute;
  bottom: 12%;
  left: 50%;
  z-index: 8;
  transform: translateX(-50%);
  height: 64px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--nexa-yellow);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(250,203,16,0.15);
}

.nhp-years-badge::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(250,203,16,0.3);
}

.nhp-years-badge img {
  max-height: 40px;
  width: auto;
  display: block;
}

/* Decorative background drawings */
.nhp-rune-bg {
  position: absolute;
  max-height: 82%;
  width: auto;
  opacity: 0.055;
  pointer-events: none;
  z-index: 2;
  filter: grayscale(1);
}

/* ─────────────────────────────
   PARTICLES
───────────────────────────── */
.nhp-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.nhp-particle {
  position: absolute;
  color: var(--nexa-yellow);
  opacity: 0;
  animation: nhp-float linear infinite;
}

@keyframes nhp-float {
  0% {
    transform: translate3d(0, 105vh, 0) rotate(0deg);
    opacity: 0;
  }
  12%, 88% {
    opacity: var(--po);
  }
  100% {
    transform: translate3d(40px, -20vh, 0) rotate(180deg);
    opacity: 0;
  }
}

/* ─────────────────────────────
   SMALL COMPONENTS
───────────────────────────── */
.nhp-dots-row {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 22px;
}

.nhp-dots-row span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}

.nhp-dots-row .ac {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background: var(--nexa-yellow);
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(250,203,16,0.25);
}

.nhp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 34px;
}

.nhp-stat-n {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: var(--nexa-yellow);
}

.nhp-stat-l {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.44);
  text-transform: uppercase;
}

.nhp-games {
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  max-width: 440px;
}

.nhp-games li {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0 14px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.11em;
  color: rgba(255,255,255,0.58);
  text-transform: uppercase;
}

.nhp-games li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--nexa-yellow);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.nhp-games li:hover {
  color: var(--nexa-yellow);
}

.nhp-games .yr {
  color: var(--nexa-yellow);
  font-size: 12px;
  opacity: 0.72;
}

.nhp-mani {
  max-width: 760px;
}

.nhp-mani p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.92;
  color: rgba(255,255,255,0.54);
}

.nhp-mani .hl {
  margin-top: 26px;
  font-family: var(--font-body);
  font-size: clamp(21px, 3vw, 34px);
  font-style: italic;
  line-height: 1.42;
  color: var(--nexa-yellow);
  max-width: 820px;
}

.nhp-quote {
  position: relative;
  max-width: 780px;
  font-family: var(--font-body);
  font-size: clamp(25px, 4.6vw, 68px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--nexa-white);
}

.nhp-quote::before {
  content: "201C";
  position: absolute;
  left: -0.18em;
  top: -0.36em;
  font-family: var(--font-display);
  font-size: 2.1em;
  color: var(--nexa-yellow);
  opacity: 0.18;
  line-height: 1;
}

.nhp-attr {
  margin-top: 25px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  color: var(--nexa-yellow);
  text-transform: uppercase;
}

/* ─────────────────────────────
   REVEAL ANIMATION
───────────────────────────── */
.nhp-rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s var(--nexa-ease-out),
    transform 0.85s var(--nexa-ease-out);
}

.nhp-rv.fl { transform: translateX(-46px); }
.nhp-rv.fr { transform: translateX(46px); }
.nhp-rv.vis { opacity: 1; transform: translate3d(0,0,0); }

/* ─────────────────────────────
   GLITCH ANIMATION
───────────────────────────── */
@keyframes nhp-glitch {
  0%,92%,100% { clip-path: none; transform: translate3d(0,0,0); }
  93% { clip-path: inset(20% 0 60% 0); transform: translate3d(-4px,0,0); color: rgba(250,203,16,0.6); }
  94% { clip-path: inset(60% 0 20% 0); transform: translate3d(4px,0,0); }
  95% { clip-path: inset(40% 0 40% 0); transform: translate3d(-2px,0,0); color: var(--nexa-yellow); }
  96% { clip-path: none; transform: translate3d(0,0,0); }
}

.nhp-glitch {
  position: relative;
  animation: nhp-glitch 5s infinite;
}

.nhp-glitch::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--nexa-yellow);
  opacity: 0;
  animation: nhp-glitch 5s 0.1s infinite;
  mix-blend-mode: screen;
}

/* ─────────────────────────────
   HUD CORNERS
─────────────────────────────── */
.nhp-hud-corner {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.nhp-hud-corner::before,
.nhp-hud-corner::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--nexa-yellow);
  border-style: solid;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.nhp-hud-tl { top: 24px; left: 24px; }
.nhp-hud-tr { top: 24px; right: 24px; }
.nhp-hud-bl { bottom: 24px; left: 24px; }
.nhp-hud-br { bottom: 24px; right: 24px; }

.nhp-hud-tl::before { top:0;left:0; border-width:2px 0 0 2px; }
.nhp-hud-tl::after  { top:6px;left:6px; border-width:1px 0 0 1px; opacity:0.15; }
.nhp-hud-tr::before { top:0;right:0; border-width:2px 2px 0 0; }
.nhp-hud-tr::after  { top:6px;right:6px; border-width:1px 1px 0 0; opacity:0.15; }
.nhp-hud-bl::before { bottom:0;left:0; border-width:0 0 2px 2px; }
.nhp-hud-bl::after  { bottom:6px;left:6px; border-width:0 0 1px 1px; opacity:0.15; }
.nhp-hud-br::before { bottom:0;right:0; border-width:0 2px 2px 0; }
.nhp-hud-br::after  { bottom:6px;right:6px; border-width:0 1px 1px 0; opacity:0.15; }

/* ─────────────────────────────
   SLIDE NUMBER HUD
─────────────────────────────── */
.nhp-slide-num {
  position: absolute;
  top: 26px;
  right: 38px;
  z-index: 8;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nhp-slide-num .cur {
  font-size: 18px;
  font-weight: 950;
  color: var(--nexa-yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nhp-slide-num .sep {
  color: rgba(255,255,255,0.3);
  opacity: 1;
}

/* ─────────────────────────────
   PERSPECTIVE GRID FLOOR
───────────────────────────── */
.nhp-grid-floor {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 42%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.nhp-grid-floor::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(250,203,16,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(250,203,16,0.06) 1px, transparent 1px);
  background-size: 80px 40px;
  transform: perspective(300px) rotateX(55deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 60%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 60%, black 100%);
}

/* ─────────────────────────────
   PARALLAX CHAR WRAPPER
───────────────────────────── */
.nhp-parallax-wrap {
  position: relative;
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ─────────────────────────────
   YELLOW GLOW ON HERO SLIDE
─────────────────────────────── */
.nhp-slide:first-child .nhp-col-v::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 40%;
  background: radial-gradient(ellipse at bottom, rgba(250,203,16,0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ─── SLIDE 1: HERO ─── */
.nhp-hero-main {
  max-height: 204vh !important;
  transform: translateX(0%) !important;
  margin-bottom: -4vh;
  filter:
    drop-shadow(0 0 40px rgba(250,203,16,0.16))
    drop-shadow(-20px 50px 70px rgba(0,0,0,0.9));
}

.nhp-s1-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: stretch;
}

.nhp-s1-char-col {
  position: relative;
  display: flex;
    align-items: flex-end !important;
  padding-bottom: 36px;
  justify-content: center;
  overflow: visible;
}

.nhp-s1-char-col::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 55%;
  background: radial-gradient(ellipse at bottom center, rgba(250,203,16,0.11) 0%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.nhp-s1-right {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(36px,5vh,72px) clamp(36px,5vw,80px) 0 clamp(24px,3vw,48px);
  gap: 0;
}

.nhp-s1-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 24px;
}

.nhp-s1-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-bottom: 36px;
}

.nhp-s1-panel {
  position: relative;
  height: 120px;
  overflow: hidden;
  border: 1px solid rgba(250,203,16,0.15);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, transform 0.3s;
}

.nhp-s1-panel:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.nhp-s1-panel:nth-child(2) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.nhp-s1-panel:nth-child(3) {
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.nhp-s1-panel:hover {
  border-color: rgba(250,203,16,0.45);
  transform: translateY(-3px);
}

.nhp-s1-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.75);
  transition: filter 0.4s;
}

.nhp-s1-panel:hover img {
  filter: grayscale(0) contrast(1.1) brightness(0.9);
}

.nhp-s1-panel-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  z-index: 2;
}

.nhp-s1-panel-yr {
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--nexa-yellow);
  background: rgba(0,0,0,0.6);
  padding: 2px 6px;
  z-index: 2;
}

.nhp-s1-video {
  position: absolute;
  bottom: 14% !important;
   right: auto !important;
left: 20px !important;  
  z-index: 10;
  width: 190px;
  height: 112px;
  overflow: hidden;
  border: 1px solid rgba(250,203,16,0.3);
  box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 24px rgba(250,203,16,0.08);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  background: #0a0a0a;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.nhp-s1-video:hover {
  border-color: rgba(250,203,16,0.6);
  box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 36px rgba(250,203,16,0.18);
}

.nhp-s1-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s;
}
.nhp-s1-video:hover img { filter: brightness(0.88); }

.nhp-s1-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250,203,16,0.1), transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.nhp-s1-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,203,16,0.9);
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.nhp-s1-video:hover .nhp-s1-play {
  background: rgba(250,203,16,0.18);
  box-shadow: 0 0 20px rgba(250,203,16,0.3);
}
.nhp-s1-play::after {
  content: "";
  display: block;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--nexa-yellow);
  margin-left: 2px;
}

.nhp-s1-video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5px 9px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  z-index: 3;
}

.nhp-s1-ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 36px;
  background: rgba(250,203,16,0.06);
  border-top: 1px solid rgba(250,203,16,0.14);
  overflow: hidden;
  z-index: 9;
  display: flex;
  align-items: center;
}

.nhp-s1-ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: nhp-ticker 22s linear infinite;
  will-change: transform;
}

.nhp-s1-ticker-inner span {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,203,16,0.55);
  padding: 0 32px;
}

.nhp-s1-ticker-inner span.sep {
  color: rgba(250,203,16,0.25);
  letter-spacing: 0;
  padding: 0 8px;
}

@keyframes nhp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nhp-s1-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.nhp-s1-line::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--nexa-yellow);
  box-shadow: 0 0 12px rgba(250,203,16,0.5);
}
.nhp-s1-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--nexa-yellow);
  opacity: 0.9;
}

.nhp-s1-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nhp-s1-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nhp-s1-strip-n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--nexa-yellow);
  line-height: 1;
}
.nhp-s1-strip-l {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}
.nhp-s1-strip-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* ─── SLIDE 2: VISION ─── */
.nhp-s2-col-v {
  flex: 0 0 48%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.nhp-s2-col-c {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nhp-stat-item {
  position: relative;
  padding: 18px 22px;
  border: 1px solid rgba(250,203,16,0.12);
  background: rgba(250,203,16,0.03);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: border-color 0.3s, background 0.3s;
}
.nhp-stat-item:hover {
  border-color: rgba(250,203,16,0.35);
  background: rgba(250,203,16,0.06);
}
.nhp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

/* ─── SLIDE 3: PHILOSOPHY ─── */
.nhp-s3-inner {
  display: grid;
  grid-template-columns: 38% 1fr;
  height: 100%;
  width: 100%;
  padding: 0 clamp(42px,7vw,110px);
  align-items: center;
  gap: clamp(40px,5vw,80px);
  position: relative;
  z-index: 5;
}
.nhp-s3-img-stack {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nhp-s3-img-main {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 320px;
  border-radius: 4px 4px 60px 4px;
  overflow: hidden;
  border: 1px solid rgba(250,203,16,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.nhp-s3-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.nhp-s3-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(250,203,16,0.14), transparent 50%);
  z-index: 2;
  pointer-events: none;
}
.nhp-s3-img-sm {
  position: absolute;
  right: 0;
  bottom: 18%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(250,203,16,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nhp-s3-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.nhp-s3-img-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(250,203,16,0.12), transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.nhp-s3-badge {
  position: absolute;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nexa-yellow);
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(250,203,16,0.3);
  padding: 8px 14px;
  white-space: nowrap;
}
.nhp-s3-manifesto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.nhp-s3-manifesto p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.9;
  color: rgba(255,255,255,0.50);
  border-left: 2px solid rgba(250,203,16,0.15);
  padding-left: 16px;
  transition: border-color 0.3s, color 0.3s;
}
.nhp-s3-manifesto p:hover {
  color: rgba(255,255,255,0.75);
  border-left-color: rgba(250,203,16,0.6);
}
.nhp-s3-hl {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.45;
  color: var(--nexa-yellow);
  opacity: 0.9;
}

.nhp-duo .kratos {
  max-height: 82vh;
  margin-right: -22px;
  z-index: 5;
  filter:
    drop-shadow(0 0 28px rgba(250,203,16,0.22))
    drop-shadow(0 0 60px rgba(250,203,16,0.10))
    drop-shadow(0 40px 60px rgba(0,0,0,0.7));
  animation: nhp-char-spark 3s ease-in-out infinite;
}

@keyframes nhp-char-spark {
  0%, 100% {
    filter:
      drop-shadow(0 0 20px rgba(250,203,16,0.18))
      drop-shadow(0 0 50px rgba(250,203,16,0.07))
      drop-shadow(0 40px 60px rgba(0,0,0,0.7));
  }
  50% {
    filter:
      drop-shadow(0 0 38px rgba(250,203,16,0.40))
      drop-shadow(0 0 80px rgba(250,203,16,0.18))
      drop-shadow(0 40px 60px rgba(0,0,0,0.7));
  }
}

.nhp-duo .atreus {
  max-height: 50vh;
  margin-left: -14px;
  z-index: 4;
}

.nhp-photo-left-main { left: 10%; top: 23%; }
.nhp-photo-left-small { right: 4%; bottom: 18%; }

.nhp-craft-photo {
  position: relative;
  inset: auto;
  width: 290px;
  height: 350px;
  border-radius: 12px 12px 82px 12px;
}

/* ─────────────────────────────
   MOBILE
───────────────────────────── */
@media (max-width: 900px) {
  .nhp-spacer { height: auto !important; }
  .nhp-sticky { position: relative; height: auto; overflow: visible; }
  .nhp-track { flex-direction: column; transform: none !important; }
  .nhp-slide { flex: none; width: 100%; min-height: 100vh; height: auto; padding: 95px 0 72px; }
  .nhp-inner { flex-direction: column; justify-content: center; padding: 0 24px; gap: 46px; }
  .nhp-col-v, .nhp-col-c { flex: none !important; width: 100%; height: auto; }
  .nhp-col-c { align-items: flex-start; }
  .nhp-h-accent, .nhp-h-white { font-size: clamp(39px, 12vw, 58px); letter-spacing: -0.055em; }
  .nhp-body { max-width: 100%; }
  .nhp-char-img { max-height: 100vh; }
  .nhp-hero-main { transform: none; }
  .nhp-img-card { position: relative; inset: auto !important; }
  .nhp-hero-video { width: 150px; height: 86px; margin-top: -30px; align-self: flex-start; }
  .nhp-hero-team { width: 178px; height: 178px; margin-top: -86px; align-self: flex-end; }
  .nhp-years-badge { position: relative; top: auto; left: auto; transform: none; margin-bottom: -20px; height: 62px; }
  .nhp-duo { flex-direction: row; }
  .nhp-duo .kratos { max-height: 42vh; margin-right: -24px; }
  .nhp-duo .atreus { max-height: 38vh; }
  .nhp-photo-left-main, .nhp-photo-left-small { position: relative; inset: auto; }
  .nhp-photo-left-main { width: 210px; height: 270px; }
  .nhp-photo-left-small { width: 142px; height: 142px; margin-top: -110px; margin-left: auto; }
  .nhp-stats { gap: 24px; }
  .nhp-stat-n { font-size: 35px; }
  .nhp-progress { display: none; }
  .nhp-hud-corner, .nhp-slide-num, .nhp-grid-floor { display: none; }
  .nhp-rv, .nhp-rv.fl, .nhp-rv.fr { opacity: 1; transform: none; }
  .nhp-arrow-text { white-space: normal; line-height: 1.5; }
}

@media (max-width: 480px) {
  .nhp-inner { padding: 0 18px; }
  .nhp-cta { width: 100%; padding: 0 24px; }
  .nhp-arrow { --arrow-width: 48px; }
  .nhp-mask-teardrop { width: 160px; height: 160px; }
  .nhp-video-thumb { width: 140px; height: 80px; }
}