/*
Theme Name: Neluvi
Theme URI: https://neluvi.in
Author: Neluvi Technologies
Author URI: https://neluvi.in
Description: Official website theme for Neluvi — AI-powered enterprise platforms for SDLC automation, IT operations, marketing intelligence, and operations research.
Version: 1.0.0
License: Proprietary
Text Domain: neluvi
*/

/* =========================================
   DESIGN SYSTEM — NELUVI DARK SAAS THEME
   ========================================= */

:root {
  --bg-base:      #0a0d1a;
  --bg-surface:   #0f1420;
  --bg-card:      rgba(255, 255, 255, 0.04);
  --bg-card-hover:rgba(255, 255, 255, 0.07);
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  --purple:  #6c63ff;
  --cyan:    #00d4ff;
  --green:   #34d399;
  --gold:    #ffd740;
  --red:     #ff6b6b;
  --indigo:  #818cf8;

  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim:   #64748b;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono:   'JetBrains Mono', 'Fira Code', monospace;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---- TYPOGRAPHY ---- */
.n-h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.n-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.n-h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; line-height: 1.3; }
.n-h4 { font-size: 1.1rem; font-weight: 600; }
.n-lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); line-height: 1.7; }
.n-small { font-size: 0.875rem; color: var(--text-muted); }
.n-mono { font-family: var(--mono); font-size: 0.9rem; }

/* ---- LAYOUT ---- */
.n-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.n-section {
  padding: 80px 0;
}
.n-section-sm {
  padding: 48px 0;
}

/* ---- GRADIENTS ---- */
.grad-purple { background: linear-gradient(135deg, #6c63ff, #9d4edd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-cyan   { background: linear-gradient(135deg, #00d4ff, #0088cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-green  { background: linear-gradient(135deg, #34d399, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-gold   { background: linear-gradient(135deg, #ffd740, #ff9a00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-hero   { background: linear-gradient(135deg, #6c63ff 0%, #00d4ff 50%, #34d399 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- NAVIGATION ---- */
.n-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.n-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.n-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.n-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.n-nav-links li { position: relative; }

.n-nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.n-nav-links a:hover,
.n-nav-links li.current a {
  color: var(--text);
  background: var(--bg-card);
}

/* Dropdown */
.n-dropdown { position: relative; }

.n-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.n-dropdown-trigger::after {
  content: '▾';
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.n-dropdown:hover .n-dropdown-trigger::after { transform: rotate(180deg); }

.n-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.n-dropdown:hover .n-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.n-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.n-dropdown-menu a:hover { background: var(--bg-card); }

.n-dropdown-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}
.n-dropdown-badge.live { background: rgba(52,211,153,0.15); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.n-dropdown-badge.uat  { background: rgba(255,215,64,0.12); color: #ffd740; border: 1px solid rgba(255,215,64,0.25); }

.n-nav-cta {
  background: linear-gradient(135deg, #6c63ff, #9d4edd);
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
}

.n-nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.n-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.n-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.n-mobile-menu {
  display: none;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.n-mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.n-mobile-menu a:last-child { border-bottom: none; }

/* ---- HERO ---- */
.n-hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.n-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.n-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.25);
  color: var(--indigo);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.n-hero-title { margin-bottom: 20px; }
.n-hero-sub { max-width: 680px; margin: 0 auto 40px; }

.n-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.n-hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.n-hero-stat-item { text-align: center; }
.n-hero-stat-num { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.n-hero-stat-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* ---- BUTTONS ---- */
.n-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.n-btn-primary {
  background: linear-gradient(135deg, #6c63ff, #9d4edd);
  color: white;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
}
.n-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,99,255,0.45); }

.n-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.n-btn-outline:hover { background: var(--bg-card); border-color: var(--border-hover); transform: translateY(-1px); }

.n-btn-green { background: linear-gradient(135deg, #34d399, #06b6d4); color: #0a0d1a; box-shadow: 0 4px 20px rgba(52,211,153,0.25); }
.n-btn-green:hover { transform: translateY(-2px); }

.n-btn-gold { background: linear-gradient(135deg, #ffd740, #ff9a00); color: #0a0d1a; box-shadow: 0 4px 20px rgba(255,215,64,0.25); }
.n-btn-gold:hover { transform: translateY(-2px); }

.n-btn-cyan { background: linear-gradient(135deg, #00d4ff, #0088cc); color: #0a0d1a; box-shadow: 0 4px 20px rgba(0,212,255,0.25); }
.n-btn-cyan:hover { transform: translateY(-2px); }

/* ---- BADGES ---- */
.n-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.n-badge-live {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.3);
}
.n-badge-live::before { content: '●'; animation: pulse-green 1.5s infinite; }

.n-badge-uat {
  background: rgba(255,215,64,0.1);
  color: #ffd740;
  border: 1px solid rgba(255,215,64,0.25);
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ---- CARDS ---- */
.n-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.n-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.n-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ---- PRODUCT GRID ---- */
.n-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.n-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.n-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.n-product-card:hover::before { opacity: 1; }

.n-product-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.n-product-card.purple::before { background: linear-gradient(90deg, #6c63ff, #9d4edd); }
.n-product-card.green::before  { background: linear-gradient(90deg, #34d399, #06b6d4); }
.n-product-card.cyan::before   { background: linear-gradient(90deg, #00d4ff, #0088cc); }
.n-product-card.gold::before   { background: linear-gradient(90deg, #ffd740, #ff9a00); }

.n-product-card:hover.purple   { box-shadow: 0 20px 60px rgba(108,99,255,0.15); }
.n-product-card:hover.green    { box-shadow: 0 20px 60px rgba(52,211,153,0.12); }
.n-product-card:hover.cyan     { box-shadow: 0 20px 60px rgba(0,212,255,0.12); }
.n-product-card:hover.gold     { box-shadow: 0 20px 60px rgba(255,215,64,0.12); }

.n-product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.n-product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.n-product-icon.purple { background: rgba(108,99,255,0.15); }
.n-product-icon.green  { background: rgba(52,211,153,0.12); }
.n-product-icon.cyan   { background: rgba(0,212,255,0.12);  }
.n-product-icon.gold   { background: rgba(255,215,64,0.12); }

.n-product-card-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.n-product-card-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

.n-product-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.n-product-stat { text-align: center; flex: 1; min-width: 70px; }
.n-product-stat-val { font-size: 1.1rem; font-weight: 700; }
.n-product-stat-lbl { font-size: 0.7rem; color: var(--text-dim); margin-top: 2px; }

.n-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.n-product-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.n-product-card:hover .n-product-card-link { gap: 10px; }

/* ---- FEATURES GRID ---- */
.n-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.n-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s ease;
}

.n-feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.n-feature-icon { font-size: 1.6rem; margin-bottom: 12px; }
.n-feature-title { font-weight: 600; margin-bottom: 6px; }
.n-feature-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ---- STATS ROW ---- */
.n-stats-row {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.n-stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}
.n-stat-item:last-child { border-right: none; }
.n-stat-num  { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; display: block; }
.n-stat-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; display: block; }

/* ---- PAGE HERO (product pages) ---- */
.n-page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.n-page-hero-content { max-width: 760px; }

.n-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow, rgba(108,99,255,0.1)) 0%, transparent 65%);
  pointer-events: none;
}

/* ---- SECTION HEADER ---- */
.n-section-header {
  margin-bottom: 48px;
}
.n-section-header.center { text-align: center; }
.n-section-header.center .n-section-sub { max-width: 560px; margin: 12px auto 0; }
.n-section-sub { font-size: 1rem; color: var(--text-muted); margin-top: 10px; line-height: 1.7; }

.n-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* ---- PILL LIST (agents etc.) ---- */
.n-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.n-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ---- PIPELINE / FLOW ---- */
.n-pipeline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.n-pipeline-step {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid var(--border);
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
}
.n-pipeline-step:last-child { border-right: none; }
.n-pipeline-step-icon { font-size: 1.2rem; display: block; margin-bottom: 6px; }

/* ---- COMPARISON TABLE ---- */
.n-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
.n-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.n-table th {
  background: var(--bg-surface);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.n-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
}
.n-table tr:last-child td { border-bottom: none; }
.n-table .check  { color: var(--green); font-size: 1rem; }
.n-table .cross  { color: var(--red); font-size: 1rem; }
.n-table .highlight td { color: var(--text); background: rgba(108,99,255,0.05); }

/* ---- PRICING ---- */
.n-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.n-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}

.n-pricing-card.featured {
  border-color: rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.06);
}

.n-pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6c63ff, #9d4edd);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.n-pricing-name  { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.n-pricing-price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; }
.n-pricing-price sup { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-top: 8px; }
.n-pricing-period { font-size: 0.85rem; color: var(--text-dim); }
.n-pricing-desc  { font-size: 0.875rem; color: var(--text-muted); margin: 16px 0; }

.n-pricing-features { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.n-pricing-features li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 8px; }
.n-pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ---- CONTACT ---- */
.n-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.n-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.n-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.n-form { display: flex; flex-direction: column; gap: 16px; }

.n-form-group { display: flex; flex-direction: column; gap: 6px; }
.n-form label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.n-form input,
.n-form textarea,
.n-form select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.n-form input:focus,
.n-form textarea:focus,
.n-form select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.1);
}
.n-form textarea { min-height: 120px; resize: vertical; }

/* ---- FOOTER ---- */
.n-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.n-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.n-footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.n-footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.n-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.n-footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.n-footer-links a:hover { color: var(--text); }

.n-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---- DIVIDERS ---- */
.n-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* ---- GLOW BLOCKS ---- */
.n-glow-block {
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(0,212,255,0.06));
  border: 1px solid rgba(108,99,255,0.15);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.n-glow-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.1), transparent 70%);
  pointer-events: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .n-nav-links, .n-nav-cta-wrap { display: none; }
  .n-hamburger { display: flex; }
  .n-footer-grid { grid-template-columns: 1fr 1fr; }
  .n-contact-grid { grid-template-columns: 1fr; }
  .n-stats-row { flex-wrap: wrap; }
  .n-stat-item { min-width: 45%; border-right: none; border-bottom: 1px solid var(--border); }
  .n-stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .n-stat-item:last-child, .n-stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  /* Stack 2-col grids on tablet */
  .n-tech-grid,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .n-footer-grid { grid-template-columns: 1fr; }
  .n-hero-stats  { gap: 24px; }
  .n-hero { padding: 120px 0 60px; }
  .n-section { padding: 60px 0; }
  .n-pipeline { flex-direction: column; }
  .n-pipeline-step { border-right: none; border-bottom: 1px solid var(--border); }
  .n-pipeline-step:last-child { border-bottom: none; }
}

/* ---- UTILITY ---- */
.text-purple { color: var(--purple); }
.text-cyan   { color: var(--cyan); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.flex   { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
