/* ============================================
   NEON GRID v2 — CRYPTONYTE MSP
   Full particles, max animations, bluffant
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ng-black: #0a0a0a;
  --ng-black-deep: rgba(5, 5, 5, 0.85);
  --ng-cyan: #0080ff;
  --ng-cyan-dim: rgba(0, 128, 255, 0.08);
  --ng-cyan-glow: rgba(0, 128, 255, 0.3);
  --ng-cyan-light: #4dc3ff;
  --ng-red: #FF3B3B;
  --ng-green: #00FF88;
  --ng-white: #E8E8F0;
  --ng-white-dim: rgba(232, 232, 240, 0.55);
  --ng-border: rgba(0, 128, 255, 0.12);
  --ng-font-mono: 'Orbitron', 'SF Mono', sans-serif;
  --ng-font-body: 'Space Grotesk', -apple-system, sans-serif;
}

#ng-page {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--ng-cyan) var(--ng-black);
}

#ng-page ::-webkit-scrollbar { width: 6px; }
#ng-page ::-webkit-scrollbar-track { background: var(--ng-black); }
#ng-page ::-webkit-scrollbar-thumb { background: var(--ng-cyan); border-radius: 0; }

#ng-page {
  background: var(--ng-black);
  color: var(--ng-white);
  font-family: var(--ng-font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   FULL PAGE PARTICLES CANVAS
   ============================================ */
#ng-page #ng-particles-global {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  contain: strict;
}

#ng-page #cn-fluid-canvas {
  contain: strict;
}

/* ============================================
   HEADER
   ============================================ */
#ng-page .ng-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 128, 255, 0.1);
  padding: 0 3%;
  transition: background 0.3s ease;
}

#ng-page .ng-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

#ng-page .ng-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

#ng-page .ng-header-logo img {
  height: 36px;
  width: auto;
}

#ng-page .ng-header-logo span {
  font-family: var(--ng-font-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--ng-cyan);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px var(--ng-cyan-glow), 0 0 40px rgba(0, 128, 255, 0.15);
}

#ng-page .ng-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

#ng-page .ng-nav a {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ng-white-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  padding: 8px 0;
}

#ng-page .ng-nav a:hover {
  color: var(--ng-cyan);
  text-shadow: 0 0 12px var(--ng-cyan-glow);
}

#ng-page .ng-nav-dropdown {
  position: relative;
}

#ng-page .ng-nav-dropdown .ng-dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: rgba(6, 6, 15, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 128, 255, 0.15);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

#ng-page .ng-nav-dropdown:hover .ng-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#ng-page .ng-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
}

#ng-page .ng-dropdown a:hover {
  background: rgba(0, 128, 255, 0.1);
}

#ng-page .ng-nav-btn {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ng-black) !important;
  background: var(--ng-cyan);
  padding: 8px 16px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: box-shadow 0.3s;
}

#ng-page .ng-nav-btn:hover {
  box-shadow: 0 0 20px var(--ng-cyan-glow);
  color: var(--ng-black) !important;
}

#ng-page .ng-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

#ng-page .ng-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ng-white);
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
#ng-page .ng-nav { display: none; }
#ng-page .ng-hamburger { display: block; }
}

/* ============================================
   HERO
   ============================================ */
#ng-page .ng-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: auto;
  overflow: visible;
}

#ng-page #cn-fluid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  mix-blend-mode: screen;
}

#ng-page .ng-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

/* Split letter animation */
#ng-page .ng-hero-title {
  font-family: var(--ng-font-mono);
  font-size: clamp(3.5rem, 1rem + 8vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 24px;
}

#ng-page .ng-hero-title .ng-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: ng-glow-breathe 4s ease-in-out infinite alternate;
}

@keyframes ng-glow-breathe {
  0% {
    color: #0080ff;
    text-shadow:
      0 0 8px rgba(0, 128, 255, 0.6),
      0 0 25px rgba(0, 128, 255, 0.3),
      0 0 60px rgba(0, 128, 255, 0.15),
      0 0 120px rgba(0, 128, 255, 0.08);
  }
50% {
    color: #4dc3ff;
    text-shadow:
      0 0 12px rgba(77, 195, 255, 0.7),
      0 0 35px rgba(77, 195, 255, 0.4),
      0 0 80px rgba(0, 128, 255, 0.25),
      0 0 160px rgba(0, 128, 255, 0.12);
  }
100% {
    color: #ffffff;
    text-shadow:
      0 0 15px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(77, 195, 255, 0.5),
      0 0 90px rgba(0, 128, 255, 0.3),
      0 0 180px rgba(0, 128, 255, 0.15),
      0 0 300px rgba(0, 128, 255, 0.06);
  }
}

#ng-page .ng-hero-subtitle {
  font-family: var(--ng-font-mono);
  font-size: clamp(0.85rem, 0.6rem + 1vw, 1.2rem);
  font-weight: 400;
  color: var(--ng-cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  overflow: hidden;
}

#ng-page .ng-hero-tagline {
  font-family: var(--ng-font-body);
  font-size: clamp(1rem, 0.8rem + 0.8vw, 1.35rem);
  color: var(--ng-white-dim);
  margin-top: 32px;
  max-width: 540px;
  line-height: 1.6;
  opacity: 0;
  margin-left: auto;
  margin-right: auto;
}

#ng-page .ng-hero-cta-wrap {
  margin-top: 48px;
  opacity: 0;
}

#ng-page .ng-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

#ng-page .ng-hero-scroll span {
  font-size: 20px;
  color: var(--ng-cyan);
  line-height: 0.6;
  display: block;
  animation: ng-chevron-bounce 2s ease-in-out infinite;
}

#ng-page .ng-hero-scroll span:nth-child(2) { animation-delay: 0.15s; opacity: 0.6; }
#ng-page .ng-hero-scroll span:nth-child(3) { animation-delay: 0.3s; opacity: 0.3; }

@keyframes ng-chevron-bounce {
  0%, 100% { transform: translateY(0); opacity: var(--_o, 1); }
  50% { transform: translateY(6px); opacity: calc(var(--_o, 1) * 0.5); }
}

/* Hero parallax glow orbs */
#ng-page .ng-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

#ng-page .ng-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ng-cyan), transparent 70%);
  top: -10%;
  left: -15%;
}

#ng-page .ng-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8B5CF6, transparent 70%);
  bottom: -5%;
  right: -10%;
}

#ng-page .ng-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #D946EF, transparent 70%);
  top: 40%;
  right: 20%;
  opacity: 0.08;
}

/* ============================================
   HORIZONTAL DIVIDER ANIMATED
   ============================================ */
#ng-page .ng-divider {
  position: relative;
  z-index: auto;
  height: 1px;
  background: var(--ng-border);
  overflow: hidden;
}

#ng-page .ng-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--ng-cyan), transparent);
  animation: ng-divider-sweep 4s ease-in-out infinite;
}

@keyframes ng-divider-sweep {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ============================================
   STATS BAR
   ============================================ */
#ng-page .ng-stats {
  position: relative;
  z-index: auto;
  padding: 80px 20px;
}

#ng-page .ng-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

#ng-page .ng-stat {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

#ng-page .ng-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--ng-border);
}

#ng-page .ng-stat-number {
  font-family: var(--ng-font-mono);
  font-size: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  font-weight: 800;
  color: var(--ng-cyan);
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px var(--ng-cyan-glow);
}

#ng-page .ng-stat-label {
  font-family: var(--ng-font-mono);
  font-size: 12px;
  color: var(--ng-white-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 16px;
  display: block;
}

/* ============================================
   SERVICES — REVEAL CLIP-PATH
   ============================================ */
#ng-page .ng-services {
  position: relative;
  z-index: auto;
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#ng-page .ng-section-tag {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ng-cyan);
  margin-bottom: 16px;
  display: block;
}

#ng-page .ng-section-title {
  font-family: var(--ng-font-mono);
  font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 600px;
}

/* Title word split */
#ng-page .ng-section-title .ng-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

#ng-page .ng-section-title .ng-word-inner {
  display: inline-block;
  transform: translateY(110%);
}

#ng-page .ng-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

#ng-page .ng-service-card {
  background: var(--ng-black-deep);
  border: 1px solid var(--ng-border);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  text-decoration: none;
  color: var(--ng-white);
  display: block;
  clip-path: inset(0 0 100% 0);
}

#ng-page .ng-service-card.revealed {
  clip-path: inset(0 0 0% 0);
}

/* Hover shimmer */
#ng-page .ng-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.04), transparent);
  transition: none;
}

#ng-page .ng-service-card:hover::before {
  animation: ng-shimmer 0.8s ease;
}

@keyframes ng-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#ng-page .ng-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ng-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#ng-page .ng-service-card:hover {
  background: rgba(0, 128, 255, 0.03);
  border-color: rgba(0, 128, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 128, 255, 0.05);
}

#ng-page .ng-service-card:hover::after {
  transform: scaleX(1);
}

#ng-page .ng-service-num {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  color: var(--ng-cyan);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  display: block;
}

#ng-page .ng-service-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
  transition: all 0.4s ease;
}

#ng-page .ng-service-card:hover .ng-service-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px var(--ng-cyan-glow));
}

#ng-page .ng-service-card h3 {
  font-family: var(--ng-font-mono);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

#ng-page .ng-service-card p {
  font-size: 14px;
  color: var(--ng-white-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

#ng-page .ng-service-link {
  font-family: var(--ng-font-mono);
  font-size: 12px;
  color: var(--ng-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#ng-page .ng-service-link .ng-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

#ng-page .ng-service-card:hover .ng-arrow {
  transform: translateX(8px);
}

/* ============================================
   SCROLLYTELLING — NOTRE METHODE
   ============================================ */
#ng-page .ng-method {
  position: relative;
  z-index: auto;
}

#ng-page .ng-method-intro {
  padding: 120px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

#ng-page .ng-method-pin {
  height: 400vh;
  position: relative;
}

#ng-page .ng-method-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Horizontal progress bar at bottom of sticky */
#ng-page .ng-method-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 128, 255, 0.08);
  z-index: 10;
}

#ng-page .ng-method-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--ng-cyan);
  box-shadow: 0 0 15px var(--ng-cyan-glow);
}

#ng-page .ng-method-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#ng-page .ng-method-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ng-page .ng-method-step-num {
  font-family: var(--ng-font-mono);
  font-size: clamp(8rem, 5rem + 10vw, 18rem);
  font-weight: 800;
  color: rgba(0, 128, 255, 0.45);
  line-height: 1;
  position: absolute;
  text-shadow: 0 0 40px rgba(0, 128, 255, 0.5), 0 0 80px rgba(0, 128, 255, 0.25), 0 0 150px rgba(0, 128, 255, 0.1);
}

/* Rotating ring around icon */
#ng-page .ng-method-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(0, 128, 255, 0.35);
  border-radius: 50%;
  animation: ng-ring-spin 20s linear infinite;
  box-shadow: 0 0 20px rgba(0, 128, 255, 0.1), inset 0 0 20px rgba(0, 128, 255, 0.05);
}

#ng-page .ng-method-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--ng-cyan);
  box-shadow: 0 0 12px var(--ng-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ng-cyan);
}

#ng-page .ng-method-ring-2 {
  width: 240px;
  height: 240px;
  border-color: rgba(0, 128, 255, 0.2);
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes ng-ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#ng-page .ng-method-step-icon {
  font-size: 80px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px var(--ng-cyan-glow));
}

#ng-page .ng-method-text {
  position: relative;
  min-height: 250px;
}

#ng-page .ng-method-step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

#ng-page .ng-method-step.active {
  opacity: 1;
  pointer-events: auto;
}

#ng-page .ng-method-step-tag {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  color: var(--ng-cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--ng-border);
}

#ng-page .ng-method-step h3 {
  font-family: var(--ng-font-mono);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

#ng-page .ng-method-step p {
  font-size: 16px;
  color: var(--ng-white-dim);
  line-height: 1.8;
  max-width: 440px;
}

/* Step dots indicator */
#ng-page .ng-method-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

#ng-page .ng-method-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ng-cyan);
  transition: all 0.3s ease;
}

#ng-page .ng-method-dot.active {
  background: var(--ng-cyan);
  box-shadow: 0 0 10px var(--ng-cyan-glow);
}

/* ============================================
   PARRAINAGE B2B
   ============================================ */
#ng-page .ng-referral {
  position: relative;
  z-index: auto;
  padding: 120px 20px;
}

#ng-page .ng-referral-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#ng-page .ng-referral-badge {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ng-black);
  background: var(--ng-cyan);
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
}

#ng-page .ng-referral h2 {
  font-family: var(--ng-font-mono);
  font-size: clamp(1.8rem, 1rem + 3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

#ng-page .ng-referral-desc {
  font-size: 16px;
  color: var(--ng-white-dim);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

#ng-page .ng-referral-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#ng-page .ng-ref-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
}

#ng-page .ng-ref-step-num {
  font-family: var(--ng-font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--ng-cyan);
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ng-cyan);
}

#ng-page .ng-ref-step-text h4 {
  font-family: var(--ng-font-mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

#ng-page .ng-ref-step-text p {
  font-size: 13px;
  color: var(--ng-white-dim);
  line-height: 1.6;
}

#ng-page .ng-referral-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ng-page .ng-ref-counter-box {
  background: var(--ng-black-deep);
  border: 1px solid var(--ng-border);
  padding: 60px;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Animated border glow */
#ng-page .ng-ref-counter-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(from 0deg, transparent, var(--ng-cyan), transparent, transparent);
  animation: ng-border-rotate 4s linear infinite;
  z-index: -1;
}

#ng-page .ng-ref-counter-box::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--ng-black-deep);
  z-index: -1;
}

@keyframes ng-border-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#ng-page .ng-ref-counter-label {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ng-cyan);
  margin-bottom: 16px;
  display: block;
}

#ng-page .ng-ref-counter-value {
  font-family: var(--ng-font-mono);
  font-size: clamp(3rem, 2rem + 4vw, 6rem);
  font-weight: 800;
  color: var(--ng-white);
  line-height: 1;
}

#ng-page .ng-ref-counter-unit {
  font-family: var(--ng-font-mono);
  font-size: 14px;
  color: var(--ng-white-dim);
  margin-top: 12px;
  display: block;
}

#ng-page .ng-ref-cta-note {
  font-family: var(--ng-font-mono);
  font-size: 12px;
  color: var(--ng-cyan);
  margin-top: 32px;
  letter-spacing: 0.1em;
}

/* ============================================
   CTA FINAL
   ============================================ */
#ng-page .ng-cta {
  position: relative;
  z-index: auto;
  padding: 160px 20px;
  text-align: center;
}

#ng-page .ng-cta h2 {
  font-family: var(--ng-font-mono);
  font-size: clamp(2rem, 1rem + 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#ng-page .ng-cta p {
  font-size: 16px;
  color: var(--ng-white-dim);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Glitch on CTA title */
#ng-page .ng-glitch {
  position: relative;
}

.ng-glitch::before,
#ng-page .ng-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#ng-page .ng-glitch.glitching::before {
  color: var(--ng-cyan);
  animation: ng-glitch-1 0.3s linear;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

#ng-page .ng-glitch.glitching::after {
  color: var(--ng-red);
  animation: ng-glitch-2 0.3s linear;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes ng-glitch-1 {
  0% { transform: translate(0); opacity: 0; }
  20% { transform: translate(-3px, 2px); opacity: 0.8; }
  40% { transform: translate(3px, -2px); opacity: 0.8; }
  60% { transform: translate(-2px, 0); opacity: 0.8; }
  80% { transform: translate(2px, 2px); opacity: 0.8; }
  100% { transform: translate(0); opacity: 0; }
}

@keyframes ng-glitch-2 {
  0% { transform: translate(0); opacity: 0; }
  20% { transform: translate(3px, -2px); opacity: 0.8; }
  40% { transform: translate(-3px, 2px); opacity: 0.8; }
  60% { transform: translate(2px, 0); opacity: 0.8; }
  80% { transform: translate(-2px, -2px); opacity: 0.8; }
  100% { transform: translate(0); opacity: 0; }
}

#ng-page .ng-btn {
  font-family: var(--ng-font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 48px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

#ng-page .ng-btn-primary {
  background: var(--ng-cyan);
  color: var(--ng-black);
  border: none;
}

/* Sweep effect on hover */
#ng-page .ng-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

#ng-page .ng-btn-primary:hover::before {
  animation: ng-btn-sweep 0.6s ease;
}

@keyframes ng-btn-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

#ng-page .ng-btn-primary:hover {
  box-shadow: 0 0 40px var(--ng-cyan-glow), 0 0 80px rgba(0, 128, 255, 0.15);
  transform: translateY(-3px);
}

#ng-page .ng-btn-ghost {
  background: transparent;
  color: var(--ng-cyan);
  border: 1px solid var(--ng-cyan);
  margin-left: 16px;
}

#ng-page .ng-btn-ghost:hover {
  background: rgba(0, 128, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 128, 255, 0.1);
}

#ng-page .ng-cta-sub {
  font-family: var(--ng-font-mono);
  font-size: 12px;
  color: var(--ng-white-dim);
  margin-top: 24px;
  letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */
#ng-page .ng-footer {
  position: relative;
  z-index: auto;
  border-top: 1px solid var(--ng-border);
  padding: 40px 20px;
}

#ng-page .ng-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#ng-page .ng-footer-logo {
  font-family: var(--ng-font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--ng-white);
  letter-spacing: 0.05em;
}

#ng-page .ng-footer-links {
  display: flex;
  gap: 32px;
}

#ng-page .ng-footer-links a {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  color: var(--ng-white-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

#ng-page .ng-footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ng-cyan);
  transition: width 0.3s ease;
}

#ng-page .ng-footer-links a:hover {
  color: var(--ng-cyan);
}

#ng-page .ng-footer-links a:hover::after {
  width: 100%;
}

#ng-page .ng-footer-copy {
  font-family: var(--ng-font-mono);
  font-size: 11px;
  color: var(--ng-white-dim);
  letter-spacing: 0.05em;
}

/* ============================================
   TYPEWRITER CURSOR
   ============================================ */
#ng-page .ng-typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--ng-cyan);
  margin-left: 4px;
  animation: ng-blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes ng-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================================
   MAGNETIC HOVER (JS controlled)
   ============================================ */
#ng-page .ng-magnetic {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
#ng-page .ng-services-grid { grid-template-columns: 1fr; }

#ng-page .ng-stats-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

#ng-page .ng-stat:not(:last-child)::after { display: none; }
#ng-page .ng-stat:not(:last-child) {
    border-bottom: 1px solid var(--ng-border);
    padding-bottom: 32px;
  }

#ng-page .ng-method-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

#ng-page .ng-method-visual { height: 200px; }
#ng-page .ng-method-step-num { font-size: 6rem !important; }
#ng-page .ng-method-dots { display: none; }

#ng-page .ng-referral-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

#ng-page .ng-footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

#ng-page .ng-footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

#ng-page .ng-btn-ghost {
    margin-left: 0;
    margin-top: 12px;
  }

#ng-page .ng-orb { display: none; }
}
