/* Generated from src/css by tools/build_site.py. Edit source files, not this file. */
/* Source: 00-tokens-base.css */
:root {
  --navy: #002B4C;
  --navy-900: #001F38;
  --navy-800: #003A63;
  --sky: #C0EBFF;
  --sky-soft: #EAF8FF;
  --peach: #F59E71;
  --peach-soft: #FFF0E8;
  --white: #FFFFFF;
  --paper: #F7FAFC;
  --ink: #102538;
  --muted: #526879;
  --border: #DCE7EE;
  --shadow-sm: 0 8px 24px rgba(0, 43, 76, 0.08);
  --shadow-lg: 0 24px 70px rgba(0, 43, 76, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1220px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin: 0; }
::selection { color: var(--navy); background: var(--peach); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }

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

/* Source: 10-navigation-buttons.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 231, 238, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo { width: 184px; height: auto; }
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.desktop-nav a,
.nav-dropdown > button {
  position: relative;
  border: 0;
  padding: 10px 0;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.desktop-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 99px;
  background: var(--peach);
  transition: transform 160ms ease;
}
.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible { color: var(--navy); }
.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button:focus-visible::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; gap: 8px; align-items: center; }
.nav-dropdown > button svg { width: 14px; transition: transform 160ms ease; }
.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 430px;
  padding: 12px;
  transform: translate(-50%, 8px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 160ms ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
}
.dropdown-card:hover,
.dropdown-card:focus-visible { background: var(--sky-soft); }
.dropdown-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--sky);
}
.dropdown-icon.peach { background: var(--peach-soft); }
.dropdown-card strong { display: block; color: var(--navy); font-size: 14px; }
.dropdown-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}
.mobile-toggle svg { width: 24px; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 82px 0 0;
  z-index: 99;
  padding: 24px 20px 40px;
  background: var(--white);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-weight: 750;
}
.mobile-nav .mobile-group { padding: 18px 0 6px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.mobile-nav .button { margin-top: 22px; width: 100%; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); background: var(--navy-800); box-shadow: var(--shadow-sm); }
.button svg { width: 18px; }
.button-peach { color: var(--navy); background: var(--peach); }
.button-peach:hover,
.button-peach:focus-visible { background: #FFB28D; }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover,
.button-light:focus-visible { background: var(--sky-soft); }
.button-outline { color: var(--navy); border-color: var(--navy); background: transparent; }
.button-outline:hover,
.button-outline:focus-visible { color: var(--white); background: var(--navy); }
.button-sm { min-height: 42px; padding-inline: 17px; }

/* Source: 20-layout-components.css */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(192, 235, 255, 0.15), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(245, 158, 113, 0.18), transparent 28%),
    linear-gradient(rgba(192, 235, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 235, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 70px;
  min-height: 720px;
  padding: 92px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 99px; background: var(--peach); }
.eyebrow-light { color: var(--sky); }
.hero h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 span { color: var(--sky); }
.hero-lead {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(255,255,255,.82);
  font-size: 19px;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.hero-trust span {
  padding: 7px 11px;
  border: 1px solid rgba(192, 235, 255, .20);
  border-radius: 999px;
  color: var(--sky);
  background: rgba(192, 235, 255, .06);
  font-size: 12px;
  font-weight: 750;
}
.hero-media {
  position: relative;
  min-height: 520px;
}
.hero-image {
  position: absolute;
  inset: 0 0 36px 18px;
  overflow: hidden;
  border: 1px solid rgba(192, 235, 255, .24);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 100px rgba(0, 16, 30, .50);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,43,76,.62));
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.signal-card {
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 2;
  width: min(360px, 82%);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  color: var(--navy);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.signal-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.signal-card strong { font-size: 14px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 5px var(--peach-soft); }
.signal-line { display: flex; align-items: end; gap: 5px; height: 72px; margin-top: 20px; }
.signal-line i { display: block; flex: 1; border-radius: 3px 3px 0 0; background: var(--sky); }
.signal-line i:nth-child(1) { height: 24%; }
.signal-line i:nth-child(2) { height: 38%; }
.signal-line i:nth-child(3) { height: 31%; }
.signal-line i:nth-child(4) { height: 64%; }
.signal-line i:nth-child(5) { height: 46%; }
.signal-line i:nth-child(6) { height: 82%; background: var(--peach); }
.signal-line i:nth-child(7) { height: 59%; }
.signal-line i:nth-child(8) { height: 90%; }
.signal-line i:nth-child(9) { height: 72%; }
.signal-line i:nth-child(10) { height: 100%; background: var(--peach); }
.signal-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; color: var(--muted); font-size: 11px; font-weight: 700; }

.industry-strip { border-bottom: 1px solid var(--border); background: var(--white); }
.industry-row { display: grid; grid-template-columns: auto repeat(4, 1fr); align-items: center; min-height: 110px; }
.industry-label { padding-right: 34px; color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.industry-item { display: flex; justify-content: center; align-items: center; min-height: 44px; border-left: 1px solid var(--border); color: var(--navy); font-size: 14px; font-weight: 800; }

.section { padding: 108px 0; }
.section-soft { background: var(--paper); }
.section-sky { background: var(--sky-soft); }
.section-dark { color: var(--white); background: var(--navy); }
.section-heading { max-width: 760px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-title {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.section-dark .section-title { color: var(--white); }
.section-lead { margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.section-dark .section-lead { color: rgba(255,255,255,.72); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.value-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.value-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: var(--sky-soft);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
}
.card-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--navy); background: var(--sky); }
.card-icon.peach { background: var(--peach-soft); }
.card-icon svg { width: 24px; }
.value-card h3 { position: relative; z-index: 1; margin-top: 48px; color: var(--navy); font-size: 24px; letter-spacing: -.025em; }
.value-card p { position: relative; z-index: 1; margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.72; }

.products-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.products-header .section-heading { max-width: 720px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; margin-top: 54px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; height: 300px; overflow: hidden; background: var(--sky-soft); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.product-card:hover .product-media img { transform: scale(1.03); }
.product-badge { position: absolute; top: 18px; left: 18px; display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.92); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.product-body { padding: 32px; }
.product-kicker { color: var(--peach); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin-top: 12px; color: var(--navy); font-size: 34px; letter-spacing: -.04em; }
.product-card p { margin-top: 15px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: var(--navy); background: var(--sky-soft); font-size: 11px; font-weight: 800; }
.product-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--navy); font-size: 14px; font-weight: 850; }
.product-link svg { width: 18px; transition: transform 160ms ease; }
.product-link:hover svg { transform: translateX(4px); }

.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.why-image { position: relative; min-height: 590px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 32px 90px rgba(0,16,30,.35); }
.why-image img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.why-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,43,76,.72)); }
.why-stat { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; padding: 22px 24px; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; background: rgba(0,43,76,.76); backdrop-filter: blur(14px); }
.why-stat strong { color: var(--sky); font-size: 34px; letter-spacing: -.04em; }
.why-stat span { display: block; margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }
.reason-list { display: grid; gap: 4px; margin-top: 38px; }
.reason { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(192,235,255,.18); }
.reason-number { color: var(--peach); font-size: 12px; font-weight: 850; }
.reason h3 { color: var(--white); font-size: 18px; }
.reason p { margin-top: 7px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.65; }

.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.industry-card { padding: 26px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); }
.industry-card .card-icon { margin-bottom: 34px; }
.industry-card h3 { color: var(--navy); font-size: 20px; }
.industry-card p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.68; }

.company-panel {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.company-copy { padding: 60px; }
.company-copy p { margin-top: 24px; color: var(--muted); font-size: 18px; line-height: 1.78; }
.company-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 38px; }
.company-metric { padding: 18px; border-radius: 16px; background: var(--sky-soft); }
.company-metric strong { display: block; color: var(--navy); font-size: 28px; letter-spacing: -.04em; }
.company-metric span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.company-media { min-height: 540px; }
.company-media img { width: 100%; height: 100%; object-fit: cover; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 58px;
  border-radius: var(--radius-lg);
  color: var(--navy);
  background: var(--sky);
}
.cta-panel::after { content: ""; position: absolute; width: 340px; height: 340px; right: -120px; top: -150px; border-radius: 50%; background: rgba(245,158,113,.55); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 760px; font-size: clamp(34px,4vw,52px); letter-spacing: -.045em; line-height: 1.05; }
.cta-panel p { max-width: 760px; margin-top: 17px; color: rgba(0,43,76,.74); font-size: 17px; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.site-footer { color: rgba(255,255,255,.74); background: var(--navy-900); }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr .75fr .75fr; gap: 50px; padding: 64px 0 48px; }
.footer-logo { width: 176px; }
.footer-intro { max-width: 320px; margin-top: 20px; font-size: 14px; line-height: 1.7; }
.footer-column h3 { color: var(--sky); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin-top: 14px; font-size: 14px; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid rgba(192,235,255,.13); font-size: 12px; }

/* Source: 30-product-pages.css */
.product-hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.product-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 4%, rgba(245,158,113,.20), transparent 30%), linear-gradient(rgba(192,235,255,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(192,235,255,.05) 1px,transparent 1px); background-size: auto, 64px 64px, 64px 64px; }
.product-hero-grid { position: relative; display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: 68px; min-height: 650px; padding: 90px 0; }
.product-brand-logo { width: min(420px, 84%); max-height: 68px; object-fit: contain; object-position: left; }
.product-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--sky); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-label::before { content: ""; width: 26px; height: 2px; background: var(--peach); }
.product-hero h1 { margin-top: 24px; font-size: clamp(45px,5.2vw,68px); letter-spacing: -.052em; line-height: 1.01; }
.product-hero p { max-width: 650px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.72; }
.product-hero-media { position: relative; min-height: 470px; overflow: hidden; border: 1px solid rgba(192,235,255,.23); border-radius: var(--radius-lg); box-shadow: 0 30px 90px rgba(0,16,30,.45); }
.product-hero-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.product-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 48%,rgba(0,43,76,.58)); }
.product-proof-strip { position: relative; margin-top: -44px; z-index: 3; }
.product-proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.product-proof { padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.product-proof strong { color: var(--navy); font-size: 18px; }
.product-proof p { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.workflow-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.workflow-card { padding: 26px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); }
.workflow-index { color: var(--peach); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.workflow-card h3 { margin-top: 20px; color: var(--navy); font-size: 20px; }
.workflow-card p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.66; }
.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: start; }
.feature-list { display: grid; gap: 14px; }
.feature-item { padding: 23px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); }
.feature-item h3 { color: var(--navy); font-size: 18px; }
.feature-item p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.architecture-board { padding: 30px; border-radius: var(--radius-md); color: var(--white); background: var(--navy); box-shadow: var(--shadow-lg); }
.architecture-board h3 { font-size: 21px; }
.architecture-stack { display: grid; gap: 10px; margin-top: 26px; }
.architecture-layer { padding: 17px 18px; border: 1px solid rgba(192,235,255,.18); border-radius: 13px; background: rgba(192,235,255,.07); }
.architecture-layer strong { color: var(--sky); font-size: 14px; }
.architecture-layer span { display: block; margin-top: 5px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.5; }
.standards-panel { padding: 36px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); }
.standards-panel h3 { color: var(--navy); font-size: 22px; }
.standards-panel p { margin-top: 11px; color: var(--muted); line-height: 1.7; }
.standards-panel .tag-row { margin-top: 24px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .header-actions .button { display: none; }
  .hero-grid,
  .product-hero-grid,
  .why-grid,
  .company-panel,
  .feature-split { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; min-height: auto; }
  .hero-media { min-height: 500px; }
  .why-image { order: 2; }
  .company-media { min-height: 420px; }
  .value-grid,
  .workflow-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1.3fr repeat(2,1fr); }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-row { min-height: 72px; }
  .logo { width: 154px; }
  .mobile-nav { inset: 72px 0 0; }
  .hero-grid { padding: 70px 0 60px; }
  .hero h1 { font-size: clamp(42px,12vw,58px); }
  .hero-lead { font-size: 17px; }
  .hero-media { min-height: 390px; }
  .hero-image { inset: 0 0 28px 0; }
  .signal-card { left: 12px; right: 12px; width: auto; }
  .industry-row { grid-template-columns: repeat(2,1fr); padding: 16px 0; }
  .industry-label { grid-column: 1 / -1; padding: 8px 0 16px; text-align: center; }
  .industry-item { border-left: 0; min-height: 40px; }
  .section { padding: 76px 0; }
  .section-title { font-size: clamp(34px,10vw,46px); }
  .section-lead { font-size: 16px; }
  .value-grid,
  .product-grid,
  .industry-grid,
  .workflow-grid,
  .product-proof-grid { grid-template-columns: 1fr; }
  .products-header { align-items: start; flex-direction: column; }
  .product-media { height: 240px; }
  .product-card h3 { font-size: 29px; }
  .why-image,
  .why-image img { min-height: 430px; }
  .company-copy { padding: 34px 25px; }
  .company-metrics { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 36px 26px; }
  .cta-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .product-hero-grid { padding: 70px 0 84px; }
  .product-hero h1 { font-size: clamp(40px,11vw,55px); }
  .product-hero-media,
  .product-hero-media img { min-height: 340px; }
  .product-proof-strip { margin-top: -34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Source: 40-insights-solutions.css */
.desktop-nav a[aria-current="page"] { color: var(--navy); }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.insights-hero,
.solution-hero,
.article-hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.insights-hero::before,
.solution-hero::before,
.article-hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 82% 8%,rgba(245,158,113,.20),transparent 30%),radial-gradient(circle at 12% 15%,rgba(192,235,255,.14),transparent 32%),linear-gradient(rgba(192,235,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(192,235,255,.045) 1px,transparent 1px); background-size:auto,auto,64px 64px,64px 64px; }
.insights-hero-grid { position:relative; display:grid; grid-template-columns:1.15fr .85fr; align-items:center; gap:70px; min-height:520px; padding:86px 0; }
.insights-hero h1,
.solution-hero h1,
.article-hero h1 { margin-top:24px; font-size:clamp(44px,5.3vw,70px); letter-spacing:-.052em; line-height:1.01; }
.insights-hero p,
.solution-hero p,
.article-hero p { max-width:760px; margin-top:24px; color:rgba(255,255,255,.78); font-size:18px; line-height:1.72; }
.insights-hero-panel { display:grid; gap:0; padding:28px; border:1px solid rgba(192,235,255,.22); border-radius:var(--radius-md); background:rgba(255,255,255,.07); backdrop-filter:blur(14px); }
.insights-hero-panel > span { margin-bottom:12px; color:var(--peach); font-size:11px; font-weight:850; letter-spacing:.14em; text-transform:uppercase; }
.insights-hero-panel strong { padding:16px 0; border-top:1px solid rgba(192,235,255,.16); color:var(--sky); font-size:16px; }
.insight-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; margin-top:54px; }
.insight-card { overflow:hidden; border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow-sm); transition:transform 180ms ease,box-shadow 180ms ease; }
.insight-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.insight-media { position:relative; display:block; height:260px; overflow:hidden; background:var(--sky-soft); }
.insight-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(0,43,76,.48)); }
.insight-media img { width:100%; height:100%; object-fit:cover; transition:transform 350ms ease; }
.insight-card:hover .insight-media img { transform:scale(1.03); }
.insight-media span { position:absolute; left:18px; bottom:18px; z-index:2; padding:7px 11px; border-radius:999px; color:var(--navy); background:rgba(255,255,255,.92); font-size:11px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
.insight-card-body { padding:30px; }
.insight-meta { display:flex; flex-wrap:wrap; gap:8px 15px; color:var(--muted); font-size:12px; font-weight:700; }
.insight-meta span::before { content:"·"; margin-right:15px; }
.insight-card h2 { margin-top:15px; color:var(--navy); font-size:28px; letter-spacing:-.035em; line-height:1.15; }
.insight-card h2 a:hover { color:var(--navy-700); }
.insight-card p { margin-top:15px; color:var(--muted); font-size:15px; line-height:1.72; }
.insight-card:nth-child(1) { grid-column:1 / -1; display:grid; grid-template-columns:.95fr 1.05fr; }
.insight-card:nth-child(1) .insight-media { height:100%; min-height:360px; }
.solution-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:50px; }
.solution-card { display:block; min-height:310px; padding:34px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); box-shadow:var(--shadow-sm); transition:transform 180ms ease,box-shadow 180ms ease; }
.solution-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.solution-card > span { color:var(--peach); font-size:11px; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.solution-card h3 { margin-top:42px; color:var(--navy); font-size:29px; letter-spacing:-.035em; line-height:1.12; }
.solution-card p { margin-top:16px; color:var(--muted); line-height:1.7; }
.solution-card strong { display:block; margin-top:28px; color:var(--navy); font-size:14px; }
.article-hero-inner { position:relative; max-width:980px; padding:80px 0 74px; }
.article-back { display:inline-flex; margin-bottom:42px; color:var(--sky); font-size:13px; font-weight:800; }
.article-hero h1 { max-width:980px; }
.article-meta { display:flex; flex-wrap:wrap; gap:10px 20px; margin-top:28px; color:var(--sky); font-size:12px; font-weight:780; }
.article-meta span::before { content:"·"; margin-right:20px; color:var(--peach); }
.article-layout { display:grid; grid-template-columns:minmax(0,760px) minmax(260px,360px); justify-content:space-between; gap:70px; padding-top:78px; padding-bottom:108px; }
.article-content { color:#243849; font-size:17px; line-height:1.86; }
.article-content .article-lead { color:var(--navy); font-size:22px; line-height:1.7; }
.article-content h2 { margin-top:48px; color:var(--navy); font-size:31px; letter-spacing:-.035em; line-height:1.15; }
.article-content p { margin-top:20px; }
.article-content ul { margin:22px 0 0 22px; }
.article-content li { margin-top:12px; padding-left:6px; }
.article-callout { margin:38px 0; padding:27px 28px; border-left:4px solid var(--peach); border-radius:0 16px 16px 0; color:var(--navy); background:var(--sky-soft); font-size:20px; line-height:1.55; }
.article-source { display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; margin-top:58px; padding-top:24px; border-top:1px solid var(--border); color:var(--muted); font-size:13px; }
.article-source a { color:var(--navy); font-weight:800; }
.article-aside { display:grid; align-content:start; gap:18px; position:sticky; top:112px; height:max-content; }
.article-aside-card { padding:28px; border-radius:20px; color:var(--white); background:var(--navy); }
.article-aside-card.light { color:var(--navy); border:1px solid var(--border); background:var(--white); }
.article-aside-card > span { color:var(--peach); font-size:11px; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.article-aside-card h2 { margin-top:17px; font-size:25px; letter-spacing:-.03em; }
.article-aside-card p { margin-top:13px; color:rgba(255,255,255,.68); font-size:14px; line-height:1.68; }
.article-aside-card.light p { color:var(--muted); }
.article-aside-card .button { margin-top:22px; color:var(--navy); background:var(--peach); }
.solution-hero-grid { position:relative; display:grid; grid-template-columns:1.02fr .98fr; align-items:center; gap:68px; min-height:650px; padding:90px 0; }
.solution-hero-media { min-height:470px; overflow:hidden; border:1px solid rgba(192,235,255,.23); border-radius:var(--radius-lg); box-shadow:0 30px 90px rgba(0,16,30,.45); }
.solution-hero-media img { width:100%; height:100%; min-height:470px; object-fit:cover; }
.solution-intro-grid { display:grid; grid-template-columns:1.15fr .85fr; align-items:start; gap:70px; }
.buyer-panel { padding:32px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); box-shadow:var(--shadow-sm); }
.buyer-panel > span { color:var(--peach); font-size:11px; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.buyer-panel ul { display:grid; gap:0; margin-top:18px; list-style:none; }
.buyer-panel li { padding:15px 0; border-top:1px solid var(--border); color:var(--navy); font-size:15px; font-weight:760; }
.solution-outcome-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:start; }
.outcome-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; list-style:none; }
.outcome-list li { position:relative; padding:21px 20px 21px 48px; border:1px solid rgba(192,235,255,.16); border-radius:16px; color:rgba(255,255,255,.78); background:rgba(192,235,255,.06); font-size:14px; line-height:1.6; }
.outcome-list li::before { content:"✓"; position:absolute; left:20px; top:20px; color:var(--peach); font-weight:900; }
.product-solution-panel { display:grid; grid-template-columns:.9fr 1.1fr; gap:65px; align-items:center; }
.product-solution-panel h2 { margin-top:18px; color:var(--navy); font-size:clamp(36px,4vw,54px); letter-spacing:-.045em; }
.product-solution-panel > div:first-child > p { margin-top:20px; color:var(--muted); font-size:17px; line-height:1.75; }
@media (max-width:1080px) {
  .insights-hero-grid,.solution-hero-grid,.solution-intro-grid,.solution-outcome-grid,.product-solution-panel,.article-layout { grid-template-columns:1fr; }
  .article-aside { position:static; grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:760px) {
  .insights-hero-grid,.solution-hero-grid { min-height:auto; padding:70px 0; }
  .insights-hero h1,.solution-hero h1,.article-hero h1 { font-size:clamp(39px,11vw,54px); }
  .insight-grid,.solution-grid,.outcome-list { grid-template-columns:1fr; }
  .insight-card:nth-child(1) { grid-column:auto; display:block; }
  .insight-card:nth-child(1) .insight-media { min-height:0; height:240px; }
  .insight-media { height:240px; }
  .article-layout { padding-top:58px; padding-bottom:76px; }
  .article-content { font-size:16px; }
  .article-content .article-lead { font-size:19px; }
  .article-content h2 { font-size:27px; }
  .article-aside { grid-template-columns:1fr; }
  .solution-hero-media,.solution-hero-media img { min-height:340px; }
}

/* Source: 50-corporate-legal.css */
.desktop-nav { gap: 22px; }
.desktop-nav a, .nav-dropdown > button { font-size: 13px; }
.company-dropdown { width: 460px; }
.footer-main-v24 { grid-template-columns: 1.35fr repeat(4,.75fr); gap: 38px; }

.page-hero { position:relative; overflow:hidden; color:var(--white); background:var(--navy); }
.page-hero::before, .legal-hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 82% 8%,rgba(245,158,113,.20),transparent 30%),radial-gradient(circle at 12% 15%,rgba(192,235,255,.14),transparent 32%),linear-gradient(rgba(192,235,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(192,235,255,.045) 1px,transparent 1px); background-size:auto,auto,64px 64px,64px 64px; }
.page-hero-grid { position:relative; display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:70px; min-height:600px; padding:88px 0; }
.page-hero h1 { margin-top:24px; max-width:760px; font-size:clamp(46px,5.5vw,72px); letter-spacing:-.052em; line-height:1.01; }
.page-hero p { max-width:700px; margin-top:24px; color:rgba(255,255,255,.78); font-size:18px; line-height:1.72; }
.page-hero-media { position:relative; min-height:440px; overflow:hidden; border:1px solid rgba(192,235,255,.23); border-radius:var(--radius-lg); box-shadow:0 30px 90px rgba(0,16,30,.45); }
.page-hero-media img { width:100%; height:100%; min-height:440px; object-fit:cover; }
.page-hero-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(0,43,76,.55)); }
.split-content { display:grid; grid-template-columns:.9fr 1.1fr; gap:75px; align-items:start; }
.prose-large p { color:var(--muted); font-size:18px; line-height:1.8; }
.prose-large p + p { margin-top:22px; }
.prose-large.light p { color:rgba(255,255,255,.72); }

.maturity-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.maturity-card { min-height:310px; padding:32px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); box-shadow:var(--shadow-sm); transition:transform 180ms ease,box-shadow 180ms ease; }
.maturity-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.maturity-card > span, .resource-link-grid span, .download-card > span { color:var(--peach); font-size:11px; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.maturity-card h3 { margin-top:45px; color:var(--navy); font-size:27px; letter-spacing:-.035em; line-height:1.15; }
.maturity-card p { margin-top:15px; color:var(--muted); line-height:1.7; }
.maturity-card strong { display:block; margin-top:28px; color:var(--navy); font-size:14px; }
.career-preview-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:75px; align-items:center; }
.career-preview-action { padding:34px; border:1px solid rgba(192,235,255,.19); border-radius:var(--radius-md); background:rgba(192,235,255,.07); }
.career-preview-action p { color:rgba(255,255,255,.74); font-size:17px; line-height:1.75; }
.career-preview-action .button { margin-top:25px; }

.heritage-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.heritage-grid article { padding:32px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); }
.heritage-grid strong { color:var(--peach); font-size:13px; letter-spacing:.12em; text-transform:uppercase; }
.heritage-grid h3 { margin-top:36px; color:var(--navy); font-size:24px; }
.heritage-grid p { margin-top:13px; color:var(--muted); line-height:1.7; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:52px; }
.values-grid article { min-height:250px; padding:28px; border:1px solid rgba(192,235,255,.17); border-radius:20px; background:rgba(192,235,255,.06); }
.values-grid article span { color:var(--peach); font-size:12px; font-weight:850; }
.values-grid h3 { margin-top:42px; color:var(--white); font-size:22px; }
.values-grid p { margin-top:12px; color:rgba(255,255,255,.66); font-size:14px; line-height:1.7; }
.values-grid.light article { border-color:var(--border); background:var(--white); box-shadow:var(--shadow-sm); }
.values-grid.light h3 { color:var(--navy); }
.values-grid.light p { color:var(--muted); }
.role-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:75px; align-items:start; }
.role-list { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.role-list span { padding:18px 20px; border:1px solid rgba(192,235,255,.17); border-radius:15px; color:var(--sky); background:rgba(192,235,255,.06); font-weight:750; }
.expect-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:50px; }
.expect-grid article { padding:27px; border:1px solid var(--border); border-radius:20px; background:var(--white); }
.expect-grid h3 { color:var(--navy); font-size:20px; }
.expect-grid p { margin-top:12px; color:var(--muted); font-size:14px; line-height:1.68; }

.architecture-map { max-width:1050px; margin:55px auto 0; padding:34px; border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow-sm); }
.architecture-row { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.architecture-row.top, .architecture-row.bottom { grid-template-columns:repeat(2,1fr); }
.architecture-node { padding:24px; border:1px solid var(--border); border-radius:18px; background:var(--sky-soft); }
.architecture-node.peach { background:var(--peach-soft); }
.architecture-node.dark { color:var(--white); border-color:var(--navy); background:var(--navy); }
.architecture-node strong { display:block; color:var(--navy); font-size:17px; }
.architecture-node.dark strong { color:var(--sky); }
.architecture-node span { display:block; margin-top:9px; color:var(--muted); font-size:13px; line-height:1.6; }
.architecture-node.dark span { color:rgba(255,255,255,.68); }
.architecture-connector { display:flex; justify-content:center; align-items:center; min-height:68px; position:relative; }
.architecture-connector::before { content:""; position:absolute; top:0; bottom:0; width:2px; background:var(--peach); }
.architecture-connector span { position:relative; z-index:1; padding:8px 13px; border-radius:999px; color:var(--navy); background:var(--white); font-size:11px; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.integration-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:50px; }
.integration-grid article { padding:27px; border:1px solid var(--border); border-radius:20px; background:var(--white); }
.integration-grid h3 { color:var(--navy); font-size:20px; }
.integration-grid p { margin-top:12px; color:var(--muted); font-size:14px; line-height:1.68; }

.download-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.download-card { min-height:330px; padding:32px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); box-shadow:var(--shadow-sm); transition:transform 180ms ease,box-shadow 180ms ease; }
.download-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.download-card h3 { margin-top:46px; color:var(--navy); font-size:27px; line-height:1.15; letter-spacing:-.035em; }
.download-card p { margin-top:15px; color:var(--muted); line-height:1.7; }
.download-card strong { display:block; margin-top:28px; color:var(--navy); }
.resource-link-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:50px; }
.resource-link-grid a { min-height:240px; padding:27px; border:1px solid var(--border); border-radius:20px; background:var(--white); }
.resource-link-grid h3 { margin-top:34px; color:var(--navy); font-size:21px; }
.resource-link-grid p { margin-top:12px; color:var(--muted); font-size:14px; line-height:1.65; }

.faq-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:70px; align-items:start; }
.faq-list { display:grid; gap:12px; }
.faq-list details { border:1px solid var(--border); border-radius:17px; background:var(--white); }
.faq-list summary { position:relative; padding:22px 58px 22px 23px; color:var(--navy); font-weight:800; cursor:pointer; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:22px; top:17px; display:grid; place-items:center; width:32px; height:32px; border-radius:50%; background:var(--sky-soft); font-size:20px; }
.faq-list details[open] summary::after { content:"−"; background:var(--peach-soft); }
.faq-list details p { padding:0 23px 23px; color:var(--muted); font-size:14px; line-height:1.72; }

.evaluation-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:52px; counter-reset:steps; }
.evaluation-steps article { min-height:300px; padding:28px; border:1px solid var(--border); border-radius:20px; background:var(--white); }
.evaluation-steps span { color:var(--peach); font-size:12px; font-weight:850; }
.evaluation-steps h3 { margin-top:45px; color:var(--navy); font-size:22px; }
.evaluation-steps p { margin-top:13px; color:var(--muted); font-size:14px; line-height:1.7; }
.preparation-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:75px; align-items:start; }
.check-list { display:grid; gap:12px; }
.check-list div { padding:22px; border:1px solid var(--border); border-radius:17px; background:var(--white); }
.check-list strong { display:block; color:var(--navy); }
.check-list span { display:block; margin-top:8px; color:var(--muted); font-size:14px; line-height:1.65; }

.updates-list { display:grid; gap:16px; margin-top:50px; }
.updates-list article { display:grid; grid-template-columns:150px 1fr; gap:30px; padding:30px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--white); }
.updates-list time { color:var(--navy); font-weight:850; }
.updates-list div > span { color:var(--peach); font-size:11px; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.updates-list h3 { margin-top:11px; color:var(--navy); font-size:24px; }
.updates-list p { margin-top:11px; color:var(--muted); line-height:1.7; }
.updates-list a { display:inline-block; margin-top:16px; color:var(--navy); font-weight:850; }

.legal-hero { position:relative; overflow:hidden; color:var(--white); background:var(--navy); }
.legal-hero .container { position:relative; max-width:1000px; padding-top:95px; padding-bottom:80px; }
.legal-hero h1 { margin-top:24px; font-size:clamp(44px,5.2vw,68px); letter-spacing:-.05em; line-height:1.02; }
.legal-hero p { max-width:760px; margin-top:22px; color:rgba(255,255,255,.76); font-size:18px; line-height:1.7; }
.legal-updated { display:block; margin-top:28px; color:var(--sky); font-size:12px; font-weight:750; }
.legal-layout { display:grid; grid-template-columns:240px 1fr; gap:70px; align-items:start; }
.legal-layout aside { position:sticky; top:110px; display:grid; gap:11px; padding:24px; border:1px solid var(--border); border-radius:18px; background:var(--paper); }
.legal-layout aside strong { color:var(--navy); }
.legal-layout aside span, .legal-layout aside a { color:var(--muted); font-size:13px; }
.legal-prose { max-width:800px; }
.legal-prose section + section { margin-top:44px; padding-top:38px; border-top:1px solid var(--border); }
.legal-prose h2 { color:var(--navy); font-size:28px; letter-spacing:-.03em; }
.legal-prose p { margin-top:15px; color:var(--muted); font-size:16px; line-height:1.8; }
.legal-prose a { color:var(--navy); text-decoration:underline; text-underline-offset:3px; }

@media (max-width:1180px) {
  .footer-main-v24 { grid-template-columns:1.3fr repeat(2,1fr); }
  .footer-main-v24 .footer-column:nth-child(4), .footer-main-v24 .footer-column:nth-child(5) { grid-column:auto; }
}
@media (max-width:1080px) {
  .page-hero-grid,.split-content,.career-preview-grid,.role-grid,.faq-layout,.preparation-grid { grid-template-columns:1fr; }
  .maturity-grid,.values-grid,.heritage-grid,.integration-grid,.download-grid { grid-template-columns:repeat(2,1fr); }
  .expect-grid,.resource-link-grid,.evaluation-steps { grid-template-columns:repeat(2,1fr); }
  .page-hero-grid { min-height:auto; }
}
@media (max-width:760px) {
  .page-hero-grid { padding:68px 0; gap:45px; }
  .page-hero h1 { font-size:clamp(40px,11vw,55px); }
  .page-hero-media,.page-hero-media img { min-height:330px; }
  .maturity-grid,.values-grid,.heritage-grid,.integration-grid,.download-grid,.expect-grid,.resource-link-grid,.evaluation-steps,.architecture-row,.architecture-row.top,.architecture-row.bottom,.role-list { grid-template-columns:1fr; }
  .footer-main-v24 { grid-template-columns:repeat(2,1fr); }
  .footer-main-v24 .footer-brand { grid-column:1 / -1; }
  .architecture-map { padding:20px; }
  .updates-list article { grid-template-columns:1fr; gap:13px; padding:24px; }
  .legal-layout { grid-template-columns:1fr; gap:40px; }
  .legal-layout aside { position:static; }
}
.mobile-nav a.button { color: var(--white); border-bottom: 0; }


/* Partners and ecosystem */
.partner-hero-panel{align-self:center;padding:2.25rem;border:1px solid rgba(255,255,255,.25);border-radius:1.25rem;background:linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.06));box-shadow:0 24px 60px rgba(0,20,38,.22)}
.partner-hero-panel span,.partner-category{display:block;margin-bottom:.65rem;font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--peach)}
.partner-hero-panel strong{display:block;font-size:clamp(1.35rem,2.3vw,2.15rem);line-height:1.2;color:#fff}
.partner-hero-panel p{margin:1rem 0 0;color:rgba(255,255,255,.82)}
.partner-benefit-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.25rem;margin-top:2.5rem}
.partner-benefit-grid article{padding:1.6rem;border:1px solid var(--line);border-radius:1rem;background:#fff;box-shadow:var(--shadow-sm)}
.partner-benefit-grid article>span{font-weight:800;color:var(--blue)}
.partner-benefit-grid h3{margin:.75rem 0 .55rem}
.partner-benefit-grid p{margin:0;color:var(--text-muted)}
.current-partner-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem;margin-top:2.25rem}
.current-partner-card{display:grid;grid-template-columns:9rem 1fr;gap:1.5rem;padding:1.75rem;border:1px solid var(--line);border-radius:1.1rem;background:#fff;box-shadow:var(--shadow-sm)}
.partner-name{display:flex;align-items:center;justify-content:center;min-height:8rem;padding:1rem;border-radius:.85rem;background:var(--navy);color:#fff;font-size:1.35rem;font-weight:850;letter-spacing:.06em;text-align:center}
.current-partner-card h3{margin:.1rem 0 .65rem}.current-partner-card p{color:var(--text-muted)}
.current-partner-card a{font-weight:750;color:var(--blue)}
.partner-model-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:4rem;align-items:start}
.partner-type-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.partner-type-list article{padding:1.35rem;border:1px solid rgba(255,255,255,.16);border-radius:.9rem;background:rgba(255,255,255,.07)}
.partner-type-list h3{margin:0 0 .55rem;color:#fff}.partner-type-list p{margin:0;color:rgba(255,255,255,.76)}
.partner-principles{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:3rem;align-items:start}
@media(max-width:980px){.partner-benefit-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.current-partner-grid,.partner-model-grid,.partner-principles{grid-template-columns:1fr}.partner-model-grid{gap:2rem}}
@media(max-width:640px){.partner-benefit-grid,.partner-type-list{grid-template-columns:1fr}.current-partner-card{grid-template-columns:1fr}.partner-name{min-height:5.5rem}}


/* HubSpot contact-form integration */
.hubspot-contact-card { min-height: 34rem; }
.hubspot-form-intro { margin-bottom: 1.25rem; color: var(--color-text-muted, #496174); }
.hubspot-form-intro p, .hubspot-privacy-note { margin: 0; }
.hubspot-form-mount { min-height: 24rem; }
.hubspot-form-loading { color: var(--color-text-muted, #496174); }
.hubspot-form-fallback { margin: 1rem 0; padding: 1rem 1.1rem; border: 1px solid #d7a17f; border-radius: .75rem; background: #fff6f1; }
.hubspot-form-fallback p { margin: 0; }
.hubspot-privacy-note { margin-top: 1rem; font-size: .9rem; color: var(--color-text-muted, #496174); }
.hubspot-contact-card .hs-form-field { margin-bottom: 1rem; }
.hubspot-contact-card .hs-form-field label { font-weight: 700; color: #002b4c; }
.hubspot-contact-card .hs-error-msgs { margin: .35rem 0 0; color: #9f2d20; }

/* Source: 90-current-site-enhancements.css */
/* Current site enhancements: accessibility, product status, contact, and concise layouts. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--peach); outline-offset: 3px; }

.nav-dropdown.is-open > button svg { transform: rotate(180deg); }
.nav-dropdown.is-open .dropdown-panel {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-panel { z-index: 4; }

.hero-grid-compact { min-height: 650px; padding-block: 78px; }
.why-grid-compact { gap: 64px; }
.industry-grid-compact { grid-template-columns: repeat(3, 1fr); }
.interface-hero { margin: 0; }
.signal-meta-spaced { margin-top: 24px; }
.preview-note,
.claim-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}
.claim-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--paper);
  text-align: left;
}
.company-summary-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.company-summary-card,
.availability-card,
.contact-aside-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.company-summary-card > strong { color: var(--navy); font-size: 22px; }
.company-summary-card p { margin-top: 14px; color: var(--muted); line-height: 1.72; }

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.09);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.availability-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--peach); }
.interface-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.interface-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.interface-figure figcaption { padding: 14px 18px; color: var(--muted); background: var(--white); font-size: 12px; line-height: 1.55; }
.interface-figure-dark { border-color: rgba(255,255,255,.22); }
.product-wordmark { display: block; color: var(--sky); font-size: 38px; font-weight: 900; letter-spacing: -.045em; }
.compact-process { grid-template-columns: repeat(4, 1fr); }
.compact-process .workflow-card { min-height: 285px; }

.scope-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}
.scope-review {
  flex: 0 0 auto;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}
.scope-review strong { color: var(--navy); font-size: 16px; }
.scope-table-wrap {
  margin-top: 44px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.scope-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.scope-table th,
.scope-table td { padding: 20px 22px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.scope-table th { color: var(--navy); background: var(--sky-soft); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.scope-table td { color: var(--muted); font-size: 14px; line-height: 1.55; }
.scope-table td:first-child { color: var(--navy); font-weight: 800; }
.scope-table tr:last-child td { border-bottom: 0; }
.status-badge {
  display: inline-flex;
  max-width: 190px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.status-badge.verified { color: #075c45; background: #dff8ee; }
.status-badge.evaluation { color: var(--navy); background: var(--sky-soft); }
.status-badge.preview { color: #7c3b1d; background: var(--peach-soft); }
.product-status-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}
.availability-card > strong { display: block; color: var(--navy); font-size: 20px; }
.availability-card ul { display: grid; gap: 11px; margin: 20px 0 26px; padding-left: 21px; color: var(--muted); line-height: 1.55; }

.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: center; }
.founder-card { padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.founder-photo { margin: 0 0 28px; }
.founder-photo img { display: block; width: min(100%, 420px); height: auto; aspect-ratio: 3 / 4; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow-sm); }
.founder-card h2 { margin-top: 18px; color: var(--navy); font-size: 36px; letter-spacing: -.04em; }
.founder-role { margin-top: 7px !important; color: var(--peach) !important; font-weight: 800; }
.founder-card p { margin-top: 18px; color: var(--muted); line-height: 1.72; }
.heritage-grid-dark article { border-color: rgba(192,235,255,.17); background: rgba(192,235,255,.06); }
.heritage-grid-dark h3 { color: var(--white); }
.heritage-grid-dark p { color: rgba(255,255,255,.68); }
.legal-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 44px 0 0; }
.legal-facts div { padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--paper); }
.legal-facts dt { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.legal-facts dd { margin: 10px 0 0; color: var(--navy); font-weight: 800; }
.legal-facts a { text-decoration: underline; text-underline-offset: 3px; }

.page-hero-compact .page-hero-grid { min-height: 520px; }
.contact-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 70px; align-items: start; }
.contact-form { margin-top: 42px; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.field { display: grid; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 800; }
.field-wide { grid-column: 1 / -1; }
.field em { color: #a64218; font-style: normal; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bfcfd9;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 500;
  line-height: 1.45;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(192,235,255,.7); outline: 0; }
.honeypot { position: absolute; left: -9999px; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin-top: 22px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.consent input { margin-top: 4px; }
.consent a,
.form-hint a { color: var(--navy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 26px; }
.form-hint { color: var(--muted); font-size: 13px; }
.form-status { min-height: 24px; margin-top: 18px; color: var(--navy); font-size: 14px; font-weight: 700; line-height: 1.5; }
.form-status.is-error { color: #9e3416; }
.form-status.is-success { color: #075c45; }
.contact-aside { display: grid; gap: 20px; position: sticky; top: 110px; }
.contact-aside-card { background: var(--navy); border-color: var(--navy); color: var(--white); }
.contact-aside-card h2 { margin-top: 18px; font-size: 28px; letter-spacing: -.035em; }
.contact-aside-card ol { display: grid; gap: 13px; margin: 25px 0 0; padding-left: 20px; color: rgba(255,255,255,.76); line-height: 1.55; }
.contact-aside-card.light { color: var(--ink); border-color: var(--border); background: var(--white); }
.contact-aside-card.light h2 { color: var(--navy); }
.contact-aside-card dl { margin: 24px 0 0; }
.contact-aside-card dl div { padding: 13px 0; border-top: 1px solid var(--border); }
.contact-aside-card dt { color: var(--muted); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.contact-aside-card dd { margin: 6px 0 0; color: var(--navy); font-weight: 800; }

@media (max-width: 1080px) {
  .company-summary-grid,
  .product-status-panel,
  .founder-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .compact-process { grid-template-columns: repeat(2, 1fr); }
  .contact-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hero-grid-compact { min-height: auto; padding-block: 68px; }
  .industry-grid-compact,
  .compact-process,
  .legal-facts,
  .contact-aside,
  .form-grid { grid-template-columns: 1fr; }
  .scope-heading { display: block; }
  .scope-review { margin-top: 24px; text-align: left; }
  .field-wide { grid-column: auto; }
  .contact-form { padding: 22px; }
  .interface-figure figcaption { font-size: 11px; }
}

.product-logo { display: block; width: min(430px, 82%); max-height: 72px; object-fit: contain; object-position: left center; }
.chargelink-logo { margin-top: 2px; }
.proof-strip { position: relative; z-index: 3; margin-top: -38px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-grid > div { padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.proof-grid strong { display: block; color: var(--navy); font-size: 18px; }
.proof-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }
@media (max-width: 760px) {
  .proof-strip { margin-top: -28px; }
  .proof-grid { grid-template-columns: 1fr; }
  .product-logo { width: min(360px, 90%); }
}

/* Dropdown visibility is controlled by JavaScript so ARIA state and visual state stay aligned. */
.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg { transform: none; }
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav-dropdown.is-open > button svg { transform: rotate(180deg); }
.nav-dropdown.is-open .dropdown-panel {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
img { height: auto; }

/* DEVlink MIL Studio portfolio integration */
@media (min-width: 1081px){
  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:1120px;
  }
  .product-grid .product-media{height:300px;}
  .product-grid .product-body{padding:32px;}
  .product-grid .product-card h3{font-size:34px;}
}
@media (min-width: 761px) and (max-width:1080px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
.mil-studio-logo{width:min(500px,92%);max-height:92px;}
.mil-studio-hero .interface-figure img{object-position:center;}
