:root {
  color-scheme: light;
  --primary-dark: #071126;
  --deep-navy: #081326;
  --night-blue: #0a1430;
  --accent: #2563eb;
  --accent-purple: #6366f1;
  --soft-blue: #eff6ff;
  --white: #ffffff;
  --soft-bg: #f6f8fc;
  --page-bg: #f8faff;
  --border: #e2e8f0;
  --border-light: #e5eaf3;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #475569;
  --max-w: 1200px;
  --header-h: 76px;
  --radius: 12px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(7, 17, 38, 0.04);
  --shadow-md: 0 8px 32px rgba(7, 17, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(7, 17, 38, 0.12);
  --shadow-glow-blue: 0 0 80px rgba(37, 99, 235, 0.15);
  --icon-blue-from: #dbeafe;
  --icon-blue-to: #eff6ff;
  --icon-purple-from: #e0e7ff;
  --icon-purple-to: #eef2ff;
  --icon-green-from: #d1fae5;
  --icon-green-to: #ecfdf5;
  --icon-cyan-from: #cffafe;
  --icon-cyan-to: #ecfeff;
  --icon-indigo-from: #e0e7ff;
  --icon-indigo-to: #eef2ff;
  --icon-amber-from: #fef3c7;
  --icon-amber-to: #fffbeb;
  --space-section: 64px;
  --space-section-sm: 48px;
  --space-head: 32px;
  --space-fold: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--page-bg);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, p, ul { margin: 0; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(7, 17, 38, 0.06);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--header-h);
}

.site-logo img {
  width: auto;
  height: 30px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.nav-toggle svg path {
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.nav-toggle[aria-expanded="true"] svg path:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] svg path:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] svg path:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  text-decoration: none;
}

.site-nav a.is-active {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--deep-navy);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(7, 17, 38, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--soft-blue);
  color: var(--primary-dark);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* Layout */
.site-main { min-height: 50vh; }

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--home {
  padding: var(--space-section) 0;
}

.section--home .section-title {
  font-size: clamp(26px, 3vw, 36px);
}

.section--home .section-intro {
  font-size: 16px;
}

.section-head--home {
  margin-bottom: var(--space-head);
}

#ecosystem-preview {
  padding-top: 56px;
}

#ecosystem-preview .ecosystem-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

#ecosystem-preview .product-card--ecosystem {
  padding: 18px 20px 16px;
  box-shadow: var(--shadow-sm);
}

#ecosystem-preview .product-card--ecosystem .product-card-header {
  margin-bottom: 12px;
}

#ecosystem-preview .product-card--ecosystem .product-title-row {
  margin-bottom: 10px;
}

#ecosystem-preview .product-card--ecosystem h3 {
  font-size: 16px;
}

#ecosystem-preview .product-card--ecosystem .product-desc {
  font-size: 13px;
  line-height: 1.55;
}

#ecosystem-preview .product-card--ecosystem .product-footer {
  padding-top: 12px;
}

#ecosystem-preview .product-card--ecosystem .product-icon {
  width: 40px;
  height: 40px;
}

#ecosystem-preview .product-card--ecosystem .product-icon img {
  width: 36px;
  height: 36px;
}

#ecosystem-preview .product-url {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: 10.5px;
  line-height: 1.35;
  min-width: 0;
  word-break: break-word;
}

#ecosystem-preview .ecosystem-foundation-card {
  display: flex;
  flex-direction: column;
  padding: 20px 24px 16px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, var(--white) 55%);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

#ecosystem-preview .ecosystem-foundation-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

#ecosystem-preview .ecosystem-foundation-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

#ecosystem-preview .ecosystem-foundation-card-body {
  display: grid;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr) minmax(100px, 140px);
  gap: 16px 24px;
  align-items: center;
}

#ecosystem-preview .ecosystem-foundation-card-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

#ecosystem-preview .ecosystem-foundation-card-intro h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

#ecosystem-preview .ecosystem-foundation-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

#ecosystem-preview .ecosystem-foundation-card-visual {
  justify-self: end;
  opacity: 0.9;
}

#ecosystem-preview .ecosystem-foundation-card-visual svg {
  display: block;
  width: 120px;
  height: auto;
}

#ecosystem-preview .ecosystem-foundation-card-footer {
  margin-top: 16px;
  padding-top: 14px;
}

#ecosystem-preview .ecosystem-shared-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 4px 0;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

#ecosystem-preview .ecosystem-shared-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

#ecosystem-preview .ecosystem-shared-item:last-child {
  border-right: none;
}

#ecosystem-preview .ecosystem-shared-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--white);
}

#ecosystem-preview .ecosystem-shared-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#ecosystem-preview .ecosystem-shared-icon--blue { color: #2563eb; }
#ecosystem-preview .ecosystem-shared-icon--purple { color: #7c3aed; }
#ecosystem-preview .ecosystem-shared-icon--green { color: #059669; }
#ecosystem-preview .ecosystem-shared-icon--indigo { color: #4f46e5; }

#ecosystem-preview .ecosystem-shared-item h4 {
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

#ecosystem-preview .ecosystem-shared-item p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

.section--alt {
  background: #f0f5ff;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.section--white {
  background: var(--white);
}

.section--tint {
  background: var(--page-bg);
}

.section-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-intro {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 680px;
}

.section-head {
  margin-bottom: 40px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.home-hero {
  position: relative;
  padding: 72px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.home-hero--flagship {
  padding: 64px 0 44px;
  border-bottom: none;
  overflow: visible;
  background: var(--white);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 58% at 74% 26%, rgba(37, 99, 235, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 18% 78%, rgba(99, 102, 241, 0.08) 0%, transparent 52%),
    linear-gradient(180deg, var(--white) 0%, var(--page-bg) 100%);
  pointer-events: none;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.15;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 48px 56px;
  align-items: center;
}

.home-hero h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 3.8vw + 0.5rem, 46px);
  font-weight: 700;
  line-height: 1.06;
  max-width: 34rem;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.home-hero-lead {
  margin-top: 16px;
  font-size: clamp(16px, 1.5vw + 0.5rem, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
}

.home-hero-trust {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 520px;
  padding-left: 16px;
  border-left: 3px solid rgba(37, 99, 235, 0.5);
}

.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eco-console-wrap {
  position: relative;
  order: 2;
  width: 100%;
  min-width: 0;
  max-width: 520px;
  justify-self: end;
}

.eco-console-wrap::before {
  content: "";
  position: absolute;
  inset: -24px -28px -20px -12px;
  background: radial-gradient(ellipse 75% 65% at 50% 45%, rgba(37, 99, 235, 0.12) 0%, transparent 72%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

/* Ecosystem console */
.eco-console {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5eaf3;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.eco-console-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px 10px;
}

.eco-console-bar-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eco-console-bar-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.eco-console-bar-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.eco-console-body {
  padding: 4px 18px 18px;
}

.eco-console-subtitle {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  padding-left: 44px;
  max-width: 100%;
}

.eco-console-subtitle-line {
  display: block;
}

.eco-console-matrix {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 4px 6px 6px;
}

.eco-console-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.eco-console-lines line,
.eco-console-lines path {
  fill: none;
  stroke: rgba(37, 99, 235, 0.32);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 4 4;
}

.eco-console-lines circle {
  fill: rgba(37, 99, 235, 0.42);
}

.eco-console-row {
  position: relative;
  z-index: 1;
}

.eco-console-row--pair .eco-console-nodes {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 4px;
}

.eco-console-row--hub {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 2px 0 4px;
}

.eco-console-row--hub .eco-console-nodes--hub:first-child {
  justify-self: end;
  margin-top: 8px;
}

.eco-console-row--hub .eco-console-nodes--hub:last-child {
  justify-self: start;
  margin-top: 8px;
}

.eco-console-row--hub .eco-console-nodes--hub {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-console-row--solo {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding-top: 0;
}

.eco-console-row--solo .eco-console-nodes {
  display: block;
  width: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-console-nodes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-console-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 10px;
  background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
  text-align: center;
  min-width: 0;
  width: 108px;
}

.eco-console-brand {
  font-family: Sora, Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.eco-console-core img {
  width: 36px;
  height: auto;
}

.eco-console-core-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.3;
}

.eco-node {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  padding: 6px 8px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  max-width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.eco-node:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
}

.eco-node-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.eco-node-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eco-node-icon img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.eco-node-icon--brand {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.eco-node-icon--blue {
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
  color: #2563eb;
}

.eco-node-icon--purple {
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
  color: #7c3aed;
}

.eco-node-icon--green {
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
  color: #059669;
}

.eco-node-icon--cyan {
  background: linear-gradient(135deg, var(--icon-cyan-from), var(--icon-cyan-to));
  color: #0891b2;
}

.eco-node-icon--indigo {
  background: linear-gradient(135deg, var(--icon-indigo-from), var(--icon-indigo-to));
  color: #4f46e5;
}

.eco-node-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 0 1 auto;
}

.eco-node-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: normal;
}

.eco-node-role {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.25;
}

.eco-console-process {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(248, 250, 252, 0.45);
  border-radius: var(--radius-sm);
}

.eco-console-step {
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.eco-console-arrow {
  font-size: 9px;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.eco-console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.eco-console-dot:first-child { background: rgba(37, 99, 235, 0.45); }
.eco-console-dot:nth-child(2) { background: rgba(37, 99, 235, 0.28); }
.eco-console-dot:nth-child(3) { background: rgba(37, 99, 235, 0.16); }

.home-hero-content {
  order: 1;
}

.home-hero-content .section-label {
  margin-bottom: 14px;
}

.home-hero-ctas .btn {
  min-width: 160px;
}

/* Additional products (homepage) */
.home-additional {
  position: relative;
  z-index: 1;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f8faff 0%, var(--page-bg) 100%);
}

.additional-section-head {
  margin-bottom: 28px;
  max-width: 720px;
}

.section-label--pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.additional-products-title {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.additional-products-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

.additional-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 20px;
}

.product-card--experiment {
  padding: 18px 20px 16px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-sm);
  height: 100%;
}

.product-card--experiment:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.18);
}

.product-card--experiment .product-card-header {
  margin-bottom: 14px;
}

.product-card--experiment .product-title-row {
  margin-bottom: 10px;
}

.product-card--experiment h3 {
  font-size: 16px;
}

.product-card--experiment .product-desc {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.product-card--experiment .product-chips {
  margin-top: 12px;
  margin-bottom: 12px;
  gap: 5px;
}

.product-card--experiment .product-chip {
  font-size: 10px;
  min-height: 22px;
  padding: 0 8px;
}

.product-card--experiment .product-footer {
  padding-top: 12px;
}

.product-card--experiment .product-link {
  font-size: 13px;
}

.product-icon.product-icon--brand {
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
}

.product-icon--brand img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.product-icon--cyan {
  background: linear-gradient(135deg, var(--icon-cyan-from), var(--icon-cyan-to));
  color: #0891b2;
}

.additional-products-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  padding: 20px 24px;
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-sm);
}

.additional-products-note-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  flex: 1 1 360px;
}

.additional-products-note-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.additional-products-note-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.additional-products-note-title {
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.additional-products-note-copy {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
}

.additional-products-note-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 0 1 auto;
}

.additional-products-note-features li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

.additional-products-note-features li:last-child {
  border-right: none;
  padding-right: 0;
}

.additional-products-note-features li:first-child {
  padding-left: 0;
}

.additional-products-note-feature-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: var(--accent);
  flex-shrink: 0;
}

.additional-products-note-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card--compact {
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  height: 100%;
}

.product-card--compact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-card--compact .product-desc {
  font-size: 13px;
}

@media (min-width: 901px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    align-items: center;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .home-hero--flagship {
    padding-top: 56px;
  }

  .home-hero-grid {
    gap: 44px;
  }

  .home-hero h1 {
    font-size: clamp(32px, 3.2vw + 0.5rem, 44px);
  }

  .home-hero-lead {
    margin-top: 14px;
  }

  .home-hero-trust {
    margin-top: 12px;
  }

  .home-hero-ctas {
    margin-top: 24px;
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .home-hero--flagship {
    padding-top: 60px;
  }
}

/* Credibility strip */
.credibility-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 20px;
  margin-top: -28px;
  background: var(--page-bg);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.credibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 20px 22px;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.credibility-item:last-child {
  border-right: none;
}

.credibility-item > div {
  min-width: 0;
}

.credibility-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.credibility-item--blue .credibility-icon {
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
  color: #2563eb;
}

.credibility-item--green .credibility-icon {
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
  color: #059669;
}

.credibility-item--purple .credibility-icon {
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
  color: #7c3aed;
}

.credibility-item--cyan .credibility-icon {
  background: linear-gradient(135deg, var(--icon-cyan-from), var(--icon-cyan-to));
  color: #0891b2;
}

.credibility-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credibility-item strong {
  display: block;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.credibility-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Legacy hero visual (subpages) */
.hero-visual {
  padding: 20px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-visual-title {
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.hero-eco-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-eco-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.hero-eco-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 2px 8px rgba(7, 17, 38, 0.04);
}

.hero-eco-item--ai {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, var(--white) 100%);
}

.hero-eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-eco-item span:last-child {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 12px;
  margin-left: auto;
}

.hero-process {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-secondary);
}

.hero-process-step {
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 500;
  color: var(--text-primary);
}

.hero-process-arrow {
  color: var(--accent);
  opacity: 0.5;
}

/* Ecosystem subgroup */
.eco-group-label {
  grid-column: 1 / -1;
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding-top: 8px;
  margin-bottom: -4px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.eco-group-label:first-child {
  padding-top: 0;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 26px 28px 24px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-3px);
}

.product-card--highlight {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.06), 0 4px 20px rgba(37, 99, 235, 0.05);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, var(--white) 48%);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.product-cat {
  display: inline-block;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--soft-bg);
  border: 1px solid var(--border);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.product-status--active {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.product-status--planned {
  color: #64748b;
  background: rgba(100, 116, 139, 0.08);
  border-color: rgba(100, 116, 139, 0.15);
}

.product-status--operating {
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.product-status--setup {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
}

.product-status--live {
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.product-status--concept {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.22);
}

.product-card--premium {
  padding: 24px 26px 22px;
}

.product-card--premium .product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.product-card--premium h3 {
  font-size: 17px;
}

.product-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.product-card--premium .product-link {
  font-size: 14px;
}

.product-card--ai {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, var(--white) 45%);
  border-color: rgba(37, 99, 235, 0.2);
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-card--ai .product-icon {
  background: linear-gradient(135deg, var(--icon-indigo-from), var(--icon-indigo-to));
  color: #4f46e5;
}

.product-icon--amber {
  background: linear-gradient(135deg, var(--icon-amber-from), var(--icon-amber-to));
  color: #d97706;
}

.product-icon--purple {
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
  color: #7c3aed;
}

.product-icon--blue {
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
  color: #2563eb;
}

.product-icon--green {
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
  color: #059669;
}

.product-icon--indigo {
  background: linear-gradient(135deg, var(--icon-indigo-from), var(--icon-indigo-to));
  color: #4f46e5;
}

.product-title-block {
  min-width: 0;
}

.product-role {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

.product-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 16px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  padding: 0 10px;
  min-height: 24px;
  border-radius: 999px;
  background: var(--soft-bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-url {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-link {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.product-link:hover { text-decoration: underline; }

.product-link.is-muted {
  color: var(--text-secondary);
  pointer-events: none;
  cursor: default;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 16px rgba(7, 17, 38, 0.04);
}

.feature-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Capability cards */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.capability-card {
  padding: 20px 20px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.capability-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.capability-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(7, 17, 38, 0.06);
}

.capability-icon--blue {
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
  color: #2563eb;
}

.capability-icon--green {
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
  color: #059669;
}

.capability-icon--purple {
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
  color: #7c3aed;
}

.capability-icon--indigo {
  background: linear-gradient(135deg, var(--icon-indigo-from), var(--icon-indigo-to));
  color: #4f46e5;
}

.capability-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.capability-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.capability-tags span {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--soft-bg);
  color: var(--text-muted);
  border: none;
}

#capabilities .capabilities-subline {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

#capabilities .capabilities-subline::before,
#capabilities .capabilities-subline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(226, 232, 240, 0.95);
}

#capabilities .capability-card--blue .capability-tags span {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

#capabilities .capability-card--green .capability-tags span {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}

#capabilities .capability-card--indigo .capability-tags span {
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
}

#capabilities .capability-card--purple .capability-tags span {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

#capabilities .capabilities-shared-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  padding: 4px 0;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

#capabilities .capabilities-shared-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

#capabilities .capabilities-shared-item:last-child {
  border-right: none;
}

#capabilities .capabilities-shared-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #f8fafc;
}

#capabilities .capabilities-shared-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#capabilities .capabilities-shared-icon--blue { color: #2563eb; }
#capabilities .capabilities-shared-icon--green { color: #059669; }
#capabilities .capabilities-shared-icon--indigo { color: #4f46e5; }
#capabilities .capabilities-shared-icon--purple { color: #7c3aed; }

#capabilities .capabilities-shared-item h4 {
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

#capabilities .capabilities-shared-item p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}
.section--foundation {
  background: linear-gradient(160deg, #eef4ff 0%, #f4f8ff 50%, #f8faff 100%);
}

.foundation-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 36px 48px;
  align-items: center;
}

.foundation-lead {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

#foundation .foundation-items {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#foundation .foundation-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

#foundation .foundation-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 232, 240, 1);
}

#foundation .foundation-item--blue { border-left: 3px solid #2563eb; }
#foundation .foundation-item--purple { border-left: 3px solid #7c3aed; }
#foundation .foundation-item--green { border-left: 3px solid #10b981; }

#foundation .foundation-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 1px 4px rgba(7, 17, 38, 0.06);
}

#foundation .foundation-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#foundation .foundation-item-icon--blue {
  color: #2563eb;
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
}

#foundation .foundation-item-icon--purple {
  color: #7c3aed;
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
}

#foundation .foundation-item-icon--green {
  color: #10b981;
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
}

#foundation .foundation-item h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

#foundation .foundation-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

#foundation .foundation-cta {
  margin-top: 22px;
  min-height: 42px;
  padding: 10px 20px;
  font-size: 14px;
}

#foundation .foundation-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#foundation .foundation-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#foundation .foundation-card-wrap::before {
  content: "";
  position: absolute;
  inset: -16px -10px 40px;
  background: radial-gradient(ellipse at 55% 35%, rgba(99, 102, 241, 0.12) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 75%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

#foundation .foundation-process-card {
  position: relative;
  z-index: 1;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(7, 17, 38, 0.1);
  overflow: hidden;
}

#foundation .foundation-process-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
}

#foundation .foundation-process-header svg {
  width: 14px;
  height: 14px;
  stroke: #7c3aed;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

#foundation .foundation-process-body {
  padding: 20px 24px 24px;
}

#foundation .foundation-process-label {
  margin: 0 0 16px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-secondary);
  line-height: 1.5;
}

#foundation .foundation-process {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

#foundation .foundation-process::-webkit-scrollbar {
  display: none;
}

#foundation .foundation-step {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

#foundation .foundation-step svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

#foundation .foundation-step--blue svg { stroke: #2563eb; }
#foundation .foundation-step--cyan svg { stroke: #06b6d4; }
#foundation .foundation-step--purple svg { stroke: #7c3aed; }
#foundation .foundation-step--green svg { stroke: #10b981; }

#foundation .foundation-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #94a3b8;
  opacity: 0.8;
}

#foundation .foundation-arrow svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#foundation .foundation-output {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

#foundation .foundation-output-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 12px;
}

#foundation .foundation-output-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#foundation .foundation-output-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid rgba(229, 234, 243, 0.95);
  border-radius: 10px;
  font-size: 13px;
  color: var(--primary-dark);
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(7, 17, 38, 0.04);
}

#foundation .foundation-output-row-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#foundation .foundation-output-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

#foundation .foundation-output-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#foundation .foundation-output-icon--blue {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

#foundation .foundation-output-icon--purple {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}

#foundation .foundation-output-icon--green {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

#foundation .foundation-output-status {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

#foundation .foundation-output-status--done {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

#foundation .foundation-output-status--ready {
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
}

#foundation .foundation-output-status--scheduled {
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
}

#foundation .foundation-connector {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 4px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

#foundation .foundation-uses {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

#foundation .foundation-uses-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

#foundation .foundation-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

#foundation .foundation-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

#foundation .foundation-chips span svg {
  width: 13px;
  height: 13px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.85;
}

#foundation .foundation-trust-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fbff 100%);
  border: 1px solid rgba(191, 219, 254, 0.7);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

#foundation .foundation-trust-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

#foundation .foundation-trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#foundation .foundation-trust-label {
  margin: 0 0 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

#foundation .foundation-trust-copy {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.55;
}

/* Company block */
#company.section--tint {
  background: var(--soft-bg);
}

#company .company-block-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

#company .company-lead {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

#company .company-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

#company .company-credibility {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

#company .company-credibility-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

#company .company-credibility-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#company .company-snapshot {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

#company .company-snapshot-title {
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

#company .company-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

#company .company-snapshot-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

#company .company-snapshot-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(7, 17, 38, 0.05);
}

#company .company-snapshot-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#company .company-snapshot-icon--blue {
  color: #2563eb;
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
}

#company .company-snapshot-icon--purple {
  color: #7c3aed;
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
}

#company .company-snapshot-icon--green {
  color: #10b981;
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
}

#company .company-snapshot-icon--indigo {
  color: #4f46e5;
  background: linear-gradient(135deg, var(--icon-indigo-from), var(--icon-indigo-to));
}

#company .company-snapshot-item h4 {
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

#company .company-snapshot-item p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}

/* Dark CTA */
.section--cta-dark {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--night-blue) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

#contact-cta.section--cta-dark {
  padding: 80px 0 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section--cta-dark::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

#contact-cta.section--cta-dark::before {
  top: -50%;
  width: 90%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(99, 102, 241, 0.14) 0%, transparent 50%);
}

#contact-cta.section--cta-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black 0%, transparent 22%, transparent 78%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 22%, transparent 78%, black 100%);
  pointer-events: none;
}

.cta-dark {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-dark .section-title {
  color: var(--white);
}

.cta-dark .section-intro {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  margin-right: auto;
}

.cta-dark-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.btn-on-dark {
  background: var(--white);
  color: var(--primary-dark);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

#contact-cta .btn-on-dark {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.btn-on-dark:hover {
  background: var(--soft-blue);
  color: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

#contact-cta .btn-on-dark:hover {
  background: #f8fafc;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

#contact-cta .btn-on-dark:focus-visible,
#contact-cta .btn-on-dark-outline:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.9);
  outline-offset: 3px;
}

.btn-on-dark-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

#contact-cta .btn-on-dark-outline {
  border-color: rgba(96, 165, 250, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-on-dark-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

#contact-cta .btn-on-dark-outline:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(147, 197, 253, 0.55);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

#contact-cta .cta-dark-inquiries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

#contact-cta .cta-dark-inquiries li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

#contact-cta .cta-dark-inquiry-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
}

#contact-cta .cta-dark-inquiry-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-dark-meta {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

#contact-cta .cta-dark-meta {
  margin-top: 22px;
}

.cta-dark-meta a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.cta-dark-meta a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* AI section */
.ai-panel {
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(7, 17, 38, 0.04);
}

.ai-panel > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 780px;
}

.ai-trust {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.55;
}

.ai-panel-lead {
  margin-top: 20px;
  margin-bottom: 0;
}

.ai-process {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 20px;
  padding: 16px 20px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.ai-process-step {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.ai-process-arrow {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.ai-use-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.ai-use-card {
  padding: 14px 16px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.35;
}

/* Why / approach */
#why.section--white {
  background: var(--soft-bg);
}

#why .approach-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 20px;
}

#why .approach-flow-step {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

#why .approach-flow-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(7, 17, 38, 0.06);
}

#why .approach-flow-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#why .approach-flow-icon--problem {
  color: #ef4444;
  background: linear-gradient(135deg, #fee2e2, #fef2f2);
}

#why .approach-flow-icon--layer {
  color: #10b981;
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
}

#why .approach-flow-icon--outcome {
  color: #7c3aed;
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
}

#why .approach-flow-step h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

#why .approach-flow-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

#why .approach-flow-arrow {
  display: flex;
  align-items: center;
  align-self: center;
  color: #94a3b8;
}

#why .approach-flow-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#why .benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 0;
}

#why .benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

#why .benefit-card--blue { border-left: 3px solid #2563eb; }
#why .benefit-card--purple { border-left: 3px solid #7c3aed; }
#why .benefit-card--green { border-left: 3px solid #10b981; }
#why .benefit-card--cyan { border-left: 3px solid #06b6d4; }

#why .benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

#why .benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 4px rgba(7, 17, 38, 0.06);
}

#why .benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#why .benefit-icon--blue {
  color: #2563eb;
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
}

#why .benefit-icon--purple {
  color: #7c3aed;
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
}

#why .benefit-icon--green {
  color: #10b981;
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
}

#why .benefit-icon--cyan {
  color: #06b6d4;
  background: linear-gradient(135deg, var(--icon-cyan-from), var(--icon-cyan-to));
}

#why .benefit-card-body {
  min-width: 0;
}

#why .benefit-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

#why .benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

#why .approach-summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #f0f7ff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

#why .approach-summary-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

#why .approach-summary-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#why .approach-summary p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--primary-dark);
}

#why .approach-summary strong {
  color: #2563eb;
  font-weight: 600;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}

.company-facts li {
  padding: 14px 18px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.company-facts strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

/* Contact teaser */
.contact-teaser {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-teaser .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-teaser-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.contact-meta {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Multi-page utilities */
.section-cta {
  margin-top: 28px;
  text-align: center;
}

.section-cta--left {
  text-align: left;
  margin-top: 16px;
}

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

.foundation-panel {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(7, 17, 38, 0.04);
}

.foundation-panel p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 720px;
}

.foundation-panel .section-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.foundation-panel .section-cta {
  margin-top: 20px;
  text-align: left;
}

.cta-band {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-band .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.page-section {
  margin-bottom: 48px;
}

.page-section:last-child {
  margin-bottom: 0;
}

.page-section-title {
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.eco-connect {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.eco-connect h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.eco-connect > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 16px;
}

.infra-service-card {
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.infra-service-card:last-child {
  margin-bottom: 0;
}

.infra-service-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.infra-service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.infra-overview {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 32px;
}

.infra-support-note {
  padding: 22px 26px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.status-pill-lg {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.ai-status-block {
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.ai-status-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

.ai-use-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Subpages */
.page-hero {
  padding: 56px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 12px;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.65;
}

.page-content {
  padding: 48px 0 80px;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.prose h2:first-child { margin-top: 0; }

.prose p, .prose li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.prose ul {
  padding-left: 20px;
  margin: 12px 0;
}

.prose li { margin-bottom: 8px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.contact-card {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact-card h3 {
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.contact-details {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.contact-details p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-details p:last-child { margin-bottom: 0; }

.contact-details strong {
  color: var(--text-primary);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 40px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(37, 99, 235, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(99, 102, 241, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.footer-grid--brand {
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px 36px;
}

.footer-brand {
  padding-right: 24px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-longevity {
  margin: 14px 0 0;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.footer-longevity [data-years-active] {
  color: #60a5fa;
  font-weight: 600;
}

.footer-contact {
  margin: 10px 0 0;
  font-size: 13px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a:hover {
  color: #93c5fd;
}

.footer-col h4 {
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-top: 6px;
  background: #2563eb;
  border-radius: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  display: inline-block;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  transform: translateX(2px);
}

.footer-col .is-muted {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  pointer-events: none;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

#company .company-founded {
  margin: 12px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

#company .company-founded [data-years-active] {
  color: #2563eb;
  font-weight: 600;
}

/* Products page */
.products-page .products-hero {
  position: relative;
  padding: 64px 0 48px;
  background: var(--white);
  overflow: hidden;
}

.products-page .products-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 58% at 74% 26%, rgba(37, 99, 235, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 18% 78%, rgba(99, 102, 241, 0.07) 0%, transparent 52%),
    linear-gradient(180deg, var(--white) 0%, var(--page-bg) 100%);
  pointer-events: none;
}

.products-page .products-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 48px 56px;
  align-items: center;
  padding-bottom: 36px;
}

.products-page .products-hero-content .section-label {
  margin-bottom: 12px;
}

.products-page .products-hero-content h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 3.8vw + 0.5rem, 46px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 34rem;
}

.products-page .products-hero-lead {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw + 0.5rem, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

.products-page .products-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.products-page .products-hero-ctas .btn-primary {
  background: #2563eb;
}

.products-page .products-hero-ctas .btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
}

.products-page .products-eco-overview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.products-page .products-eco-overview-body {
  padding: 22px 24px 24px;
}

.products-page .products-eco-overview-title {
  margin: 0 0 18px;
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.products-page .products-eco-overview-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.products-page .products-eco-overview-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.products-page .products-eco-group-label {
  margin: 0 0 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.products-page .products-eco-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.products-page .products-eco-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
}

.products-page .products-eco-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.products-page .products-eco-icon--brand {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.products-page .products-eco-icon--brand img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.products-page .products-summary-icon--brand {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.products-page .products-summary-icon--brand img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.products-page .products-connect-icon--brand {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.products-page .products-connect-icon--brand img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.products-page .product-icon--brand img {
  width: 36px;
  height: 36px;
}

.products-page .products-ai-foundation .product-icon--brand img {
  width: 40px;
  height: 40px;
}

.products-page .products-eco-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-page .products-eco-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.products-page .products-eco-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.products-page .products-eco-icon--green { color: #059669; background: rgba(16, 185, 129, 0.1); }
.products-page .products-eco-icon--teal { color: #0891b2; background: rgba(6, 182, 212, 0.1); }
.products-page .products-eco-icon--indigo { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.products-page .products-eco-icon--violet { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.products-page .products-eco-icon--orange { color: #ea580c; background: rgba(249, 115, 22, 0.1); }

.products-page .products-summary-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.products-page .products-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.products-page .products-summary-item:last-child {
  border-right: none;
}

.products-page .products-summary-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.products-page .products-summary-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-page .products-summary-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.products-page .products-summary-icon--green { color: #059669; background: rgba(16, 185, 129, 0.1); }
.products-page .products-summary-icon--indigo { color: #4f46e5; background: rgba(79, 70, 229, 0.1); }
.products-page .products-summary-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }

.products-page .products-summary-title {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.products-page .products-summary-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.products-page .products-ai-foundation {
  padding: 28px 30px 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(99, 102, 241, 0.04) 40%, var(--white) 100%);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
}

.products-page .products-ai-foundation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.products-page .products-ai-foundation-body {
  margin-bottom: 4px;
}

.products-page .products-ai-foundation .product-desc {
  flex: 0 1 auto;
}

.products-page .products-ai-foundation .product-chips {
  margin-top: 12px;
  margin-bottom: 0;
}

.products-page .product-grid {
  align-items: start;
}

.products-page .products-ai-foundation-footer {
  margin-top: 16px;
  padding: 16px 0 22px;
  border-top-color: rgba(37, 99, 235, 0.12);
}

.products-page .products-ai-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.products-page .products-ai-trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #64748b;
  background: var(--white);
  border: 1px solid var(--border);
}

.products-page .products-ai-trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-page .products-ai-trust p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.products-page .products-connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: 28px 36px;
  align-items: start;
}

.products-page .products-connect-main .section-head {
  margin-bottom: 28px;
}

.products-page .products-connect-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.products-page .products-connect-step {
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.products-page .products-connect-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 12px;
}

.products-page .products-connect-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-page .products-connect-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.products-page .products-connect-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.products-page .products-connect-icon--green { color: #059669; background: rgba(16, 185, 129, 0.1); }
.products-page .products-connect-icon--amber { color: #d97706; background: rgba(245, 158, 11, 0.12); }

.products-page .products-connect-step h3 {
  margin: 0 0 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.3;
}

.products-page .products-connect-num {
  color: var(--text-secondary);
  font-weight: 600;
}

.products-page .products-connect-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.products-page .products-connect-arrow {
  display: flex;
  align-items: center;
  align-self: center;
  padding-top: 28px;
  color: #2563eb;
  opacity: 0.55;
}

.products-page .products-connect-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-page .products-status-guide {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.products-page .products-status-guide .section-label {
  margin-bottom: 8px;
}

.products-page .products-status-guide-title {
  margin: 0 0 18px;
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.products-page .products-status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-page .products-status-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.products-page .products-status-list li > span:last-child {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.products-page .products-status-list .product-status {
  display: inline-flex;
  justify-self: start;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 5px 8px;
  font-size: 10px;
}

.products-page #core-ecosystem,
.products-page #additional-products {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Product cards — compact layout, mockup-aligned footer & accents */
.products-page .product-card .product-desc {
  flex: 0 1 auto;
}

.products-page .product-card .product-chips {
  margin-top: 12px;
  margin-bottom: 0;
}

.products-page .product-card .product-footer {
  margin-top: 16px;
  padding-top: 14px;
}

.products-page .product-status--active {
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.products-page .product-status--planned {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.18);
}

.products-page .product-card--accent-blue .product-chip {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
  color: #2563eb;
}

.products-page .product-card--accent-purple .product-chip {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.14);
  color: #7c3aed;
}

.products-page .product-card--accent-green .product-chip {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.14);
  color: #059669;
}

.products-page .product-card--accent-teal .product-chip {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.14);
  color: #0891b2;
}

.products-page .product-card--accent-indigo .product-chip {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.14);
  color: #4f46e5;
}

.products-page .product-card--accent-amber .product-chip {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.18);
  color: #d97706;
}

.products-page .product-footer-external {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text-secondary);
  background: var(--soft-bg);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.products-page .product-footer-external svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-page .product-footer-external:hover {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.22);
}

.products-page .product-footer .product-link {
  min-width: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }

  #ecosystem-preview .ecosystem-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #ecosystem-preview .ecosystem-shared-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  #capabilities .capabilities-shared-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  #capabilities .capabilities-shared-item:nth-child(2) {
    border-right: none;
  }

  #capabilities .capabilities-shared-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  #ecosystem-preview .ecosystem-shared-item:nth-child(2) {
    border-right: none;
  }

  #ecosystem-preview .ecosystem-shared-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  #ecosystem-preview .ecosystem-foundation-card-body {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  #ecosystem-preview .ecosystem-foundation-card-intro {
    grid-column: 1;
    grid-row: 1;
  }

  #ecosystem-preview .ecosystem-foundation-card-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  #ecosystem-preview .ecosystem-foundation-card-desc {
    grid-column: 1;
    grid-row: 2;
  }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .credibility-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .credibility-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .foundation-split { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  #foundation .foundation-items { max-width: none; }
  #foundation .foundation-lead { max-width: none; }
  .company-block-grid { grid-template-columns: 1fr; gap: 32px; }
  #company .company-block-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  #company .company-lead { max-width: none; }
  .footer-grid--brand { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .ai-use-grid { grid-template-columns: repeat(3, 1fr); }
  .ai-use-grid--6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 100%);
  }

  .credibility-item {
    padding: 18px 20px;
  }

  .eco-node-name {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero--flagship {
    padding-top: 48px;
  }

  .home-hero h1 {
    font-size: clamp(28px, 5.5vw, 38px);
    line-height: 1.12;
  }

  .home-hero-lead {
    font-size: 17px;
  }

  .eco-console-wrap {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .eco-console-wrap::before {
    display: none;
  }

  .eco-console-row--pair,
  .eco-console-row--hub,
  .eco-console-row--solo {
    display: contents;
  }

  .eco-console-row--pair .eco-console-nodes,
  .eco-console-row--hub .eco-console-nodes--hub,
  .eco-console-row--solo .eco-console-nodes {
    display: contents;
  }

  .eco-console-matrix {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .eco-console-core {
    width: 100%;
    max-width: none;
    padding: 16px 14px;
  }

  .eco-node {
    display: flex;
    width: 100%;
    max-width: 100%;
  }

  .eco-node--cdh { order: 1; }
  .eco-node--whl { order: 2; }
  .eco-console-core { order: 3; }
  .eco-node--wf { order: 4; }
  .eco-node--ih { order: 5; }
  .eco-node--ai-node { order: 6; }

  .eco-console-lines {
    display: none;
  }

  .eco-console-process {
    gap: 4px;
    padding: 10px 12px;
  }

  .eco-console-step {
    padding: 4px 10px;
    font-size: 9.5px;
  }

  .credibility-strip { padding: 40px 0 28px; }

  .additional-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-products-note {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
  }

  .additional-products-note-main {
    flex: none;
  }

  .additional-products-note-features {
    justify-content: flex-start;
  }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid--brand { grid-template-columns: repeat(2, 1fr); }

  .products-page .products-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .products-page .products-eco-overview-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-page .products-summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-page .products-summary-item:nth-child(2) {
    border-right: none;
  }

  .products-page .products-summary-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .products-page .products-connect-grid {
    grid-template-columns: 1fr;
  }

  .products-page .products-connect-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .products-page .products-connect-arrow {
    display: none;
  }

  .products-page .product-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container { width: min(var(--max-w), calc(100% - 32px)); }
  .section { padding: 56px 0; }
  .section--home { padding: var(--space-section-sm) 0; }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header--on-dark:not(.is-scrolled) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header-inner {
    position: relative;
    z-index: 202;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 203;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 32px;
    background: var(--white);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(7, 17, 38, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease, visibility 0.25s;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    z-index: 201;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a:not(.nav-cta) {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--text-primary);
    background: transparent;
  }

  .site-nav a:not(.nav-cta):hover {
    color: var(--accent);
    background: var(--soft-bg);
  }

  .site-nav a:not(.nav-cta).is-active {
    color: var(--accent);
    background: var(--soft-blue);
  }

  .site-nav .nav-cta {
    display: flex;
    width: 100%;
    margin-left: 0;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--accent);
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible,
  .site-nav .nav-cta.is-active {
    color: var(--white);
    background: var(--deep-navy);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    background: rgba(7, 17, 38, 0.45);
  }

  body.nav-open .site-header {
    z-index: 202;
  }

  .product-grid,
  .preview-grid,
  .feature-grid,
  .capability-grid,
  .credibility-grid,
  .benefit-grid,
  .company-facts,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  #ecosystem-preview .ecosystem-platform-grid {
    grid-template-columns: 1fr;
  }

  #ecosystem-preview .ecosystem-foundation-card-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #ecosystem-preview .ecosystem-foundation-card-visual {
    justify-self: start;
    grid-column: auto;
    grid-row: auto;
  }

  #ecosystem-preview .ecosystem-shared-bar {
    grid-template-columns: 1fr;
  }

  #capabilities .capabilities-shared-bar {
    grid-template-columns: 1fr;
  }

  #capabilities .capabilities-shared-item {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  #capabilities .capabilities-shared-item:last-child {
    border-bottom: none;
  }

  #ecosystem-preview .ecosystem-shared-item {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  #ecosystem-preview .ecosystem-shared-item:last-child {
    border-bottom: none;
  }

  #why .approach-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #why .approach-flow-arrow {
    display: none;
  }

  #why .benefit-grid {
    grid-template-columns: 1fr;
  }

  #company .company-snapshot-grid {
    grid-template-columns: 1fr;
  }

  #company .company-ctas .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  #foundation .foundation-process {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 6px;
  }

  #foundation .foundation-arrow {
    display: none;
  }

  #foundation .foundation-step {
    justify-content: flex-start;
    white-space: normal;
  }

  #foundation .foundation-output-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  #foundation .foundation-cta {
    width: 100%;
    justify-content: center;
  }

  #foundation .foundation-process-body {
    padding: 18px 18px 20px;
  }

  .home-hero-ctas {
    flex-direction: column;
  }

  .home-hero-ctas .btn {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .home-hero h1 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.15;
  }

  .home-hero-lead {
    font-size: 16px;
  }

  .home-hero-trust {
    font-size: 14px;
  }

  .credibility-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .credibility-item:last-child {
    border-bottom: none;
  }

  .additional-products-grid {
    grid-template-columns: 1fr;
  }

  .home-additional {
    padding: 40px 0 48px;
  }

  .additional-products-note {
    padding: 18px 18px 20px;
    gap: 16px;
  }

  .additional-products-note-features {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .additional-products-note-features li {
    padding: 0;
    border-right: none;
    white-space: normal;
  }

  .cta-dark-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
  }

  #contact-cta .cta-dark-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #contact-cta .cta-dark-actions .btn {
    width: 100%;
    min-width: 0;
  }

  #contact-cta .cta-dark-inquiries {
    gap: 10px 16px;
  }

  #contact-cta.section--cta-dark {
    padding: 64px 0 72px;
  }

  .ai-use-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-panel { padding: 24px 22px; }
  .home-hero { padding: 40px 0 48px; }

  .products-page .products-hero {
    padding-top: 40px;
  }

  .products-page .products-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .products-page .products-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .products-page .products-summary-strip {
    grid-template-columns: 1fr;
  }

  .products-page .products-summary-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .products-page .products-summary-item:last-child {
    border-bottom: none;
  }

  .products-page .products-eco-overview-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .products-page .products-connect-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .products-page .products-connect-arrow {
    display: none;
  }

  .products-page .products-connect-step {
    padding: 16px 14px;
  }

  .products-page .products-connect-step h3 {
    font-size: 13px;
  }

  .products-page .products-connect-step p {
    font-size: 12px;
    line-height: 1.5;
  }

  .products-page .products-status-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .products-page .products-status-list .product-status {
    width: auto;
    justify-self: start;
  }

  .products-page .product-grid--2,
  .products-page .product-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Infrastructure page */
.infrastructure-page .infra-hero {
  position: relative;
  padding: 64px 0 56px;
  background: #f8faff;
  overflow: hidden;
}

.infrastructure-page .infra-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f8faff 0%, var(--page-bg) 100%);
  pointer-events: none;
}

.infrastructure-page .infra-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 48px 56px;
  align-items: center;
  padding-bottom: 40px;
}

.infrastructure-page .infra-hero-content .section-label {
  margin-bottom: 12px;
}

.infrastructure-page .infra-hero-content h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 3.8vw + 0.5rem, 46px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 34rem;
}

.infrastructure-page .infra-hero-lead {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw + 0.5rem, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

.infrastructure-page .infra-hero-support {
  margin: 12px 0 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.infrastructure-page .infra-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.infrastructure-page .infra-hero-ctas .btn-primary {
  background: #2563eb;
}

.infrastructure-page .infra-hero-ctas .btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.22);
}

.infrastructure-page .infra-console {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.infrastructure-page .infra-console-body {
  padding: 22px 24px 24px;
}

.infrastructure-page .infra-console-header {
  margin-bottom: 18px;
}

.infrastructure-page .infra-console-title {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.infrastructure-page .infra-console-subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.infrastructure-page .infra-console-brands {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.infrastructure-page .infra-console-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}

.infrastructure-page .infra-console-brand-link {
  display: grid;
  place-items: center;
  align-self: center;
  width: 28px;
  height: 28px;
  color: #94a3b8;
}

.infrastructure-page .infra-console-brand-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-console-brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.infrastructure-page .infra-console-brand-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.infrastructure-page .infra-console-brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.infrastructure-page .infra-console-brand-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.infrastructure-page .infra-console-bridge {
  position: relative;
  height: 18px;
  margin: 8px 0 0;
}

.infrastructure-page .infra-console-bridge-stem {
  position: absolute;
  top: 0;
  width: 1px;
  height: 10px;
  background: #cbd5e1;
}

.infrastructure-page .infra-console-bridge-stem--left {
  left: 25%;
}

.infrastructure-page .infra-console-bridge-stem--right {
  right: 25%;
}

.infrastructure-page .infra-console-bridge-rail {
  position: absolute;
  top: 9px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: #cbd5e1;
}

.infrastructure-page .infra-console-services {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.infrastructure-page .infra-console-services li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 12px 4px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.25;
}

.infrastructure-page .infra-console-services li::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: #cbd5e1;
  transform: translateX(-50%);
}

.infrastructure-page .infra-console-node-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.infrastructure-page .infra-console-node-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-console-node-icon--blue { color: #2563eb; }
.infrastructure-page .infra-console-node-icon--cyan { color: #0891b2; }
.infrastructure-page .infra-console-node-icon--purple { color: #7c3aed; }
.infrastructure-page .infra-console-node-icon--green { color: #059669; }
.infrastructure-page .infra-console-node-icon--amber { color: #d97706; }

.infrastructure-page .infra-hero > .container:last-child {
  position: relative;
  z-index: 1;
}

.infrastructure-page .infra-summary-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.infrastructure-page .infra-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}

.infrastructure-page .infra-summary-item:last-child {
  border-right: none;
}

.infrastructure-page .infra-summary-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.infrastructure-page .infra-summary-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-summary-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.infrastructure-page .infra-summary-icon--cyan { color: #0891b2; background: rgba(6, 182, 212, 0.08); }
.infrastructure-page .infra-summary-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.infrastructure-page .infra-summary-icon--green { color: #059669; background: rgba(16, 185, 129, 0.08); }

.infrastructure-page .infra-summary-title {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.infrastructure-page .infra-summary-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.infrastructure-page .product-icon--brand img {
  width: 44px;
  height: 44px;
}

/* Operating brand cards — match products page accents & footer */
.infrastructure-page .product-card .product-desc {
  flex: 0 1 auto;
}

.infrastructure-page .product-card .product-chips {
  margin-top: 12px;
  margin-bottom: 0;
}

.infrastructure-page .product-card .product-footer {
  margin-top: 16px;
  padding-top: 14px;
}

.infrastructure-page .product-card--accent-blue .product-cat {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
}

.infrastructure-page .product-card--accent-blue .product-chip {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
  color: #2563eb;
}

.infrastructure-page .product-card--accent-green .product-cat {
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.14);
}

.infrastructure-page .product-card--accent-green .product-chip {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.14);
  color: #059669;
}

.infrastructure-page .product-footer-external {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text-secondary);
  background: var(--soft-bg);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.infrastructure-page .product-footer-external svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .product-footer-external:hover {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.22);
}

.infrastructure-page .product-footer .product-link {
  min-width: 0;
}

.infrastructure-page .infra-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.infrastructure-page .infra-service-card {
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.infrastructure-page .infra-service-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.infrastructure-page .infra-service-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  margin-bottom: 0;
}

.infrastructure-page .infra-service-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-service-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.infrastructure-page .infra-service-icon--cyan { color: #0891b2; background: rgba(6, 182, 212, 0.08); }
.infrastructure-page .infra-service-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.infrastructure-page .infra-service-icon--green { color: #059669; background: rgba(16, 185, 129, 0.08); }
.infrastructure-page .infra-service-icon--amber { color: #d97706; background: rgba(245, 158, 11, 0.1); }

.infrastructure-page .infra-service-card h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding-top: 2px;
}

.infrastructure-page .infra-service-card p {
  flex: 1;
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.infrastructure-page .infra-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.infrastructure-page .infra-service-tags span {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  line-height: 1.3;
}

.infrastructure-page .infra-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.infrastructure-page .infra-detail-card {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.infrastructure-page .infra-detail-card .section-label {
  margin-bottom: 10px;
}

.infrastructure-page .infra-detail-title {
  margin: 0 0 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.infrastructure-page .infra-detail-intro {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.infrastructure-page .infra-approach-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 6px;
  align-items: start;
  margin-top: auto;
}

.infrastructure-page .infra-approach-step {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.infrastructure-page .infra-approach-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.infrastructure-page .infra-approach-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-approach-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.infrastructure-page .infra-approach-icon--cyan { color: #0891b2; background: rgba(6, 182, 212, 0.1); }
.infrastructure-page .infra-approach-icon--green { color: #059669; background: rgba(16, 185, 129, 0.1); }

.infrastructure-page .infra-approach-step h3 {
  margin: 0 0 6px;
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.3;
}

.infrastructure-page .infra-approach-num {
  color: var(--text-secondary);
  font-weight: 500;
}

.infrastructure-page .infra-approach-step p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.infrastructure-page .infra-approach-arrow {
  display: grid;
  place-items: center;
  align-self: start;
  color: #93c5fd;
  padding-top: 16px;
}

.infrastructure-page .infra-approach-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-position-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  margin-top: auto;
}

.infrastructure-page .infra-position-col {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.infrastructure-page .infra-position-col--shared {
  padding: 10px 8px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: var(--radius-sm);
}

.infrastructure-page .infra-position-brand {
  margin: 0 0 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.infrastructure-page .infra-position-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.infrastructure-page .infra-position-list li {
  position: relative;
  padding-left: 14px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.infrastructure-page .infra-position-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94a3b8;
}

.infrastructure-page .infra-position-list--checks li {
  padding-left: 20px;
}

.infrastructure-page .infra-position-list--checks li::before {
  top: 0.15em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  border: 1.5px solid #0891b2;
  box-sizing: border-box;
}

.infrastructure-page .infra-position-list--checks li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.42em;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid #0891b2;
  border-bottom: 1.5px solid #0891b2;
  transform: rotate(-45deg);
}

.infrastructure-page .infra-ai-usecases {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.infrastructure-page .infra-ai-usecases li {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.infrastructure-page .infra-ai-usecases li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  box-sizing: border-box;
}

.infrastructure-page .infra-ai-usecases li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.48em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2563eb;
}

.infrastructure-page .infra-ai-note {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.infrastructure-page .infra-ai-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.infrastructure-page .infra-ai-link:hover {
  text-decoration: underline;
}

.infrastructure-page .infra-reliability-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.infrastructure-page .infra-reliability-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.infrastructure-page .infra-reliability-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure-page .infra-reliability-card .section-label {
  margin-bottom: 8px;
}

.infrastructure-page .infra-reliability-title {
  margin: 0 0 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.infrastructure-page .infra-reliability-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 1100px) {
  .infrastructure-page .infra-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .infrastructure-page .infra-summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .infrastructure-page .infra-summary-item:nth-child(2) {
    border-right: none;
  }

  .infrastructure-page .infra-summary-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .infrastructure-page .infra-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .infrastructure-page .infra-details-grid {
    grid-template-columns: 1fr;
  }

  .infrastructure-page .infra-position-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .infrastructure-page .infra-position-col--shared {
    padding: 14px 12px;
  }
}

@media (max-width: 768px) {
  .infrastructure-page .infra-hero {
    padding: 48px 0 36px;
  }

  .infrastructure-page .infra-console-brands {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .infrastructure-page .infra-console-services {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .infrastructure-page .infra-console-services li {
    font-size: 10px;
    padding: 10px 2px 8px;
  }

  .infrastructure-page .infra-console-node-icon {
    width: 38px;
    height: 38px;
  }

  .infrastructure-page .infra-console-node-icon svg {
    width: 20px;
    height: 20px;
  }

  .infrastructure-page .infra-summary-strip {
    grid-template-columns: 1fr;
  }

  .infrastructure-page .infra-summary-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .infrastructure-page .infra-summary-item:last-child {
    border-bottom: none;
  }

  .infrastructure-page .infra-service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .infrastructure-page .infra-service-card {
    padding: 18px 16px 16px;
  }

  .infrastructure-page .infra-service-card h3 {
    font-size: 15px;
  }

  .infrastructure-page .infra-service-card p {
    font-size: 13px;
  }

  .infrastructure-page .infra-service-tags span {
    font-size: 11px;
  }

  .infrastructure-page .infra-approach-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .infrastructure-page .infra-approach-arrow {
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
    padding: 2px 0;
  }

  .infrastructure-page .infra-hero-ctas {
    flex-direction: column;
  }

  .infrastructure-page .infra-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .infrastructure-page .product-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* AI page — header on dark hero */
.site-header--on-dark:not(.is-scrolled) {
  background: rgba(7, 17, 38, 0.72);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header--on-dark:not(.is-scrolled) .site-logo-dark {
  display: none;
}

.site-header--on-dark:not(.is-scrolled) .site-logo-light {
  display: block;
}

.site-header--on-dark .site-logo-light {
  display: none;
}

@media (min-width: 769px) {
  .site-header--on-dark:not(.is-scrolled) .site-nav a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.88);
  }

  .site-header--on-dark:not(.is-scrolled) .site-nav a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .site-header--on-dark:not(.is-scrolled) .site-nav a.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }
}

.site-header--on-dark:not(.is-scrolled) .nav-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header--on-dark:not(.is-scrolled) .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

@keyframes aiGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  33% { transform: translate(8%, -6%) scale(1.1); opacity: 1; }
  66% { transform: translate(-6%, 7%) scale(0.94); opacity: 0.9; }
}

@keyframes aiGlowDriftAlt {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate(-9%, -5%) scale(1.12); opacity: 1; }
}

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

@keyframes aiHeroGlowShift {
  0% { transform: translate(-6%, -4%) scale(1) rotate(0deg); opacity: 0.75; }
  100% { transform: translate(7%, 5%) scale(1.14) rotate(4deg); opacity: 1; }
}

/* AI page */
.ai-page .ai-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + 64px) 0 48px;
  background-color: #071126;
  overflow: hidden;
  color: var(--white);
}

.ai-page .ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #050f24 0%, #081326 25%, #0c1840 50%, #070f28 75%, #081326 100%);
  background-size: 400% 400%;
  animation: aiHeroBgShift 22s ease infinite;
  pointer-events: none;
}

.ai-page .ai-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ai-page .ai-hero-bg::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(37, 99, 235, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 18%, rgba(124, 58, 237, 0.24) 0%, transparent 52%),
    radial-gradient(ellipse at 55% 85%, rgba(6, 182, 212, 0.18) 0%, transparent 48%);
  animation: aiHeroGlowShift 14s ease-in-out infinite alternate;
}

.ai-page .ai-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.ai-page .ai-hero-blob--blue {
  width: 520px;
  height: 520px;
  top: -12%;
  left: -8%;
  background: rgba(37, 99, 235, 0.26);
  animation: aiGlowDrift 16s ease-in-out infinite;
}

.ai-page .ai-hero-blob--purple {
  width: 460px;
  height: 460px;
  top: 8%;
  right: -6%;
  background: rgba(124, 58, 237, 0.22);
  animation: aiGlowDriftAlt 14s ease-in-out infinite;
}

.ai-page .ai-hero-blob--cyan {
  width: 400px;
  height: 400px;
  bottom: -12%;
  left: 28%;
  background: rgba(6, 182, 212, 0.18);
  animation: aiGlowDrift 18s ease-in-out infinite reverse;
}

.ai-page .ai-hero-blob--violet {
  width: 340px;
  height: 340px;
  top: 42%;
  left: 48%;
  background: rgba(139, 92, 246, 0.16);
  animation: aiGlowDriftAlt 20s ease-in-out infinite reverse;
}

.ai-page .ai-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 48px 56px;
  align-items: center;
}

.ai-page .ai-summary-section {
  padding: 32px 0 40px;
  background: var(--page-bg);
}

.ai-page .ai-hero-label {
  color: #60a5fa;
}

.ai-page .ai-hero-content h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 3.8vw + 0.5rem, 46px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 34rem;
}

.ai-page .ai-hero-lead {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw + 0.5rem, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.ai-page .ai-hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  max-width: 540px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.ai-page .ai-hero-trust-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.28);
}

.ai-page .ai-hero-trust-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

.ai-page .ai-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ai-page .ai-hero-ctas .btn-primary {
  background: #2563eb;
}

.ai-page .ai-hero-ctas .btn-primary:hover {
  background: #1d4ed8;
}

.ai-page .btn-on-dark-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ai-page .btn-on-dark-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  text-decoration: none;
}

.ai-page .ai-console {
  background: rgba(10, 18, 42, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.24);
  border-radius: var(--radius);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 48px rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ai-page .ai-console-body {
  padding: 22px 22px 20px;
}

.ai-page .ai-console-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ai-page .ai-console-mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.18);
}

.ai-page .ai-console-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ai-page .ai-console-title {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.ai-page .ai-console-subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.ai-page .ai-console-map {
  display: flex;
  flex-direction: column;
}

.ai-page .ai-console-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 4px;
  align-items: center;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.ai-page .ai-console-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 6px 4px 8px;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  line-height: 1.25;
}

.ai-page .ai-console-step-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.18);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.ai-page .ai-console-step-icon--blue {
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.2);
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.28);
}

.ai-page .ai-console-step-icon--cyan {
  color: #22d3ee;
  background: rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.24);
}

.ai-page .ai-console-step-icon--purple {
  color: #a78bfa;
  background: rgba(124, 58, 237, 0.22);
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.28);
}

.ai-page .ai-console-step-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-console-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.22);
}

.ai-page .ai-console-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-console-bridge {
  position: relative;
  height: 20px;
  margin: 4px 0 2px;
}

.ai-page .ai-console-bridge-stem {
  position: absolute;
  top: 0;
  width: 0;
  height: 12px;
  border-left: 1px dashed rgba(148, 163, 184, 0.38);
}

.ai-page .ai-console-bridge-stem--left {
  left: 16.66%;
}

.ai-page .ai-console-bridge-stem--center {
  left: 50%;
  transform: translateX(-50%);
}

.ai-page .ai-console-bridge-stem--right {
  right: 16.66%;
}

.ai-page .ai-console-bridge-rail {
  position: absolute;
  top: 11px;
  left: 16.66%;
  right: 16.66%;
  height: 0;
  border-top: 1px dashed rgba(148, 163, 184, 0.28);
}

.ai-page .ai-console-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.ai-page .ai-console-products-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ai-page .ai-console-products-row--second {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: calc(66.666% + 8px);
  margin: 0 auto;
  width: 100%;
}

.ai-page .ai-console-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  min-height: 36px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-align: center;
}

.ai-page .ai-console-product img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.ai-page .ai-console-product span {
  line-height: 1.2;
}

.ai-page .ai-console-product-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}

.ai-page .ai-console-product-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-summary-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.ai-page .ai-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}

.ai-page .ai-summary-item:last-child {
  border-right: none;
}

.ai-page .ai-summary-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.ai-page .ai-summary-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-summary-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.ai-page .ai-summary-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.ai-page .ai-summary-icon--cyan { color: #0891b2; background: rgba(6, 182, 212, 0.08); }
.ai-page .ai-summary-icon--green { color: #059669; background: rgba(16, 185, 129, 0.08); }

.ai-page .ai-summary-label {
  margin: 0 0 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ai-page .ai-summary-title {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.ai-page .ai-summary-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.ai-page .ai-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ai-page .ai-use-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.ai-page .ai-use-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 0;
}

.ai-page .ai-use-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-use-icon--filled svg {
  fill: currentColor;
  stroke: none;
}

.ai-page .ai-use-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.ai-page .ai-use-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }

.ai-page .ai-use-body {
  min-width: 0;
}

.ai-page .ai-use-card h3 {
  margin: 0 0 6px;
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.ai-page .ai-use-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ai-page .ai-pipeline-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
}

.ai-page .ai-pipeline-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.ai-page .ai-pipeline-step {
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 100%;
}

.ai-page .ai-pipeline-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 12px;
}

.ai-page .ai-pipeline-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-pipeline-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.ai-page .ai-pipeline-icon--cyan { color: #0891b2; background: rgba(6, 182, 212, 0.1); }
.ai-page .ai-pipeline-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.ai-page .ai-pipeline-icon--green { color: #059669; background: rgba(16, 185, 129, 0.1); }

.ai-page .ai-pipeline-step h3 {
  margin: 0 0 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.35;
}

.ai-page .ai-pipeline-num {
  color: #64748b;
  font-weight: 600;
}

.ai-page .ai-pipeline-step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ai-page .ai-pipeline-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  color: #93c5fd;
}

.ai-page .ai-pipeline-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-connected-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.ai-page .ai-connected-card {
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.ai-page .ai-connected-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ai-page .ai-connected-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.ai-page .ai-connected-icon--brand {
  width: auto;
  height: auto;
  min-width: 36px;
  background: transparent;
  border-radius: 0;
}

.ai-page .ai-connected-icon--brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.ai-page .ai-connected-icon--blue {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

.ai-page .ai-connected-icon--purple {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}

.ai-page .ai-connected-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-connected-head h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ai-page .ai-connected-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.ai-page .ai-connected-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ai-page .ai-connected-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
}

.ai-page .ai-governance-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.ai-page .ai-governance-panel {
  padding: 24px 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.ai-page .ai-governance-head {
  margin-bottom: 18px;
}

.ai-page .ai-governance-head .section-label {
  margin-bottom: 10px;
}

.ai-page .ai-governance-head .section-title {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 10px;
}

.ai-page .ai-governance-head .section-intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.ai-page .ai-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.ai-page .ai-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 15px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-page .ai-panel-item:nth-child(2n) {
  border-right: none;
}

.ai-page .ai-panel-grid:not(.ai-panel-grid--status) .ai-panel-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.ai-page .ai-panel-grid--status .ai-panel-item:nth-child(1),
.ai-page .ai-panel-grid--status .ai-panel-item:nth-child(2) {
  border-bottom: 1px solid var(--border);
}

.ai-page .ai-panel-grid--status .ai-panel-item:nth-child(3) {
  border-bottom: none;
  border-right: none;
}

.ai-page .ai-panel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.ai-page .ai-panel-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-page .ai-panel-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.ai-page .ai-panel-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.1); }
.ai-page .ai-panel-icon--green { color: #059669; background: rgba(16, 185, 129, 0.1); }

.ai-page .ai-panel-body {
  min-width: 0;
}

.ai-page .ai-panel-body h3 {
  margin: 0 0 6px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ai-page .ai-panel-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ai-page .ai-status-pill {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  vertical-align: middle;
}

.ai-page #use-cases {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  .ai-page .ai-hero::before,
  .ai-page .ai-hero-bg::before,
  .ai-page .ai-hero-blob {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .ai-page .ai-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ai-page .ai-summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-page .ai-summary-item:nth-child(2) {
    border-right: none;
  }

  .ai-page .ai-summary-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .ai-page .ai-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-page .ai-connected-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-page .ai-pipeline-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ai-page .ai-pipeline-arrow {
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
    padding: 2px 0;
  }

  .ai-page .ai-governance-panels {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ai-page .ai-panel-grid {
    grid-template-columns: 1fr;
  }

  .ai-page .ai-panel-item {
    border-right: none;
  }

  .ai-page .ai-panel-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .ai-page .ai-panel-item:last-child {
    border-bottom: none;
  }

  .ai-page .ai-panel-grid--status .ai-panel-item:nth-child(3) {
    border-right: none;
  }

  .ai-page .ai-console-flow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ai-page .ai-console-arrow {
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
  }

  .ai-page .ai-console-products-row,
  .ai-page .ai-console-products-row--second {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .ai-page .ai-console-bridge {
    display: none;
  }
}

@media (max-width: 768px) {
  .ai-page .ai-hero {
    padding-bottom: 36px;
  }

  .ai-page .ai-summary-section {
    padding: 24px 0 32px;
  }

  .ai-page .ai-console-flow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ai-page .ai-console-arrow {
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
  }

  .ai-page .ai-summary-strip {
    grid-template-columns: 1fr;
  }

  .ai-page .ai-summary-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .ai-page .ai-summary-item:last-child {
    border-bottom: none;
  }

  .ai-page .ai-use-grid {
    grid-template-columns: 1fr;
  }

  .ai-page .ai-governance-panels {
    grid-template-columns: 1fr;
  }

  .ai-page .ai-panel-grid {
    grid-template-columns: 1fr;
  }

  .ai-page .ai-panel-item {
    border-right: none;
  }

  .ai-page .ai-panel-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .ai-page .ai-panel-item:last-child {
    border-bottom: none;
  }

  .ai-page .ai-panel-grid--status .ai-panel-item:nth-child(3) {
    border-right: none;
  }

  .ai-page .ai-connected-grid {
    grid-template-columns: 1fr;
  }

  .ai-page .ai-hero-ctas {
    flex-direction: column;
  }

  .ai-page .ai-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .ai-page .ai-status-pill {
    display: block;
    margin: 10px 0 0;
    width: fit-content;
  }
}

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

/* Company page */
.company-page .company-hero {
  position: relative;
  padding: 64px 0 56px;
  background: #f8faff;
  overflow: hidden;
}

.company-page .company-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f8faff 0%, var(--page-bg) 100%);
  pointer-events: none;
}

.company-page .company-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px 56px;
  align-items: center;
}

.company-page .company-hero-content .section-label {
  margin-bottom: 12px;
}

.company-page .company-hero-content h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 3.8vw + 0.5rem, 46px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 34rem;
}

.company-page .company-hero-lead {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw + 0.5rem, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

.company-page .company-hero-support {
  margin: 12px 0 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.company-page .company-hero-founded {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.company-page .company-hero-founded-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.company-page .company-hero-founded-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.company-page .company-hero-ctas .btn-primary {
  background: #2563eb;
}

.company-page .company-hero-ctas .btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.22);
}

.company-page .company-snapshot {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.company-page .company-snapshot-title {
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.company-page .company-snapshot-list {
  margin: 0;
  padding: 0;
}

.company-page .company-snapshot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.company-page .company-snapshot-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.company-page .company-snapshot-row:first-child {
  padding-top: 0;
}

.company-page .company-snapshot-row dt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.company-page .company-snapshot-row dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: right;
}

.company-page .company-snapshot-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.company-page .company-snapshot-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-snapshot-icon--blue {
  color: #2563eb;
  background: linear-gradient(135deg, var(--icon-blue-from), var(--icon-blue-to));
}

.company-page .company-snapshot-icon--purple {
  color: #7c3aed;
  background: linear-gradient(135deg, var(--icon-purple-from), var(--icon-purple-to));
}

.company-page .company-snapshot-icon--green {
  color: #10b981;
  background: linear-gradient(135deg, var(--icon-green-from), var(--icon-green-to));
}

.company-page .company-snapshot-icon--cyan {
  color: #0891b2;
  background: linear-gradient(135deg, var(--icon-cyan-from), var(--icon-cyan-to));
}

.company-page .company-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-page .company-overview-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.company-page .company-overview-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.company-page .company-overview-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-overview-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.company-page .company-overview-icon--green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.company-page .company-overview-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }

.company-page .company-overview-card h3 {
  margin: 0 0 6px;
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.company-page .company-overview-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.company-page .company-focus-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.company-page .company-focus-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.company-page .company-focus-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 0;
}

.company-page .company-focus-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-focus-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.company-page .company-focus-icon--green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.company-page .company-focus-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.company-page .company-focus-icon--cyan { color: #0891b2; background: rgba(8, 145, 178, 0.08); }
.company-page .company-focus-icon--amber { color: #d97706; background: rgba(217, 119, 6, 0.08); }

.company-page .company-focus-body {
  min-width: 0;
}

.company-page .company-focus-card h3 {
  margin: 0 0 5px;
  font-family: Sora, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.company-page .company-focus-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.company-page .company-ecosystem-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 22px 24px 20px;
}

.company-page .company-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 16px;
}

.company-page .company-ecosystem-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.company-page .company-ecosystem-label {
  margin: 0 0 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.company-page .company-ecosystem-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.company-page .company-ecosystem-entry img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 2px;
}

.company-page .company-ecosystem-entry h3 {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.company-page .company-ecosystem-entry p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.company-page .company-ecosystem-cta {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
  font-weight: 500;
}

.company-page .company-ecosystem-cta a {
  color: var(--accent);
  text-decoration: none;
}

.company-page .company-ecosystem-cta a:hover {
  text-decoration: underline;
}

.company-page .company-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
}

.company-page .company-panel {
  padding: 24px 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.company-page .company-panel .section-label {
  margin-bottom: 8px;
}

.company-page .company-panel-title {
  margin: 0 0 14px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(20px, 2vw + 0.5rem, 24px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.company-page .company-panel-intro {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.company-page .company-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-page .company-principle-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.company-page .company-principle-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.company-page .company-principle-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-principle-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.company-page .company-principle-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.company-page .company-principle-icon--green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.company-page .company-principle-icon--amber { color: #d97706; background: rgba(217, 119, 6, 0.08); }

.company-page .company-principle-body {
  min-width: 0;
}

.company-page .company-principle-card h3 {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.company-page .company-principle-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.company-page .company-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  padding-top: 4px;
}

.company-page .company-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(37, 99, 235, 0.2);
  pointer-events: none;
}

.company-page .company-timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 4px;
  text-align: center;
}

.company-page .company-timeline-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin: 0 auto 10px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.company-page .company-timeline-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-timeline-step h3 {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.company-page .company-timeline-step p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.company-page .company-founder-profile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}

.company-page .company-founder-photo-wrap {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.company-page .company-founder-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.45);
  transform-origin: center 22%;
}

.company-page .company-founder-details {
  min-width: 0;
  padding-top: 2px;
}

.company-page .company-founder-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.company-page .company-founder-name-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.company-page .company-founder-name-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-founder-role {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.company-page .company-founder-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-page .company-founder-meta li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.company-page .company-founder-meta-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.company-page .company-founder-meta-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-location-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.company-page .company-location-fact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
}

.company-page .company-location-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.company-page .company-location-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-page .company-location-body {
  min-width: 0;
}

.company-page .company-location-fact h3 {
  margin: 0 0 2px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.company-page .company-location-fact p {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary-dark);
}

@media (max-width: 1100px) {
  .company-page .company-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-page .company-overview-grid {
    grid-template-columns: 1fr;
  }

  .company-page .company-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-page .company-ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-page .company-closing-grid {
    grid-template-columns: 1fr;
  }

  .company-page .company-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .company-page .company-timeline::before {
    display: none;
  }

  .company-page .company-location-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .company-page .company-hero {
    padding: 48px 0 40px;
  }

  .company-page .company-focus-grid,
  .company-page .company-ecosystem-grid,
  .company-page .company-principles-grid,
  .company-page .company-location-facts {
    grid-template-columns: 1fr;
  }

  .company-page .company-founder-profile {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 20px;
  }

  .company-page .company-founder-photo-wrap {
    align-self: center;
  }

  .company-page .company-founder-details {
    width: 100%;
    padding-top: 0;
  }

  .company-page .company-founder-meta {
    align-items: stretch;
  }

  .company-page .company-founder-meta li {
    justify-content: flex-start;
    text-align: left;
  }

  .company-page .company-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 8px;
    border-left: 2px solid rgba(37, 99, 235, 0.15);
  }

  .company-page .company-timeline-step {
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 0 0 0 12px;
  }

  .company-page .company-timeline-icon {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .company-page .company-timeline-step h3,
  .company-page .company-timeline-step p {
    text-align: left;
  }

  .company-page .company-hero-ctas {
    flex-direction: column;
  }

  .company-page .company-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Contact page */
.contact-page .contact-hero {
  position: relative;
  padding: 64px 0 56px;
  background: #f8faff;
  overflow: hidden;
}

.contact-page .contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f8faff 0%, var(--page-bg) 100%);
  pointer-events: none;
}

.contact-page .contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px 56px;
  align-items: center;
}

.contact-page .contact-hero-content .section-label {
  margin-bottom: 12px;
}

.contact-page .contact-hero-content h1 {
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(32px, 3.8vw + 0.5rem, 46px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 34rem;
}

.contact-page .contact-hero-lead {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: clamp(16px, 1.5vw + 0.5rem, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-page .contact-email {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px 0 0;
  padding: 18px 20px;
  max-width: 420px;
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-page .contact-email-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.contact-page .contact-email-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-email-link {
  display: block;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-page .contact-email-link:hover {
  text-decoration: underline;
}

.contact-page .contact-email-hint {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.contact-page .contact-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-page .contact-hero-ctas .btn-primary {
  background: #2563eb;
}

.contact-page .contact-hero-ctas .btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.22);
}

.contact-page .contact-topics {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-page .contact-topics-title {
  margin: 0 0 14px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.contact-page .contact-topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-page .contact-topics-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-page .contact-topics-row:first-child {
  padding-top: 0;
}

.contact-page .contact-topics-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page .contact-topics-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.contact-page .contact-topics-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-topics-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.contact-page .contact-topics-icon--green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.contact-page .contact-topics-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.contact-page .contact-topics-icon--amber { color: #d97706; background: rgba(217, 119, 6, 0.08); }

.contact-page .contact-topics-body {
  min-width: 0;
}

.contact-page .contact-topics-body h3 {
  margin: 0 0 4px;
  font-family: Sora, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.contact-page .contact-topics-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.contact-page .contact-paths-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-page .contact-path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-page .contact-path-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 12px;
}

.contact-page .contact-path-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-path-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.contact-page .contact-path-icon--green { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.contact-page .contact-path-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.contact-page .contact-path-icon--amber { color: #d97706; background: rgba(217, 119, 6, 0.08); }

.contact-page .contact-path-card h3 {
  margin: 0 0 6px;
  font-family: Sora, Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.contact-page .contact-path-card p {
  margin: 0 0 16px;
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.contact-page .contact-path-btn {
  width: 100%;
  justify-content: center;
}

.contact-page .contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-page .contact-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-page .contact-panel-title {
  margin: 0 0 16px;
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.contact-page .contact-company-rows {
  margin: 0;
  padding: 0;
}

.contact-page .contact-company-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-page .contact-company-row:first-child {
  padding-top: 0;
}

.contact-page .contact-company-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page .contact-company-row dt {
  flex-shrink: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-page .contact-company-row dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: right;
  max-width: 62%;
}

.contact-page .contact-company-row dd a {
  color: var(--accent);
  text-decoration: none;
}

.contact-page .contact-company-row dd a:hover {
  text-decoration: underline;
}

.contact-page .contact-include-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page .contact-include-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.4;
}

.contact-page .contact-include-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.contact-page .contact-include-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-include-icon--blue { color: #2563eb; background: rgba(37, 99, 235, 0.08); }
.contact-page .contact-include-icon--cyan { color: #0891b2; background: rgba(8, 145, 178, 0.08); }
.contact-page .contact-include-icon--purple { color: #7c3aed; background: rgba(124, 58, 237, 0.08); }
.contact-page .contact-include-icon--green { color: #10b981; background: rgba(16, 185, 129, 0.08); }

.contact-page .contact-include-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-sm);
}

.contact-page .contact-include-note-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #2563eb;
}

.contact-page .contact-include-note-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .section--cta-dark {
  padding: 52px 0 56px;
}

.contact-page .section--cta-dark .section-intro {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .contact-page .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-page .contact-paths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-hero {
    padding: 48px 0 40px;
  }

  .contact-page .contact-paths-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hero-ctas {
    flex-direction: column;
  }

  .contact-page .contact-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-page .contact-company-row {
    flex-direction: column;
    gap: 4px;
  }

  .contact-page .contact-company-row dd {
    text-align: left;
    max-width: none;
  }

  .contact-page .section--cta-dark .cta-dark-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-page .section--cta-dark .cta-dark-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Legal pages (Privacy, Terms) */
.legal-page {
  --legal-layout-max: 1080px;
  --legal-toc-width: 200px;
  --legal-article-max: 800px;
}

.legal-page .legal-shell {
  position: relative;
  padding-bottom: 80px;
  background: var(--page-bg);
}

.legal-page .legal-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background:
    linear-gradient(180deg, #f0f5ff 0%, #f8faff 55%, var(--page-bg) 100%);
  border-bottom: 1px solid var(--border);
  pointer-events: none;
}

.legal-page .legal-layout {
  position: relative;
  z-index: 1;
  width: min(var(--legal-layout-max), calc(100% - 40px));
  max-width: var(--legal-layout-max);
  display: grid;
  grid-template-columns: var(--legal-toc-width) minmax(0, var(--legal-article-max));
  column-gap: 48px;
  align-items: start;
}

.legal-page .legal-hero {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
  padding: 52px 0 32px;
  margin: 0;
  background: transparent;
  border: none;
}

.legal-page .legal-hero .section-label {
  margin-bottom: 12px;
}

.legal-page .legal-hero h1 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legal-page .legal-hero-lead {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 680px;
}

.legal-page .legal-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin: 22px 0 0;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 4px rgba(7, 17, 38, 0.04);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.legal-page .legal-hero-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.legal-page .legal-hero-meta a:hover {
  text-decoration: underline;
}

.legal-page .legal-hero-meta-sep {
  color: var(--border);
  user-select: none;
}

.legal-page .legal-toc {
  grid-column: 1;
  grid-row: 2;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.legal-page .legal-main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  width: 100%;
  max-width: var(--legal-article-max);
  padding-bottom: 8px;
}

.legal-page .legal-glance {
  margin: 0 0 32px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-page .legal-glance-title {
  margin: 0 0 14px;
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.legal-page .legal-glance-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page .legal-glance-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.legal-page .legal-glance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 2px solid var(--accent);
  box-sizing: border-box;
}

.legal-page .legal-glance-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.legal-page .legal-glance-list a:hover {
  text-decoration: underline;
}

.legal-page .legal-toc-title {
  margin: 0 0 14px;
  font-family: Sora, Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.legal-page .legal-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-page .legal-toc-list a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.45;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.legal-page .legal-toc-list a:hover {
  background: var(--soft-bg);
  color: var(--accent);
  text-decoration: none;
}

.legal-page .legal-toc-list a.is-active {
  background: rgba(37, 99, 235, 0.08);
  border-left-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.legal-page .legal-article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-page .legal-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
  padding: 28px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--border-light);
}

.legal-page .legal-section:first-of-type {
  padding-top: 4px;
}

.legal-page .legal-section:last-of-type {
  border-bottom: none;
}

.legal-page .legal-section--card {
  padding: 24px 26px;
  margin: 12px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-page .legal-section--card + .legal-section:not(.legal-section--card) {
  padding-top: 32px;
}

.legal-page .legal-section:not(.legal-section--card) + .legal-section--card {
  margin-top: 20px;
}

.legal-page .legal-section h2 {
  margin: 0 0 14px;
  font-family: Sora, Inter, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.legal-page .legal-subtitle {
  margin: 20px 0 8px;
  font-family: Sora, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.legal-page .legal-subtitle:first-of-type {
  margin-top: 4px;
}

.legal-page .legal-section p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-page .legal-section p:last-child {
  margin-bottom: 0;
}

.legal-page .legal-section ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-page .legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-page .legal-section li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-page .legal-section li:last-child {
  margin-bottom: 0;
}

.legal-page .legal-section li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-page .legal-section a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.legal-page .legal-section a:hover {
  text-decoration: underline;
}

.legal-page .legal-details {
  margin: 4px 0 0;
  padding: 0;
}

.legal-page .legal-details-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.legal-page .legal-details-row:first-child {
  padding-top: 0;
}

.legal-page .legal-details-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.legal-page .legal-details-row dt {
  flex-shrink: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-page .legal-details-row dd {
  margin: 0;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.45;
}

.legal-page .legal-details-row dd a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page .legal-details-row dd a:hover {
  text-decoration: underline;
}

.legal-page .legal-disclaimer {
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .legal-page .legal-layout {
    grid-template-columns: 1fr;
    max-width: var(--legal-article-max);
  }

  .legal-page .legal-hero {
    grid-column: 1;
  }

  .legal-page .legal-toc {
    display: none;
  }

  .legal-page .legal-main {
    grid-column: 1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .legal-page .legal-shell {
    padding-bottom: 64px;
  }

  .legal-page .legal-layout {
    width: min(var(--legal-article-max), calc(100% - 32px));
  }

  .legal-page .legal-hero {
    padding: 40px 0 28px;
  }

  .legal-page .legal-hero-lead {
    font-size: 16px;
  }

  .legal-page .legal-hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    padding: 12px 14px;
    font-size: 12px;
  }

  .legal-page .legal-hero-meta-sep {
    display: none;
  }

  .legal-page .legal-glance {
    padding: 18px 18px 20px;
    margin-bottom: 28px;
  }

  .legal-page .legal-section {
    padding: 22px 0;
  }

  .legal-page .legal-section--card {
    padding: 20px 18px;
    margin: 10px 0;
  }

  .legal-page .legal-section p,
  .legal-page .legal-section li {
    font-size: 15px;
  }

  .legal-page .legal-details-row {
    flex-direction: column;
    gap: 4px;
  }

  .legal-page .legal-details-row dd {
    text-align: left;
  }

  .legal-page .legal-disclaimer {
    margin-top: 24px;
    padding-top: 18px;
  }
}
