:root {
  --primary: #8ba7d7;
  --primary-deep: #6f8fc7;
  --primary-soft: #dce9ff;
  --primary-pale: #eef5ff;
  --dark: #2b3748;
  --dark-soft: #425168;
  --text: #516077;
  --muted: #7b889b;
  --background: #f5f8fd;
  --background-blue: #c5dafd;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --border: rgba(86, 108, 139, 0.15);
  --border-strong: rgba(86, 108, 139, 0.24);
  --success: #4fa88a;
  --warning: #d4a548;
  --shadow-sm: 0 10px 30px rgba(43, 55, 72, 0.08);
  --shadow-md: 0 24px 70px rgba(43, 55, 72, 0.12);
  --shadow-lg: 0 35px 100px rgba(43, 55, 72, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --container: 1220px;
  --header-height: 82px;
  --header-offset: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--background);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 750;
}

p {
  color: var(--text);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--surface);
  background: var(--dark);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 22px;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.45;
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
}

.eyebrow-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.35em;
  row-gap: 0.15em;
  min-width: 0;
}

.eyebrow-secondary {
  color: var(--dark-soft);
  font-weight: 750;
}

.eyebrow-secondary::before {
  content: "·";
  margin-inline: 0.35em;
  color: var(--primary);
}

.eyebrow-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.35em;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(139, 167, 215, 0.18);
}

.section-heading {
  max-width: 610px;
}

.section-heading > p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 790px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading.centered p {
  max-width: 700px;
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 750;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button svg,
.inline-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--dark);
  box-shadow: 0 14px 34px rgba(43, 55, 72, 0.18);
}

.button-primary:hover {
  background: #1f2a39;
  box-shadow: 0 18px 40px rgba(43, 55, 72, 0.24);
}

.button-secondary {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border-strong);
  box-shadow: 0 12px 28px rgba(43, 55, 72, 0.05);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  background: var(--surface);
  border-color: rgba(86, 108, 139, 0.34);
}

.button-light {
  color: var(--dark);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(34, 50, 70, 0.16);
}

.button-white {
  color: var(--dark);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(17, 28, 43, 0.2);
}

.button-sm {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.button-block {
  width: 100%;
}

.text-link,
.inline-link {
  color: var(--dark);
  font-weight: 750;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.inline-link:hover svg {
  transform: translateX(3px);
}

.inline-link svg {
  transition: transform var(--transition);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  box-sizing: border-box;
  height: var(--header-offset);
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(245, 248, 253, 0.92);
  border-bottom: 1px solid rgba(86, 108, 139, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: min(168px, 42vw);
  object-fit: contain;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 4px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(86, 108, 139, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: var(--dark-soft);
  font-size: 0.91rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--primary-deep);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-login {
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
  border-radius: 999px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  visibility: hidden;
  background: rgba(25, 35, 50, 0.38);
  opacity: 0;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  backdrop-filter: blur(3px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  width: min(88vw, 390px);
  height: 100vh;
  height: 100dvh;
  padding: calc(24px + env(safe-area-inset-top, 0px)) 24px
    calc(24px + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  box-shadow: 30px 0 80px rgba(35, 47, 65, 0.18);
  transform: translateX(-105%);
  transition: transform 320ms ease;
}

body.menu-open .mobile-menu-overlay,
.mobile-menu-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

body.menu-open .mobile-menu,
.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.menu-close {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--surface-soft);
  border-radius: 13px;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 28px 0;
}

.mobile-nav a {
  padding: 14px 0;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 700;
}

.mobile-menu-footer {
  display: grid;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
}

/* Hero */

.hero {
  min-height: 940px;
  padding-top: calc(var(--header-offset) + 72px);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(197, 218, 253, 0.58) 0%,
    rgba(245, 248, 253, 0.22) 56%,
    rgba(245, 248, 253, 0) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(87, 110, 143, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 110, 143, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 20px;
  right: 3%;
  width: 440px;
  height: 440px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-glow-two {
  bottom: 80px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(139, 167, 215, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 68px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.proof-icon,
.integration-check,
.scope-check,
.result-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--primary-deep);
  background: rgba(139, 167, 215, 0.17);
  border-radius: 50%;
}

.proof-icon svg,
.integration-check svg,
.scope-check svg,
.result-check svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.platform-window {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(87, 110, 143, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.platform-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 9px;
  height: 9px;
  background: #d9e2ef;
  border-radius: 50%;
}

.platform-title {
  color: var(--dark-soft);
  font-size: 0.76rem;
  font-weight: 750;
}

.platform-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.platform-status span {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(79, 168, 138, 0.12);
}

.platform-layout {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  min-height: 515px;
}

.platform-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 12px;
  background: #2d3a4c;
}

.sidebar-brand {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--surface);
  font-size: 0.68rem;
  font-weight: 800;
}

.sidebar-brand span {
  position: absolute;
}

.sidebar-item {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}

.sidebar-item.active {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.11);
}

.sidebar-item svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-content {
  min-width: 0;
  padding: 24px;
  background: #f7faff;
}

.dashboard-heading,
.card-heading,
.model-toolbar,
.access-window-heading,
.partner-dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-label,
.card-kicker,
.small-label,
.workflow-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-heading h2 {
  margin: 0;
  font-size: 1.3rem;
}

.dashboard-filter {
  padding: 8px 10px;
  color: var(--dark-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 700;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-stat {
  padding: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.mini-stat-label,
.mini-stat-trend {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.mini-stat strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.mini-stat-trend.positive {
  color: var(--success);
}

.mini-stat-trend.neutral {
  color: var(--primary-deep);
}

.dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr);
  gap: 14px;
  margin-top: 14px;
}

.chart-card,
.health-card {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.card-heading h3 {
  margin: 0;
  font-size: 0.9rem;
}

.card-value {
  font-size: 1.25rem;
  font-weight: 800;
}

.chart-area {
  height: 145px;
  margin-top: 14px;
}

.chart-area svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.grid-line {
  fill: none;
  stroke: rgba(86, 108, 139, 0.1);
  stroke-width: 1;
}

.chart-fill {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--primary-deep);
  stroke-width: 3;
  stroke-linecap: round;
}

.chart-area circle {
  fill: var(--surface);
  stroke: var(--primary-deep);
  stroke-width: 3;
}

.chart-legend {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
}

.health-score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 7px solid rgba(139, 167, 215, 0.22);
  border-top-color: var(--primary-deep);
  border-right-color: var(--primary-deep);
  border-radius: 50%;
}

.score-ring span {
  font-size: 1.05rem;
  font-weight: 800;
}

.health-score strong,
.health-score small {
  display: block;
}

.health-score strong {
  font-size: 0.76rem;
}

.health-score small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.4;
}

.health-list {
  display: grid;
  gap: 11px;
}

.health-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--dark-soft);
  font-size: 0.62rem;
  font-weight: 650;
}

.health-list strong {
  color: var(--dark);
  font-size: 0.6rem;
}

.health-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.health-dot.online {
  background: var(--success);
}

.health-dot.warning {
  background: var(--warning);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(87, 110, 143, 0.16);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.floating-card-access {
  top: 92px;
  right: -64px;
}

.floating-card-import {
  bottom: 42px;
  left: -55px;
}

.floating-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--primary-deep);
  background: var(--primary-pale);
  border-radius: 12px;
}

.floating-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.floating-card strong {
  margin-top: 3px;
  font-size: 0.68rem;
}

.trust-strip {
  position: relative;
  padding: 24px 0 36px;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 0;
  border-top: 1px solid var(--border);
}

.trust-strip p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.trust-items span {
  color: #67758a;
  font-size: 0.82rem;
  font-weight: 800;
}

/* Pilot proof */

.pilot-section {
  padding-top: 0;
  background: var(--surface);
}

.pilot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.pilot-stat {
  padding: 28px 22px;
  text-align: center;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.pilot-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pilot-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pilot-note {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Benefits */

.benefits-section {
  padding-top: 110px;
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.benefit-card:hover,
.solution-card:hover {
  border-color: rgba(111, 143, 199, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.benefit-card-featured {
  background:
    radial-gradient(
      circle at top right,
      rgba(197, 218, 253, 0.7),
      transparent 45%
    ),
    var(--surface-soft);
}

.benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.icon-box,
.solution-icon,
.step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--primary-deep);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
}

.icon-box svg,
.solution-icon svg,
.step-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  color: rgba(66, 81, 104, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  font-size: 1.55rem;
}

.benefit-card > p {
  max-width: 540px;
  margin-bottom: 26px;
}

.module-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.module {
  padding: 9px 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 750;
}

.module.active {
  color: var(--dark);
  background: #edf4ff;
  border-color: rgba(111, 143, 199, 0.2);
}

.org-visual {
  position: relative;
  margin-top: 34px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.org-node {
  padding: 10px 12px;
  color: var(--dark-soft);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 0.66rem;
  font-weight: 750;
  text-align: center;
}

.org-root {
  width: max-content;
  margin-inline: auto;
  color: var(--surface);
  background: var(--dark);
}

.org-lines {
  position: relative;
  width: 66%;
  height: 28px;
  margin-inline: auto;
  border-right: 1px solid rgba(111, 143, 199, 0.32);
  border-bottom: 1px solid rgba(111, 143, 199, 0.32);
  border-left: 1px solid rgba(111, 143, 199, 0.32);
}

.org-lines::before {
  position: absolute;
  top: -1px;
  left: 50%;
  height: 28px;
  border-left: 1px solid rgba(111, 143, 199, 0.32);
  content: "";
}

.org-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.import-mini-visual {
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.file-pill {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--dark-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  font-size: 0.62rem;
  font-weight: 800;
}

.import-arrow {
  display: flex;
  justify-content: center;
}

.import-arrow svg {
  width: 28px;
  fill: none;
  stroke: var(--primary-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.database-pill {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--surface);
  background: var(--dark);
  border-radius: 17px;
}

.database-pill svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.vendor-visual {
  position: relative;
  min-height: 150px;
  margin-top: 30px;
}

.vendor-core,
.vendor-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 800;
}

.vendor-core {
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  color: var(--surface);
  background: var(--dark);
  box-shadow: 0 15px 35px rgba(43, 55, 72, 0.2);
  transform: translate(-50%, -50%);
}

.vendor-node {
  width: 58px;
  height: 58px;
  color: var(--dark-soft);
  background: var(--surface);
  border: 1px solid var(--border);
}

.vendor-node::after {
  position: absolute;
  z-index: -1;
  width: 80px;
  border-top: 1px solid rgba(111, 143, 199, 0.28);
  content: "";
}

.node-one {
  top: 0;
  left: 8%;
}

.node-one::after {
  top: 60px;
  left: 45px;
  transform: rotate(30deg);
}

.node-two {
  top: 0;
  right: 8%;
}

.node-two::after {
  top: 60px;
  right: 45px;
  transform: rotate(-30deg);
}

.node-three {
  bottom: 0;
  left: 10%;
}

.node-three::after {
  bottom: 55px;
  left: 45px;
  transform: rotate(-30deg);
}

.node-four {
  right: 10%;
  bottom: 0;
}

.node-four::after {
  right: 45px;
  bottom: 55px;
  transform: rotate(30deg);
}

/* Operating model */

.operating-model-section {
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(197, 218, 253, 0.45),
      transparent 26%
    ),
    var(--background);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 88px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  color: var(--dark-soft);
  font-weight: 650;
}

.check-list li > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  border-radius: 50%;
}

.check-list svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.operating-model-visual,
.access-window {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.model-toolbar {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.model-toolbar strong,
.access-window-heading strong,
.partner-dashboard-top strong {
  display: block;
  font-size: 0.96rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #347b66;
  background: rgba(79, 168, 138, 0.12);
  border: 1px solid rgba(79, 168, 138, 0.18);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
}

.model-tree {
  padding: 28px 0 22px;
}

.tree-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 15px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.primary-tree-card {
  background: #edf4ff;
  border-color: rgba(111, 143, 199, 0.2);
}

.tree-level-root {
  display: flex;
  justify-content: center;
}

.tree-level-root .tree-card {
  width: min(100%, 390px);
}

.tree-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--surface);
  background: var(--dark);
  border-radius: 13px;
}

.tree-avatar.subtle {
  color: var(--primary-deep);
  background: var(--primary-pale);
}

.tree-avatar svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tree-card span,
.tree-card strong {
  display: block;
}

.tree-card > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.tree-card span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
}

.tree-card strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-tag {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: var(--primary-deep) !important;
  background: var(--surface);
  border-radius: 8px;
  font-size: 0.55rem !important;
}

.tree-connector-main {
  position: relative;
  width: 58%;
  height: 40px;
  margin-inline: auto;
  border-right: 1px solid rgba(111, 143, 199, 0.3);
  border-bottom: 1px solid rgba(111, 143, 199, 0.3);
  border-left: 1px solid rgba(111, 143, 199, 0.3);
}

.tree-connector-main::before {
  position: absolute;
  top: 0;
  left: 50%;
  height: 40px;
  border-left: 1px solid rgba(111, 143, 199, 0.3);
  content: "";
}

.tree-level-clients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tree-level-assets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.asset-chip {
  padding: 7px 10px;
  color: var(--dark-soft);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 750;
}

.model-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.note-icon,
.audit-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--primary-deep);
  background: var(--primary-pale);
  border-radius: 12px;
}

.note-icon svg,
.audit-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-note p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
}

/* Import */

.import-section {
  padding-top: 0;
}

.import-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
  padding: 58px;
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(
      circle at 15% 12%,
      rgba(139, 167, 215, 0.38),
      transparent 34%
    ),
    linear-gradient(135deg, #2b3748, #35465d);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.import-panel .eyebrow {
  color: #c9d9f5;
}

.import-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.import-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.import-source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 30px;
}

.import-source-list span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 750;
}

.import-workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.workflow-label {
  color: rgba(255, 255, 255, 0.52);
}

.workflow-column {
  display: grid;
  gap: 10px;
}

.source-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
}

.source-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 37px;
  height: 37px;
  color: var(--dark);
  background: #d9e6fa;
  border-radius: 10px;
  font-size: 0.55rem;
  font-weight: 800;
}

.source-card strong,
.source-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-card strong {
  font-size: 0.64rem;
}

.source-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
}

.workflow-processing {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
}

.processing-line {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.34);
}

.processing-node {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--dark);
  background: var(--surface);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(17, 28, 43, 0.24);
}

.processing-node svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-card {
  padding: 16px;
  color: var(--dark);
  background: var(--surface);
  border-radius: 16px;
}

.result-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.result-heading strong,
.result-heading span {
  display: block;
}

.result-heading strong {
  font-size: 0.68rem;
}

.result-heading span {
  color: var(--muted);
  font-size: 0.56rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(86, 108, 139, 0.08);
  font-size: 0.58rem;
}

.result-row strong {
  color: var(--dark);
}

.result-progress {
  height: 6px;
  margin-top: 13px;
  overflow: hidden;
  background: #edf2f8;
  border-radius: 999px;
}

.result-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--success);
}

.result-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.52rem;
  text-align: right;
}

/* Lifecycle */

.lifecycle-section {
  background: var(--surface);
}

.lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lifecycle-step {
  position: relative;
  min-height: 330px;
  padding: 34px 28px;
  background: var(--surface);
}

.lifecycle-step + .lifecycle-step {
  border-left: 1px solid var(--border);
}

.lifecycle-step:not(:last-child)::after {
  position: absolute;
  top: 56px;
  right: -13px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--primary-deep);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  content: "→";
  font-size: 0.7rem;
  font-weight: 800;
}

.step-index {
  margin-bottom: 22px;
  color: rgba(66, 81, 104, 0.26);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.lifecycle-step .step-icon {
  margin-bottom: 28px;
  background: var(--primary-pale);
  box-shadow: none;
}

.lifecycle-step h3 {
  font-size: 1.22rem;
}

.lifecycle-step p {
  margin: 0;
  font-size: 0.88rem;
}

.lifecycle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 28px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.lifecycle-summary span,
.lifecycle-summary strong {
  display: block;
}

.lifecycle-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.lifecycle-summary strong {
  margin-top: 4px;
  font-size: 0.96rem;
}

.lifecycle-summary .inline-link {
  margin-top: 0;
  white-space: nowrap;
}

/* Access */

.access-section {
  background:
    radial-gradient(
      circle at 13% 50%,
      rgba(197, 218, 253, 0.42),
      transparent 30%
    ),
    var(--background);
}

.access-window {
  max-width: 590px;
  margin-inline: auto;
}

.access-window-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.access-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--surface);
  background: var(--dark);
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 800;
}

.access-person strong,
.access-person span {
  display: block;
}

.access-person > div:nth-child(2) span {
  color: var(--muted);
  font-size: 0.67rem;
}

.permission-pill {
  padding: 6px 9px;
  color: var(--primary-deep);
  background: var(--primary-pale);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
}

.access-scope {
  padding-top: 20px;
}

.scope-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.scope-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary-deep);
  background: var(--primary-pale);
  border-radius: 11px;
}

.scope-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-row span,
.scope-row strong {
  display: block;
}

.scope-row > div:nth-child(2) span {
  color: var(--muted);
  font-size: 0.6rem;
}

.scope-row strong {
  font-size: 0.72rem;
}

.access-denied {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 11px 13px;
  color: #a65a5a;
  background: rgba(199, 101, 101, 0.08);
  border: 1px solid rgba(199, 101, 101, 0.13);
  border-radius: 12px;
  font-size: 0.62rem;
  font-weight: 700;
}

.access-denied > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.access-denied svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.scope-tags span {
  padding: 8px 11px;
  color: var(--dark-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 750;
}

.audit-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 28px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 17px;
}

.audit-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.audit-note p {
  margin: 0;
  font-size: 0.72rem;
}

/* Solutions */

.solutions-section {
  background: var(--surface);
}

.heading-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: 80px;
  max-width: none;
  margin-bottom: 56px;
}

.heading-with-action p {
  margin-bottom: 8px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.solution-card h3 {
  margin-top: 24px;
  font-size: 1.2rem;
}

.solution-card p {
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.solution-card a span {
  transition: transform var(--transition);
}

.solution-card a:hover span {
  transform: translateX(3px);
}

/* Integrations */

.integrations-section {
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(197, 218, 253, 0.34),
    rgba(245, 248, 253, 0)
  );
}

.integrations-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.integration-features {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.integration-features > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.integration-map {
  position: relative;
  min-height: 560px;
}

.integration-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 190px;
  padding: 14px 18px;
  color: var(--surface);
  background: #000;
  border: 10px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.integration-logo {
  height: 30px;
  max-width: 140px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(111, 143, 199, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 330px;
  height: 330px;
}

.orbit-two {
  width: 500px;
  height: 500px;
}

.integration-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 10px;
  color: var(--dark-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  font-size: 0.64rem;
  font-weight: 750;
  text-align: center;
}

.integration-node span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  color: var(--primary-deep);
  background: var(--primary-pale);
  border-radius: 11px;
  font-size: 0.6rem;
  font-weight: 800;
}

.integration-node.node-a {
  top: 8%;
  left: 40%;
}

.integration-node.node-b {
  top: 22%;
  right: 4%;
}

.integration-node.node-c {
  right: 11%;
  bottom: 12%;
}

.integration-node.node-d {
  bottom: 6%;
  left: 37%;
}

.integration-node.node-e {
  bottom: 18%;
  left: 4%;
}

.integration-node.node-f {
  top: 18%;
  left: 3%;
}

/* Partner */

.partner-section {
  padding-top: 20px;
}

.partner-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 70px;
  padding: 58px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
}

.partner-benefits > div {
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.partner-benefits strong,
.partner-benefits span {
  display: block;
}

.partner-benefits strong {
  font-size: 0.72rem;
}

.partner-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
}

.partner-dashboard {
  padding: 24px;
  background: #f7faff;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.partner-dashboard-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.partner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.partner-stats > div {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.partner-stats span,
.partner-stats strong {
  display: block;
}

.partner-stats span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
}

.partner-stats strong {
  margin-top: 6px;
  font-size: 1.1rem;
}

.partner-table {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.partner-table-head,
.partner-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.4fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.partner-table-head {
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-table-row {
  color: var(--dark-soft);
  border-top: 1px solid var(--border);
  font-size: 0.64rem;
  font-weight: 700;
}

.partner-table-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.table-status {
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.52rem;
}

.table-status.active {
  color: #347b66;
  background: rgba(79, 168, 138, 0.12);
}

.table-status.progress {
  color: #9a711f;
  background: rgba(212, 165, 72, 0.15);
}

.partner-dashboard-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.56rem;
}

.partner-dashboard-footer strong {
  color: var(--dark);
}

/* Contact / demo form */

.contact-section {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(197, 218, 253, 0.42),
      transparent 34%
    ),
    var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 56px;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-quote {
  margin: 24px 0 0;
  padding: 18px 20px;
  color: var(--dark-soft);
  background: var(--surface-soft);
  border-left: 3px solid var(--primary);
  border-radius: 0 14px 14px 0;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
}

.contact-details {
  margin-top: 28px;
}

.contact-mail {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 750;
}

.demo-form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  color: var(--dark-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field label a {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--dark);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(111, 143, 199, 0.55);
  box-shadow: 0 0 0 4px rgba(139, 167, 215, 0.16);
}

.form-field-invalid {
  border-color: rgba(199, 101, 101, 0.55) !important;
}

.form-field-checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 10px;
}

.form-field-checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.form-field-checkbox label {
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
}

.form-error {
  min-height: 1rem;
  color: #a65a5a;
  font-size: 0.72rem;
  font-weight: 650;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.2rem;
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 650;
}

.form-status-success {
  color: #347b66;
}

.form-status-error {
  color: #a65a5a;
}

.form-status-pending {
  color: var(--muted);
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(43, 55, 72, 0.12);
  backdrop-filter: blur(16px);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.cookie-banner-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

body.cookie-banner-visible {
  padding-bottom: 120px;
}

/* Legal pages */

.legal-header .header-inner {
  justify-content: space-between;
}

.legal-back {
  font-size: 0.88rem;
}

.legal-page {
  padding: calc(var(--header-offset) + 40px) 0 72px;
}

.legal-container {
  max-width: 820px;
}

.legal-heading {
  margin-bottom: 42px;
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.legal-heading h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.legal-heading p {
  margin: 0;
  font-size: 1.02rem;
}

.legal-section {
  margin-bottom: 34px;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.legal-section h3 {
  margin: 22px 0 10px;
  font-size: 1.02rem;
}

.legal-section p,
.legal-section li {
  color: var(--text);
  font-size: 0.92rem;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section code {
  padding: 2px 6px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82em;
}

.legal-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.legal-table th,
.legal-table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border);
}

.legal-table th {
  color: var(--dark-soft);
  background: var(--surface-soft);
  font-weight: 750;
}

.legal-footer {
  padding-top: 0;
}

.legal-footer .footer-bottom {
  border-top: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* CTA */

.cta-section {
  padding-top: 20px;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 64px;
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(139, 167, 215, 0.17), transparent 42%),
    var(--dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.cta-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(139, 167, 215, 0.25);
  border-radius: 50%;
  filter: blur(12px);
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.light-eyebrow {
  color: #c9d9f5;
}

.cta-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.cta-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.cta-quote {
  max-width: 650px;
  margin: 24px 0 0;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(197, 218, 253, 0.72);
  border-radius: 0 14px 14px 0;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  flex: 0 0 auto;
  text-align: center;
}

.cta-mail {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Footer */

.site-footer {
  padding: 84px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 54px;
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  font-size: 0.82rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 5px;
  font-size: 0.78rem;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

/* Responsive */

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    max-width: 940px;
  }

  .platform-window {
    transform: none;
  }

  .floating-card-access {
    right: 12px;
  }

  .floating-card-import {
    left: 12px;
  }

  .split-layout,
  .integrations-layout {
    gap: 54px;
  }

  .import-panel,
  .partner-panel {
    gap: 44px;
    padding: 46px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav,
  .header-login {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 88px 0;
  }

  .section.hero {
    padding-top: calc(var(--header-offset) + 56px);
    padding-bottom: 64px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 100%;
  }

  .trust-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .split-layout,
  .integrations-layout,
  .partner-panel,
  .import-panel {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 54px;
  }

  .section-heading {
    max-width: 760px;
  }

  .operating-model-visual,
  .access-window {
    max-width: 760px;
  }

  .import-panel {
    gap: 50px;
  }

  .lifecycle {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifecycle-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .lifecycle-step:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .lifecycle-step:nth-child(2)::after {
    display: none;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 720px);
    min-height: auto;
    margin-inline: auto;
    padding-top: 8px;
  }

  .integration-core {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    max-width: 190px;
    height: auto;
    margin-bottom: 8px;
    transform: none;
  }

  .integration-logo {
    height: 28px;
    max-width: 130px;
  }

  .orbit {
    display: none;
  }

  .integration-node {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto;
    height: auto;
    min-height: 92px;
  }

  .partner-copy {
    max-width: 760px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    align-items: start;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 38px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .button {
    flex: 1 1 auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .header-inner {
    gap: 10px;
  }

  .brand-logo {
    height: 30px;
    max-width: min(132px, 44vw);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .mobile-menu {
    width: min(92vw, 360px);
    padding-inline: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section.hero {
    padding-top: calc(var(--header-offset) + 56px);
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.75rem);
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: none;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.14;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .eyebrow-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .eyebrow-secondary::before {
    content: none;
    margin: 0;
  }

  .section-heading.centered {
    margin-bottom: 48px;
    text-align: left;
  }

  .site-header .button-sm {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-glow-one {
    top: calc(var(--header-offset) + 12px);
    right: -12%;
    width: min(72vw, 260px);
    height: min(72vw, 260px);
    opacity: 0.55;
  }

  .hero-glow-two {
    display: none;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .platform-window {
    border-radius: 22px;
  }

  .platform-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .platform-sidebar {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .sidebar-brand {
    display: none;
  }

  .sidebar-item {
    width: 34px;
    height: 34px;
  }

  .platform-content {
    padding: 14px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .platform-topbar {
    grid-template-columns: auto 1fr;
    gap: 8px;
    min-height: 48px;
    padding-inline: 14px;
  }

  .platform-title {
    display: none;
  }

  .platform-status {
    justify-self: end;
    font-size: 0.62rem;
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-filter {
    width: 100%;
    text-align: center;
  }

  .floating-card {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0;
  }

  .trust-strip {
    padding: 20px 0 28px;
  }

  .trust-strip .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .trust-items {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .trust-items span {
    font-size: 0.76rem;
  }

  .trust-strip p {
    max-width: none;
    font-size: 0.76rem;
  }

  .pilot-section {
    padding-top: 8px;
  }

  .contact-layout {
    gap: 32px;
  }

  .demo-form {
    padding: 24px 18px;
  }

  .cookie-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .button {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding-inline: 12px;
  }

  body.cookie-banner-visible {
    padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 26px;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
  }

  .org-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .org-lines {
    display: none;
  }

  .vendor-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: auto;
    margin-top: 24px;
  }

  .vendor-core,
  .vendor-node {
    position: static;
    width: 100%;
    height: auto;
    min-height: 58px;
    aspect-ratio: 1;
    transform: none;
  }

  .vendor-core {
    grid-column: 1 / -1;
    width: 74px;
    height: 74px;
    justify-self: center;
  }

  .vendor-node::after {
    display: none;
  }

  .import-mini-visual {
    grid-template-columns: repeat(4, 1fr);
  }

  .import-arrow {
    grid-column: 1 / -1;
    transform: rotate(90deg);
  }

  .database-pill {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .split-layout {
    gap: 40px;
  }

  .import-panel,
  .partner-panel,
  .cta-panel {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .import-workflow {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .workflow-processing {
    min-height: 64px;
  }

  .processing-line {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    border-top: 0;
    border-left: 1px dashed rgba(255, 255, 255, 0.34);
  }

  .lifecycle {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .lifecycle-step + .lifecycle-step {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .lifecycle-step::after {
    display: none !important;
  }

  .lifecycle-step {
    min-height: auto;
    padding: 28px 22px;
  }

  .lifecycle-summary {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 22px;
  }

  .lifecycle-summary .inline-link {
    white-space: normal;
  }

  .reverse-on-mobile .access-visual {
    order: 2;
  }

  .access-person {
    grid-template-columns: auto 1fr;
  }

  .permission-pill {
    grid-column: 1 / -1;
    width: max-content;
  }

  .scope-row strong {
    font-size: 0.68rem;
    word-break: break-word;
  }

  .heading-with-action {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 40px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .pilot-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card {
    min-height: auto;
  }

  .integrations-layout {
    gap: 40px;
  }

  .integration-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: auto;
    width: 100%;
    margin-inline: 0;
    padding: 8px 0 0;
    transform: none;
  }

  .integration-core {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    max-width: 180px;
    height: auto;
    margin-bottom: 6px;
    transform: none;
  }

  .integration-logo {
    height: 26px;
    max-width: 120px;
  }

  .orbit {
    display: none;
  }

  .integration-node {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto;
    height: auto;
    min-height: 86px;
    padding: 12px 8px;
    border-radius: 18px;
  }

  .integration-node span {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
  }

  .partner-benefits,
  .partner-stats {
    grid-template-columns: 1fr;
  }

  .partner-table {
    overflow: visible;
    background: transparent;
    border: 0;
  }

  .partner-table-head {
    display: none;
  }

  .partner-table-row {
    grid-template-columns: 1fr auto auto;
    gap: 8px 12px;
    min-width: 0;
    padding: 14px;
    border-top: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .partner-table-row + .partner-table-row {
    margin-top: 8px;
  }

  .partner-dashboard-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel {
    gap: 32px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }

  .demo-form {
    padding: 24px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .section.hero {
    padding-top: calc(var(--header-offset) + 48px);
    padding-bottom: 48px;
  }

  .section-heading.centered {
    margin-bottom: 36px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.2rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions .button {
    min-height: 50px;
    font-size: 0.92rem;
  }

  .proof-item {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .platform-window {
    border-radius: 18px;
  }

  .platform-status {
    font-size: 0;
  }

  .platform-status span {
    margin-left: auto;
  }

  .mini-stat {
    padding: 12px;
  }

  .mini-stat strong {
    font-size: 1.05rem;
  }

  .chart-legend {
    gap: 4px;
    font-size: 0.52rem;
  }

  .tree-level-clients {
    grid-template-columns: 1fr;
  }

  .tree-connector-main {
    width: 1px;
    height: 28px;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(111, 143, 199, 0.3);
  }

  .tree-connector-main::before {
    display: none;
  }

  .operating-model-visual,
  .access-window,
  .partner-dashboard {
    padding: 18px;
  }

  .model-toolbar,
  .access-window-heading,
  .partner-dashboard-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .import-panel,
  .partner-panel,
  .cta-panel {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .import-source-list span {
    font-size: 0.62rem;
  }

  .integration-map {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .integration-node {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: auto;
    padding: 14px 16px;
    text-align: left;
  }

  .integration-node span {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .partner-table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .partner-table-row > span:not(:first-child) {
    padding-left: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .pilot-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
