/* ==========================================================================
   AUDITSHIELD AI — HYPER-TECHNICAL DEVSECOPS & CLOUD ARCHITECTURE AESTHETIC
   Vercel / Supabase / Railway / Raycast Level Developer-Grade Interface
   ========================================================================== */

:root {
  /* Color Palette - Deep Cybernetic Obsidian */
  --bg-primary: #05070B;
  --bg-surface: rgba(12, 17, 28, 0.85);
  --bg-surface-solid: #0A0E17;
  --bg-surface-hover: rgba(20, 28, 46, 0.95);
  --bg-input: #04060A;
  --bg-code: #030407;

  /* High-Tech Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(56, 189, 248, 0.35);
  --border-emerald: rgba(16, 185, 129, 0.4);
  --border-cyan: rgba(6, 182, 212, 0.4);
  --border-diff-red: rgba(239, 68, 68, 0.35);
  --border-diff-green: rgba(34, 197, 94, 0.35);

  /* Primary High-Tech Accents */
  --emerald-primary: #10B981;
  --emerald-bright: #34D399;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --cyan-primary: #06B6D4;
  --cyan-bright: #38BDF8;
  --cyan-glow: rgba(56, 189, 248, 0.25);
  --amber-warning: #F59E0B;
  --red-diff: #F87171;
  --green-diff: #4ADE80;

  /* Typography */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Radius & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-glow-cyan: 0 0 35px rgba(56, 189, 248, 0.3);
  --shadow-glow-emerald: 0 0 35px rgba(16, 185, 129, 0.3);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

/* Cyber Ambient Glow Overlays */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(160px);
  z-index: 0;
  opacity: 0.35;
}

.glow-top-left {
  top: -15%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.28) 0%, transparent 70%);
}

.glow-top-right {
  top: 10%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
}

/* Typography Utilities */
.text-emerald { color: var(--emerald-bright) !important; }
.text-cyan { color: var(--cyan-bright) !important; }
.text-amber { color: var(--amber-warning) !important; }
.text-muted { color: var(--text-muted) !important; }
.font-mono { font-family: var(--font-mono) !important; }

/* Kbd Shortcut Badges */
.kbd-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 1px 5px;
  color: var(--text-secondary);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-sm {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
}

.btn-lg {
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
}

.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.55);
}

.btn-emerald {
  background: #10B981;
  color: #04140D;
  font-weight: 700;
}

.btn-emerald:hover {
  background: #34D399;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-emerald);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

.btn-glow {
  position: relative;
}

/* Header & Clean Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(10, 15, 25, 0.9);
  border: 1px solid var(--border-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo:hover .logo-icon-box {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.45);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
  display: block;
}

.logo-text { display: flex; flex-direction: column; }
.logo-title { font-size: 15px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.03em; }
.logo-tag { font-size: 10px; font-weight: 700; color: var(--emerald-bright); text-transform: uppercase; letter-spacing: 0.5px; }

.header-nav { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 13.5px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.15s ease; }
.nav-link:hover { color: #FFFFFF; }

.nav-dropdown { position: relative; display: inline-block; }
.dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 250px;
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(32px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.dropdown-item:hover { background: rgba(255, 255, 255, 0.06); color: #FFFFFF; }

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

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 24px 50px 24px;
}

.hero-dual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--border-emerald);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald-bright);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.hero-subhead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 26px;
  max-width: 580px;
}

/* Quickstart CLI Box in Hero */
.cli-hero-box {
  background: var(--bg-code);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 540px;
  margin-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.cli-code-text {
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cli-prompt { color: var(--text-muted); }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.trust-metric-item { display: flex; flex-direction: column; }
.trust-metric-num { font-size: 22px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em; }
.trust-metric-label { font-size: 11.5px; color: var(--text-muted); font-weight: 500; }

/* Floating Hero Live Status Card */
.hero-live-widget-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(32px);
  position: relative;
  overflow: hidden;
}

.hero-live-widget-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-bright), var(--cyan-bright));
}

.widget-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--emerald-bright);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 8px var(--emerald-bright);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.widget-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.w-stat-card {
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
}

.w-stat-label { font-size: 10.5px; color: var(--text-muted); display: block; }
.w-stat-val { font-size: 15px; font-weight: 800; margin-top: 2px; font-family: var(--font-mono); }

/* Continuous Accreditation Trust Ribbon */
.marquee-ribbon {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(8, 11, 18, 0.6);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  font-family: var(--font-mono);
}

/* Sections Global */
.website-section {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE ARCHITECTURE TOPOLOGY RADAR (HYPER-TECH FEATURE)
   ========================================================================== */
.topology-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.topo-node {
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  transition: all 0.2s ease;
}

.topo-node:hover {
  border-color: var(--border-cyan);
  transform: translateY(-2px);
}

.topo-node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.topo-badge {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 2px 6px;
  border-radius: 4px;
}

.topo-badge.active { background: rgba(16, 185, 129, 0.15); color: var(--emerald-bright); border: 1px solid var(--border-emerald); }
.topo-badge.gate { background: rgba(56, 189, 248, 0.15); color: var(--cyan-bright); border: 1px solid var(--border-cyan); }

.topo-title { font-size: 14px; font-weight: 800; color: #FFFFFF; margin-bottom: 6px; }
.topo-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   INTERACTIVE "INSIDE THE VAULT" PRODUCT EXPLORER
   ========================================================================== */
.vault-explorer-window {
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.window-titlebar {
  background: #06090F;
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-dots { display: flex; gap: 6px; }
.w-dot { width: 10px; height: 10px; border-radius: 50%; }
.w-dot.red { background: #FF5F56; }
.w-dot.yellow { background: #FFBD2E; }
.w-dot.green { background: #27C93F; }

.vault-tabs-header {
  display: flex;
  gap: 2px;
  background: #04060A;
  padding: 4px 10px 0 10px;
  border-bottom: 1px solid var(--border-glass);
}

.v-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-mono);
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v-tab-btn:hover { color: var(--text-primary); }
.v-tab-btn.active {
  background: var(--bg-surface-solid);
  border-color: var(--border-glass);
  color: var(--cyan-bright);
}

.vault-code-view {
  padding: 20px;
  background: #030508;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.65;
  color: #E2E8F0;
  overflow-x: auto;
  max-height: 400px;
}

/* ==========================================================================
   TACTILE 60-SECOND ARCHITECTURE SCANNER
   ========================================================================== */
.scanner-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(32px);
  box-shadow: var(--shadow-elevated);
}

.form-group-block { margin-bottom: 20px; }
.form-label-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  margin-bottom: 8px;
  display: block;
}

.chip-options-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-option {
  padding: 7px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-mono);
}
.chip-option:hover { border-color: var(--border-glass-hover); color: #FFFFFF; }
.chip-option.selected {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--emerald-bright);
  color: var(--emerald-bright);
}

.terminal-diagnostic-window {
  background: #020305;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: #94A3B8;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.term-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 10.5px;
  color: var(--text-muted);
}

.terminal-output-area { flex-grow: 1; overflow-y: auto; white-space: pre-wrap; }

/* ==========================================================================
   COMPARISON MATRIX & 2-PART FORMULA
   ========================================================================== */
.formula-banner-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.06));
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.comparison-matrix-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.comp-table { width: 100%; border-collapse: collapse; text-align: left; }
.comp-table th, .comp-table td { padding: 16px 22px; border-bottom: 1px solid var(--border-glass); font-size: 13.5px; }
.comp-table th {
  background: rgba(8, 12, 20, 0.8);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  color: var(--text-muted);
}
.comp-highlight-col {
  background: rgba(16, 185, 129, 0.05);
  border-left: 1px solid var(--border-emerald);
  border-right: 1px solid var(--border-emerald);
  color: #FFFFFF;
}

/* ==========================================================================
   CUSTOMER CASE STUDIES
   ========================================================================== */
.case-studies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}
.case-card:hover { transform: translateY(-2px); border-color: var(--border-cyan); }
.case-metric-row {
  display: flex;
  gap: 20px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(28px);
  transition: all 0.2s ease;
  position: relative;
}
.pricing-card:hover { border-color: var(--border-glass-hover); transform: translateY(-2px); }

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(14, 20, 32, 0.95) 0%, rgba(8, 12, 22, 0.95) 100%);
  border: 1px solid var(--emerald-bright);
  box-shadow: var(--shadow-glow-emerald), var(--shadow-elevated);
  padding: 40px 28px;
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10B981, #06B6D4);
  color: #04140D;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}

.price-display { display: flex; align-items: baseline; gap: 4px; margin: 20px 0; }
.price-currency { font-size: 22px; font-weight: 700; color: var(--text-muted); }
.price-amount { font-size: 42px; font-weight: 800; color: #FFFFFF; font-family: var(--font-mono); letter-spacing: -0.04em; }
.price-period { font-size: 12.5px; color: var(--text-muted); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.feature-item.check::before { content: '✓'; color: var(--emerald-bright); font-weight: 800; }

/* Toast Notifications */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-xs);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
}

/* Interactive FAQ Accordion */
.faq-container-box {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(24px);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item:hover, .faq-accordion-item.active {
  border-color: var(--border-glass-hover);
}

.faq-accordion-item.active {
  border-left: 3px solid var(--emerald-bright);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}

.faq-question-btn:hover {
  color: var(--emerald-bright);
}

.faq-icon {
  font-size: 18px;
  font-weight: 800;
  color: var(--emerald-bright);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.faq-answer-panel {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-dual-grid { grid-template-columns: 1fr; }
  .topology-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .scanner-card-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
}
