﻿
/* ====================================================
   NEXT-LEVEL CINEMATIC CSS
   @property gradients, neon borders, bento grid,
   3D transforms, cinematic reveals, film grain
   ==================================================== */

/* ===== CUSTOM PROPERTIES FOR ANIMATED GRADIENTS ===== */
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --glow-opacity {
  syntax: '<number>';
  initial-value: 0;
  inherits: false;
}

/* ===== LANDING PAGE BASE ===== */
.landing-page.nextlevel {
  background: #06060f;
  color: #e2e8f0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== FLOW FIELD CANVAS ===== */
.flow-field-bg {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
}

/* ===== NAVIGATION ===== */
.nl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(6,6,15,0.4);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nl-nav.scrolled {
  background: rgba(6,6,15,0.88);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  border-bottom-color: rgba(99,102,241,0.08);
}
.nl-nav-brand { display: flex; align-items: center; gap: 10px; }
.nl-brand-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff; font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.nl-brand-text { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; color: #fff; }
.nl-nav-links { display: flex; gap: 8px; }
.nl-nav-link {
  color: rgba(255,255,255,0.55); font-size: 0.85rem; padding: 8px 14px;
  border-radius: 8px; transition: all 0.3s; position: relative;
  text-decoration: none;
}
.nl-nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nl-nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: all 0.3s; transform: translateX(-50%); border-radius: 1px;
}
.nl-nav-link:hover::after { width: 60%; }
.nl-nav-actions { display: flex; gap: 8px; align-items: center; }
.nl-nav-hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.nl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 12px; font-size: 0.88rem;
  font-weight: 600; cursor: pointer; border: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden; text-decoration: none;
}
.nl-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,0.25);
}
.nl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.4);
}
.nl-btn-shimmer {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%{left:-100%} 50%{left:150%} 100%{left:150%} }

.nl-btn-ghost {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.nl-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.nl-btn-outline {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}
.nl-btn-outline:hover { border-color: rgba(139,92,246,0.4); color: #fff; background: rgba(139,92,246,0.06); }
.nl-btn-border-anim {
  position: absolute; inset: -1px; border-radius: inherit;
  background: conic-gradient(from var(--gradient-angle), transparent 60%, #3b82f6, #8b5cf6, #ec4899, transparent 95%);
  z-index: -1; opacity: 0; transition: opacity 0.4s;
  animation: rotate-gradient 4s linear infinite;
}
.nl-btn-outline:hover .nl-btn-border-anim { opacity: 1; }
@keyframes rotate-gradient { to { --gradient-angle: 360deg; } }

.nl-btn-lg { padding: 14px 32px; font-size: 0.95rem; border-radius: 14px; }

/* ===== HERO ===== */
.nl-hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 100px 60px 0;
}
.nl-hero-gradient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(59,130,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(139,92,246,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(6,182,212,0.04) 0%, transparent 40%);
}
.nl-hero-scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.012) 2px, rgba(0,0,0,0.012) 4px);
}
.nl-hero-content {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1400px; margin: 0 auto; width: 100%;
}

/* Hero Text */
.nl-hero-text { max-width: 640px; }
.nl-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 18px 6px 12px; border-radius: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.nl-badge-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16,185,129,0.5);
  animation: pulse-live 2s ease infinite;
}
@keyframes pulse-live { 0%,100%{ box-shadow:0 0 4px rgba(16,185,129,0.3); } 50%{ box-shadow:0 0 14px rgba(16,185,129,0.6); } }
.nl-badge-tag {
  padding: 2px 8px; border-radius: 6px; font-size: 0.7rem;
  background: rgba(59,130,246,0.12); color: #3b82f6; font-weight: 600;
}

.nl-hero-title { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 24px; }
.nl-title-line { display: block; color: #f0f0f5; }
.nl-title-highlight {
  display: block; color: transparent;
  background: linear-gradient(135deg, #8b5cf6, #ec4899, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  font-size: 3.6rem; margin: 4px 0;
}
.nl-cursor {
  display: inline-block; width: 3px; height: 0.9em;
  background: #8b5cf6; margin-left: 2px; vertical-align: text-bottom;
  animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

.nl-hero-desc {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.5);
  margin-bottom: 32px; max-width: 520px;
}
.nl-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.nl-hero-visual {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.nl-sphere-container { position: relative; margin-bottom: -30px; }
.nl-sphere-canvas { width: 320px; height: 320px; display: block; }
.nl-sphere-label {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px;
  background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2);
  font-size: 0.75rem; color: #a78bfa; white-space: nowrap;
}
.nl-sphere-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(139,92,246,0.2); display: flex; align-items: center; justify-content: center;
  color: #a78bfa; font-size: 0.65rem;
}

/* Dashboard Float Card */
.nl-dashboard-float { width: 340px; z-index: 10; }
.nl-dash-card {
  background: rgba(255,255,255,0.02); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06); padding: 0;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.nl-dash-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
}
.nl-dash-dots i {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px;
}
.nl-dash-dots i:nth-child(1) { background: #ef4444; }
.nl-dash-dots i:nth-child(2) { background: #f59e0b; }
.nl-dash-dots i:nth-child(3) { background: #10b981; }
.nl-dash-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.nl-dash-body { padding: 14px 16px; }
.nl-dash-row { margin-bottom: 12px; }
.nl-dash-row:last-child { margin-bottom: 0; }
.nl-dash-metric { display: flex; align-items: center; gap: 10px; }
.nl-dash-metric-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
.nl-dash-metric-icon.blue { background: rgba(59,130,246,0.12); color: #3b82f6; }
.nl-dash-metric-icon.green { background: rgba(16,185,129,0.12); color: #10b981; }
.nl-dash-metric-icon.purple { background: rgba(139,92,246,0.12); color: #8b5cf6; }
.nl-dash-metric div small { font-size: 0.7rem; color: rgba(255,255,255,0.4); display: block; }
.nl-dash-metric div strong { font-size: 0.85rem; color: #fff; }
.nl-dash-trend { font-size: 0.7rem; margin-left: auto; font-weight: 600; }
.nl-dash-trend.up { color: #10b981; }
.nl-dash-mini-bar {
  height: 4px; border-radius: 4px; background: rgba(255,255,255,0.06);
  flex: 1; overflow: hidden; margin-right: 8px;
}
.nl-dash-bar-fill {
  height: 100%; border-radius: 4px; width: 0;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nl-ai-pulse-text { color: #8b5cf6; animation: pulse-text 2s ease-in-out infinite; }
@keyframes pulse-text { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* Stats Bar */
.nl-stats-bar {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 900px; margin: 50px auto 0;
}
.nl-stat {
  text-align: center; padding: 20px 16px;
  border-radius: 16px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}
.nl-stat-num {
  display: block; font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nl-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* Scroll Indicator */
.nl-scroll-indicator {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 30px 0;
}
.nl-scroll-indicator span { font-size: 0.7rem; color: rgba(255,255,255,0.25); }
.nl-scroll-mouse {
  width: 24px; height: 38px; border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.nl-scroll-wheel {
  width: 3px; height: 8px; border-radius: 3px;
  background: rgba(255,255,255,0.3);
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

/* ===== SECTIONS COMMON ===== */
.nl-section {
  position: relative; z-index: 1;
  padding: 100px 60px; max-width: 1400px; margin: 0 auto;
}
.nl-section-head { text-align: center; margin-bottom: 60px; }
.nl-overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px;
  color: #3b82f6; font-weight: 600; margin-bottom: 14px;
}
.nl-heading { font-size: 2.4rem; font-weight: 800; color: #f0f0f5; line-height: 1.2; margin-bottom: 14px; }
.nl-subhead { font-size: 1rem; color: rgba(255,255,255,0.45); max-width: 550px; margin: 0 auto; }
.nl-gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== SCROLL REVEAL ===== */
.reveal-section {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-section.revealed { opacity: 1; transform: translateY(0); }
.stagger {
  opacity: 0; transform: translateY(30px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* ===== HOLOGRAPHIC CARD ===== */
.holo-card {
  position: relative; overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease !important;
  will-change: transform;
}
.holo-card:hover {
  box-shadow: 0 25px 60px rgba(99,102,241,0.1), 0 0 50px rgba(139,92,246,0.05) !important;
}
.holo-shine {
  position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity 0.5s; pointer-events: none; z-index: 10;
}

/* ===== NEON GLOW BOX ===== */
.neon-glow-box {
  position: relative;
}
.neon-glow-box::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit; z-index: -1;
  background: conic-gradient(from var(--gradient-angle, 0deg),
    transparent 0%, transparent 70%, rgba(59,130,246,0.3) 75%,
    rgba(139,92,246,0.3) 80%, rgba(236,72,153,0.2) 85%, transparent 90%, transparent 100%);
  animation: rotate-gradient 6s linear infinite;
  opacity: 0; transition: opacity 0.5s;
}
.neon-glow-box:hover::before { opacity: 1; }

/* ===== BENTO GRID ===== */
.nl-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nl-bento-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 30px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nl-bento-wide {
  grid-column: span 2;
}
.nl-bento-card:hover {
  border-color: rgba(99,102,241,0.15);
  background: rgba(255,255,255,0.03);
}
.nl-bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 18px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.nl-bento-card:hover .nl-bento-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--accent, rgba(99,102,241,0.2));
}
.nl-bento-card h3 { font-size: 1.1rem; font-weight: 700; color: #f0f0f5; margin-bottom: 8px; }
.nl-bento-card p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.nl-bento-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.3);
  margin-top: 16px; transition: all 0.3s; font-size: 0.75rem;
}
.nl-bento-card:hover .nl-bento-arrow {
  background: var(--accent, #3b82f6); color: #fff;
  transform: translateX(4px);
}

/* ===== AI SECTION ===== */
.nl-ai-section { position: relative; overflow: hidden; }
.nl-wave-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.nl-ai-section .nl-section-head,
.nl-ai-section .nl-ai-grid { position: relative; z-index: 2; }
.nl-ai-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.nl-ai-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 32px;
}
.nl-ai-card:hover { border-color: var(--accent, rgba(99,102,241,0.2)); }
.nl-ai-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px;
  transition: all 0.4s;
}
.nl-ai-card:hover .nl-ai-icon { transform: scale(1.1) rotate(5deg); }
.nl-ai-card h3 { font-size: 1.1rem; font-weight: 700; color: #f0f0f5; margin-bottom: 10px; }
.nl-ai-card p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; }
.nl-ai-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-ai-tags span {
  padding: 4px 12px; border-radius: 8px; font-size: 0.72rem;
  border: 1px solid; font-weight: 500; letter-spacing: 0.3px;
}

/* ===== TEXT SCRAMBLE CHAR ===== */
.scramble-char { color: #3b82f6; font-weight: 400; }

/* ===== TIMELINE ===== */
.nl-timeline { position: relative; padding-left: 50px; }
.nl-timeline-line {
  position: absolute; left: 22px; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.nl-timeline-line-glow {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.5), transparent);
  background-size: 100% 200%;
  animation: glow-slide 4s ease-in-out infinite;
}
@keyframes glow-slide { 0%{background-position:0 0} 50%{background-position:0 100%} 100%{background-position:0 0} }

.nl-timeline-step {
  display: flex; gap: 20px; margin-bottom: 20px;
  padding: 16px; border-radius: 14px;
  transition: background 0.3s;
}
.nl-timeline-step:hover { background: rgba(255,255,255,0.02); }
.nl-step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(59,130,246,0.1); color: #3b82f6;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
  position: relative;
}
.nl-step-ring {
  position: absolute; inset: -4px; border-radius: 14px;
  border: 1px solid rgba(59,130,246,0.1);
  opacity: 0; transition: opacity 0.3s;
}
.nl-timeline-step:hover .nl-step-ring { opacity: 1; }
.nl-step-body h4 { font-size: 0.95rem; font-weight: 600; color: #f0f0f5; margin-bottom: 4px; }
.nl-step-body p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.nl-step-dept {
  font-size: 0.72rem; color: rgba(59,130,246,0.6);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ===== TESTIMONIALS ===== */
.nl-testimonial-carousel { max-width: 700px; margin: 0 auto; }
.nl-testimonial-track { position: relative; min-height: 260px; }
.nl-testimonial-card {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 36px;
  opacity: 0; transform: scale(0.95) translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.nl-testimonial-card.active {
  opacity: 1; transform: scale(1) translateY(0); pointer-events: auto;
}
.nl-tquote { color: rgba(139,92,246,0.3); font-size: 2rem; margin-bottom: 14px; }
.nl-testimonial-card p { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.nl-tstars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 2px; }
.nl-tauthor { display: flex; align-items: center; gap: 12px; }
.nl-tavatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.nl-tauthor strong { display: block; font-size: 0.9rem; color: #f0f0f5; }
.nl-tauthor span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.nl-testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.nl-tbtn {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5); cursor: pointer; font-size: 0.85rem;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.nl-tbtn:hover { background: rgba(99,102,241,0.1); color: #fff; border-color: rgba(99,102,241,0.2); }
.nl-tdots { display: flex; gap: 6px; }
.nl-tdot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.1); cursor: pointer;
  transition: all 0.3s;
}
.nl-tdot.active { width: 24px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); }

/* ===== TRUST ===== */
.nl-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.nl-trust-card {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  transition: all 0.4s;
}
.nl-trust-card:hover { border-color: rgba(99,102,241,0.15); transform: translateY(-4px); }
.nl-trust-big-num {
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nl-trust-big-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.nl-trust-icon { font-size: 1.3rem; color: #3b82f6; margin-bottom: 12px; }
.nl-trust-card h3 { font-size: 0.95rem; font-weight: 700; color: #f0f0f5; margin-bottom: 8px; }
.nl-trust-card p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ===== LIVE SIGNALS ===== */
.nl-signals {
  position: relative; z-index: 1;
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background: rgba(255,255,255,0.01);
}
.nl-signal-track { display: flex; gap: 40px; }
.nl-signal {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; font-size: 0.82rem; color: rgba(255,255,255,0.4);
  opacity: 0; transition: opacity 0.5s;
}
.nl-signal.active { opacity: 1; }
.nl-signal-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10b981; box-shadow: 0 0 8px rgba(16,185,129,0.4);
}

/* ===== CONTACT ===== */
.nl-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  max-width: 1100px; margin: 0 auto;
}
.nl-contact-info h3 { font-size: 1.4rem; font-weight: 700; color: #f0f0f5; margin-bottom: 10px; }
.nl-contact-info > p { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-bottom: 28px; line-height: 1.6; }
.nl-contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.nl-ci-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(59,130,246,0.1); color: #3b82f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.nl-contact-item h4 { font-size: 0.85rem; font-weight: 600; color: #f0f0f5; margin-bottom: 2px; }
.nl-contact-item p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.nl-contact-form {
  padding: 32px; border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 14px;
}
.nl-input, .nl-select, .nl-textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  color: #e2e8f0; font-size: 0.88rem; outline: none;
  transition: border-color 0.3s; font-family: inherit;
  box-sizing: border-box;
}
.nl-input:focus, .nl-textarea:focus, .nl-select:focus {
  border-color: rgba(99,102,241,0.3);
}
.nl-textarea { resize: vertical; min-height: 80px; }

/* ===== FOOTER ===== */
.nl-footer {
  position: relative; z-index: 1; margin-top: 40px;
  background: rgba(6,6,15,0.95);
  border-top: 1px solid rgba(255,255,255,0.03);
}
.nl-footer-wave { color: rgba(6,6,15,0.95); margin-top: -1px; }
.nl-footer-wave svg { display: block; width: 100%; height: 60px; }
.nl-footer-body { padding: 50px 60px 30px; max-width: 1400px; margin: 0 auto; }
.nl-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.nl-footer-brand { display: flex; flex-direction: column; gap: 14px; }
.nl-footer-brand strong { font-size: 1rem; color: #f0f0f5; }
.nl-footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.nl-footer-social { display: flex; gap: 10px; }
.nl-footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  transition: all 0.3s; text-decoration: none;
}
.nl-footer-social a:hover { color: #fff; background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.2); }
.nl-footer-col h4 { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.nl-footer-col a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.3);
  margin-bottom: 10px; text-decoration: none; transition: color 0.3s;
}
.nl-footer-col a:hover { color: #8b5cf6; }
.nl-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}

/* ===== FILM GRAIN ===== */
.fx-film-grain {
  position: fixed; inset: 0; z-index: 10000; pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  animation: grain 0.5s steps(8) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0)} 10%{transform:translate(-2%,-3%)} 30%{transform:translate(3%,1%)} 50%{transform:translate(-1%,2%)} 70%{transform:translate(2%,-1%)} 90%{transform:translate(-3%,3%)}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nl-hero-content { grid-template-columns: 1fr; text-align: center; }
  .nl-hero-text { max-width: 100%; }
  .nl-hero-cta { justify-content: center; }
  .nl-hero-visual { order: -1; }
  .nl-hero { padding: 100px 30px 0; }
  .nl-section { padding: 70px 30px; }
  .nl-bento { grid-template-columns: 1fr 1fr; }
  .nl-bento-wide { grid-column: span 2; }
  .nl-ai-grid { grid-template-columns: 1fr 1fr; }
  .nl-trust-grid { grid-template-columns: 1fr 1fr; }
  .nl-contact-grid { grid-template-columns: 1fr; }
  .nl-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nl-nav { padding: 0 16px; }
  .nl-nav-links, .nl-nav-actions { display: none; }
  .nl-nav-links.open, .nl-nav-actions.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(6,6,15,0.95); padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
  }
  .nl-nav-hamburger { display: block; }
  .nl-hero-title { font-size: 2rem; }
  .nl-title-highlight { font-size: 2.4rem; }
  .nl-hero-desc { font-size: 0.9rem; }
  .nl-stats-bar { grid-template-columns: 1fr 1fr; }
  .nl-bento { grid-template-columns: 1fr; }
  .nl-bento-wide { grid-column: span 1; }
  .nl-ai-grid { grid-template-columns: 1fr; }
  .nl-trust-grid { grid-template-columns: 1fr 1fr; }
  .nl-footer-grid { grid-template-columns: 1fr; }
  .nl-footer-body { padding: 30px 20px 20px; }
  .nl-sphere-canvas { width: 220px; height: 220px; }
  .nl-dashboard-float { width: 280px; }
  .fx-film-grain { display: none; }
  #cursor-ribbon-canvas { display: none; }
}
