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

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


  --container-y-padding: 40px;
  --hero-container-y-padding: 20px;
}

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

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

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

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

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

/* Home page: a touch wider so the gallery and section grids breathe more on large screens.
   These sections (.hero with hero-matrix, .llm-section, .benefits-section, .proofs-section,
   .home-cta-section) are home-only, so the override is scoped automatically. */
.hero:has(.hero-matrix) > .container,
.llm-section > .container,
.benefits-section > .container,
.proofs-section > .container,
.home-cta-section > .container {
  max-width: 1440px;
}

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

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

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

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

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

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(11, 9, 20, 0.85);
  border-bottom-color: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

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

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

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

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

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

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

.nav-dropdown { position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Home hero: ASCII matrix backdrop + stronger purple glow */
.hero:has(.hero-matrix) { isolation: isolate; }
.hero:has(.hero-matrix)::before {
  background: radial-gradient(ellipse 80% 60% at 50% 22%, rgba(139, 92, 246, 0.14) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero:has(.hero-matrix) > .container { position: relative; z-index: 2; }

.hero-matrix {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 40px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: rgba(168, 85, 247, 0.18);
  white-space: pre;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 10%, transparent 70%);
}
.hero-matrix .dim { color: rgba(168, 85, 247, 0.08); }
.hero-matrix .bright { color: rgba(216, 180, 254, 0.4); }

.hero-sm {
    padding: var(--hero-container-y-padding) 0 var(--hero-container-y-padding);
}

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

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

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

.hero-matrix ~ .container .hero-subtitle {
  color: #a4aebd;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.6);
}

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

/* Home hero: a bit more breathing room around title + subtitle */
.hero:has(.hero-matrix) { padding-top: 128px; }
.hero:has(.hero-matrix) h1 {
  line-height: 1.2;
  margin-bottom: 28px;
}
.hero:has(.hero-matrix) h1 br { line-height: 2; }
.hero:has(.hero-matrix) .hero-subtitle {
  margin: 0 auto 40px;
  line-height: 1.85;
}
.hero:has(.hero-matrix) .hero-actions { margin-bottom: 0; }

/* Compact hero CTA pair — sits between subtitle and product gallery */
.hero-actions-compact {
  gap: 10px;
  margin-bottom: 40px;
}
.hero-actions-compact .btn {
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 10px;
  gap: 8px;
}
.hero:has(.hero-matrix) .hero-actions-compact { margin: 0 auto 40px; }

/* In-hero "Trusted By" strip — solid band that masks the ASCII matrix behind it */
.hero-trusted {
  margin: clamp(28px, 5vh, 56px) 0 clamp(24px, 4vh, 48px);
  padding: 24px 0 8px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-trusted::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(180deg, rgba(11, 9, 20, 0) 0%, rgba(11, 9, 20, 0.9) 18%, rgba(11, 9, 20, 0.95) 50%, rgba(11, 9, 20, 0.9) 82%, rgba(11, 9, 20, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-trusted > * { position: relative; }
.hero-trusted .trusted-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin: 0 0 22px;
}
.hero-trusted .trusted-label a {
  color: var(--violet-400);
  margin-left: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color var(--transition);
}
.hero-trusted .trusted-label a:hover { color: var(--violet-300); }
.hero-trusted .trusted-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 44px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.hero-trusted .trusted-partners:hover { opacity: 0.9; }
.hero-trusted .partner-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.hero-trusted .partner-logo:hover { opacity: 1; }

@media (max-width: 768px) {
  .hero-actions { margin-bottom: 72px; }
  .hero:has(.hero-matrix) { padding-top: 96px; }
  .hero:has(.hero-matrix) h1 { margin-bottom: 20px; line-height: 1.2; }
  .hero:has(.hero-matrix) .hero-subtitle { margin-bottom: 28px; line-height: 1.8; }
  .hero-trusted { margin: 24px 0 40px; padding: 24px 0; }
  .hero-trusted .trusted-partners { gap: 14px 28px; }
  .hero-trusted .partner-logo { height: 18px; }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Product Gallery (hero) ===== */
.product-gallery {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
}

/* Top tab-pill switcher (replaces bottom dots) */
.product-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 14px;
  padding: 5px;
  background: rgba(11, 9, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
}
.product-gallery-tab {
  appearance: none;
  -webkit-appearance: none;
  width: auto;
  height: auto;
  padding: 7px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product-gallery-tab:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}
.product-gallery-tab.is-active {
  color: var(--violet-300);
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.4);
}
.product-gallery-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.35);
}

.product-gallery-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 15, 35, 0.75) 0%, rgba(11, 9, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.04) inset,
    0 16px 48px rgba(139, 92, 246, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-gallery-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.product-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
  pointer-events: none;
}
.product-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s;
  pointer-events: auto;
}

.product-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  user-select: none;
  -webkit-user-drag: none;
  image-rendering: -webkit-optimize-contrast;
}

/* Caption pinned to bottom-left, gradient rises from bottom */
.product-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  cursor: default;
  user-select: none;
  bottom: 0;
  padding: 64px 24px 18px;
  background:
    linear-gradient(0deg,
      rgba(6, 3, 16, 0.96) 0%,
      rgba(6, 3, 16, 0.92) 45%,
      rgba(6, 3, 16, 0.7) 75%,
      transparent 100%);
  color: var(--text-white);
  text-align: left;
}
.product-slide-caption h3 {
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin: 0 0 6px;
  max-width: 64%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.005em;
}
.product-slide-caption p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #d8def0;
  margin: 0;
  max-width: 64%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 9, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  z-index: 3;
  opacity: 0.8;
}
.product-gallery-arrow:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.6);
  opacity: 1;
}
.product-gallery-arrow:focus-visible {
  outline: none;
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}
.product-gallery-arrow.prev { left: 14px; }
.product-gallery-arrow.next { right: 14px; }
.product-gallery-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.product-gallery-arrow.next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 768px) {
  .product-gallery-arrow { width: 32px; height: 32px; opacity: 0.9; }
  .product-gallery-arrow.prev { left: 8px; }
  .product-gallery-arrow.next { right: 8px; }
  .product-gallery-tabs { gap: 4px; padding: 4px; }
  .product-gallery-tab { padding: 6px 10px; font-size: 0.6rem; letter-spacing: 0.08em; }
  .product-slide-caption { padding: 48px 16px 14px; }
  .product-slide-caption h3 { font-size: 0.95rem; max-width: 100%; }
  .product-slide-caption p { font-size: 0.82rem; max-width: 100%; }
  .product-gallery-track { aspect-ratio: 16 / 10; }
}

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

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

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

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

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

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

/* ===== Sections ===== */
section {
    padding: var(--container-y-padding) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.llm-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

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

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

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

.llm-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.benefit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.15);
  color: var(--violet-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Case Studies ===== */
.filters-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.filters-label { font-weight: 600; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-chip { padding: 5px 12px; font-size: 0.78rem; font-weight: 500; border-radius: 999px; border: 1px solid var(--border); color: var(--text-muted); transition: all var(--transition); }
.filter-chip:hover, .filter-chip.active { border-color: var(--violet-500); color: var(--violet-400); background: rgba(139, 92, 246, 0.1); }

.case-studies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1100px) { .case-studies-grid { grid-template-columns: repeat(2, 1fr); } }
.case-study-card {
  position: relative; display: flex; flex-direction: column;
  padding: 20px 22px; background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.case-study-card:hover { border-color: var(--border-violet); transform: translateY(-2px); background: rgba(139, 92, 246, 0.035); }
.case-study-card-link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.case-study-card > *:not(.case-study-card-link) { position: relative; z-index: 2; }
.case-study-card h3 { font-size: 0.98rem; font-weight: 600; color: var(--text-white); margin: 0 0 8px; line-height: 1.35; }
.case-study-card h3 a { color: inherit; }
.case-study-card:hover h3, .case-study-card h3 a:hover { color: var(--violet-400); }
.case-study-card p {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-study-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: auto; }
.case-study-industry { font-size: 0.72rem; color: var(--text-dim); border: 1px solid var(--border); padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.case-study-pdf { display: inline-flex; align-items: center; gap: 5px; font-size: 0.74rem; color: var(--violet-400); border: 1px solid var(--border-violet); padding: 3px 10px; border-radius: 999px; transition: all var(--transition); white-space: nowrap; }
.case-study-pdf:hover { background: rgba(139,92,246,0.12); color: var(--text-white); }

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== Provenance stamp (footer brand col) =====
   Aligned with the brand description text — no boxed card, just
   monospace lines flowing from the description, with a subtle
   yellow→blue accent rule echoing the UA flag. */
.footer-col-brand { position: relative; z-index: 1; }
.footer-provenance {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  position: relative;
}
.footer-provenance::before {
  content: '';
  position: absolute;
  left: 0; top: -1px;
  width: 64px; height: 2px;
  background: linear-gradient(90deg,
    rgba(255, 213, 0, 0.6) 0%,
    rgba(255, 213, 0, 0.6) 50%,
    rgba(0, 87, 183, 0.75) 50%,
    rgba(0, 87, 183, 0.75) 100%);
}
.footer-provenance .row { display: block; white-space: nowrap; }
.footer-provenance .key { color: var(--text-dim); }
/* Only the leading column label gets the fixed width — inline punctuation stays tight */
.footer-provenance .row > .key:first-child {
  display: inline-block;
  min-width: 78px;
}
.footer-provenance .val { color: var(--text); }
.footer-provenance .hash { color: var(--violet-400); }
.footer-provenance .ua-y { color: #FFD500; }
.footer-provenance .ua-b { color: #4f96ff; }
.footer-provenance .blink { animation: footer-provenance-blink 1.4s steps(2, start) infinite; }
@keyframes footer-provenance-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ===== Defender insignia (silent corner emblem) =====
   Hex-framed badge with stylized geometric trident inside; gold→blue
   gradient edge echoes UA flag. Hover reveals provenance tooltip. */
.defender-insignia {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  z-index: 100;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.defender-insignia:hover {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 6px 18px rgba(139, 92, 246, 0.35));
}
.defender-insignia svg { width: 100%; height: 100%; display: block; }
.defender-insignia::after {
  content: 'Forged in Ukraine · 2016';
  position: absolute;
  right: 64px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-white);
  background: rgba(11, 9, 20, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 6px 10px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.defender-insignia:hover::after { opacity: 1; }

@media (max-width: 600px) {
  .defender-insignia { width: 44px; height: 44px; right: 14px; bottom: 14px; }
  .defender-insignia::after { display: none; }
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Architecture Grid */
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 860px) { .arch-grid { grid-template-columns: 1fr; } }
.arch-card { background: var(--bg-elevated); padding: 2rem; transition: background 0.3s; }
.arch-grid > .arch-card.full { grid-column: 1 / -1; width: 100%; }
.arch-card:hover { background: var(--bg-surface); }
.arch-card-split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 2rem; align-items: start; }
@media (max-width: 860px) { .arch-card-split { grid-template-columns: 1fr; gap: 1.25rem; } }
.arch-card-split .arch-aside { display: flex; flex-direction: column; gap: 0.9rem; padding: 1.1rem 1.2rem; background: rgba(245, 158, 11, 0.04); border: 1px solid rgba(245, 158, 11, 0.18); border-radius: var(--radius-sm); }
.arch-card-split .arch-aside h4 { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fbbf24; font-weight: 700; margin: 0 0 0.15rem; }
.arch-card-split .arch-aside ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.arch-card-split .arch-aside li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; padding-left: 0.95rem; position: relative; }
.arch-card-split .arch-aside li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: rgba(245, 158, 11, 0.55); }
.arch-card-split .arch-aside li b { color: var(--text); font-weight: 600; }
.arch-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.arch-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; flex-shrink: 0; }
.arch-icon.ndr { background: rgba(168, 85, 247, 0.12); color: var(--violet-400); }
.arch-icon.edr { background: rgba(6, 182, 212, 0.12); color: var(--cyan); }
.arch-icon.vul { background: rgba(236, 72, 153, 0.12); color: var(--pink); }
.arch-icon.aisec { background: rgba(245, 158, 11, 0.12); color: #fbbf24; }
.arch-icon.api { background: rgba(16, 185, 129, 0.12); color: var(--green); }
.arch-card h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.arch-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.arch-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.arch-tags span { font-family: var(--mono); font-size: 0.78rem; padding: 0.25rem 0.6rem; border-radius: 4px; background: rgba(255, 255, 255, 0.04); color: var(--text-muted); border: 1px solid var(--border-light); letter-spacing: 0.02em; cursor: default; }

/* Pipeline */
.pipeline-wrap { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 2.5rem; position: relative; overflow: hidden; }
.pipeline-wrap::before { content: ''; position: absolute; bottom: 0; right: 0; width: 350px; height: 200px; background: radial-gradient(ellipse, rgba(6, 182, 212, 0.04) 0%, transparent 70%); pointer-events: none; }
.pipeline-title { font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.pipeline-title .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.pipeline-flow { display: flex; align-items: stretch; gap: 0; position: relative; overflow-x: auto; padding-bottom: 8px; }
.pipeline-step {
  flex: 1; min-width: 180px; padding: 24px 20px;
  background: linear-gradient(180deg, rgba(20, 15, 35, 0.55) 0%, rgba(11, 9, 20, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  transition: background 0.3s, border-color 0.3s;
}
.pipeline-step:first-child { border-radius: 8px 0 0 8px; }
.pipeline-step:last-child { border-radius: 0 8px 8px 0; }
.pipeline-step:hover { background: rgba(168, 85, 247, 0.06); border-color: var(--border-active); }
.pipeline-step:not(:last-child)::after {
  content: ''; position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid rgba(139, 92, 246, 0.4);
  z-index: 2;
}
.pipeline-step .p-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--violet-300);
  display: inline-flex; align-items: center; justify-content: center;
}
.pipeline-step .p-title { font-size: 0.92rem; font-weight: 700; line-height: 1.3; color: var(--text-white); margin: 0; }
.pipeline-step .p-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 800px) {
  .pipeline-flow { flex-direction: column; }
  .pipeline-step:first-child { border-radius: 8px 8px 0 0; }
  .pipeline-step:last-child { border-radius: 0 0 8px 8px; }
  .pipeline-step:not(:last-child)::after { display: none; }
}

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

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

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

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

/* Breadcrumbs */
.breadcrumbs { padding: calc(80px + 0.75rem) 0 0.75rem; border-bottom: 1px solid var(--border-light); }
.breadcrumbs + main > .hero:first-child,
.breadcrumbs + main > .hero-sm:first-child,
.breadcrumbs + main > .hiw-hero:first-child { padding-top: 2rem; }
.breadcrumbs ol { list-style: none; display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-family: var(--mono); flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--text-dim); }
.breadcrumbs a { color: var(--violet-400); text-decoration: none; transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--text-white); }
.breadcrumbs li[aria-current="page"] { color: var(--text); }

/* Webinars Listing */
.webinars-listing { padding: 3rem 0 4rem; }

/* ===== Pricing ===== */
.pricing-section {
  position: relative;
  padding: 140px 0 96px;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 10%, rgba(139, 92, 246, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pricing-section .container { position: relative; z-index: 1; }
.breadcrumbs + main > .pricing-section:first-child { padding-top: 2.5rem; }

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pricing-header-text h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin: 0 0 8px;
}
.pricing-header-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(20, 15, 35, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pricing-toggle-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pricing-toggle-btn:hover { color: var(--text); }
.pricing-toggle-btn.active {
  background: rgba(11, 9, 20, 0.95);
  color: var(--text-white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.pricing-discount {
  color: #f97316;
  font-size: 0.8em;
  font-weight: 600;
  margin-left: 6px;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(20, 15, 35, 0.65);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.12);
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-400);
  background: #13111c;
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
}
.pricing-card-head { margin-bottom: 20px; }
.pricing-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.pricing-card-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  min-height: 42px;
}

.pricing-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  color: var(--text-white);
  font-weight: 800;
  line-height: 1;
}
.pricing-card-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
}
.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  font-variant-numeric: tabular-nums;
}
.pricing-card-price-custom { font-size: 2rem; }
.pricing-card-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}
.pricing-card-billing {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 22px;
  min-height: 1.2em;
}

.pricing-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  margin-bottom: 26px;
}
.pricing-card-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text-white);
}
.pricing-card-cta-primary {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.5);
  color: var(--violet-400);
}
.pricing-card-cta-primary:hover {
  background: rgba(139, 92, 246, 0.28);
  border-color: rgba(139, 92, 246, 0.7);
  color: var(--text-white);
}

.pricing-card-features-header {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  flex: 1;
}
.pricing-card-features li {
  display: flex;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.5;
}
.pricing-card-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-color: var(--violet-400);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.pricing-note a {
  color: var(--violet-400);
  text-decoration: none;
  font-weight: 500;
}
.pricing-note a:hover { color: var(--text-white); }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-section { padding: 120px 0 64px; }
  .pricing-header { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Platform Overview (How It Works) — additional sections
   ===================================================== */

/* Italic kicker line shared across new sections */
.po-kicker { color: var(--violet-400); font-size: 1.05rem; font-style: italic; max-width: 760px; margin-bottom: 1rem; line-height: 1.7; }

/* ----- Section 2: Problem ----- */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card { background: var(--bg-elevated); padding: 1.9rem; position: relative; transition: background 0.3s; }
.prob-card:hover { background: var(--bg-surface); }
.prob-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--rose-500); opacity: 0.55; }
.prob-num { font-family: var(--mono); font-size: 0.72rem; color: var(--rose-400); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.85rem; }
.prob-card h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text-white); margin-bottom: 0.55rem; line-height: 1.3; }
.prob-card p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; }

/* ----- Section 5: Killer feature ----- */
.killer-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 1.2rem; align-items: stretch; }
@media (max-width: 960px) { .killer-grid { grid-template-columns: 1fr; } }
.killer-text { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.9rem; display: flex; flex-direction: column; }
.killer-text p { color: var(--text); font-size: 1rem; line-height: 1.75; margin-bottom: 0; }
.killer-bullets { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.55rem; }
.killer-bullets li { font-family: var(--mono); font-size: 0.85rem; color: var(--text); padding-left: 1.4rem; position: relative; line-height: 1.55; }
.killer-bullets li::before { content: '\2192'; position: absolute; left: 0; color: var(--violet-400); font-weight: 700; }

.killer-shot { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; }
.killer-shot::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.killer-shot-bar { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 0.45rem; font-family: var(--mono); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1; background: rgba(0,0,0,0.25); }
.killer-shot-bar .ks-dot { width: 6px; height: 6px; border-radius: 50%; }
.killer-shot-bar .ks-dot.r { background: #f87171; }
.killer-shot-bar .ks-dot.y { background: #fbbf24; }
.killer-shot-bar .ks-dot.g { background: #34d399; animation: blink 2s infinite; }
.killer-shot-bar .ks-title { margin-left: 0.5rem; }
.killer-shot-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; gap: 0.65rem; position: relative; z-index: 1; }
.killer-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.7rem 0.85rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border-light); border-radius: 6px; font-family: var(--mono); font-size: 0.82rem; flex-wrap: wrap; }
.killer-row .ks-name { color: var(--text); font-weight: 500; }
.killer-row .ks-name code { font-family: var(--mono); color: var(--violet-400); background: rgba(168, 85, 247, 0.08); padding: 0.05rem 0.3rem; border-radius: 3px; font-size: 0.78rem; }
.killer-row .ks-meta { color: var(--text-muted); font-size: 0.74rem; margin-top: 0.2rem; }
.killer-row .ks-sev { padding: 0.18rem 0.55rem; border-radius: 4px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.killer-row .ks-sev.crit { background: rgba(239, 68, 68, 0.15); color: var(--rose-400); }
.killer-row .ks-sev.high { background: rgba(251, 146, 60, 0.15); color: var(--orange-400); }
.killer-row .ks-sev.blocked { background: rgba(16, 185, 129, 0.15); color: var(--emerald-400); }

/* ----- Section 6: Environments — wide variant of env-table ----- */
.env-table.env-table-wide { max-width: none; }
.env-table.env-table-wide .env-table-header,
.env-table.env-table-wide .env-table-row { grid-template-columns: 280px 1fr; align-items: start; gap: 24px; }
.env-table.env-table-wide .env-name { display: flex; align-items: center; gap: 0.6rem; }
.env-table.env-table-wide .env-name i { color: var(--violet-400); flex-shrink: 0; }
.env-table.env-table-wide .env-desc { line-height: 1.7; }
@media (max-width: 760px) {
  .env-table.env-table-wide .env-table-header,
  .env-table.env-table-wide .env-table-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .env-table.env-table-wide .env-table-header > div:last-child { display: none; }
}

/* ----- Section 7: Pillars ----- */
.pillar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 1100px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar-card { background: var(--bg-elevated); padding: 1.5rem; transition: background 0.3s; position: relative; }
.pillar-card:hover { background: var(--bg-surface); }
.pillar-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--violet-500); opacity: 0; transition: opacity 0.3s; }
.pillar-card:hover::after { opacity: 1; }
.pillar-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(168, 85, 247, 0.12); color: var(--violet-400); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.pillar-card h3 { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text-white); margin-bottom: 0.5rem; line-height: 1.3; }
.pillar-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ----- Section 8: Competition ----- */
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 1000px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { background: var(--bg-elevated); padding: 1.7rem 1.5rem; transition: background 0.3s; }
.compare-card:hover { background: var(--bg-surface); }
.compare-cat { font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 0.45rem; }
.compare-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.01em; margin-bottom: 0.35rem; line-height: 1.25; }
.compare-vendors { font-family: var(--mono); font-size: 0.78rem; color: var(--violet-400); margin-bottom: 0.85rem; }
.compare-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ----- Section 9: Outcomes ----- */
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .outcome-grid { grid-template-columns: 1fr; } }
.outcome-card { background: var(--bg-elevated); padding: 1.7rem 1.5rem; position: relative; transition: background 0.3s; }
.outcome-card:hover { background: var(--bg-surface); }
.outcome-stat { font-family: var(--mono); font-size: 0.78rem; color: var(--violet-400); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.outcome-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.01em; margin-bottom: 0.5rem; line-height: 1.3; }
.outcome-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }

/* ----- Section 10: Validation ----- */
.val-block { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 2.25rem; position: relative; overflow: hidden; margin-bottom: 1.2rem; }
.val-block::before { content: ''; position: absolute; top: -120px; right: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 65%); pointer-events: none; }
.val-block > * { position: relative; }
.val-eyebrow { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--violet-400); margin-bottom: 0.85rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.75rem; border-radius: 999px; background: rgba(168, 85, 247, 0.08); border: 1px solid rgba(168, 85, 247, 0.2); cursor: default; }
.val-block h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: #e2e2ef; margin-bottom: 1rem; }
.val-block p { color: var(--text); font-size: 1.02rem; line-height: 1.8; max-width: 880px; margin-bottom: 0.9rem; }
.val-block p:last-child { margin-bottom: 0; }
.val-block strong { color: var(--violet-400); font-weight: 600; }

.val-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .val-logos { grid-template-columns: repeat(2, 1fr); } }
.val-logo { background: var(--bg-elevated); padding: 1.2rem 1rem; text-align: center; transition: background 0.3s; }
.val-logo:hover { background: var(--bg-surface); }
.val-logo-eyebrow { font-family: var(--mono); font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }
.val-logo-name { font-family: var(--mono); font-size: 0.95rem; font-weight: 600; color: var(--text-white); letter-spacing: 0.04em; }

/* =====================================================
   About Us — Leadership
   ===================================================== */
.leader-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 800px) { .leader-grid { grid-template-columns: 1fr; } }
.leader-card { display: flex; gap: 1.4rem; align-items: flex-start; background: var(--bg-elevated); padding: 1.9rem 1.7rem; transition: background 0.3s; position: relative; }
.leader-card:hover { background: var(--bg-surface); }
.leader-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--violet-500), var(--fuchsia-500)); opacity: 0; transition: opacity 0.3s; }
.leader-card:hover::after { opacity: 0.7; }
.leader-avatar { flex-shrink: 0; width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(217, 70, 239, 0.18)); border: 1px solid rgba(168, 85, 247, 0.35); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.06); }
.leader-initials { font-family: var(--mono); font-size: 1.4rem; font-weight: 700; color: var(--text-white); letter-spacing: 0.05em; }
.leader-meta { display: flex; flex-direction: column; min-width: 0; }
.leader-role { font-family: var(--mono); font-size: 0.72rem; color: var(--violet-400); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.4rem; }
.leader-name { font-size: 1.2rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.02em; margin-bottom: 0.55rem; line-height: 1.2; }
.leader-bio { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.9rem; }
.leader-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; list-style: none; }
.leader-tags li { font-family: var(--mono); font-size: 0.7rem; color: var(--text); padding: 0.22rem 0.6rem; border-radius: 999px; background: rgba(168, 85, 247, 0.08); border: 1px solid rgba(168, 85, 247, 0.18); letter-spacing: 0.04em; cursor: default; }

/* =====================================================
   Media Kit
   ===================================================== */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .press-grid { grid-template-columns: 1fr; } }
.press-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-elevated); padding: 1.5rem 1.4rem; transition: background 0.3s, transform 0.3s; color: inherit; }
.press-card:hover { background: var(--bg-surface); transform: translateY(-2px); }
.press-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: rgba(168, 85, 247, 0.12); color: var(--violet-400); display: flex; align-items: center; justify-content: center; }
.press-meta { display: flex; flex-direction: column; min-width: 0; }
.press-label { font-family: var(--mono); font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.3rem; }
.press-value { font-size: 1rem; font-weight: 600; color: var(--text-white); letter-spacing: -0.01em; margin-bottom: 0.25rem; word-break: break-word; }
.press-note { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.boiler-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 1000px) { .boiler-grid { grid-template-columns: 1fr; } }
.boiler-card { background: var(--bg-elevated); padding: 1.5rem 1.4rem; transition: background 0.3s; }
.boiler-card:hover { background: var(--bg-surface); }
.boiler-label { font-family: var(--mono); font-size: 0.68rem; color: var(--violet-400); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.7rem; }
.boiler-card p { font-size: 0.94rem; color: var(--text); line-height: 1.7; }

.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .logo-grid { grid-template-columns: 1fr; } }
.logo-card { display: flex; flex-direction: column; transition: transform 0.3s; }
.logo-card:hover { transform: translateY(-2px); }
.logo-card-display { padding: 2.4rem 1.2rem; display: flex; align-items: center; justify-content: center; min-height: 160px; }
.logo-card-dark .logo-card-display { background: var(--bg-base); }
.logo-card-light .logo-card-display { background: #f3f4f6; }
.logo-card-violet .logo-card-display { background: linear-gradient(135deg, var(--violet-600), #4c1d95); }
.brand-logo { width: 160px; height: auto; }
.brand-mono { font-family: var(--mono); font-size: 2.2rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; }
.brand-mono-accent { color: #ED1C24; padding-left: 0.1rem; }
.logo-card-meta { background: var(--bg-elevated); padding: 1rem 1.4rem; border-top: 1px solid var(--border-light); }
.logo-card-title { font-size: 0.88rem; font-weight: 600; color: var(--text-white); margin-bottom: 0.2rem; }
.logo-card-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

.palette-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.9rem; }
@media (max-width: 900px) { .palette-grid { grid-template-columns: repeat(2, 1fr); } }
.palette-swatch { background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.3s; }
.palette-swatch:hover { transform: translateY(-2px); }
.swatch-chip { height: 90px; }
.swatch-meta { padding: 0.85rem 1rem; }
.swatch-name { font-size: 0.85rem; font-weight: 600; color: var(--text-white); margin-bottom: 0.15rem; }
.swatch-code { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* =====================================================
   Contact Us
   ===================================================== */
.contact-channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 800px) { .contact-channel-grid { grid-template-columns: 1fr; } }
.contact-channel-card { background: var(--bg-elevated); padding: 1.7rem 1.6rem; transition: background 0.3s, transform 0.3s; color: inherit; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.contact-channel-card:hover { background: var(--bg-surface); transform: translateY(-2px); }
.contact-channel-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--violet-500), var(--fuchsia-500)); opacity: 0; transition: opacity 0.3s; }
.contact-channel-card:hover::before { opacity: 0.85; }
.contact-channel-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(168, 85, 247, 0.12); color: var(--violet-400); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-channel-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.02em; margin-bottom: 0.55rem; line-height: 1.25; }
.contact-channel-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.contact-channel-cta { font-family: var(--mono); font-size: 0.78rem; color: var(--violet-400); letter-spacing: 0.06em; font-weight: 600; }

.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 900px) { .office-grid { grid-template-columns: 1fr; } }
.office-card { background: var(--bg-elevated); padding: 1.7rem 1.6rem; transition: background 0.3s; }
.office-card:hover { background: var(--bg-surface); }
.office-flag { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--mono); font-size: 0.7rem; color: var(--violet-400); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.85rem; padding: 0.3rem 0.65rem; border-radius: 999px; background: rgba(168, 85, 247, 0.08); border: 1px solid rgba(168, 85, 247, 0.2); cursor: default; }
.office-flag i { color: var(--violet-400); }
.office-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.02em; margin-bottom: 0.55rem; line-height: 1.25; }
.office-address { font-size: 0.94rem; color: var(--text); line-height: 1.7; margin-bottom: 0.7rem; }
.office-meta { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   Home — Promo Flow (What / How / Proofs / CTA)
   ===================================================== */

/* ----- "How we do it" runtime metrics (moved from /how-it-works) ----- */
.how-we-do-stats { margin-bottom: 40px; }

/* ----- Proofs ----- */
.proofs-section {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-base);
}

.proofs-stats {
  margin-bottom: 48px;
}

.proofs-cases-header {
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 1px dashed var(--border-light);
}

.proofs-cases-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

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

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

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

.proof-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fuchsia-400);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(217, 70, 239, 0.08);
  border: 1px solid rgba(217, 70, 239, 0.2);
}

.proof-case-card h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-white);
  margin: 0;
  flex: 1;
}

.proof-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-400);
}

/* ----- Home CTA ----- */
.home-cta-section {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.home-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.home-cta-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(217, 70, 239, 0.04));
  border: 1px solid var(--border-violet);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: 0 0 60px -20px rgba(139, 92, 246, 0.35);
  overflow: hidden;
}

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

.home-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.home-cta-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  margin: 8px 0 16px;
  letter-spacing: -0.01em;
}

.home-cta-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.home-cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text);
  list-style: none;
}

.home-cta-bullets li i {
  flex-shrink: 0;
  color: var(--violet-400);
  background: rgba(139, 92, 246, 0.12);
  border-radius: 999px;
  padding: 4px;
  width: 22px;
  height: 22px;
}

.home-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.home-cta-actions .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
}

.home-cta-foot {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .proofs-cases-grid { grid-template-columns: 1fr; }
  .home-cta-card { padding: 40px 28px; }
  .home-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-cta-actions { align-items: stretch; }
}
