/* ══════════════════════════════════════════════════════════════
   Netra Marketing Site — 2026
   Design derived from the Netra app's dark navy + blue palette
   ══════════════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-dark: #0b1120;
  --surface: #ffffff;
  --surface-alt: #f3f5f8;
  --surface-hover: #f0f2f5;
  --surface-dark: #111827;
  --border: #e2e6ed;
  --border-light: #eef1f5;
  --border-dark: #1e293b;
  --text: #1a1f2e;
  --text-2: #4b5563;
  --text-3: #8b95a5;
  --text-inv: #f1f5f9;
  --text-inv-2: #94a3b8;
  --text-inv-3: #64748b;
  --blue: #2563eb;
  --blue-strong: #3b82f6;
  --teal: #0891b2;
  --purple: #7c3aed;
  --green: #059669;
  --orange: #ea580c;
  --red: #dc2626;
  --yellow: #d97706;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --mono: 'DM Mono', 'SF Mono', 'Fira Code', monospace;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.nav-mobile-only { display: none; }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
  border-color: var(--text-3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-stat {
  background: var(--bg);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--mono);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PRODUCT VISUAL ── */
.product-visual {
  padding: 48px 0 80px;
  position: relative;
  background: var(--bg-dark);
}

.value-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.value-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-inv);
  letter-spacing: -0.01em;
}

.value-strip-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue-strong);
}

.mockup-theme-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.mockup-toggle-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-inv-3);
  transition: all 0.15s ease;
}

.mockup-toggle-btn.active {
  background: var(--blue);
  color: #fff;
}

.mockup-toggle-btn:hover:not(.active) {
  color: var(--text-inv);
}

.product-mockup {
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1200px;
}

.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.05);
  transform: rotateX(2deg);
  transition: transform 0.4s ease, background 0.3s ease;
}

.mockup-window.light {
  background: #fff;
  border-color: #e2e6ed;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.mockup-window:hover {
  transform: rotateX(0deg);
}

.mockup-bar {
  display: none;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-url {
  margin-left: auto;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 4px;
}

.mockup-content {
  display: flex;
  min-height: 420px;
}

.mockup-sidebar {
  width: 200px;
  background: #0f1117;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #1c2030;
}

.mockup-sidebar-brand {
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #1c2030;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-sidebar-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.mockup-sidebar-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.mockup-sidebar-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3d4a5c;
  padding: 14px 14px 4px;
}

.mockup-sidebar-item {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #9ba3af;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  margin: 0 6px;
  border-radius: 5px;
  background: transparent;
  height: auto;
}

.mockup-sbi {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
  color: #9ba3af;
}

.mockup-sidebar-item.active {
  background: rgba(59, 126, 255, 0.18);
  color: #fff;
}

.mockup-sidebar-item.active .mockup-sbi {
  opacity: 1;
  color: #3b7eff;
}

.mockup-sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mockup-sb-status {
  margin: 0 10px 6px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #1c2030;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-health-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.mockup-health-text {
  font-size: 10px;
  color: #4a5568;
  font-family: var(--mono);
}

.mockup-sb-user {
  padding: 4px 14px;
  font-size: 11px;
  color: #9ba3af;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-role-badge {
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-left: auto;
  background: rgba(59, 126, 255, 0.15);
  color: #3b7eff;
}

.mockup-sb-logout {
  padding: 5px 14px;
  font-size: 11px;
  color: #9ba3af;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #1c2030;
  margin-top: 4px;
  padding-top: 8px;
}

.mockup-sb-theme {
  padding: 6px 14px;
  display: flex;
  gap: 2px;
}

.mockup-theme-btn {
  width: 26px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border-radius: 4px;
  color: #9ba3af;
  background: transparent;
}

.mockup-theme-btn.active {
  background: #1c2030;
  color: #fff;
}

.mockup-topbar {
  padding: 0 20px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #2d3748;
  background: #161b22;
}

.mockup-topbar-crumb {
  font-size: 12px;
  color: #5a6a7e;
  flex: 1;
}

.mockup-topbar-crumb strong {
  color: #e2e8f0;
  font-weight: 600;
}

.mockup-topbar-clock {
  font-size: 11px;
  color: #5a6a7e;
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-tz-select {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: #a0aec0;
  background: #1c2330;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #2d3748;
}

.mockup-notif-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #2d3748;
  border-radius: 5px;
  color: #5a6a7e;
  margin-left: 8px;
}
.mockup-notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 12px;
  height: 12px;
  padding: 0 3px;
  border-radius: 6px;
  background: #dc2626;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  font-family: var(--mono);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Light mockup overrides for topbar elements */
.mockup-window.light .mockup-notif-btn { border-color: #e2e6ed; color: #8b95a5; }
.mockup-window.light .mockup-tz-select { background: #f3f5f8; color: #4b5563; border-color: #e2e6ed; }

.mockup-page {
  padding: 20px;
}

.mockup-main {
  flex: 1;
  background: #0d1117;
  display: flex;
  flex-direction: column;
}

.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.mockup-title {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
}

.mockup-count {
  font-size: 11px;
  font-weight: 400;
  color: #5a6a7e;
  margin-top: 2px;
}

.mockup-header-btns {
  display: flex;
  gap: 6px;
}

.mockup-btn-new {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  background: #4d94ff;
  color: #fff;
  border-radius: 5px;
}

.mockup-btn-ghost {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: transparent;
  color: #a0aec0;
  border: 1px solid #2d3748;
  border-radius: 5px;
}

.mockup-search-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #161b22;
  border: 1px solid #2d3748;
  border-radius: 8px;
  margin-bottom: 8px;
}

.mockup-filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.mockup-search {
  flex: 1;
  height: 24px;
  padding: 0 8px;
  border: 1px solid #2d3748;
  border-radius: 4px;
  background: #0d1117;
  font-size: 10px;
  color: #5a6a7e;
  font-family: var(--font);
  outline: none;
}

.mockup-filter-label {
  font-size: 10px;
  color: #5a6a7e;
  margin-left: 8px;
}

.mockup-filter-btn {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  color: #a0aec0;
  background: transparent;
  border: 1px solid #2d3748;
  cursor: default;
}

.mockup-filter-btn.active {
  background: #4d94ff;
  border-color: #4d94ff;
  color: #fff;
  font-weight: 600;
}

.mockup-filter-pagesize {
  margin-left: auto;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  color: #5a6a7e;
  border: 1px solid #2d3748;
  cursor: default;
}

.mockup-title-block {
  width: 180px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.mockup-btn-block {
  width: 100px;
  height: 32px;
  background: var(--blue);
  border-radius: 6px;
  opacity: 0.8;
}

.mockup-table {
  border: 1px solid #2d3748;
  border-radius: 8px;
  overflow: hidden;
  overflow-x: auto;
}

.mockup-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.mockup-table thead tr {
  background: #161b22;
}

.mockup-table th {
  padding: 8px 10px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5a6a7e;
  border-bottom: 1px solid #2d3748;
}

.mockup-table td {
  padding: 9px 10px;
  border-bottom: 1px solid #1e293b;
  color: #a0aec0;
  font-size: 11px;
}

.mockup-table tbody tr:last-child td {
  border-bottom: none;
}

.mockup-id { color: #5a6a7e; font-family: var(--mono); font-size: 10px; }
.mockup-domain { color: #e2e8f0; font-family: var(--mono); font-weight: 500; }
.mockup-value { font-family: var(--mono); font-size: 10px; color: #a0aec0; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-user { color: #a0aec0; }
.mockup-time { color: #5a6a7e; font-size: 10px; white-space: nowrap; }

/* Status & action pills — matching Netra's exact dark theme pill styling */
.mockup-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.mp-green { background: #052e16; color: #34d399; border: 1px solid #065f46; }
.mp-blue { background: #0d1f3c; color: #4d94ff; border: 1px solid #1e3a6e; }
.mp-pending { background: #2d1a00; color: #fbbf24; border: 1px solid #713f12; }
.mp-applied { background: #052e16; color: #34d399; border: 1px solid #065f46; }
.mp-approved { background: #0d1f3c; color: #4d94ff; border: 1px solid #1e3a6e; }
.mp-scheduled { background: #0d1f3c; color: #4d94ff; border: 1px solid #1e3a6e; font-size: 10px; }
.mp-gray { background: #0d1117; color: #5a6a7e; border: 1px solid #2d3748; }
.mp-purple { background: #1e1040; color: #a78bfa; border: 1px solid #4c1d95; }
.mp-terraform { background: #0d1f3c; color: #4d94ff; border: 1px solid #1e3a6e; }
.mp-red { background: #2d0a0a; color: #f87171; border: 1px solid #7f1d1d; }

/* ── Mockup Light Theme ── */
.mockup-window.light .mockup-bar { background: #f3f5f8; border-bottom-color: #e2e6ed; }
.mockup-window.light .mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-window.light .mockup-dot:nth-child(2) { background: #eab308; }
.mockup-window.light .mockup-dot:nth-child(3) { background: #22c55e; }
.mockup-window.light .mockup-url { background: #fff; color: #8b95a5; border: 1px solid #e2e6ed; }
/* Light sidebar — matches the 2026 pattern (light bg in light mode) */
.mockup-window.light .mockup-sidebar { background: #fafafa; border-right: 1px solid #e5e7eb; }
.mockup-window.light .mockup-sidebar-brand { border-bottom-color: #e5e7eb; }
.mockup-window.light .mockup-sidebar-name { color: #1a1f2e; }
.mockup-window.light .mockup-sidebar-label { color: #9ca3af; }
.mockup-window.light .mockup-sidebar-item { color: #4b5563; }
.mockup-window.light .mockup-sidebar-item.active { background: rgba(37,99,235,.1); color: #2563eb; }
.mockup-window.light .mockup-sidebar-item.active .mockup-sbi { color: #2563eb; }
.mockup-window.light .mockup-sbi { color: #4b5563; }
.mockup-window.light .mockup-sb-status { background: rgba(0,0,0,.04); }
.mockup-window.light .mockup-health-text { color: #4b5563; }
.mockup-window.light .mockup-sb-user { color: #4b5563; }
.mockup-window.light .mockup-sb-logout { color: #4b5563; border-top-color: #e5e7eb; }
.mockup-window.light .mockup-sb-theme { background: rgba(0,0,0,.04); }
.mockup-window.light .mockup-theme-btn { color: #9ca3af; }
.mockup-window.light .mockup-theme-btn.active { background: #fff; color: #1a1f2e; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.mockup-window.light .mockup-sidebar-footer { border-top-color: #e5e7eb; }
.mockup-window.light .mockup-topbar { background: #fff; border-bottom-color: #e2e6ed; }
.mockup-window.light .mockup-topbar-crumb { color: #8b95a5; }
.mockup-window.light .mockup-topbar-crumb strong { color: #1a1f2e; }
.mockup-window.light .mockup-topbar-clock { color: #8b95a5; }
.mockup-window.light .mockup-main { background: #f8f9fb; }
.mockup-window.light .mockup-page { background: #f8f9fb; }
.mockup-window.light .mockup-title { color: #1a1f2e; }
.mockup-window.light .mockup-count { color: #8b95a5; }
.mockup-window.light .mockup-btn-new { background: #2563eb; }
.mockup-window.light .mockup-btn-ghost { color: #4b5563; border-color: #e2e6ed; }
.mockup-window.light .mockup-filter-bar { background: transparent; border-color: #e2e6ed; }
.mockup-window.light .mockup-search-panel { background: #fff; border-color: #e2e6ed; }
.mockup-window.light .mockup-search { background: #f8f9fb; border-color: #e2e6ed; color: #8b95a5; }
.mockup-window.light .mockup-filter-label { color: #8b95a5; }
.mockup-window.light .mockup-filter-btn { color: #4b5563; border-color: #e2e6ed; }
.mockup-window.light .mockup-filter-btn.active { background: #2563eb; border-color: #2563eb; color: #fff; }
.mockup-window.light .mockup-filter-pagesize { color: #8b95a5; border-color: #e2e6ed; }
.mockup-window.light .mockup-table { border-color: #e2e6ed; }
.mockup-window.light .mockup-table thead tr { background: #f3f5f8; }
.mockup-window.light .mockup-table th { color: #8b95a5; border-bottom-color: #e2e6ed; }
.mockup-window.light .mockup-table td { border-bottom-color: #f3f5f8; color: #4b5563; }
.mockup-window.light .mockup-id { color: #8b95a5; }
.mockup-window.light .mockup-domain { color: #1a1f2e; }
.mockup-window.light .mockup-value { color: #4b5563; }
.mockup-window.light .mockup-user { color: #4b5563; }
.mockup-window.light .mockup-time { color: #8b95a5; }
.mockup-window.light .mockup-rtype-a { background: #eff4ff; color: #2563eb; border-color: #bfcfff; }
.mockup-window.light .mockup-rtype-cname { background: #ecfeff; color: #0891b2; border-color: #a5f3fc; }
.mockup-window.light .mockup-rtype-mx { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.mockup-window.light .mockup-rtype-txt { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.mockup-window.light .mockup-rtype-aaaa { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.mockup-window.light .mockup-rtype-srv { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.mockup-window.light .mp-green { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.mockup-window.light .mp-blue { background: #eff4ff; color: #2563eb; border-color: #bfcfff; }
.mockup-window.light .mp-pending { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.mockup-window.light .mp-applied { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.mockup-window.light .mp-approved { background: #eff4ff; color: #2563eb; border-color: #bfcfff; }
.mockup-window.light .mp-scheduled { background: #eff4ff; color: #2563eb; border-color: #bfcfff; }
.mockup-window.light .mp-gray { background: #f8f9fb; color: #8b95a5; border-color: #e2e6ed; }
.mockup-window.light .mp-purple { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.mockup-window.light .mp-terraform { background: #eff4ff; color: #2563eb; border-color: #bfcfff; }
.mockup-window.light .mp-red { background: #fef2f2; color: #dc2626; border-color: #fecaca; }

/* Record type badges — matching Netra's exact dark theme rtype styling */
.mockup-rtype {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 18px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.mockup-rtype-a { background: #0d1f3c; color: #4d94ff; border: 1px solid #1e3a6e; }
.mockup-rtype-cname { background: #0c2a30; color: #22d3ee; border: 1px solid #155e75; }
.mockup-rtype-mx { background: #1c0a00; color: #fb923c; border: 1px solid #7c2d12; }
.mockup-rtype-txt { background: #2d1a00; color: #fbbf24; border: 1px solid #713f12; }
.mockup-rtype-aaaa { background: #1e1040; color: #a78bfa; border: 1px solid #4c1d95; }
.mockup-rtype-srv { background: #052e16; color: #34d399; border: 1px solid #065f46; }

/* ── WORKFLOW ── */
.workflow-section {
  background: var(--surface-alt);
}

.workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.workflow-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.workflow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.workflow-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.workflow-step p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.6;
}

.workflow-connector {
  width: 48px;
  height: 2px;
  background: var(--blue);
  margin-top: 24px;
  flex-shrink: 0;
  opacity: 0.3;
}

/* ── SECTIONS ── */
.section {
  padding: 140px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}

.section--dark .section-header p {
  color: var(--text-inv-2);
}

.section--dark .feature-card,
.section--dark .integration-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.section--dark .feature-card:hover,
.section--dark .integration-card:hover {
  border-color: #2d3a4f;
}

.section--dark .feature-card h3,
.section--dark .integration-card h3 {
  color: var(--text-inv);
}

.section--dark .feature-card p,
.section--dark .integration-card p {
  color: var(--text-inv-3);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
}

.section--dark .section-tag {
  color: var(--blue-strong);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── PROVIDERS ── */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.provider-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.provider-card:hover {
  border-color: var(--text-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.provider-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: transparent;
  overflow: visible;
}

.provider-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  overflow: visible;
}

.provider-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.provider-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── FEATURES ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-icon--blue { background: rgba(37, 99, 235, 0.08); color: var(--blue); }
.feature-icon--teal { background: rgba(8, 145, 178, 0.08); color: var(--teal); }
.feature-icon--purple { background: rgba(124, 58, 237, 0.08); color: var(--purple); }
.feature-icon--green { background: rgba(5, 150, 105, 0.08); color: var(--green); }
.feature-icon--orange { background: rgba(234, 88, 12, 0.08); color: var(--orange); }
.feature-icon--red { background: rgba(220, 38, 38, 0.08); color: var(--red); }
.feature-icon--yellow { background: rgba(217, 119, 6, 0.08); color: var(--yellow); }
.feature-icon--cyan { background: rgba(8, 145, 178, 0.08); color: #0891b2; }
.feature-icon--rose { background: rgba(219, 39, 119, 0.08); color: #db2777; }
.feature-icon--indigo { background: rgba(79, 70, 229, 0.08); color: #4f46e5; }

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── SECURITY ── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.security-item:hover {
  border-color: var(--text-3);
}

.security-check {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.08);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.security-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.security-item p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── INTEGRATIONS ── */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.integration-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.integration-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.integration-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.integration-card p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── DEPLOY ── */
.deploy-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.deploy-method {
  padding: 24px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.deploy-method:hover {
  border-color: var(--text-3);
}

.deploy-method h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.deploy-method p {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.6;
}

.deploy-method code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--blue-strong);
}

.deploy-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.deploy-cta-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.deploy-cta-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.deploy-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.deploy-cta-checklist h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 12px;
}

.deploy-list {
  list-style: none;
  margin-bottom: 28px;
}

.deploy-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.deploy-list li:last-child { border-bottom: none; }

.deploy-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text-inv);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-inv);
}

.final-cta p {
  font-size: 17px;
  color: var(--text-inv-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

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

/* ── FOOTER ── */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-3);
}

.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--transition);
}

.footer-right a:hover { color: var(--text); }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .deploy-methods { grid-template-columns: repeat(2, 1fr); }
  .deploy-cta { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a {
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-links.open .nav-mobile-only {
    display: block;
  }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .product-visual { padding-bottom: 40px; }
  .mockup-sidebar { display: none; }
  .mockup-window { transform: none; }
  .mockup-content { min-height: 240px; }
  .mockup-table th:nth-child(n+5),
  .mockup-table td:nth-child(n+5) { display: none; }

  .workflow-steps { flex-direction: column; align-items: center; gap: 16px; }
  .workflow-connector { width: 2px; height: 32px; }
  .workflow-step { padding: 0; max-width: 280px; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .provider-card { padding: 24px 16px; }
  .security-grid { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: 1fr; }
  .deploy-methods { grid-template-columns: 1fr; }
  .deploy-cta { grid-template-columns: 1fr; padding: 24px; }
  .deploy-cta-actions { flex-direction: column; }
  .deploy-cta-actions .btn { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 15px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 16px 12px; }
  .hero-stat-num { font-size: 20px; }
  .provider-grid { grid-template-columns: 1fr; }
  .mockup-bar { padding: 10px 12px; }
  .mockup-main { padding: 16px; }
  .mockup-header-row { margin-bottom: 16px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.8s ease both; }
.hero-badge { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.8s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.8s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.8s 0.3s ease both; }
.hero-stats { animation: fadeUp 0.8s 0.4s ease both; }

