/* ============================================================
   NV PREMIUM LAYER — 커스텀 커서 · 마퀴 · 리빌 · 마그네틱
   (포인터가 정밀한 데스크톱에서만 커서 활성화)
   ============================================================ */

/* ── 커스텀 커서 ── */
@media (hover: hover) and (pointer: fine) {
  html.nvp-cursor-on body { cursor: none; }
  html.nvp-cursor-on a,
  html.nvp-cursor-on button,
  html.nvp-cursor-on [onclick],
  html.nvp-cursor-on label { cursor: none; }
  /* 입력 요소는 기본 커서 유지 */
  html.nvp-cursor-on input,
  html.nvp-cursor-on textarea,
  html.nvp-cursor-on select { cursor: auto; }
}
.nvp-dot, .nvp-ring {
  position: fixed; top: 0; left: 0; z-index: 99999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  display: none;
}
html.nvp-cursor-on .nvp-dot,
html.nvp-cursor-on .nvp-ring { display: block; }
.nvp-dot {
  width: 7px; height: 7px;
  background: #38bdf8;
  mix-blend-mode: difference;
}
.nvp-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(56, 189, 248, .85);
  background: rgba(56, 189, 248, .06);
  transition: width .25s cubic-bezier(.22,1,.36,1), height .25s cubic-bezier(.22,1,.36,1),
              background .25s ease, border-color .25s ease;
  display: none;
  align-items: center; justify-content: center;
  mix-blend-mode: exclusion;
}
html.nvp-cursor-on .nvp-ring { display: flex; }
.nvp-ring .nvp-ring-label {
  font-size: 0; opacity: 0; color: #fff; font-weight: 700; letter-spacing: .08em;
  transition: opacity .2s ease, font-size .2s ease;
  font-family: 'Inter','Noto Sans KR',sans-serif; white-space: nowrap;
}
/* 인터랙티브 호버: 링 확대 */
.nvp-ring.is-hover {
  width: 62px; height: 62px;
  border-color: rgba(56,189,248,1);
  background: rgba(56,189,248,.12);
}
/* 텍스트 라벨 모드 (VIEW 등) */
.nvp-ring.is-label {
  width: 78px; height: 78px;
  background: rgba(37, 99, 235, .92);
  border-color: transparent;
  mix-blend-mode: normal;
}
.nvp-ring.is-label .nvp-ring-label { font-size: .68rem; opacity: 1; }
.nvp-ring.is-down { transform: translate(-50%,-50%) scale(.8); }

/* ── 마퀴 밴드 ── */
.nvp-marquee {
  overflow: hidden; position: relative;
  background: #05070d;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  user-select: none;
}
.nvp-marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: nvpMarquee 28s linear infinite;
}
.nvp-marquee:hover .nvp-marquee-track { animation-play-state: paused; }
.nvp-marquee-seg {
  display: flex; align-items: center; gap: 28px; padding-right: 28px;
  font-family: 'Inter','Noto Sans KR',sans-serif;
  font-weight: 800; font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  letter-spacing: .04em; white-space: nowrap;
  color: rgba(255,255,255,.9);
}
.nvp-marquee-seg .o { color: transparent; -webkit-text-stroke: 1px rgba(148,183,255,.5); }
.nvp-marquee-seg .s { color: #38bdf8; font-size: .8em; }
@keyframes nvpMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 스테이트먼트(대형 카피) 섹션 ── */
.nvp-statement {
  position: relative; overflow: hidden;
  background: #070b16; padding: 130px 0 120px;
}
.nvp-statement::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 50% 55% at 82% 14%, rgba(56,189,248,.08), transparent 62%),
              radial-gradient(ellipse 45% 50% at 10% 90%, rgba(124,58,237,.07), transparent 62%);
}
.nvp-statement .container { position: relative; z-index: 1; }
.nvp-st-eyebrow {
  font-family:'Inter',sans-serif; font-size:.72rem; font-weight:700;
  letter-spacing:.28em; color:#5b708f; text-transform:uppercase; margin-bottom:34px;
  display:flex; align-items:center; gap:14px;
}
.nvp-st-eyebrow::before { content:''; width:44px; height:1px; background:rgba(120,150,190,.5); }
.nvp-st-line {
  font-size: clamp(1.9rem, 5.2vw, 4.1rem);
  font-weight: 900; line-height: 1.22; letter-spacing: -.025em; color: #f5f9ff;
  opacity: 0; transform: translateY(38px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
  margin: 0;
}
.nvp-st-line + .nvp-st-line { margin-top: 10px; }
.nvp-st-line.is-in { opacity: 1; transform: none; }
.nvp-st-line .hl {
  background: linear-gradient(100deg,#60a5fa,#38bdf8 55%,#a78bfa);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nvp-st-line .ghost { color: transparent; -webkit-text-stroke: 1.5px rgba(148,183,255,.45); }
.nvp-st-sub {
  margin-top: 44px; max-width: 620px;
  color: #93a6c2; font-size: 1.08rem; line-height: 1.85;
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s ease .25s, transform .9s ease .25s;
}
.nvp-st-sub.is-in { opacity: 1; transform: none; }
.nvp-st-sub b { color: #dbe7fb; }
.nvp-st-points {
  margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
}
.nvp-st-point {
  background: #0a0f1c; padding: 30px 28px;
  transition: background .3s ease;
}
.nvp-st-point:hover { background: #0e1526; }
.nvp-st-point .n {
  font-family:'Inter',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.16em;
  color:#38bdf8; margin-bottom:14px;
}
.nvp-st-point .t { font-size:1.06rem; font-weight:800; color:#eef4ff; margin-bottom:10px; letter-spacing:-.01em; }
.nvp-st-point .d { font-size:.9rem; color:#8ea3c0; line-height:1.7; }
@media (max-width: 860px) {
  .nvp-st-points { grid-template-columns: 1fr; }
  .nvp-statement { padding: 90px 0 84px; }
}

/* ── 리빌(등장) 애니메이션 ── */
.nvp-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.nvp-reveal.is-in { opacity: 1; transform: none; }

/* ── 모션 최소화 대응 ── */
@media (prefers-reduced-motion: reduce) {
  .nvp-dot, .nvp-ring { display: none !important; }
  html.nvp-cursor-on body, html.nvp-cursor-on a, html.nvp-cursor-on button { cursor: auto !important; }
  .nvp-marquee-track { animation: none !important; }
  .nvp-st-line, .nvp-st-sub, .nvp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── 인지부조화 스테이트먼트 밴드 (서브페이지 공용) ── */
.nvp-band {
  position: relative; overflow: hidden;
  background: #05070d; padding: 104px 0 96px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nvp-band::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 46% 60% at 88% 8%, rgba(56,189,248,.07), transparent 60%),
              radial-gradient(ellipse 40% 50% at 6% 96%, rgba(124,58,237,.06), transparent 62%);
}
.nvp-band .container { position: relative; z-index: 1; }
.nvp-band-kicker {
  font-family:'Inter',sans-serif; font-size:.7rem; font-weight:800;
  letter-spacing:.3em; color:#4c617f; text-transform:uppercase; margin-bottom:28px;
  display:flex; align-items:center; gap:13px;
}
.nvp-band-kicker::before { content:''; width:38px; height:1px; background:rgba(120,150,190,.45); }
.nvp-band h2.nvp-st-line {
  font-size: clamp(1.65rem, 4.4vw, 3.4rem);
  max-width: 980px;
}
.nvp-band-res {
  margin-top: 30px; max-width: 640px;
  color: #94a7c3; font-size: 1.06rem; line-height: 1.85;
}
.nvp-band-res b { color: #dbe7fb; }
.nvp-band-trust {
  margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px;
}
.nvp-band-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: #b9cbe6;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 8px 16px;
  transition: border-color .25s ease, background .25s ease;
}
.nvp-band-trust span:hover { border-color: rgba(56,189,248,.45); background: rgba(56,189,248,.07); }
.nvp-band-trust span::before { content:'✓'; color:#38bdf8; font-weight:800; }
@media (max-width: 720px) { .nvp-band { padding: 74px 0 68px; } }
