/* =====================================================
   AI EdgeLabs — Violet Glass-Morphism Theme
   ===================================================== */

:root {
  --bg-base: #0b0914;
  --bg-elevated: #100d1c;
  --bg-card: rgba(30, 27, 75, 0.4);
  --bg-card-solid: #1a1726;
  --bg-panel: rgba(17, 24, 39, 0.7);
  --bg-input: #13111c;
  --border: rgba(139, 92, 246, 0.15);
  --border-light: rgba(255, 255, 255, 0.05);
  --border-violet: rgba(139, 92, 246, 0.3);
  --text: #cbd5e1;
  --text-white: #ffffff;
  --text-muted: #64748b;
  --text-dim: #475569;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --fuchsia-400: #e879f9;
  --fuchsia-500: #d946ef;
  --indigo-400: #818cf8;
  --emerald-400: #34d399;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --orange-400: #fb923c;
  --yellow-400: #facc15;
  --font: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --cyan: #06b6d4;
  --green: #10b981;
  --pink: #ec4899;
  --amber: #f59e0b;
  --bg-surface: #131322;
  --bg-surface-hover: #1a1a30;
  --border-active: rgba(168, 85, 247, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 800px; }

/* ===== Utility Classes ===== */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.violet-glow {
  box-shadow: 0 0 60px -15px rgba(139, 92, 246, 0.4);
}

.text-gradient {
  background: linear-gradient(135deg, var(--violet-400), var(--fuchsia-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only-anchor {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--text-white); }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  padding-top: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

/* Invisible bridge fills the gap between trigger and menu so hover isn't lost when the mouse moves down */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-dropdown-item:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--text-white);
  padding-left: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.header-link:hover { color: var(--text-white); }

.header-github-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.header-github-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--violet-600);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: var(--violet-500);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  transform: translateY(-1px);
}

.btn-glass {
  background: var(--bg-panel);
  color: var(--text-white);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-violet);
}

.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 140px 0 40px;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15) 0%, var(--bg-base) 70%);
  z-index: -1;
}

.hero-sm { padding: 140px 0 60px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ===== Platform Dashboard Mockup ===== */
.dashboard-mockup {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: var(--bg-input);
  text-align: left;
  font-size: 0.75rem;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-card-solid);
}

.dashboard-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.875rem;
}

.dashboard-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.dashboard-topbar-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--violet-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.5625rem;
  font-weight: 600;
}

.dashboard-body {
  display: flex;
  min-height: 400px;
}

.dashboard-sidebar {
  width: 192px;
  border-right: 1px solid var(--border-light);
  background: var(--bg-input);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: default;
}

.sidebar-item.active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-400);
  border-left: 2px solid var(--violet-500);
}

.dashboard-content {
  flex: 1;
  background: var(--bg-card-solid);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kpi-card {
  background: #231f33;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.kpi-card.critical { border-left: 2px solid var(--rose-500); }

.kpi-label { color: var(--text-muted); font-size: 0.75rem; margin-bottom: 4px; }

.kpi-value {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.kpi-value small { font-size: 0.875rem; font-weight: 500; }

.kpi-sub {
  font-size: 0.625rem;
  margin-top: 6px;
}

.kpi-sub.positive { color: var(--emerald-400); }
.kpi-sub.negative { color: var(--rose-400); }
.kpi-sub.neutral { color: var(--text-dim); }

.events-panel {
  background: #231f33;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.events-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.8125rem;
}

.events-list {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.event-row.faded { opacity: 0.7; }

.event-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.event-dot.red { background: var(--rose-500); }
.event-dot.orange { background: var(--orange-400); }
.event-dot.yellow { background: var(--yellow-400); }

.event-title {
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.8125rem;
  margin-bottom: 2px;
}

.event-meta {
  color: var(--text-muted);
  font-size: 0.6875rem;
}

.event-meta .mono {
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--violet-400);
}

.event-badge {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap;
}

.event-badge.blocked {
  background: rgba(244, 63, 94, 0.2);
  color: var(--rose-400);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.event-badge.mitigated {
  background: rgba(251, 146, 60, 0.2);
  color: var(--orange-400);
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.event-badge.investigating {
  background: rgba(250, 204, 21, 0.2);
  color: var(--yellow-400);
  border: 1px solid rgba(250, 204, 21, 0.3);
}

/* ===== Trusted Section ===== */
.trusted-section {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.01);
  padding: 32px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trusted-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.trusted-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
  opacity: 0.5;
  transition: all 0.5s;
}

.trusted-partners:hover { opacity: 0.8; }

.partner-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.partner-logo:hover { opacity: 1; }

/* ===== Sections ===== */
section { padding: 96px 0; }

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

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-400);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 16px;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

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

.feature-card.featured {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-icon.violet {
  background: rgba(139, 92, 246, 0.2);
  color: var(--violet-400);
}

.feature-icon.fuchsia {
  background: rgba(217, 70, 239, 0.2);
  color: var(--fuchsia-400);
}

.feature-icon.indigo {
  background: rgba(129, 140, 248, 0.2);
  color: var(--indigo-400);
}

.feature-icon.emerald {
  background: rgba(52, 211, 153, 0.2);
  color: var(--emerald-400);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}

/* ===== LLM Section ===== */
.llm-section {
  padding: 96px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.llm-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-500), transparent);
  opacity: 0.5;
}

.llm-section .glow-blob {
  position: absolute;
  top: 25%;
  right: -160px;
  width: 384px;
  height: 384px;
  background: rgba(134, 25, 143, 0.15);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.llm-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 64px;
}

.llm-header-text { max-width: 640px; }

.llm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.llm-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
}

.llm-card:hover { border-color: var(--border-violet); }

.llm-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.llm-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.llm-card:hover .llm-card-icon { background: rgba(139, 92, 246, 0.15); }

.llm-card-module {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.llm-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.llm-card > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ===== Tabs (CRA/NIS2) ===== */
.tabs-section { padding: 96px 0; }

.tabs-layout {
  display: flex;
  gap: 32px;
}

.tabs-nav {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-btn {
  width: 100%;
  text-align: left;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  font-family: var(--font);
}

.tab-btn.active {
  background: var(--violet-600);
  color: var(--text-white);
  border-color: var(--border-violet);
}

.tab-btn:not(.active) {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: transparent;
}

.tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.06);
}

.tabs-content-area {
  flex: 1;
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.tab-content > p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.tab-mini-dashboard {
  background: var(--bg-input);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.tab-mini-dashboard-header {
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.tab-mini-dashboard-body { padding: 24px; }

.tab-alert-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tab-alert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-500);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.tab-alert-title {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.875rem;
}

.tab-alert-policy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tab-code-block {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text);
  font-family: 'SF Mono', 'Fira Code', monospace;
  overflow-x: auto;
}

.tab-placeholder {
  height: 192px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
}

/* ===== Stats ===== */
.stats-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card { text-align: center; }

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet-400), var(--fuchsia-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* ===== Benefits ===== */
.benefits-section {
  padding: 96px 0;
  background: var(--bg-elevated);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.15);
  color: var(--violet-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Blog Cards ===== */
.blog-section {
  padding: 96px 0;
  border-top: 1px solid var(--border-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.blog-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-400);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-white);
  margin-bottom: 16px;
  flex: 1;
}

.blog-date { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 8px; }

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-400);
}

/* ===== Blog Listing ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-list-card {
  display: block;
  padding: 28px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.blog-list-card:hover {
  border-color: var(--border-violet);
  transform: translateY(-2px);
}

.blog-list-card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-list-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-list-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-all-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
}

.newsletter-bar {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-bar span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-white);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px 14px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--violet-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.blog-filters {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.filters-title { font-weight: 600; margin-bottom: 16px; font-size: 0.875rem; color: var(--text-white); }
.filter-group { margin-bottom: 16px; }
.filter-group-title { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 8px; }
.filter-list li { margin-bottom: 6px; }
.filter-pill { font-size: 0.8rem; color: var(--text-muted); }

.webinar-sidebar-card {
  display: flex; flex-direction: column; gap: 8px; padding: 20px;
  background: rgba(139, 92, 246, 0.08); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color var(--transition);
}
.webinar-sidebar-card:hover { border-color: var(--violet-500); }
.webinar-sidebar-badge { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; color: var(--fuchsia-400); }
.webinar-sidebar-title { font-size: 0.875rem; font-weight: 600; color: var(--text-white); line-height: 1.4; }
.webinar-sidebar-cta { font-size: 0.85rem; font-weight: 600; color: var(--violet-400); }

/* ===== Contact Form ===== */
.contact-section {
  padding: 96px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
}

.contact-form { max-width: 700px; margin: 0 auto; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.875rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-group.full-width { grid-column: 1 / -1; }

.form-message { margin-top: 16px; font-size: 0.875rem; text-align: center; }
.form-message.success { color: var(--emerald-400); }
.form-message.error { color: var(--rose-400); }

/* ===== Post Content ===== */
.post-content { padding: 60px 0; }
.post-body p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }
.post-body h2 { font-size: 1.35rem; font-weight: 700; margin: 28px 0 12px; color: var(--text-white); }
.post-body h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 12px; color: var(--text-white); }
.post-body h6 { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; margin: 28px 0 12px; }
.post-body ul, .post-body ol { margin: 16px 0 24px 24px; }
.post-body li { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.post-actions { display: flex; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.post-meta { display: flex; align-items: center; gap: 12px; justify-content: center; color: var(--text-muted); font-size: 0.875rem; margin-top: 12px; }

/* ===== Case Studies ===== */
.filters-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.filters-label { font-weight: 600; font-size: 0.875rem; color: var(--text-muted); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { padding: 6px 16px; font-size: 0.8rem; font-weight: 500; border-radius: 20px; border: 1px solid var(--border); color: var(--text-muted); transition: all var(--transition); }
.filter-chip:hover, .filter-chip.active { border-color: var(--violet-500); color: var(--violet-400); background: rgba(139, 92, 246, 0.1); }

.case-studies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-study-card { display: block; padding: 32px; background: rgba(0,0,0,0.3); border: 1px solid var(--border-light); border-radius: var(--radius-lg); transition: all 0.3s ease; }
.case-study-card:hover { border-color: var(--border-violet); transform: translateY(-2px); }
.case-study-badge { display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fuchsia-400); margin-bottom: 12px; }
.case-study-card h2 { font-size: 1.15rem; font-weight: 600; color: var(--text-white); margin-bottom: 12px; line-height: 1.4; }
.case-study-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.case-study-meta { display: flex; justify-content: space-between; align-items: center; }
.case-study-industry { font-size: 0.8rem; color: var(--text-dim); border: 1px solid var(--border); padding: 4px 12px; border-radius: 12px; }

/* ===== Capabilities ===== */
.capabilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.capability-card { padding: 28px; background: rgba(0,0,0,0.3); border: 1px solid var(--border-light); border-radius: var(--radius-md); transition: all var(--transition); }
.capability-card:hover { border-color: var(--border-violet); }
.capability-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--violet-400); }
.capability-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.capabilities-list { max-width: 800px; margin: 0 auto; }
.capability-accordion { border: 1px solid var(--border-light); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: border-color var(--transition); }
.capability-accordion.active { border-color: var(--violet-500); }
.capability-accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: rgba(0,0,0,0.3); border: none; color: var(--text-white); font-family: var(--font); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.capability-accordion-header:hover { background: rgba(255,255,255,0.03); }
.capability-accordion-header svg { transition: transform var(--transition); }
.capability-accordion.active .capability-accordion-header svg { transform: rotate(180deg); }
.capability-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.capability-accordion.active .capability-accordion-body { max-height: 400px; }
.capability-accordion-body ul { padding: 0 24px 20px; }
.capability-accordion-body li { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; padding: 6px 0 6px 20px; position: relative; list-style: none; }
.capability-accordion-body li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--violet-500); }

/* ===== Environments ===== */
.environments-section { background: var(--bg-elevated); }
.env-table { max-width: 800px; margin: 0 auto; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.env-table-header { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 24px; background: rgba(0,0,0,0.3); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); border-bottom: 1px solid var(--border-light); }
.env-table-row { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 24px; border-bottom: 1px solid var(--border-light); transition: background var(--transition); }
.env-table-row:last-child { border-bottom: none; }
.env-table-row:hover { background: rgba(139, 92, 246, 0.05); }
.env-name { font-weight: 500; font-size: 0.9375rem; color: var(--text-white); }
.env-desc { color: var(--text-muted); font-size: 0.875rem; }

/* ===== Error Pages ===== */
.error-page { text-align: center; padding: 200px 0 120px; }
.error-page h1 { font-size: 6rem; font-weight: 900; color: var(--violet-500); margin-bottom: 16px; }
.error-page p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }

/* ===== Legal / Static ===== */
.legal-static .static-body p { font-size: 0.9375rem; line-height: 1.75; }
.about-content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; color: var(--text-white); }
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.about-content ul { margin: 16px 0 24px 24px; }
.about-content li { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; list-style: disc; }

/* ===== Webinar ===== */
.webinar-body-section { padding: 40px 0 80px; }
.webinar-about-heading { font-size: 1.25rem; color: var(--text-white); margin-bottom: 12px; }
.webinar-about-lead { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.webinar-bullets { margin: 0 0 40px 0; padding-left: 20px; }
.webinar-bullets li { list-style: disc; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.card-elevated { padding: 28px; background: rgba(0,0,0,0.3); border: 1px solid var(--border-light); border-radius: var(--radius-lg); }
.card-elevated h3 { margin-bottom: 12px; color: var(--text-white); }
.form-hint { font-size: 0.8125rem; color: var(--text-dim); margin-bottom: 16px; line-height: 1.5; }

/* ===== Footer ===== */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--border-light);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-description { color: var(--text-dim); font-size: 0.875rem; margin-top: 16px; line-height: 1.6; }
.footer-col h4 { color: var(--text-white); font-weight: 600; font-size: 0.875rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--violet-400); }

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

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--text-white); }

.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--text-dim); transition: color var(--transition); }
.footer-socials a:hover { color: var(--text-white); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid, .benefits-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .llm-grid { grid-template-columns: 1fr; }
  .tabs-layout { flex-direction: column; }
  .tabs-nav { width: 100%; flex-direction: row; overflow-x: auto; }
  .tab-btn { white-space: nowrap; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--bg-card-solid); border-bottom: 1px solid var(--border);
    padding: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  }
  .main-nav.open .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; background: transparent; }
  .main-nav.open .nav-dropdown:hover .nav-dropdown-menu,
  .main-nav.open .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .mobile-menu-toggle { display: flex; }

  .features-grid, .benefits-grid, .blog-grid, .blog-list-grid,
  .case-studies-grid, .capabilities-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-value { font-size: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 40px; }
  .hero-sm { padding: 120px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .dashboard-sidebar { display: none; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .env-table-header, .env-table-row { grid-template-columns: 1fr; gap: 4px; }
  .llm-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
}

/* ===== Global Mono Typography ===== */
.section-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-500);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-tag::before { content: '//'; color: var(--text-muted); }

.accent { color: var(--violet-400); }

.mono { font-family: var(--mono); }

code, .code-inline {
  font-family: var(--mono);
  font-size: 0.88rem;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}

/* ===== How It Works ===== */
.hiw-hero { padding: 120px 0 36px; position: relative; overflow: hidden; }
.hiw-hero::before { content: ''; position: absolute; top: 60px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 65%); pointer-events: none; }
.hiw-hero-meta { font-family: var(--mono); font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.hiw-hero-meta .line { width: 40px; height: 1px; background: var(--violet-500); }
.hiw-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1rem; color: #e2e2ef; }
.hiw-hero .hero-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 660px; line-height: 1.75; margin-bottom: 2rem; }

.hiw-stats { margin-bottom: 3rem; }
.hiw-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.hiw-stat-cell { background: var(--bg-elevated); padding: 1.5rem 1.8rem; position: relative; }
.hiw-stat-cell::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; }
.hiw-stat-cell:nth-child(1)::before { background: var(--violet-500); }
.hiw-stat-cell:nth-child(2)::before { background: var(--cyan); }
.hiw-stat-cell:nth-child(3)::before { background: var(--green); }
.hiw-stat-cell:nth-child(4)::before { background: var(--amber); }
.hiw-stat-label { font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 0.3rem; }
.hiw-stat-value { font-family: var(--mono); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: #e2e2ef; }
.hiw-stat-value .unit { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.hiw-stat-note { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

@media (max-width: 700px) { .hiw-stats-inner { grid-template-columns: repeat(2, 1fr); } }

.hiw-divider { height: 1px; background: var(--border-light); }

/* Architecture Grid */
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 860px) { .arch-grid { grid-template-columns: 1fr; } }
.arch-card { background: var(--bg-elevated); padding: 2rem; transition: background 0.3s; }
.arch-card:hover { background: var(--bg-surface); }
.arch-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.arch-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; flex-shrink: 0; }
.arch-icon.ndr { background: rgba(168, 85, 247, 0.12); color: var(--violet-400); }
.arch-icon.edr { background: rgba(6, 182, 212, 0.12); color: var(--cyan); }
.arch-icon.vul { background: rgba(236, 72, 153, 0.12); color: var(--pink); }
.arch-icon.api { background: rgba(16, 185, 129, 0.12); color: var(--green); }
.arch-card h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.arch-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.arch-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.arch-tags span { font-family: var(--mono); font-size: 0.78rem; padding: 0.25rem 0.6rem; border-radius: 4px; background: rgba(255, 255, 255, 0.04); color: var(--text-muted); border: 1px solid var(--border-light); letter-spacing: 0.02em; }

/* Pipeline */
.pipeline-wrap { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 2.5rem; position: relative; overflow: hidden; }
.pipeline-wrap::before { content: ''; position: absolute; bottom: 0; right: 0; width: 350px; height: 200px; background: radial-gradient(ellipse, rgba(6, 182, 212, 0.04) 0%, transparent 70%); pointer-events: none; }
.pipeline-title { font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.pipeline-title .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.pipeline-flow { display: flex; align-items: stretch; gap: 0; position: relative; }
.pipeline-step { flex: 1; padding: 1.2rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-light); position: relative; transition: all 0.3s; min-width: 0; }
.pipeline-step:first-child { border-radius: 8px 0 0 8px; }
.pipeline-step:last-child { border-radius: 0 8px 8px 0; }
.pipeline-step:hover { background: rgba(168, 85, 247, 0.04); border-color: var(--border-active); }
.pipeline-step .p-num { font-family: var(--mono); font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.pipeline-step .p-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; line-height: 1.3; color: var(--text); }
.pipeline-step .p-desc { font-family: var(--mono); font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.pipeline-step .p-arrow { position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 2; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border-active); display: flex; align-items: center; justify-content: center; color: var(--violet-400); font-size: 0; }
.pipeline-step .p-arrow::after { content: ''; width: 7px; height: 7px; border-top: 2px solid var(--violet-400); border-right: 2px solid var(--violet-400); transform: rotate(45deg); margin-left: -2px; }
@media (max-width: 800px) { .pipeline-flow { flex-direction: column; gap: 0; } .pipeline-step { border-radius: 0 !important; } .pipeline-step .p-arrow { display: none; } }

/* Capabilities Grid */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-cell { background: var(--bg-elevated); padding: 1.6rem; transition: background 0.3s; position: relative; }
.cap-cell:hover { background: var(--bg-surface); }
.cap-cell::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--violet-500); opacity: 0; transition: opacity 0.3s; }
.cap-cell:hover::after { opacity: 1; }
.cap-num { font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.cap-cell h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.01em; line-height: 1.3; color: var(--text); }
.cap-cell p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* Deploy Cards */
.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 860px) { .deploy-grid { grid-template-columns: 1fr; } }
.deploy-card { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 0; overflow: hidden; transition: all 0.3s; }
.deploy-card:hover { border-color: var(--border-active); transform: translateY(-2px); }
.deploy-head { padding: 1.5rem 1.5rem 0; display: flex; justify-content: space-between; align-items: flex-start; }
.deploy-badge { font-family: var(--mono); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.7rem; border-radius: 4px; }
.badge-rec { background: rgba(168, 85, 247, 0.12); color: var(--violet-400); }
.badge-perf { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }
.badge-lite { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.deploy-body { padding: 0 1.5rem 1.5rem; }
.deploy-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0.6rem 0 0.5rem; letter-spacing: -0.01em; color: var(--text); }
.deploy-card > p, .deploy-body > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.deploy-list { list-style: none; padding: 0; border-top: 1px solid var(--border-light); padding-top: 0.8rem; }
.deploy-list li { font-family: var(--mono); font-size: 0.88rem; color: var(--text-muted); padding: 0.35rem 0; padding-left: 1.2rem; position: relative; line-height: 1.5; }
.deploy-list li::before { content: '\203A'; position: absolute; left: 0; color: var(--violet-500); font-weight: 700; font-size: 0.85rem; }

/* Platform Pills */
.plat-grid { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.plat-pill { font-family: var(--mono); font-size: 0.82rem; font-weight: 500; padding: 0.55rem 1.1rem; border-radius: 6px; background: var(--bg-elevated); border: 1px solid var(--border-light); color: var(--text-muted); transition: all 0.25s; display: flex; align-items: center; gap: 0.4rem; }
.plat-pill:hover { border-color: var(--border-active); color: var(--text); }

/* Architecture Diagram */
.arch-diagram-wrap { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 2rem; margin-top: 2.5rem; position: relative; overflow: hidden; }
.arch-diagram-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(168, 85, 247, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.02) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.arch-diagram-label { font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.arch-diagram-label .blink { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
.arch-svg text { font-family: var(--mono); }
.arch-svg .lbl { font-size: 10px; fill: var(--text-muted); }
.arch-svg .lbl-h { font-size: 11px; fill: var(--text); font-weight: 600; }
.arch-svg .lbl-accent { font-size: 10px; font-weight: 600; }
.arch-svg .box-input { fill: rgba(255, 255, 255, 0.04); stroke: rgba(255, 255, 255, 0.1); stroke-width: 0.75; }
.arch-svg .box-detect-ndr { fill: rgba(168, 85, 247, 0.08); stroke: rgba(168, 85, 247, 0.22); stroke-width: 0.75; }
.arch-svg .box-detect-edr { fill: rgba(6, 182, 212, 0.08); stroke: rgba(6, 182, 212, 0.22); stroke-width: 0.75; }
.arch-svg .box-detect-vul { fill: rgba(236, 72, 153, 0.08); stroke: rgba(236, 72, 153, 0.22); stroke-width: 0.75; }
.arch-svg .box-response { fill: rgba(239, 68, 68, 0.06); stroke: rgba(239, 68, 68, 0.18); stroke-width: 0.75; }
.arch-svg .box-gateway { fill: rgba(168, 85, 247, 0.1); stroke: rgba(168, 85, 247, 0.25); stroke-width: 0.75; }
.arch-svg .box-cloud { fill: rgba(255, 255, 255, 0.04); stroke: rgba(255, 255, 255, 0.1); stroke-width: 0.75; }
.arch-svg .box-ml { fill: rgba(168, 85, 247, 0.06); stroke: rgba(168, 85, 247, 0.18); stroke-width: 0.75; }
.arch-svg .zone { fill: none; stroke: rgba(255, 255, 255, 0.06); stroke-width: 0.5; stroke-dasharray: 5 3; }
.arch-svg .conn { stroke: rgba(255, 255, 255, 0.15); stroke-width: 0.75; fill: none; }
.arch-svg .conn-accent { stroke: rgba(168, 85, 247, 0.35); stroke-width: 0.75; fill: none; }
.arch-svg .arrow-head { fill: rgba(255, 255, 255, 0.25); }
