/* ============================================================
   KNOWVORO WEBSITE — STYLES
   ============================================================ */

:root {
  --navy:       #050D1F;
  --navy-mid:   #0B1A3A;
  --blue:       #1A56DB;
  --blue-light: #2D7FF9;
  --cyan:       #00C8FF;
  --purple:     #7C3AED;
  --purple-light:#A855F7;
  --green:      #10B981;
  --orange:     #F59E0B;
  --red:        #EF4444;
  --white:      #FFFFFF;
  --gray-100:   #F1F5FF;
  --gray-200:   #DDE4F5;
  --gray-400:   #8899BB;
  --gray-600:   #4A5578;
  --text:       #E2E8F8;
  --text-muted: #8899BB;
  --card-bg:    rgba(11, 26, 58, 0.7);
  --border:     rgba(45, 127, 249, 0.18);
  --glow-blue:  0 0 40px rgba(45, 127, 249, 0.35);
  --glow-cyan:  0 0 40px rgba(0, 200, 255, 0.3);
  --radius:     16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--blue); color: #fff; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 31, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.navbar.scrolled { background: rgba(5, 13, 31, 0.97); }

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

.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: white;
  letter-spacing: -1px;
}

.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--cyan); }

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover { color: var(--white); background: rgba(45,127,249,0.12); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  box-shadow: var(--glow-blue);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(45, 127, 249, 0.5) !important;
  background: rgba(45,127,249,0.12) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,86,219,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124,58,237,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0,200,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,127,249,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,127,249,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,127,249,0.12);
  border: 1px solid rgba(45,127,249,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--glow-blue);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(45,127,249,0.55); }

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: rgba(45,127,249,0.1);
  border-color: rgba(45,127,249,0.4);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-stat { text-align: center; }
.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ══════════════════════════════════════════
   COMMON SECTION
══════════════════════════════════════════ */
section { padding: 100px 5%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--cyan); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ══════════════════════════════════════════
   PRODUCTS GRID
══════════════════════════════════════════ */
#products { background: var(--navy-mid); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  /* backdrop-filter removed — saves compositor layer */
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,127,249,0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,127,249,0.4);
  box-shadow: var(--glow-blue);
}
.product-card:hover::before { opacity: 1; }

.product-card.featured {
  border-color: rgba(0,200,255,0.3);
  background: linear-gradient(135deg, rgba(26,86,219,0.15), rgba(0,200,255,0.08));
}

.product-card.featured::after {
  content: 'FLAGSHIP';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 50px;
}

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.icon-blue { background: rgba(26,86,219,0.2); }
.icon-cyan { background: rgba(0,200,255,0.15); }
.icon-purple { background: rgba(124,58,237,0.2); }
.icon-green { background: rgba(16,185,129,0.2); }
.icon-orange { background: rgba(245,158,11,0.2); }
.icon-red { background: rgba(239,68,68,0.2); }

.product-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.product-domain {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 14px;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(45,127,249,0.12);
  border: 1px solid rgba(45,127,249,0.2);
  color: var(--gray-200);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-tbd { color: var(--orange); }

/* ══════════════════════════════════════════
   PRODUCT DETAIL SECTIONS
══════════════════════════════════════════ */
.product-detail {
  position: relative;
  overflow: hidden;
}

.product-detail:nth-child(odd) { background: var(--navy); }
.product-detail:nth-child(even) { background: var(--navy-mid); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-layout.reverse { direction: rtl; }
.detail-layout.reverse > * { direction: ltr; }

.detail-content {}

.detail-visual {
  position: relative;
}

/* ── Feature list ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(0,200,255,0.15);
  border: 1px solid rgba(0,200,255,0.4);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300C8FF'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── Metric cards ── */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.metric-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-value.positive { color: var(--green); }
.metric-value.cyan { color: var(--cyan); }
.metric-value.blue { color: var(--blue-light); }

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Info panel ── */
.info-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.info-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

/* ══════════════════════════════════════════
   DATA SECTION
══════════════════════════════════════════ */
.data-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.capability-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.capability-card:hover {
  border-color: rgba(45,127,249,0.4);
  transform: translateY(-4px);
}

.capability-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.capability-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.capability-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   VISION SECTION
══════════════════════════════════════════ */
.vision-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vision-module {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.vision-module:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(124,58,237,0.2);
}

.vision-module-icon {
  width: 64px; height: 64px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.vision-module-icon svg {
  width: 28px;
  height: 28px;
  stroke: #A855F7;
  stroke-width: 1.8;
  display: block;
}

.vision-module-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.vision-module-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   AUDIO PERSONAS
══════════════════════════════════════════ */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.persona-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  /* removed backdrop-filter — saves compositor layer per card */
}

.persona-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,255,0.35);
  box-shadow: 0 0 40px rgba(0,200,255,0.15);
}

.persona-number {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(45,127,249,0.1);
  line-height: 1;
}

.persona-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
}

.persona-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.persona-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════ */
.comparison-section {
  background: var(--navy-mid);
}

.comparison-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table thead tr {
  background: linear-gradient(135deg, rgba(26,86,219,0.3), rgba(0,200,255,0.15));
}

.comparison-table th {
  padding: 20px 28px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}

.comparison-table th.knowvoro-col {
  color: var(--cyan);
  background: rgba(0,200,255,0.08);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(45,127,249,0.08);
  transition: background var(--transition);
}

.comparison-table tbody tr:hover { background: rgba(45,127,249,0.06); }
.comparison-table tbody tr:last-child { border-bottom: none; }

.comparison-table td {
  padding: 18px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--white);
  font-size: 0.88rem;
}

.comparison-table td.knowvoro-col {
  color: var(--text);
  background: rgba(0,200,255,0.04);
}

.comparison-table td .badge-good {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ══════════════════════════════════════════
   PERFORMANCE SPECS TABLE
══════════════════════════════════════════ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.specs-table thead tr {
  background: linear-gradient(135deg, rgba(0,200,255,0.15), rgba(26,86,219,0.2));
}

.specs-table th {
  padding: 18px 28px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  border-bottom: 1px solid var(--border);
}

.specs-table tbody tr { border-bottom: 1px solid rgba(45,127,249,0.08); }
.specs-table tbody tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 16px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.specs-table td:first-child { font-weight: 600; color: var(--white); }
.specs-table td:nth-child(2) { color: var(--gray-400); }
.specs-table td:last-child { font-weight: 700; color: var(--cyan); }

/* ══════════════════════════════════════════
   KPI METRICS
══════════════════════════════════════════ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.kpi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}

.kpi-card.green::before { background: var(--green); }
.kpi-card.blue::before  { background: var(--blue-light); }
.kpi-card.cyan::before  { background: var(--cyan); }
.kpi-card.purple::before { background: var(--purple-light); }
.kpi-card.orange::before { background: var(--orange); }

.kpi-card:hover { transform: translateY(-5px); border-color: rgba(45,127,249,0.35); }

.kpi-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-card.green  .kpi-number { color: var(--green); }
.kpi-card.blue   .kpi-number { color: var(--blue-light); }
.kpi-card.cyan   .kpi-number { color: var(--cyan); }
.kpi-card.purple .kpi-number { color: var(--purple-light); }
.kpi-card.orange .kpi-number { color: var(--orange); }

.kpi-metric { font-size: 0.85rem; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.kpi-detail { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ══════════════════════════════════════════
   FOUR PILLARS
══════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform var(--transition), border-color var(--transition);
}

.pillar-card:hover { transform: translateY(-5px); border-color: rgba(45,127,249,0.35); }

.pillar-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   BUSINESS MODEL
══════════════════════════════════════════ */
#business-model { background: var(--navy-mid); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-table thead tr {
  background: linear-gradient(135deg, rgba(26,86,219,0.4), rgba(124,58,237,0.3));
}

.pricing-table th {
  padding: 20px 28px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(45,127,249,0.08);
  transition: background var(--transition);
}

.pricing-table tbody tr:hover { background: rgba(45,127,249,0.06); }
.pricing-table tbody tr:last-child { border-bottom: none; }

.pricing-table td {
  padding: 18px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-table td:first-child { font-weight: 700; color: var(--white); }
.pricing-table td:nth-child(2) { color: var(--cyan); font-weight: 600; }

/* ══════════════════════════════════════════
   SAFETY INTEGRATION
══════════════════════════════════════════ */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.safety-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--cyan);
  transition: transform var(--transition);
}

.safety-item:hover { transform: translateX(4px); }

.safety-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.safety-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TRADEMARK BANNER
══════════════════════════════════════════ */
.trademark-banner {
  background: linear-gradient(135deg, rgba(26,86,219,0.15), rgba(0,200,255,0.08));
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: var(--radius);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.trademark-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trademark-text strong { color: var(--cyan); }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(26,86,219,0.2) 0%, rgba(124,58,237,0.15) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,86,219,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #030810;
  border-top: 1px solid var(--border);
  padding: 60px 5% 36px;
}

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

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-text a { color: var(--cyan); text-decoration: none; }

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: rgba(45,127,249,0.15);
  border-color: rgba(45,127,249,0.4);
  color: var(--cyan);
}

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .detail-layout.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vision-modules { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(5,13,31,0.98);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open .nav-cta { display: inline-flex; margin-top: 8px; }

  section { padding: 70px 5%; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 36px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-modules { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trademark-banner { flex-direction: column; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

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

/* ══════════════════════════════════════════
   NAV LOGO SVG IMAGE
══════════════════════════════════════════ */
.nav-logo-img {
  width: auto;
  height: 48px;
  max-width: 130px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   DROPDOWN NAV
══════════════════════════════════════════ */
.has-dropdown { position: relative; }

/* ── Invisible bridge: prevents dropdown from closing when the mouse
   travels diagonally through the 12px gap between the trigger link
   and the dropdown panel. The ::after covers that gap so the :hover
   state on .has-dropdown stays active throughout the movement. ── */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px; /* must be >= the gap in .nav-dropdown top */
  background: transparent;
  pointer-events: auto;
}

.nav-chevron {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.65;
  transition: transform var(--transition);
}

.has-dropdown:hover .nav-chevron,
.has-dropdown.open  .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px); /* reduced from 12px; ::after covers the remaining gap */
  left: 50%;
  transform: translateX(-50%);
  min-width: 270px;
  background: rgba(5,13,31,0.97);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 24px 64px rgba(0,0,10,0.65), 0 0 0 1px rgba(45,127,249,0.07);
  backdrop-filter: blur(20px);
  z-index: 1010;
  animation: ddIn 0.18s ease;
}

@keyframes ddIn {
  from { opacity:0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

.has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: background var(--transition), color var(--transition);
  background: none !important;
}

.nav-dropdown a:hover {
  background: rgba(45,127,249,0.1) !important;
  color: var(--white);
}

.dd-icon { font-size: 1.05rem; flex-shrink: 0; width: 26px; text-align: center; }

.dd-label { display: flex; flex-direction: column; gap: 1px; }

.dd-label span {
  display: block;
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 400;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 5px 8px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 4px;
    animation: none;
    background: rgba(5,13,31,0.6);
  }
  .has-dropdown .nav-dropdown { display: none; }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(5,13,31,0.98);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    z-index: 999;
  }
  .nav-links.open .nav-cta { display: inline-flex; margin-top: 8px; }
  .nav-links.open .has-dropdown > a { pointer-events: auto; }
}







































































































































/* ══════════════════════════════════════════
   PAGE HERO (product sub-pages)
══════════════════════════════════════════ */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,0.2), rgba(124,58,237,0.15));
  pointer-events: none;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════
   FEATURE IMAGES (product sub-pages)
══════════════════════════════════════════ */
.feature-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow-blue);
}

.feature-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-img-wrap:hover img { transform: scale(1.03); }

.feature-img-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(5,13,31,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-badge-icon { font-size: 1.2rem; }
.img-badge-text { font-weight: 700; font-size: 0.84rem; color: var(--white); line-height: 1.2; }
.img-badge-sub  { font-size: 0.73rem; color: var(--text-muted); line-height: 1.3; }





/* ══════════════════════════════════════════
   DIRECTIONAL REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════════
   CAPABILITY GRID (product sub-pages)
══════════════════════════════════════════ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* ══════════════════════════════════════════
   TABLE WRAP (pricing sub-page)
══════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   GRADIENT TEXT UTILITY
══════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   ADDITIONAL KEYFRAMES
══════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: var(--glow-blue); }
  50%       { box-shadow: 0 0 60px rgba(45,127,249,0.5); }
}

/* Hero canvas overlay */
.hero { position: relative; overflow: hidden; }
.hero > #particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero > *:not(#particles-canvas):not(.hero-bg):not(.hero-grid):not(.hero-aurora):not(.hero-aurora-blob3):not(.hero-glow-center):not(.hero-orb):not(.hero-accent-line):not(.hero-scroll-hint) { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════
   STUNNING PRO ANIMATIONS — UPGRADE PACK
════════════════════════════════════════════════════ */

/* ── Page entrance ── */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body { animation: pageIn 0.55s ease both; }

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00D4CC, #5840CE, #FF2870);
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(88,64,206,0.5);
  transition: width 0.08s linear;
}

/* ── Cursor glow follower ── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,127,249,0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* ── Animated gradient on hero heading ── */
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #00C8FF, #2D7FF9, #7C3AED, #FF2870, #00C8FF);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Hero badge shimmer ── */
.hero-badge {
  background: linear-gradient(90deg, rgba(45,127,249,0.12), rgba(0,200,255,0.1), rgba(45,127,249,0.12));
  background-size: 200% 100%;
  animation: fadeDown 0.6s ease both, badgeShimmer 4s ease infinite 0.8s;
}
@keyframes badgeShimmer {
  0%, 100% { background-position: 0% 0%; }
  50%       { background-position: 100% 0%; }
}

/* ── Hero background animation ── */
.hero-bg {
  animation: heroBgShift 10s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  from {
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(26,86,219,0.25) 0%, transparent 70%),
      radial-gradient(ellipse 60% 50% at 20% 80%,  rgba(124,58,237,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 50%,  rgba(0,200,255,0.10) 0%, transparent 60%);
  }
  to {
    background:
      radial-gradient(ellipse 80% 60% at 30% 20%,  rgba(45,127,249,0.30) 0%, transparent 70%),
      radial-gradient(ellipse 60% 50% at 75% 75%,  rgba(124,58,237,0.20) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 60% 30%,  rgba(0,200,255,0.14) 0%, transparent 60%);
  }
}

/* ── Floating hero stats ── */
.hero-stats { perspective: 800px; }
.hero-stat { animation: float 3.5s ease-in-out infinite; }
.hero-stat:nth-child(1) { animation-delay: 0s; }
.hero-stat:nth-child(2) { animation-delay: 0.4s; }
.hero-stat:nth-child(3) { animation-delay: 0.8s; }
.hero-stat:nth-child(4) { animation-delay: 1.2s; }

/* ── Logo hover ── */
.nav-logo-img {
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: rotate(-12deg) scale(1.12);
  filter: drop-shadow(0 0 10px rgba(0,200,255,0.65));
}

/* ── Button shimmer ── */
.btn-primary { overflow: hidden; position: relative; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::after { left: 140%; }

/* ── Card shimmer ── */
.product-card { overflow: hidden; }
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.035), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.product-card:hover::after { left: 150%; }

/* ── Card 3D tilt ── */
.product-card, .kpi-card, .persona-card, .vision-module, .pillar-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Featured card glow pulse ── */
.product-card.featured {
  animation: featuredGlow 3.5s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,200,255,0.18), 0 0 40px rgba(45,127,249,0.1); }
  50%       { box-shadow: 0 0 40px rgba(0,200,255,0.38), 0 0 80px rgba(45,127,249,0.22); }
}

/* ── Section title underline reveal ── */
.section-title {
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  margin-top: 14px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1) 0.25s;
}
.section-title.visible::after { transform: scaleX(1); }

/* ── Blur-in on all reveals ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  filter: blur(3px);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  filter: blur(0px);
}

/* ── KPI number text glow on hover ── */
.kpi-card:hover .kpi-number {
  filter: drop-shadow(0 0 10px currentColor);
  transition: filter 0.3s ease;
}

/* ── Vision icon bounce on hover ── */
.vision-module-icon {
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, box-shadow 0.3s ease;
}
.vision-module:hover .vision-module-icon {
  transform: scale(1.18) rotate(10deg);
  background: rgba(124,58,237,0.28);
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

/* ── Product icon spin on hover ── */
.product-icon {
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.product-card:hover .product-icon {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 0 16px rgba(45,127,249,0.35);
}

/* ── Persona icon bounce ── */
.persona-icon {
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
}
.persona-card:hover .persona-icon {
  transform: scale(1.2) rotate(6deg);
}

/* ── Floating background orbs on alt sections ── */
.product-detail {
  overflow: hidden;
}
.product-detail::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,127,249,0.045) 0%, transparent 70%);
  bottom: -200px; right: -200px;
  pointer-events: none;
  animation: orbDrift 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, -40px) scale(1.12); }
}

/* ── CTA section animated gradient ── */
.cta-section {
  background-size: 200% 200%;
  animation: ctaBgShift 8s ease-in-out infinite alternate;
}
@keyframes ctaBgShift {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}

/* ── Social links pop on hover ── */
.social-link {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.social-link:hover { transform: translateY(-4px) scale(1.1); }

/* ── Footer links slide-in ── */
.footer-links a {
  position: relative;
  padding-left: 0;
  transition: color var(--transition), padding-left 0.25s ease;
}
.footer-links a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: opacity 0.2s ease, left 0.25s ease;
  font-size: 0.8rem;
  color: var(--cyan);
}
.footer-links a:hover {
  padding-left: 18px;
}
.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

/* ── Metric card value shimmer ── */
.metric-value {
  position: relative;
  display: inline-block;
}

/* ── Info panel top bar gradient animation ── */
.info-panel::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple-light), var(--cyan), var(--blue));
  background-size: 300% 100%;
  animation: borderSlide 4s linear infinite;
}
@keyframes borderSlide {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 0%; }
}

/* ── KPI card bottom bar slide ── */
.kpi-card::before {
  transition: width 0.5s ease;
  width: 0%;
}
.kpi-card.visible::before,
.kpi-card:hover::before {
  width: 100%;
}

/* ── Stagger reveal delay helpers ── */
.reveal-delay-05 { transition-delay: 0.05s !important; }
.reveal-delay-1  { transition-delay: 0.1s; }
.reveal-delay-2  { transition-delay: 0.2s; }
.reveal-delay-3  { transition-delay: 0.3s; }
.reveal-delay-4  { transition-delay: 0.4s; }
.reveal-delay-5  { transition-delay: 0.5s !important; }
.reveal-delay-6  { transition-delay: 0.6s !important; }
.reveal-delay-7  { transition-delay: 0.7s !important; }

/* ── Animated section separator ── */
section {
  position: relative;
}

/* ── Nav CTA pulse ── */
.nav-cta {
  animation: navCtaGlow 3s ease-in-out infinite;
}
@keyframes navCtaGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(45,127,249,0.35); }
  50%       { box-shadow: 0 0 35px rgba(45,127,249,0.6), 0 0 60px rgba(0,200,255,0.2); }
}

/* ══════════════════════════════════════════
   JAW-DROPPING HERO UPGRADE
══════════════════════════════════════════ */

/* ── Animated Aurora Background ── */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-aurora::before,
.hero-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: auroraFloat 12s ease-in-out infinite alternate;
}

.hero-aurora::before {
  width: 800px; height: 800px;
  top: -30%; left: -10%;
  background: radial-gradient(circle, rgba(45,127,249,0.3) 0%, rgba(124,58,237,0.15) 50%, transparent 70%);
  animation-name: auroraFloat1;
}

.hero-aurora::after {
  width: 600px; height: 600px;
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, rgba(0,200,255,0.25) 0%, rgba(45,127,249,0.1) 50%, transparent 70%);
  animation-name: auroraFloat2;
}

@keyframes auroraFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(15%, 10%) scale(1.15); }
  66%  { transform: translate(-5%, 20%) scale(0.95); }
  100% { transform: translate(10%, 5%) scale(1.1); }
}

@keyframes auroraFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-10%, -15%) scale(1.2); }
  66%  { transform: translate(10%, -5%) scale(0.9); }
  100% { transform: translate(-15%, -10%) scale(1.05); }
}

/* Third aurora blob */
.hero-aurora-blob3 {
  position: absolute;
  width: 500px; height: 500px;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, rgba(255,40,112,0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: auroraFloat3 15s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auroraFloat3 {
  0%   { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50%  { transform: translate(-30%, -40%) scale(1.3) rotate(30deg); }
  100% { transform: translate(-60%, -60%) scale(0.9) rotate(-20deg); }
}

/* ── Central glow pulse behind headline ── */
.hero-glow-center {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(45,127,249,0.2) 0%, rgba(0,200,255,0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: centerPulse 4s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ── Floating 3D orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 12px; height: 12px;
  top: 18%; left: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(0,200,255,0.9), rgba(0,200,255,0.2));
  box-shadow: 0 0 20px rgba(0,200,255,0.5), 0 0 60px rgba(0,200,255,0.2);
  animation: orbFloat1 7s ease-in-out infinite;
}

.hero-orb--2 {
  width: 8px; height: 8px;
  top: 30%; right: 15%;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,0.9), rgba(124,58,237,0.2));
  box-shadow: 0 0 15px rgba(124,58,237,0.5), 0 0 40px rgba(124,58,237,0.15);
  animation: orbFloat2 9s ease-in-out infinite;
}

.hero-orb--3 {
  width: 6px; height: 6px;
  bottom: 25%; left: 20%;
  background: radial-gradient(circle at 30% 30%, rgba(45,127,249,0.9), rgba(45,127,249,0.3));
  box-shadow: 0 0 12px rgba(45,127,249,0.5);
  animation: orbFloat3 11s ease-in-out infinite;
}

.hero-orb--4 {
  width: 10px; height: 10px;
  top: 60%; right: 22%;
  background: radial-gradient(circle at 30% 30%, rgba(0,200,255,0.8), rgba(45,127,249,0.2));
  box-shadow: 0 0 18px rgba(0,200,255,0.4), 0 0 50px rgba(0,200,255,0.15);
  animation: orbFloat4 8s ease-in-out infinite;
}

.hero-orb--5 {
  width: 5px; height: 5px;
  top: 15%; right: 35%;
  background: radial-gradient(circle at 30% 30%, rgba(255,40,112,0.7), rgba(255,40,112,0.15));
  box-shadow: 0 0 10px rgba(255,40,112,0.4);
  animation: orbFloat5 13s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, -60px); }
  75% { transform: translate(15px, -20px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-25px, 35px); }
  50% { transform: translate(15px, 50px); }
  75% { transform: translate(-35px, 20px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-15px, 25px); }
}
@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, -50px); }
  50% { transform: translate(25px, -30px); }
  75% { transform: translate(-10px, -45px); }
}
@keyframes orbFloat5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 30px); }
}

/* ── Glass stat cards ── */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.4s both;
  perspective: 800px;
}

.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 120px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: float 3.5s ease-in-out infinite;
}

.hero-stat:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 8px 32px rgba(0,200,255,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Upgraded gradient text animation ── */
.hero h1 .gradient-text {
  background: linear-gradient(
    90deg,
    #00C8FF 0%,
    #2D7FF9 20%,
    #7C3AED 40%,
    #FF2870 60%,
    #F97316 80%,
    #00C8FF 100%
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  text-shadow: none;
}

/* ── Hero grid upgraded with animated pulse ── */
.hero-grid {
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ── Horizontal accent lines ── */
.hero-accent-line {
  position: absolute;
  height: 1px;
  pointer-events: none;
  z-index: 0;
}
.hero-accent-line--1 {
  top: 30%;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(45,127,249,0.15) 30%, rgba(0,200,255,0.1) 50%, rgba(45,127,249,0.15) 70%, transparent);
  animation: lineSlide 6s ease-in-out infinite;
}
.hero-accent-line--2 {
  top: 65%;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.1) 40%, rgba(124,58,237,0.08) 60%, transparent);
  animation: lineSlide 8s ease-in-out infinite reverse;
}

@keyframes lineSlide {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50%       { opacity: 0.8; transform: scaleX(1); }
}

/* ══════════════════════════════════════════
   HERO SPLIT LAYOUT (respond.io style)
══════════════════════════════════════════ */

.hero-split {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: left !important;
  gap: 60px;
  padding: 100px 6% 80px !important;
  min-height: 100vh;
}

/* Left content */
.hero-content {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-split .hero-badge {
  margin-bottom: 24px;
}

.hero-split h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-align: left;
}

.hero-split .hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 0 32px 0;
  line-height: 1.7;
  text-align: left;
}

.hero-split .hero-actions {
  margin-bottom: 36px;
  justify-content: flex-start;
}

/* Trust bar */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.hero-trust-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-split .hero-stat {
  text-align: left;
  background: transparent;
  backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
  min-width: unset;
  animation: float 3.5s ease-in-out infinite;
}

.hero-split .hero-stat:hover {
  transform: none !important;
  border-color: transparent;
  box-shadow: none;
}

.hero-split .hero-stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-split .hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* ── Right: product mockup ── */
.hero-mockup {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-mockup-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(45,127,249,0.2) 0%, rgba(0,200,255,0.08) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: centerPulse 4s ease-in-out infinite;
}

.hero-mockup-card {
  background: rgba(8, 18, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45,127,249,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(45,127,249,0.12);
  position: relative;
  z-index: 1;
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(0.3deg); }
  66% { transform: translateY(-5px) rotate(-0.3deg); }
}

/* Topbar */
.hmk-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(45,127,249,0.1);
  background: rgba(5,13,31,0.6);
}

.hmk-dots {
  display: flex;
  gap: 6px;
}

.hmk-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.hmk-title {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8ab4e8;
  letter-spacing: 0.3px;
}

.hmk-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #10b981;
}

.hmk-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s ease infinite;
}

/* Metrics */
.hmk-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(45,127,249,0.08);
}

.hmk-metric {
  padding: 14px 12px;
  border-right: 1px solid rgba(45,127,249,0.08);
  text-align: center;
}

.hmk-metric:last-child { border-right: none; }

.hmk-metric-val {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.hmk-metric-label {
  font-size: 0.62rem;
  color: #8ab4e8;
  margin-bottom: 3px;
  white-space: nowrap;
}

.hmk-metric-trend {
  font-size: 0.62rem;
  font-weight: 600;
}

/* Chat */
.hmk-chat {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(45,127,249,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hmk-chat-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  font-weight: 600;
  color: #8ab4e8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hmk-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c8ff;
  animation: pulse 2s ease infinite;
}

.hmk-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.hmk-msg--out {
  flex-direction: row-reverse;
}

.hmk-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hmk-msg-bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.hmk-msg-bubble--in {
  background: rgba(45,127,249,0.12);
  border: 1px solid rgba(45,127,249,0.2);
  color: #e8f1ff;
  border-bottom-left-radius: 4px;
}

.hmk-msg-bubble--out {
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  color: #e8f1ff;
  border-bottom-right-radius: 4px;
}

.hmk-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}

.hmk-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c8ff;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.hmk-typing span:nth-child(2) { animation-delay: 0.2s; }
.hmk-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Waveform */
.hmk-waveform {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hmk-waveform-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  font-weight: 600;
  color: #8ab4e8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hmk-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}

.hmk-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(0,200,255,0.6), rgba(45,127,249,0.3));
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite alternate;
  min-height: 4px;
}

@keyframes waveAnim {
  0%   { height: 4px; opacity: 0.4; }
  100% { height: 32px; opacity: 1; }
}

/* Floating notification badges */
.hmk-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(8, 18, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e8f1ff;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 3;
}

.hmk-float--1 {
  top: -18px;
  right: 24px;
  animation: floatBadge1 5s ease-in-out infinite;
}

.hmk-float--2 {
  bottom: 40px;
  left: -30px;
  animation: floatBadge2 6s ease-in-out infinite;
}

.hmk-float--3 {
  bottom: -16px;
  right: 40px;
  animation: floatBadge3 7s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Mobile: stack vertically ── */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column !important;
    text-align: center !important;
    padding: 90px 5% 60px !important;
    gap: 48px;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
  }

  .hero-split h1,
  .hero-split .hero-sub {
    text-align: center !important;
  }

  .hero-split .hero-actions {
    justify-content: center;
  }

  .hero-trust-stats {
    justify-content: center;
  }

  .hero-trust-stars {
    justify-content: center;
  }

  .hero-mockup {
    max-width: 100%;
    width: 100%;
  }

  .hmk-float--2 { left: 0; }
}

/* ── Scroll-down indicator on hero ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}
.hero-scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ── Feature image glow on hover ── */
.feature-img-wrap {
  transition: box-shadow 0.4s ease;
}
.feature-img-wrap:hover {
  box-shadow: 0 0 50px rgba(45,127,249,0.35), 0 20px 60px rgba(0,0,30,0.5);
}

/* ── Comparison table row highlight ── */
.comparison-table tbody tr,
.specs-table tbody tr,
.pricing-table tbody tr {
  transition: background var(--transition), transform 0.2s ease;
}
.comparison-table tbody tr:hover,
.specs-table tbody tr:hover,
.pricing-table tbody tr:hover {
  transform: scaleX(1.002);
  background: rgba(45,127,249,0.07);
}

/* ── Section label animation ── */
.section-label {
  animation: none;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-label.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Tag hover ── */
.tag {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
  cursor: default;
}
.tag:hover {
  background: rgba(45,127,249,0.22);
  border-color: rgba(45,127,249,0.45);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Product card border glow on hover ── */
.product-card:hover {
  box-shadow: 0 0 0 1px rgba(45,127,249,0.3), 0 20px 60px rgba(0,0,50,0.4), var(--glow-blue);
}

/* ── Capability card icon bounce ── */
.capability-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.capability-card:hover .capability-icon {
  transform: scale(1.25) rotate(-5deg);
}

/* ── Safety item glow on hover ── */
.safety-item {
  transition: transform var(--transition), box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.safety-item:hover {
  box-shadow: -4px 0 20px rgba(0,200,255,0.2);
  border-left-color: var(--purple-light);
}

/* ── Chatbot toggle pulse ── */
.chatbot-toggle {
  animation: chatPulse 3.5s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(26,86,219,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(26,86,219,0.7), 0 0 0 6px rgba(26,86,219,0.1); }
}














/* ════════════════════════════════════════════════════
   SVG ICON SYSTEM — product cards & dropdown
════════════════════════════════════════════════════ */
.product-icon svg {
  width: 28px;
  height: 28px;
}
.icon-blue  svg { stroke: #2D7FF9; }
.icon-cyan  svg { stroke: #00C8FF; }
.icon-purple svg { stroke: #A855F7; }
.icon-green svg { stroke: #10B981; }
.icon-orange svg { stroke: #F59E0B; }
.icon-red   svg { stroke: #EF4444; }

/* Dropdown icon SVGs */
.dd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(45,127,249,0.1);
  flex-shrink: 0;
}
.dd-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--cyan);
  display: block;
}
.nav-dropdown a:hover .dd-icon {
  background: rgba(45,127,249,0.18);
}
.nav-dropdown a:hover .dd-icon svg { stroke: var(--white); }





/* ════════════════════════════════════════════════════
   PROFESSIONAL POLISH — typography, spacing, cards
════════════════════════════════════════════════════ */

/* Tighter, more refined heading tracking */
.hero h1 { letter-spacing: -2.5px; }
.section-title { letter-spacing: -1.5px; }
.product-name  { letter-spacing: -0.3px; }

/* Product card — elevated glass look */
.product-card {
  border-radius: 20px;
  padding: 36px 32px;
  background: linear-gradient(145deg, rgba(11,26,58,0.75) 0%, rgba(5,13,31,0.6) 100%);
  border: 1px solid rgba(45,127,249,0.13);
}
.product-card:hover {
  border-color: rgba(45,127,249,0.32);
  box-shadow: 0 24px 72px rgba(0,0,30,0.5), 0 0 0 1px rgba(45,127,249,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Section visual divider accent */
.section-title .accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Better product icon sizing + transition */
.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.product-card:hover .product-icon {
  transform: scale(1.15) rotate(-8deg);
}
.icon-blue   { background: rgba(45,127,249,0.14);  box-shadow: 0 0 0 1px rgba(45,127,249,0.18);  }
.icon-cyan   { background: rgba(0,200,255,0.12);   box-shadow: 0 0 0 1px rgba(0,200,255,0.18);   }
.icon-purple { background: rgba(168,85,247,0.14);  box-shadow: 0 0 0 1px rgba(168,85,247,0.18);  }
.icon-green  { background: rgba(16,185,129,0.14);  box-shadow: 0 0 0 1px rgba(16,185,129,0.18);  }
.icon-orange { background: rgba(245,158,11,0.14);  box-shadow: 0 0 0 1px rgba(245,158,11,0.18);  }
.icon-red    { background: rgba(239,68,68,0.14);   box-shadow: 0 0 0 1px rgba(239,68,68,0.18);   }

/* Refined tags */
.tag {
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 10px;
}

/* Nav logo size */
.nav-logo-img { height: 48px; width: auto; max-width: 130px; }

/* Better hero badge */
.hero-badge {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 7px 20px;
}

/* Refined section spacing */
section { padding: 110px 6%; }
.hero   { padding: 80px 6% 60px; }

/* Better info-panel */
.info-panel {
  border-radius: 20px;
  padding: 36px 32px;
}

/* Comparison table refinements */
.comparison-table th { font-size: 0.78rem; letter-spacing: 2px; }






































































































































































































































/* ════════════════════════════════════════════════════
   DATA TABLE SYSTEM — comparison & technical specs
════════════════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(45,127,249,0.14);
  background: rgba(11,26,58,0.55);
  margin-top: 8px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.data-table thead tr {
  background: rgba(45,127,249,0.08);
}
.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.data-table th.hl {
  color: var(--cyan);
  background: rgba(0,200,255,0.06);
}
.data-table td {
  padding: 13px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
  line-height: 1.55;
}
.data-table td:first-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.88rem;
}
.data-table td.hl {
  background: rgba(0,200,255,0.03);
  color: var(--text);
  border-left: 2px solid rgba(0,200,255,0.16);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(45,127,249,0.05); }
.badge-good {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #10B981;
  font-weight: 600;
  font-size: 0.87rem;
}














/* ════════════════════════════════════════════════════
   INTEGRATION MARQUEE — companies / tech stack
════════════════════════════════════════════════════ */
.marquee-section {
  padding: 44px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.marquee-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  opacity: 0.65;
}
.marquee-outer {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: -0.2px;
  opacity: 0.45;
  transition: opacity 0.3s ease, color 0.3s ease;
  border-right: 1px solid var(--border);
  cursor: default;
  height: 44px;
}
.marquee-logo:last-child { border-right: none; }
.marquee-logo:hover { opacity: 0.85; color: var(--cyan); }
.marquee-logo svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: none;
}










/* ════════════════════════════════════════════════════
   PERSONA / PILLAR / SAFETY SVG ICON SYSTEM
════════════════════════════════════════════════════ */
.persona-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
  stroke-width: 1.8;
  display: block;
}
.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45,127,249,0.1);
  border: 1px solid rgba(45,127,249,0.18);
  margin-bottom: 20px;
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-light);
  stroke-width: 1.8;
  display: block;
}
.safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.18);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.safety-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--cyan);
  stroke-width: 2;
  display: block;
}
.safety-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}









.img-badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
  display: block;
}
.capability-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
  stroke-width: 1.8;
  display: block;
}



/* ════════════════════════════════════════════════════
   STUNNING VISUAL UPGRADE — depth, motion, polish
════════════════════════════════════════════════════ */

/* ── Subtle grain texture for depth ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  z-index: 10000;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── Gradient section dividers ── */
section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,127,249,0.2), rgba(0,200,255,0.15), rgba(45,127,249,0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── Animated accent text across the site ── */
.section-title .accent {
  background: linear-gradient(90deg, #f0147a 0%, #a020f0 40%, #2d7ff9 70%, #00c8ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentPulse 5s ease-in-out infinite;
}
@keyframes accentPulse {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 60% 50%; }
}

/* ── Glassmorphism card upgrade ── */
.product-card,
.capability-card,
.persona-card,
.pillar-card,
.vision-module,
.kpi-card {
  /* backdrop-filter removed — saves 4 compositor layers */
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.5s cubic-bezier(0.23,1,0.32,1),
              border-color 0.4s ease;
}

/* ── Dramatic card hover with glow ── */
.product-card:hover,
.capability-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 80px rgba(0,0,30,0.45),
    0 0 0 1px rgba(45,127,249,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border-color: rgba(0,200,255,0.25);
}
.persona-card:hover,
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,30,0.4), 0 0 0 1px rgba(45,127,249,0.15);
  border-color: rgba(0,200,255,0.2);
}
.kpi-card:hover {
  transform: translateY(-6px);
}

/* ── KPI cards with colored glow on hover ── */
.kpi-card.green:hover  { box-shadow: 0 24px 60px rgba(16,185,129,0.2), 0 0 50px rgba(16,185,129,0.08); }
.kpi-card.blue:hover   { box-shadow: 0 24px 60px rgba(45,127,249,0.2), 0 0 50px rgba(45,127,249,0.08); }
.kpi-card.cyan:hover   { box-shadow: 0 24px 60px rgba(0,200,255,0.2), 0 0 50px rgba(0,200,255,0.08); }
.kpi-card.orange:hover { box-shadow: 0 24px 60px rgba(245,158,11,0.2), 0 0 50px rgba(245,158,11,0.08); }
.kpi-card.purple:hover { box-shadow: 0 24px 60px rgba(168,85,247,0.2), 0 0 50px rgba(168,85,247,0.08); }

/* ── Enhanced image hover with zoom + glow ── */
.feature-img-wrap {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1), box-shadow 0.55s ease;
}
.feature-img-wrap img {
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s ease;
  transform: translateY(var(--parallax-y, 0px));
}
.feature-img-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,30,0.5), 0 0 60px rgba(45,127,249,0.15);
}
.feature-img-wrap:hover img {
  transform: translateY(var(--parallax-y, 0px)) scale(1.08);
  filter: brightness(1.1) saturate(1.12);
}
.feature-img-glow {
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.feature-img-wrap:hover .feature-img-glow {
  opacity: 0.85;
  transform: scale(1.15);
}

/* ── Smoother, more dramatic reveal transitions ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(3px);
  transition: opacity 0.75s cubic-bezier(0.23,1,0.32,1),
              transform 0.75s cubic-bezier(0.23,1,0.32,1),
              filter 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(3px);
  transition: opacity 0.85s cubic-bezier(0.23,1,0.32,1),
              transform 0.85s cubic-bezier(0.23,1,0.32,1),
              filter 0.85s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); filter: blur(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(3px);
  transition: opacity 0.85s cubic-bezier(0.23,1,0.32,1),
              transform 0.85s cubic-bezier(0.23,1,0.32,1),
              filter 0.85s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); filter: blur(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  filter: blur(3px);
  transition: opacity 0.65s cubic-bezier(0.23,1,0.32,1),
              transform 0.65s cubic-bezier(0.23,1,0.32,1),
              filter 0.65s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); filter: blur(0); }

/* ── Buttons with triple-glow hover ── */
.btn-primary {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.4s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(45,127,249,0.45),
    0 0 60px rgba(45,127,249,0.2),
    0 0 100px rgba(45,127,249,0.08),
    0 12px 40px rgba(0,0,30,0.3);
}
.btn-secondary {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.4s ease,
              background 0.3s ease,
              border-color 0.3s ease;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(45,127,249,0.12), 0 12px 40px rgba(0,0,30,0.15);
}

/* ── Magnetic button cursor effect ── */
.btn-magnetic {
  transition: transform 0.15s ease;
}

/* ── Enhanced CTA section with animated gradient orbs ── */
.cta-section {
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,127,249,0.12) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
  animation: ctaOrb1 10s ease-in-out infinite alternate;
}
@keyframes ctaOrb1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

/* ── Hero floating orb ── */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  top: 5%; right: -20%;
  pointer-events: none;
  animation: heroOrb 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroOrb {
  from { transform: translate(0, 0) scale(1); opacity: 0.5; }
  to   { transform: translate(-80px, 60px) scale(1.25); opacity: 0.9; }
}

/* ── Page hero content reveal ── */
.page-hero-content {
  animation: pageHeroIn 0.9s cubic-bezier(0.23,1,0.32,1) 0.2s both;
}
@keyframes pageHeroIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ── Metric card hover lift ── */
.metric-card {
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,40,0.3);
  border-color: rgba(0,200,255,0.22);
}

/* ── Safety item hover lift ── */
.safety-item:hover {
  transform: translateY(-3px);
  box-shadow: -6px 0 30px rgba(0,200,255,0.12), 0 16px 48px rgba(0,0,30,0.15);
}

/* ── Info panel hover ── */
.info-panel {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.info-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,30,0.2);
  border-color: rgba(0,200,255,0.18);
}

/* ── Enhanced persona number glow ── */
.persona-number {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.persona-card:hover .persona-number {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0,200,255,0.35);
}

/* ── Marquee logo hover lift ── */
.marquee-logo {
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.marquee-logo:hover {
  opacity: 0.9;
  color: var(--cyan);
  transform: scale(1.1);
}

/* ── Table wrap glow on hover ── */
.table-wrap:hover, .comparison-wrapper:hover {
  box-shadow: 0 20px 60px rgba(0,0,30,0.25), 0 0 40px rgba(45,127,249,0.06);
}

/* ── Trademark banner hover ── */
.trademark-banner {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.trademark-banner:hover {
  border-color: rgba(0,200,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,30,0.15);
  transform: translateY(-2px);
}

/* ── Hero word reveal animation ── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) rotateX(25deg);
  animation: wordPopIn 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
  transform-origin: center bottom;
}
.gradient-text .word-reveal {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes wordPopIn {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ── Parallax image container ── */
.parallax-img-wrap img {
  will-change: transform;
}



































/* ══════════════════════════════════════════════════════
   PREMIUM VISUAL UPGRADE — PHASE 2
══════════════════════════════════════════════════════ */

/* ── Animated rotating gradient border on cards ── */
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateGradient {
  to { --gradient-angle: 360deg; }
}
.product-card:hover,
.capability-card:hover,
.persona-card:hover,
.pillar-card:hover {
  border-color: transparent;
  border-image: linear-gradient(
    var(--gradient-angle, 0deg),
    rgba(45,127,249,0.5),
    rgba(0,200,255,0.5),
    rgba(124,58,237,0.4),
    rgba(45,127,249,0.5)
  ) 1;
  animation: rotateGradient 3s linear infinite;
}
/* Fix border-image + border-radius conflict — use pseudo-element instead */
.product-card:hover,
.capability-card:hover,
.persona-card:hover,
.pillar-card:hover {
  border-image: none;
  border-color: transparent;
}
.product-card::after,
.capability-card::after,
.persona-card::after,
.pillar-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--gradient-angle, 0deg),
    rgba(45,127,249,0.5),
    rgba(0,200,255,0.5),
    rgba(124,58,237,0.4),
    rgba(16,185,129,0.3),
    rgba(45,127,249,0.5)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover::after,
.capability-card:hover::after,
.persona-card:hover::after,
.pillar-card:hover::after {
  opacity: 1;
  animation: rotateGradient 3s linear infinite;
}
/* Exempt the featured card's FLAGSHIP badge */
.product-card.featured:hover::after { z-index: 0; }

/* ── Button shine sweep effect ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}
.btn-primary:hover::after {
  animation: btnShineSweep 0.75s ease forwards;
}
@keyframes btnShineSweep {
  from { left: -75%; }
  to   { left: 125%; }
}

/* ── Nav active link animated underline ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  border-radius: 1px;
  transition: left 0.35s cubic-bezier(0.23,1,0.32,1),
              right 0.35s cubic-bezier(0.23,1,0.32,1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 14px;
  right: 14px;
}

/* ── Enhanced scroll progress bar ── */
#scroll-progress {
  background: linear-gradient(90deg,
    var(--blue-light),
    var(--cyan),
    var(--purple-light),
    var(--blue-light)
  ) !important;
  background-size: 200% 100% !important;
  animation: scrollProgressShimmer 3s linear infinite !important;
  box-shadow: 0 0 12px rgba(0,200,255,0.4), 0 0 4px rgba(0,200,255,0.6) !important;
}
@keyframes scrollProgressShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ── Hero subtitle typing cursor — removed to avoid layout issues with centered text ── */

/* ── Staggered card entrance delays ── */
.product-card:nth-child(1) { transition-delay: 0s; }
.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }
.product-card:nth-child(4) { transition-delay: 0.24s; }
.product-card:nth-child(5) { transition-delay: 0.32s; }
.product-card:nth-child(6) { transition-delay: 0.4s; }

.capability-card:nth-child(1) { transition-delay: 0s; }
.capability-card:nth-child(2) { transition-delay: 0.06s; }
.capability-card:nth-child(3) { transition-delay: 0.12s; }
.capability-card:nth-child(4) { transition-delay: 0.18s; }
.capability-card:nth-child(5) { transition-delay: 0.24s; }
.capability-card:nth-child(6) { transition-delay: 0.3s; }

/* ── Gradient text shimmer animation ── */
@keyframes gradientShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero h1 .gradient-text {
  background-size: 200% 200%;
  animation: gradientShimmer 4s ease infinite;
}
/* word-reveal inside gradient-text: shimmer via background-size only, animation handled by wordPopIn */
.gradient-text .word-reveal {
  background-size: 200% 200%;
}

/* ── Glowing section divider dots ── */
section + section::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,200,255,0.6), 0 0 30px rgba(0,200,255,0.3);
  transform: translateX(-50%);
  z-index: 2;
}

/* ── KPI number count-up animation ── */
.kpi-number, .hero-stat-number {
  transition: transform 0.35s ease, color 0.3s ease;
}
.kpi-card:hover .kpi-number {
  transform: scale(1.12);
}

/* ── Feature list item stagger on reveal ── */
.feature-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.feature-list li.visible,
.visible .feature-list li,
.reveal.visible + .feature-list li,
.feature-list.visible li {
  opacity: 1;
  transform: translateX(0);
}
.visible .feature-list li:nth-child(1) { transition-delay: 0.05s; }
.visible .feature-list li:nth-child(2) { transition-delay: 0.1s; }
.visible .feature-list li:nth-child(3) { transition-delay: 0.12s; }
.visible .feature-list li:nth-child(4) { transition-delay: 0.15s; }
.visible .feature-list li:nth-child(5) { transition-delay: 0.18s; }
.visible .feature-list li:nth-child(6) { transition-delay: 0.2s; }

/* ── Enhanced CTA section ── */
.cta-section {
  background: linear-gradient(180deg,
    var(--navy-mid) 0%,
    rgba(26,86,219,0.15) 40%,
    rgba(124,58,237,0.1) 70%,
    var(--navy-mid) 100%
  ) !important;
}
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -1.5px;
}

/* ── Floating ambient particles (pure CSS) ── */
.hero::before {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  top: 20%; left: 15%;
  box-shadow:
    0 0 6px rgba(0,200,255,0.6),
    60vw 15vh 0 rgba(45,127,249,0.4),
    25vw 70vh 0 rgba(0,200,255,0.3),
    80vw 30vh 0 rgba(124,58,237,0.35),
    45vw 55vh 0 rgba(45,127,249,0.25),
    10vw 85vh 0 rgba(0,200,255,0.3),
    70vw 75vh 0 rgba(124,58,237,0.3),
    35vw 20vh 0 rgba(45,127,249,0.2);
  animation: floatParticles 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes floatParticles {
  0%   { transform: translateY(0) translateX(0); opacity: 0.6; }
  25%  { transform: translateY(-15px) translateX(10px); opacity: 0.9; }
  50%  { transform: translateY(-5px) translateX(-8px); opacity: 0.5; }
  75%  { transform: translateY(-20px) translateX(15px); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0); opacity: 0.6; }
}

/* ── Image badge pulse ring ── */
.img-badge {
  position: relative;
}
.img-badge::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(0,200,255,0.25);
  animation: badgePulseRing 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes badgePulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.06); opacity: 0; }
}

/* ── Table header gradient animation ── */
.pricing-table thead tr,
.comparison-table thead tr,
.specs-table thead tr {
  background-size: 200% 100%;
  animation: tableHeaderShift 6s ease infinite;
}
@keyframes tableHeaderShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Footer link hover glow ── */
.footer a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer a:hover {
  text-shadow: 0 0 12px rgba(0,200,255,0.3);
}

/* ── Footer social icon pulse ── */
.footer-social a {
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0,200,255,0.2);
}

/* ── Trademark banner shimmer ── */
.trademark-banner {
  position: relative;
  overflow: hidden;
}
.trademark-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.04), transparent);
  animation: trademarkShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes trademarkShimmer {
  0%, 100% { left: -100%; }
  50% { left: 140%; }
}

/* ── Capability icon glow on hover ── */
.capability-icon svg {
  transition: filter 0.35s ease, transform 0.35s ease;
}
.capability-card:hover .capability-icon svg {
  filter: drop-shadow(0 0 8px rgba(0,200,255,0.5));
  transform: scale(1.15);
}

/* ── Product icon bounce on card hover ── */
.product-icon svg {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover .product-icon svg {
  transform: translateY(-3px) scale(1.1);
}

/* ── Vision module icon spin on hover ── */
.vision-module:hover .vision-module-icon svg {
  animation: visionIconSpin 0.6s cubic-bezier(0.23,1,0.32,1);
}
@keyframes visionIconSpin {
  0%   { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}

/* ── Page hero image overlay gradient ── */
.page-hero-img {
  transition: transform 0.8s ease, filter 0.5s ease;
}
.page-hero:hover .page-hero-img {
  filter: brightness(1.08) saturate(1.1);
}

/* ── Smooth page load animation ── */
@keyframes pageLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: pageLoad 0.5s ease;
}

/* ── Enhanced marquee with gradient fade ── */
.marquee-track {
  transition: animation-duration 0.3s ease;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Tag hover with glow ── */
.tag {
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.tag:hover {
  background: rgba(0,200,255,0.15);
  border-color: rgba(0,200,255,0.4);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(0,200,255,0.15);
  transform: translateY(-1px);
}

/* ── Status dot pulse ── */
.status-dot {
  animation: statusPulse 2s ease infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; }
  50% { box-shadow: 0 0 0 4px transparent; }
}

/* ── Enhanced navbar scroll shadow ── */
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 1px 0 rgba(45,127,249,0.1);
}

/* ── Section title underline animation ── */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.23,1,0.32,1);
}
.section-title.visible::after,
.reveal.visible .section-title::after,
.section-title:not(.reveal)::after {
  width: 60px;
}

/* ── Hero badge float ── */
.hero-badge {
  animation: fadeDown 0.6s ease both, heroBadgeFloat 4s ease-in-out infinite 1s;
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Persona card left border glow ── */
.persona-card {
  border-left: 3px solid rgba(0,200,255,0.3);
}
.persona-card:hover {
  border-left-color: var(--cyan);
  box-shadow: -4px 0 20px rgba(0,200,255,0.15), 0 20px 50px rgba(0,0,30,0.3);
}


























/* ══════════════════════════════════════════════════════════════
   STUNNING NAVBAR REDESIGN v3
   Floating glass pill · gradient accent lines · shimmer CTA
   All rules at end of file → win the cascade cleanly.
══════════════════════════════════════════════════════════════ */

/* ── Floating pill ─────────────────────────────────────── */
.navbar {
  top: 14px;
  left: 18px;
  right: 18px;
  border-radius: 20px;
  height: 62px;
  padding: 0 22px;
  background: rgba(5, 12, 30, 0.70);
  border: 1px solid rgba(45, 127, 249, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 10px 40px rgba(5, 13, 31, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 200, 255, 0.06);
  overflow: visible;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Top highlight line */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(0, 200, 255, 0.40) 50%,
    rgba(255, 255, 255, 0.18) 65%,
    transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

/* Bottom glow accent */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(45, 127, 249, 0.60) 30%,
    rgba(0, 200, 255, 0.85) 50%,
    rgba(45, 127, 249, 0.60) 70%,
    transparent 100%);
  border-radius: 0 0 20px 20px;
  opacity: 0.65;
  pointer-events: none;
}

.navbar.scrolled {
  background: rgba(5, 12, 30, 0.92);
  border-color: rgba(45, 127, 249, 0.28);
  box-shadow:
    0 12px 48px rgba(5, 13, 31, 0.80),
    0 0 0 1px rgba(0, 200, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── Hero / page-hero extra top padding for floating gap ── */
.hero {
  padding-top: 140px;
}
.page-hero {
  padding-top: 168px;
}

/* ── Mobile open-menu top offset ────────────────────────── */
@media (max-width: 1024px) {
  .nav-links.open {
    top: 62px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 48px rgba(5, 13, 31, 0.70);
  }
}
@media (max-width: 768px) {
  .nav-links.open {
    top: 62px;
    border-radius: 0 0 18px 18px;
  }
}

/* ── Logo ──────────────────────────────────────────────── */
.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 130px;
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.28)) drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 18px rgba(0, 200, 255, 0.65)) drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transform: scale(1.06);
}

/* ── Nav links ─────────────────────────────────────────── */
.nav-links a {
  color: rgba(170, 195, 230, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 9px;
  letter-spacing: 0.01em;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.nav-links a:hover {
  color: #e8f1ff;
  background: rgba(45, 127, 249, 0.12);
  box-shadow: inset 0 -1px 0 rgba(0, 200, 255, 0.35);
}

/* ── CTA button — gradient shimmer ─────────────────────── */
.nav-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #1a56db 0%, #2d7ff9 50%, #00c8ff 100%);
  background-size: 200% 100%;
  border: 1px solid rgba(0, 200, 255, 0.35) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 20px rgba(45, 127, 249, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  animation: navCtaBgShift 5s ease infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

@keyframes navCtaBgShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-20deg);
  animation: navCtaShine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes navCtaShine {
  0%   { left: -80%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 6px 28px rgba(0, 200, 255, 0.45),
    0 2px 8px rgba(45, 127, 249, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE UTILITY CLASSES
══════════════════════════════════════════ */

/* 2-column grid → single column on mobile */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* 3-column grid → single column on mobile (contact tabs etc.) */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Horizontally scrollable table wrapper */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

/* ══════════════════════════════════════════
   MOBILE — COMPREHENSIVE BREAKPOINTS
══════════════════════════════════════════ */

@media (max-width: 900px) {
  /* ── Layout grids ── */
  .grid-2col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .grid-3col {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── Hero sections ── */
  .page-hero {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
  }
  .hero {
    padding-top: 100px !important;
  }

  /* ── Section spacing ── */
  section { padding-left: 5% !important; padding-right: 5% !important; }

  /* ── KPI grid ── */
  .kpi-grid { grid-template-columns: 1fr !important; }

  /* ── Products grid ── */
  .products-grid { grid-template-columns: 1fr 1fr; }

  /* ── Suite / vision / pillars ── */
  .vision-modules,
  .pillars-grid { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trademark-banner { flex-direction: column; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* ── Detail layout (about / product pages) ── */
  .detail-layout { grid-template-columns: 1fr !important; gap: 40px; }
  .detail-layout.reverse { direction: ltr; }
}

@media (max-width: 640px) {
  /* ── Smallest phones ── */
  .grid-2col { gap: 20px !important; }
  .grid-3col { gap: 10px !important; }

  .products-grid { grid-template-columns: 1fr !important; }
  .kpi-grid     { grid-template-columns: 1fr !important; }
  .metrics-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── Hero text ── */
  .hero h1 { letter-spacing: -0.5px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  /* ── Hero actions ── */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }

  /* ── Section titles ── */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }

  /* ── Reduce hero orb sizes (decorative) ── */
  .hero-bg { display: none; }
}

/* ══════════════════════════════════════════
   PRODUCT PAGE HERO — MOBILE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-hero-inner {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }
}




































































































/* ── RTL compatibility ────────────────────────────────── */
[dir='rtl'] .navbar {
  flex-direction: row;
}













/* RTL: flip the left inset border to right on hover */
[dir="rtl"] .kv-product-row:hover {
  box-shadow: inset -3px 0 0 var(--accent-color, #2d7ff9) !important;
}

/* RTL row content direction */
[dir="rtl"] .kv-product-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .kv-product-row > div:last-child {
  align-items: flex-start;
}

/* Scrollbar styling for webkit in the card */
.kv-scroll-inner::-webkit-scrollbar {
  width: 4px;
}
.kv-scroll-inner::-webkit-scrollbar-track {
  background: transparent;
}
.kv-scroll-inner::-webkit-scrollbar-thumb {
  background: rgba(45,127,249,0.30);
  border-radius: 4px;
}


/* --- CapabilityCards --------------------------------------------------- */

.kv-cap-card {
  will-change: transform;
  transition: transform 0.32s cubic-bezier(0.34,1.5,0.64,1);
  contain: layout style;
}
.kv-cap-card:hover { transform: translateY(-7px); }

.kv-icon-glow { animation: kvIconPulse 3s ease-in-out infinite; }

@keyframes kvIconPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1;   }
}







[dir=rtl] .kv-icon-glow                  { right: auto; left: -10px; }
[dir=rtl] .kv-cap-card > div > .kv-corner-glow { right: auto; left: -40px; }


/* ─── GlowOrbs background (replaces Three.js shader) ──────────────────────── */
.kv-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  /* paint once, compositor moves it */
}
.kv-orb-1 {
  width: 700px; height: 700px;
  top: -180px; left: -150px;
  background: radial-gradient(ellipse, rgba(45,127,249,0.16) 0%, transparent 62%);
  animation: kvOrb1 22s ease-in-out infinite;
}
.kv-orb-2 {
  width: 550px; height: 550px;
  top: 25%; right: -120px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.11) 0%, transparent 62%);
  animation: kvOrb2 28s ease-in-out infinite;
}
.kv-orb-3 {
  width: 480px; height: 480px;
  bottom: -60px; left: 38%;
  background: radial-gradient(ellipse, rgba(168,85,247,0.10) 0%, transparent 62%);
  animation: kvOrb3 20s ease-in-out infinite;
}
@keyframes kvOrb1 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(45px, -35px); }
  66%       { transform: translate(-25px, 20px); }
}
@keyframes kvOrb2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-55px, 35px); }
}
@keyframes kvOrb3 {
  0%, 100% { transform: translate(0, 0); }
  40%       { transform: translate(32px, -28px); }
  80%       { transform: translate(-18px, 16px); }
}


/* ─── Radial Orbital Timeline keyframes ──────────────────────────────────── */
@keyframes kvPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes kvPing {
  75%, 100% { transform: scale(2); opacity: 0; }
}


/* ─── CapabilityCards — focus/blur hover effect ───────────────────────────── */

/* When ANY card in the grid is hovered, all OTHER cards blur and dim */
.kv-cap-grid:has(.kv-cap-card:hover) .kv-cap-card:not(:hover) {
  filter: blur(2.5px);
  opacity: 0.40;
  transform: scale(0.97);
}

/* The hovered card pops forward */
.kv-cap-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  z-index: 10;
  position: relative;
}

/* Smooth transition on all cards — both enter and exit */
.kv-cap-grid .kv-cap-card {
  transition:
    transform   0.35s cubic-bezier(0.34,1.5,0.64,1),
    filter      0.28s ease,
    opacity     0.28s ease !important;
}

/* ─── KPI / Numbers That Matter ────────────────────────────────────────────── */

.kpi-section {
  position: relative;
  padding: 100px 5% 120px;
  overflow: hidden;
}

/* Ambient glow backdrop */
.kpi-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(45,127,249,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 40%, rgba(0,200,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* 3-column card grid */
/* ── KPI "Numbers That Matter" — elegant dashboard cards ── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 64px auto 0;
}

.kpi-card {
  position: relative;
  border-radius: 20px;
  padding: 28px 24px 24px 28px;
  background: rgba(11,26,58,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45,127,249,0.1);
  border-left: 3px solid rgba(45,127,249,0.35);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kpi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45,127,249,0.22);
  border-left-color: rgba(0,200,255,0.55);
  box-shadow: 0 24px 60px rgba(5,13,31,0.5), 0 0 0 1px rgba(45,127,249,0.15);
}

/* Subtle shimmer highlight on card face */
.kpi-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45,127,249,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Left accent strip — same gradient for all (brand) */
.kpi-card-line {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(180deg, #2d7ff9 0%, #00c8ff 100%);
}

/* Header: icon + value side by side */
.kpi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* Icon badge */
.kpi-icon-ring {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,127,249,0.12);
  border: 1px solid rgba(45,127,249,0.25);
  color: #00c8ff;
  position: relative;
  z-index: 1;
}
.kpi-icon-ring svg { width: 20px; height: 20px; }

/* Number — refined, not massive */
.kpi-value {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #e8f1ff 0%, #8ab4e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Label */
.kpi-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(45,127,249,0.75);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* Description text */
.kpi-desc {
  font-size: 0.83rem;
  color: rgba(138,180,232,0.7);
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

/* Animated fill bar */
.kpi-progress {
  position: relative;
  height: 3px;
  background: rgba(45,127,249,0.1);
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
}
.kpi-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--kpi-pct, 75%);
  background: linear-gradient(90deg, #2d7ff9, #00c8ff);
  border-radius: 3px;
  transform-origin: left;
  animation: kpiBarIn 1.4s cubic-bezier(0.23,1,0.32,1) both;
}
@keyframes kpiBarIn {
  from { width: 0; opacity: 0; }
  to   { width: var(--kpi-pct, 75%); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .kpi-grid { grid-template-columns: 1fr; gap: 14px; }
  .kpi-card  { padding: 24px 20px 20px 24px; }
}
