/* AIORX — light-tech B2B system + optional dark theme */
@import url("fonts.css");

:root {
  /* Brand primitives (spec) */
  --color-ink: #2b2d42;
  --color-ink-soft: #5c677d;
  --color-metal: #8d99ae;
  --surface-0: #ffffff;
  --surface-1: #f7f8fa;
  --border: #e5e7eb;
  --teal: #4ecdc4;
  --orange: #ef8354;
  --blue: #5b9fd4;

  /* Dark sections (shared blue depth — not pure black). Hero fold keeps its own base in hero-page.css */
  --surface-night-edge: #101b2e;
  --surface-night: #152238;
  --surface-night-mid: #1c2f4a;

  --page-bg: var(--surface-1);
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: min(100%, 1460px);
  --nav-bar-h: 56px;
  --nav-shell-pad-y: 12px;
  --nav-shell-pad-x: clamp(8px, 2vw, 14px);
  /* Total sticky header footprint (for hero offset / scroll-margin) */
  --nav-h: calc(var(--nav-shell-pad-y) * 2 + var(--nav-bar-h));
  --radius: 14px;

  /* Fallback when outside a .band */
  --text: var(--color-ink);
  --muted: var(--color-ink-soft);
  --dim: var(--color-metal);
  --line: var(--border);
  --accent: var(--teal);
  --accent-soft: rgba(78, 205, 196, 0.14);
  --accent-glow: rgba(78, 205, 196, 0.35);
  --action: var(--orange);
  --bg-card: var(--surface-0);
  --bg-elev: var(--surface-1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--color-ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* —— Full-width section surfaces —— */
.band {
  position: relative;
  width: 100%;
  background: var(--band-bg);
  color: var(--text);
}

.band--white {
  --band-bg: var(--surface-0);
  --text: var(--color-ink);
  --muted: var(--color-ink-soft);
  --dim: var(--color-metal);
  --line: var(--border);
  --accent: var(--teal);
  --accent-soft: rgba(78, 205, 196, 0.14);
  --accent-glow: rgba(78, 205, 196, 0.32);
  --bg-card: #ffffff;
  --bg-elev: var(--surface-1);
  --card-hover-border: rgba(78, 205, 196, 0.45);
  --card-hover-bg: rgba(78, 205, 196, 0.05);
  background:
    radial-gradient(ellipse 78% 58% at 0% -5%, rgba(78, 205, 196, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 62% 48% at 100% 102%, rgba(239, 131, 84, 0.07) 0%, transparent 50%),
    var(--surface-0);
}

.band--muted {
  --band-bg: var(--surface-1);
  --text: var(--color-ink);
  --muted: var(--color-ink-soft);
  --dim: var(--color-metal);
  --line: var(--border);
  --accent: var(--teal);
  --accent-soft: rgba(78, 205, 196, 0.14);
  --accent-glow: rgba(78, 205, 196, 0.32);
  --bg-card: #ffffff;
  --bg-elev: #eceef2;
  --card-hover-border: rgba(78, 205, 196, 0.45);
  --card-hover-bg: rgba(78, 205, 196, 0.06);
  background:
    radial-gradient(ellipse 72% 52% at 100% 0%, rgba(91, 159, 212, 0.09) 0%, transparent 52%),
    radial-gradient(ellipse 58% 46% at 0% 100%, rgba(78, 205, 196, 0.08) 0%, transparent 48%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(239, 131, 84, 0.04) 0%, transparent 62%),
    var(--surface-1);
}

.band--dark {
  --band-bg: var(--surface-night);
  --text: #f4f5f7;
  --muted: rgba(244, 245, 247, 0.78);
  --dim: #8d99ae;
  --line: rgba(255, 255, 255, 0.12);
  --accent: var(--teal);
  --accent-soft: rgba(78, 205, 196, 0.18);
  --accent-glow: rgba(78, 205, 196, 0.4);
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-elev: rgba(255, 255, 255, 0.04);
  --card-hover-border: rgba(78, 205, 196, 0.5);
  --card-hover-bg: rgba(78, 205, 196, 0.08);
  background:
    radial-gradient(ellipse 76% 54% at 92% 8%, rgba(91, 159, 212, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 58% 48% at 8% 92%, rgba(78, 205, 196, 0.11) 0%, transparent 50%),
    radial-gradient(ellipse 46% 40% at 50% 55%, rgba(239, 131, 84, 0.07) 0%, transparent 55%),
    linear-gradient(168deg, var(--surface-night-edge) 0%, var(--surface-night) 42%, var(--surface-night-mid) 100%);
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 55% at 15% -5%, rgba(78, 205, 196, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 92% 25%, rgba(239, 131, 84, 0.04) 0%, transparent 42%),
    var(--page-bg);
}

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

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* —— Nav: inset glass pill (edges transparent — page shows at left/right) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--nav-shell-pad-y) var(--nav-shell-pad-x);
  background: transparent;
  border-bottom: none;
}

.site-header__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 18px);
  height: var(--nav-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 8px 32px rgba(43, 45, 66, 0.08);
}

.site-header__inner::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 205, 196, 0.25) 22%,
    var(--teal) 45%,
    var(--orange) 72%,
    rgba(239, 131, 84, 0.35) 88%,
    transparent 100%
  );
  opacity: 0.72;
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  #site-nav {
    margin-left: auto;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--teal);
}

/* Dual marks: --lightbg = dark icon for light glass; --darkbg = light icon on dark hero / dark theme */
.logo__mark-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.logo__mark--darkbg {
  display: none;
}

.logo__mark--lightbg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18)) contrast(1.08);
}

html[data-theme="dark"] .logo__mark--lightbg,
body.page-hero .logo__mark--lightbg,
body.page-platform .logo__mark--lightbg {
  display: none;
}

html[data-theme="dark"] .logo__mark--darkbg,
body.page-hero .logo__mark--darkbg,
body.page-platform .logo__mark--darkbg {
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-0);
  color: var(--color-ink);
  padding: 10px 14px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}

.nav-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
  text-decoration: none;
}

.nav-list a.is-active {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.14);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.22);
}

/* —— Primary nav: dropdowns (Platform, Solutions mega) —— */
.nav-item--dropdown {
  position: relative;
}

.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dd-toggle:hover {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
}

.nav-item--dropdown:has(.nav-dropdown a.is-active) > .nav-dd-toggle,
.nav-item--dropdown:has(.nav-mega__all.is-active) > .nav-dd-toggle {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.14);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.22);
}

.nav-dd-caret {
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.2em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.65;
  vertical-align: 0.15em;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: auto;
  right: 0;
  z-index: 120;
  min-width: 220px;
  padding: 10px 8px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 16px 48px rgba(43, 45, 66, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown__list a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  text-decoration: none;
}

.nav-dropdown__list a:hover {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
}

.nav-dropdown__list a.is-active {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.14);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.22);
}

.nav-dropdown--mega {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  min-width: min(520px, calc(100vw - 48px));
  padding: 14px 14px 12px;
  left: auto;
  right: 0;
  transform: translateY(6px);
}

.nav-item--mega:hover .nav-dropdown--mega,
.nav-item--mega:focus-within .nav-dropdown--mega {
  transform: translateY(0);
}

/* Solutions — coming soon (clickable link in dropdown) */
a.nav-soon-disclaimer {
  grid-column: 1 / -1;
  display: block;
  margin: 0 2px 10px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(78, 205, 196, 0.35);
  background: rgba(78, 205, 196, 0.12);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-d);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

a.nav-soon-disclaimer:hover {
  color: var(--teal-d);
  background: rgba(78, 205, 196, 0.2);
  border-color: rgba(78, 205, 196, 0.5);
  box-shadow: 0 0 0 1px rgba(78, 205, 196, 0.1);
  text-decoration: none;
}

a.nav-soon-disclaimer:focus-visible {
  outline: 2px solid rgba(78, 205, 196, 0.55);
  outline-offset: 2px;
}

.nav-item--soon > .nav-dd-toggle {
  color: var(--color-metal);
  font-weight: 500;
}

.nav-item--soon > .nav-dd-toggle:hover {
  color: var(--color-ink-soft);
}

.nav-dropdown--soon {
  min-width: min(280px, calc(100vw - 48px));
  padding: 10px;
  left: auto;
  right: 0;
}

.nav-dropdown--soon.nav-dropdown--mega {
  min-width: min(520px, calc(100vw - 48px));
  padding: 14px 14px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.nav-dropdown--soon .nav-mega__label {
  opacity: 0.7;
}

.nav-soon-item {
  display: block;
  padding: 8px 12px;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--color-metal);
  opacity: 0.72;
  cursor: default;
  user-select: none;
}

.nav-item--soon:hover .nav-dropdown--soon,
.nav-item--soon:focus-within .nav-dropdown--soon {
  transform: translateY(0);
}

.nav-soon-cta {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.22);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-soon-cta:hover {
  color: var(--orange);
  background: rgba(239, 131, 84, 0.1);
  box-shadow: inset 0 0 0 1px rgba(239, 131, 84, 0.28);
  text-decoration: none;
}

.nav-soon-cta--footer {
  grid-column: 1 / -1;
  margin: 2px 2px 0;
  text-align: center;
}

.nav-mega__label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 4px 4px 8px;
}

.nav-mega__all {
  display: block;
  margin: 10px 4px 4px;
  padding: 8px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  border-radius: 8px;
  border: 1px dashed rgba(78, 205, 196, 0.35);
}

.nav-mega__all:hover {
  background: rgba(78, 205, 196, 0.1);
  border-style: solid;
  border-color: rgba(78, 205, 196, 0.45);
}

.nav-mega__all.is-active {
  background: rgba(78, 205, 196, 0.14);
  border-style: solid;
  border-color: rgba(78, 205, 196, 0.5);
}

.theme-toggle {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-0);
  color: var(--color-ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.theme-toggle:hover {
  color: var(--color-ink);
  border-color: var(--color-metal);
}

.nav-cta {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--orange);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 8px 24px rgba(239, 131, 84, 0.35);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 0.58rem;
    padding: 10px 14px;
  }

  .site-header__tools {
    gap: 6px;
  }

  .site-header__inner {
    gap: 8px;
  }

  .logo__name {
    font-size: 1rem;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(43, 45, 66, 0.12);
    z-index: 99;
  }

  body.page-hero .nav-list {
    background: rgba(10, 11, 15, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
  }

  body.page-hero .nav-list a {
    color: rgba(244, 245, 247, 0.92);
  }

  body.page-hero .nav-list a:hover {
    color: #fff;
    background: rgba(78, 205, 196, 0.18);
  }

  /* Solution pages: light header — mobile drawer must not use dark hero nav colors */
  body.solution-page.page-hero .nav-list {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 48px rgba(43, 45, 66, 0.12);
  }

  body.solution-page.page-hero .nav-list a,
  body.solution-page.page-hero .nav-dd-toggle {
    color: var(--color-ink-soft);
  }

  body.solution-page.page-hero .nav-list a:hover,
  body.solution-page.page-hero .nav-dd-toggle:hover {
    color: var(--color-ink);
    background: rgba(78, 205, 196, 0.12);
  }

  body.solution-page.page-hero .nav-dropdown__list a {
    color: var(--color-ink-soft);
  }

  body.solution-page.page-hero .nav-dropdown__list a:hover,
  body.solution-page.page-hero .nav-dropdown__list a.is-active {
    color: var(--color-ink);
    background: rgba(78, 205, 196, 0.12);
  }

  body.solution-page.page-hero .nav-mega__all {
    color: var(--color-ink-soft);
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.72);
  }

  html[data-theme="dark"] .nav-list {
    background: rgba(12, 13, 18, 0.88);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list a {
    padding: 12px 14px;
  }

  .nav-item--dropdown {
    width: 100%;
  }

  .nav-dd-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .nav-item--dropdown.is-open > .nav-dd-toggle .nav-dd-caret {
    transform: rotate(-135deg);
    margin-top: 0.2em;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 4px 0 8px 8px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  /* Closed by default — beats global .nav-dropdown--soon.nav-dropdown--mega { display: grid } */
  .nav-item--dropdown:not(.is-open) > .nav-dropdown,
  .nav-item--dropdown:not(.is-open) > .nav-dropdown--mega,
  .nav-item--dropdown:not(.is-open) > .nav-dropdown--soon,
  .nav-item--dropdown:not(.is-open) > .nav-dropdown--soon.nav-dropdown--mega {
    display: none;
  }

  /* Touch/hover must not expand submenus — only .is-open (arrow tap) */
  .nav-item--dropdown:hover .nav-dropdown,
  .nav-item--dropdown:focus-within .nav-dropdown,
  .nav-item--soon:hover .nav-dropdown--soon,
  .nav-item--soon:focus-within .nav-dropdown--soon {
    display: none;
  }

  .nav-item--dropdown.is-open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown--mega {
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    left: auto;
    transform: none;
    padding: 4px 0 8px 8px;
    gap: 16px;
  }

  .nav-item--mega.is-open > .nav-dropdown--mega,
  .nav-item--soon.is-open > .nav-dropdown--soon.nav-dropdown--mega {
    display: grid;
    transform: none;
  }

  .nav-item--soon.is-open > .nav-dropdown--soon:not(.nav-dropdown--mega) {
    display: block;
    transform: none;
  }

  .nav-item--mega:hover .nav-dropdown--mega,
  .nav-item--mega:focus-within .nav-dropdown--mega {
    transform: none;
  }

  .nav-dropdown--soon.nav-dropdown--mega {
    min-width: 0;
    padding: 4px 0 8px 8px;
    gap: 14px;
  }

  .nav-dropdown__list a {
    padding: 10px 12px;
  }

  .nav-soon-item {
    padding: 10px 12px;
  }

  .nav-mega__all {
    margin-top: 6px;
  }
}

/* —— Dark theme: chrome —— */
html[data-theme="dark"] {
  --page-bg: #0c0d11;
}

html[data-theme="dark"] .bg-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(78, 205, 196, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 30%, rgba(239, 131, 84, 0.05) 0%, transparent 45%),
    var(--page-bg);
}

html[data-theme="dark"] body {
  color: #e8e9ed;
}

html[data-theme="dark"] .site-header__inner {
  background: rgba(12, 13, 18, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 36px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .site-header__inner::after {
  opacity: 0.85;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 205, 196, 0.35) 25%,
    var(--teal) 48%,
    var(--orange) 70%,
    rgba(239, 131, 84, 0.45) 90%,
    transparent 100%
  );
}

html[data-theme="dark"] .logo {
  color: #f4f5f7;
}

html[data-theme="dark"] .logo:hover {
  color: var(--teal);
}

/* Hero pages: glass that blends with the fold (not a separate “chrome” slab) */
body.page-hero .bg-mesh {
  background:
    radial-gradient(ellipse 82% 52% at 20% -10%, rgba(78, 205, 196, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 58% 42% at 96% 28%, rgba(91, 159, 212, 0.08) 0%, transparent 48%),
    #0d1324;
}

body.page-hero .site-header {
  background: transparent;
}

body.page-hero .site-header__inner {
  background: rgba(13, 19, 36, 0.52);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
}

body.page-hero .site-header__inner::after {
  opacity: 0.9;
  left: 8%;
  right: 8%;
}

body.page-hero .logo {
  color: #f4f5f7;
}

body.page-hero .logo:hover {
  color: var(--teal);
}

body.page-hero .nav-list a {
  color: rgba(244, 245, 247, 0.84);
}

body.page-hero .nav-list a:hover {
  color: #f4f5f7;
  background: rgba(78, 205, 196, 0.16);
}

body.page-hero .nav-list a.is-active {
  color: #f4f5f7;
  background: rgba(78, 205, 196, 0.22);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.38);
}

body.page-hero .nav-dd-toggle {
  color: rgba(244, 245, 247, 0.84);
}

body.page-hero .nav-dd-toggle:hover {
  color: #f4f5f7;
  background: rgba(78, 205, 196, 0.16);
}

body.page-hero .nav-item--dropdown:has(.nav-dropdown a.is-active) > .nav-dd-toggle,
body.page-hero .nav-item--dropdown:has(.nav-mega__all.is-active) > .nav-dd-toggle {
  color: #f4f5f7;
  background: rgba(78, 205, 196, 0.22);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.38);
}

body.page-hero .nav-dropdown {
  background:
    radial-gradient(ellipse 90% 65% at 12% 8%, rgba(91, 159, 212, 0.14) 0%, transparent 55%),
    linear-gradient(165deg, rgba(21, 34, 56, 0.96) 0%, rgba(28, 47, 74, 0.94) 100%);
  border-color: rgba(137, 173, 209, 0.24);
  box-shadow: 0 20px 56px rgba(8, 13, 24, 0.42);
}

body.page-hero .nav-dropdown__list a {
  color: rgba(244, 245, 247, 0.88);
}

body.page-hero .nav-dropdown__list a:hover {
  color: #fff;
  background: rgba(78, 205, 196, 0.18);
}

body.page-hero .nav-dropdown__list a.is-active {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.18);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.32);
}

body.page-hero .nav-mega__label {
  color: var(--teal);
}

body.page-hero .nav-mega__all {
  color: #f4f5f7;
  border-color: rgba(78, 205, 196, 0.35);
}

body.page-hero .nav-mega__all:hover {
  background: rgba(78, 205, 196, 0.14);
}

body.page-hero .nav-item--soon > .nav-dd-toggle {
  color: rgba(244, 245, 247, 0.62);
}

body.page-hero .nav-item--soon > .nav-dd-toggle:hover {
  color: rgba(244, 245, 247, 0.88);
}

body.page-hero .nav-soon-cta {
  color: rgba(244, 245, 247, 0.92);
  background: rgba(78, 205, 196, 0.14);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.28);
}

body.page-hero .nav-soon-cta:hover {
  color: #fff;
  background: rgba(239, 131, 84, 0.18);
  box-shadow: inset 0 0 0 1px rgba(239, 131, 84, 0.32);
}

body.page-hero .nav-soon-item {
  color: rgba(244, 245, 247, 0.42);
}

body.page-hero a.nav-soon-disclaimer {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.16);
  border-color: rgba(78, 205, 196, 0.4);
}

body.page-hero a.nav-soon-disclaimer:hover {
  color: #fff;
  background: rgba(78, 205, 196, 0.24);
  border-color: rgba(78, 205, 196, 0.55);
}

body.page-hero .nav-dropdown--soon .nav-mega__label {
  color: rgba(78, 205, 196, 0.55);
}

body.page-hero .theme-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 245, 247, 0.92);
}

body.page-hero .theme-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

body.page-hero .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f5f7;
}

/* Solution detail pages keep a light hero surface */
body.solution-page.page-hero .bg-mesh {
  background:
    radial-gradient(ellipse 70% 52% at 0% 0%, rgba(91, 159, 212, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 56% 42% at 100% 100%, rgba(78, 205, 196, 0.1) 0%, transparent 52%),
    #eef3f9;
}

body.solution-page.page-hero .site-header__inner {
  height: auto;
  min-height: var(--nav-bar-h);
  overflow: visible;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 8px 32px rgba(43, 45, 66, 0.08);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

body.solution-page.page-hero .site-header__inner::after {
  opacity: 1;
}

body.solution-page.page-hero .logo {
  color: var(--color-ink);
}

body.solution-page.page-hero .logo__mark--lightbg {
  display: block;
}

body.solution-page.page-hero .logo__mark--darkbg {
  display: none;
}

body.solution-page.page-hero .nav-list a,
body.solution-page.page-hero .nav-dd-toggle {
  color: var(--color-ink-soft);
}

body.solution-page.page-hero .nav-list a:hover,
body.solution-page.page-hero .nav-dd-toggle:hover {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
}

body.solution-page.page-hero .nav-list a.is-active,
body.solution-page.page-hero .nav-item--dropdown:has(.nav-dropdown a.is-active) > .nav-dd-toggle,
body.solution-page.page-hero .nav-item--dropdown:has(.nav-mega__all.is-active) > .nav-dd-toggle {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.14);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.22);
}

body.solution-page.page-hero .nav-toggle {
  color: var(--color-ink);
  border-color: var(--border);
  background: var(--surface-0);
}

body.solution-page.page-hero .nav-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 48px rgba(43, 45, 66, 0.14);
}

body.solution-page.page-hero .nav-dropdown__list a {
  color: var(--color-ink-soft);
}

body.solution-page.page-hero .nav-dropdown__list a:hover,
body.solution-page.page-hero .nav-dropdown__list a.is-active {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
}

body.solution-page.page-hero .nav-mega__label {
  color: var(--color-metal);
}

body.solution-page.page-hero .nav-mega__all {
  color: var(--color-ink-soft);
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

body.solution-page.page-hero .nav-mega__all:hover {
  color: var(--color-ink);
  background: rgba(78, 205, 196, 0.12);
  border-color: rgba(78, 205, 196, 0.35);
}

@media (min-width: 901px) {
  body.solution-page.page-hero #site-nav {
    flex: 1 1 auto;
    min-width: 0;
    overflow: visible;
  }

  body.solution-page.page-hero .nav-list {
    justify-content: flex-end;
  }

  body.solution-page.page-hero .nav-dd-toggle {
    color: var(--color-ink-soft);
  }
}

html[data-theme="dark"] .nav-list a {
  color: #a8b0c0;
}

html[data-theme="dark"] .nav-list a:hover {
  color: #f4f5f7;
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .nav-list a.is-active {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.12);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.2);
}

html[data-theme="dark"] .nav-dd-toggle {
  color: #a8b0c0;
}

html[data-theme="dark"] .nav-dd-toggle:hover {
  color: #f4f5f7;
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .nav-item--dropdown:has(.nav-dropdown a.is-active) > .nav-dd-toggle,
html[data-theme="dark"] .nav-item--dropdown:has(.nav-mega__all.is-active) > .nav-dd-toggle {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.12);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.2);
}

html[data-theme="dark"] .nav-dropdown {
  background: rgba(18, 20, 28, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .nav-dropdown__list a {
  color: #a8b0c0;
}

html[data-theme="dark"] .nav-dropdown__list a:hover {
  color: #f4f5f7;
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .nav-dropdown__list a.is-active {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.12);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.2);
}

html[data-theme="dark"] .nav-mega__all {
  color: #e8e9ed;
  border-color: rgba(78, 205, 196, 0.35);
}

html[data-theme="dark"] body.page-hero .nav-list a {
  color: rgba(244, 245, 247, 0.88);
}

html[data-theme="dark"] body.page-hero .nav-list a:hover {
  color: #f4f5f7;
  background: rgba(78, 205, 196, 0.16);
}

html[data-theme="dark"] body.page-hero .nav-list a.is-active {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.18);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.32);
}

html[data-theme="dark"] .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e8e9ed;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #a8b0c0;
}

html[data-theme="dark"] .theme-toggle:hover {
  color: #f4f5f7;
}

html[data-theme="dark"] a {
  color: var(--teal);
}

html[data-theme="dark"] .band--white {
  --band-bg: #16181f;
  --text: #eef2f7;
  --muted: #9ca3b8;
  --dim: #8d99ae;
  --line: rgba(255, 255, 255, 0.1);
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-elev: #1e2129;
  --card-hover-border: rgba(78, 205, 196, 0.45);
  --card-hover-bg: rgba(78, 205, 196, 0.07);
}

html[data-theme="dark"] .band--muted {
  --band-bg: #101218;
  --text: #eef2f7;
  --muted: #9ca3b8;
  --dim: #8d99ae;
  --line: rgba(255, 255, 255, 0.1);
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-elev: #181b24;
  --card-hover-border: rgba(78, 205, 196, 0.45);
  --card-hover-bg: rgba(78, 205, 196, 0.07);
}

html[data-theme="dark"] .band--dark {
  --band-bg: var(--surface-night);
  --text: #f4f5f7;
  --muted: rgba(244, 245, 247, 0.78);
  --dim: #8d99ae;
  --line: rgba(255, 255, 255, 0.12);
  --bg-card: rgba(255, 255, 255, 0.07);
  --bg-elev: rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(ellipse 76% 54% at 92% 8%, rgba(91, 159, 212, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 58% 48% at 8% 92%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 46% 40% at 50% 55%, rgba(239, 131, 84, 0.06) 0%, transparent 55%),
    linear-gradient(168deg, var(--surface-night-edge) 0%, var(--surface-night) 42%, var(--surface-night-mid) 100%);
}

html[data-theme="dark"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.09);
}

html[data-theme="dark"] .site-footer__scan {
  opacity: 0.22;
}

html[data-theme="dark"] .page-head {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* —— Main —— */
main {
  flex: 1;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 84px) clamp(12px, 2vw, 18px);
}

.section--tight {
  padding-top: clamp(32px, 5vw, 56px);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}

.band--dark .eyebrow {
  color: rgba(78, 205, 196, 0.75);
}

/* Underpages: use canyon brand tone for small subheaders */
body:not(.page-home) .eyebrow {
  color: #4ecdc4;
}

body:not(.page-home) .band--dark .eyebrow {
  color: rgba(239, 131, 84, 0.88);
}

.eyebrow--accent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
}

/* Static labels — not buttons; use dashed 4px tags, never pill toggles */
.ui-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  cursor: default;
  pointer-events: none;
  user-select: none;
  border: 1px dashed currentColor;
  background: transparent;
}

.ui-label--teal {
  color: #2a8f88;
  border-color: rgba(78, 205, 196, 0.38);
}

.ui-label--on-dark {
  color: rgba(78, 205, 196, 0.72);
  border-color: rgba(78, 205, 196, 0.3);
}

.eyebrow--accent::before {
  content: "";
  flex-shrink: 0;
  width: 1.35rem;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-bottom: 20px;
  color: var(--text);
}

h1 em {
  font-style: normal;
  background: linear-gradient(105deg, var(--accent) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text);
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 28px;
  line-height: 1.65;
}

.prose {
  color: var(--muted);
  max-width: 65ch;
}

.prose p + p {
  margin-top: 1rem;
}

/* —— Hero —— */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 88px) clamp(18px, 3vw, 28px) clamp(48px, 8vw, 96px);
}

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

.hero-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(43, 45, 66, 0.08);
}

.hero-card__label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* —— KPI bar (dark / emphasis band) —— */
.kpi-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(18px, 3vw, 28px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
  .kpi-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kpi-bar__item strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 6px;
}

.kpi-bar__item span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.45;
}

.kpi-bar__item p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28ch;
}

/* —— Home: clients one-liner + marquee + running accent line —— */
.home-clients-ticker {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 24px) clamp(12px, 2vw, 18px) clamp(10px, 1.8vw, 14px);
  border-top: 1px solid rgba(78, 205, 196, 0.12);
  background: linear-gradient(180deg, rgba(78, 205, 196, 0.04) 0%, transparent 100%);
}

.home-clients-ticker__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.home-clients-ticker__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: home-clients-marquee 38s linear infinite;
}

.home-clients-ticker__item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.home-clients-ticker__segment {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.home-clients-ticker__prefix {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.12rem 0 0.12rem 0.5rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-left: 2px solid rgba(78, 205, 196, 0.55);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.home-clients-ticker__values {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
}

.home-clients-ticker__chip {
  display: inline-block;
  font-size: clamp(0.84rem, 1.35vw, 0.94rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.home-clients-ticker__chip--soft {
  font-weight: 500;
  color: var(--muted);
}

.home-clients-ticker__dot {
  flex: 0 0 auto;
  font-size: 0.95rem;
  line-height: 1;
  color: rgba(78, 205, 196, 0.55);
  font-weight: 700;
  user-select: none;
}

.home-clients-ticker__dot--sep {
  font-size: 1.15rem;
  color: rgba(78, 205, 196, 0.35);
  text-shadow: 0 0 12px rgba(78, 205, 196, 0.35);
}

.home-clients-ticker__rail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 18px) clamp(14px, 2.2vw, 20px);
}

.home-clients-ticker__rail-inner {
  position: relative;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 205, 196, 0.08) 12%,
    rgba(78, 205, 196, 0.16) 50%,
    rgba(78, 205, 196, 0.08) 88%,
    transparent 100%
  );
  box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.1);
}

.home-clients-ticker__rail-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(28%, 140px);
  height: 100%;
  border-radius: inherit;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 205, 196, 0.35) 35%,
    var(--teal) 50%,
    rgba(78, 205, 196, 0.35) 65%,
    transparent 100%
  );
  box-shadow:
    0 0 14px rgba(78, 205, 196, 0.45),
    0 0 28px rgba(78, 205, 196, 0.2);
  animation: home-clients-running-line 3.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.home-clients-ticker__rail-inner::before,
.home-clients-ticker__rail-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--teal);
  box-shadow: 0 0 8px rgba(78, 205, 196, 0.55);
  opacity: 0.35;
}

.home-clients-ticker__rail-inner::before {
  left: 8%;
  animation: home-clients-rail-dot 3.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.home-clients-ticker__rail-inner::after {
  right: 8%;
  animation: home-clients-rail-dot 3.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite reverse;
}

@keyframes home-clients-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes home-clients-running-line {
  0% {
    left: -12%;
    opacity: 0.35;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 112%;
    opacity: 0.35;
  }
}

@keyframes home-clients-rail-dot {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(-50%) scale(0.85);
  }
  50% {
    opacity: 0.85;
    transform: translateY(-50%) scale(1.15);
  }
}

@media (max-width: 640px) {
  .home-clients-ticker {
    padding-top: clamp(14px, 3.5vw, 20px);
    padding-bottom: clamp(8px, 2vw, 12px);
  }

  .home-clients-ticker__viewport {
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }

  .home-clients-ticker__track {
    animation-duration: 44s;
  }

  .home-clients-ticker__item {
    gap: clamp(0.65rem, 2.5vw, 1rem);
    padding-right: clamp(1.25rem, 4vw, 1.75rem);
  }

  .home-clients-ticker__prefix {
    font-size: 0.54rem;
    padding-left: 0.4rem;
  }

  .home-clients-ticker__chip {
    font-size: 0.8rem;
  }

  .home-clients-ticker__chip--soft {
    font-size: 0.76rem;
  }

  .home-clients-ticker__dot--sep {
    font-size: 1rem;
  }

  .home-clients-ticker__rail {
    padding-bottom: clamp(12px, 3vw, 18px);
  }

  .home-clients-ticker__rail-inner {
    height: 2px;
  }

  .home-clients-ticker__rail-glow {
    width: min(36%, 120px);
    animation-duration: 2.8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-clients-ticker__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }

  .home-clients-ticker__item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-right: 0;
    white-space: normal;
    text-align: center;
  }

  .home-clients-ticker__item + .home-clients-ticker__item {
    display: none;
  }

  .home-clients-ticker__segment {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 22rem;
  }

  .home-clients-ticker__values {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.25rem;
  }

  .home-clients-ticker__dot--sep {
    display: none;
  }

  .home-clients-ticker__rail-glow {
    animation: none;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.65;
  }

  .home-clients-ticker__rail-inner::before,
  .home-clients-ticker__rail-inner::after {
    animation: none;
    opacity: 0.5;
  }
}

/* Capabilities: platform journey (step cards) + same flip treatment as former home band */
#cap-rca,
#platform-how,
#platform-capability-briefs {
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

/* Platform · HOW PULSAR works (steps + right panel) */
.platform-how.band--white {
  border-top: 1px solid var(--line);
}

.platform-how__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 14px);
  margin-top: clamp(20px, 3vw, 28px);
}

.platform-how__step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(43, 45, 66, 0.07);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.platform-how__step:hover {
  border-color: rgba(78, 205, 196, 0.5);
  box-shadow: 0 8px 20px rgba(43, 45, 66, 0.1);
  transform: translateY(-2px);
}

.platform-how__step:focus-visible {
  outline: 2px solid rgba(78, 205, 196, 0.7);
  outline-offset: 2px;
}

.platform-how__step.is-active {
  border-color: rgba(78, 205, 196, 0.65);
  background: linear-gradient(180deg, rgba(78, 205, 196, 0.14) 0%, rgba(78, 205, 196, 0.05) 100%);
  box-shadow:
    0 6px 18px rgba(78, 205, 196, 0.14),
    0 0 0 1px rgba(78, 205, 196, 0.22) inset;
  transform: translateY(-1px);
}

.platform-how__step-eyebrow {
  font-family: var(--mono);
  font-size: clamp(0.58rem, 1.1vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--teal);
}

.platform-how__step.is-active .platform-how__step-eyebrow {
  color: #2a8f88;
}

.platform-how__content {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.platform-how__viz--canvas {
  width: 100%;
  min-width: 0;
  padding: clamp(8px, 1.1vw, 12px);
  border-radius: 16px;
  background: linear-gradient(165deg, #111827 0%, #0b1220 55%, #0a0f18 100%);
  border: 1px solid rgba(30, 41, 59, 0.95);
  box-shadow:
    0 20px 48px rgba(2, 6, 23, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.platform-how__viz--canvas .cap-platform-viz {
  min-height: 0;
  border-radius: 12px;
  background: #0b1220;
  border: 1px solid rgba(78, 205, 196, 0.22);
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.35);
}

.platform-how__panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.platform-how__panel h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text);
}

.platform-how__body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.platform-how__body > p {
  margin: 0;
}

.platform-how__body > p + .platform-how__list {
  margin-top: 14px;
}

.platform-how__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.platform-how__list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.15rem;
  line-height: 1.55;
}

.platform-how__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ecdc4;
  background: var(--teal);
  box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.18);
}

.platform-how__list strong {
  color: var(--text);
  font-weight: 600;
}

.platform-how__tagline {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .platform-how__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .platform-how__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .platform-how__steps {
    grid-template-columns: 1fr;
  }
}

.cap-platform-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
  margin-top: clamp(24px, 4vw, 36px);
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  .cap-platform-flow {
    grid-template-columns: 1fr;
  }
}

.cap-platform-flow__step {
  padding: 16px 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.cap-platform-flow__num {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.cap-platform-flow__label {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cap-platform-flow__hint {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Capabilities: map + agents canvas (replaces flip-card solution block) */
.cap-platform-viz {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(78, 205, 196, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.cap-platform-viz canvas {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.band.cap-band-how .cap-platform-viz-embed.embed--native.embed--how {
  min-height: 0;
  height: auto;
}

/* —— Home / Capabilities: HOW PULSAR WORKS (deeper band + elevated flip cards) —— */
.band.home-band-how,
.band.cap-band-how {
  --band-bg: var(--surface-night);
}

.band.cap-band-how::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 52%, var(--orange) 100%);
  pointer-events: none;
}

.cap-how-intro > .cap-how-intro__kicker {
  font-family: var(--mono);
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: linear-gradient(105deg, var(--teal) 0%, var(--blue) 55%, rgba(244, 245, 247, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.band.home-band-how #pulsar-solution-how-mount .flip-inner,
.band.cap-band-how #pulsar-solution-how-mount .flip-inner {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .band.home-band-how #pulsar-solution-how-mount .flip-wrap:hover .flip-inner:not(.peeking),
  .band.home-band-how #pulsar-solution-how-mount .flip-wrap:focus-within .flip-inner:not(.peeking),
  .band.cap-band-how #pulsar-solution-how-mount .flip-wrap:hover .flip-inner:not(.peeking),
  .band.cap-band-how #pulsar-solution-how-mount .flip-wrap:focus-within .flip-inner:not(.peeking) {
    box-shadow:
      0 14px 44px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(78, 205, 196, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }
}

.band.home-band-how #pulsar-solution-how-mount .front,
.band.cap-band-how #pulsar-solution-how-mount .front {
  background: rgba(22, 36, 58, 0.92);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.band.home-band-how #pulsar-solution-how-mount .back,
.band.cap-band-how #pulsar-solution-how-mount .back {
  background: rgba(26, 42, 68, 0.94);
  border: 0.5px solid rgba(255, 255, 255, 0.11);
}

.band.home-band-how .embed.embed--native.embed--how,
.band.cap-band-how .embed.embed--native.embed--how {
  background: transparent;
  border: none;
  box-shadow: none;
}

.cap-how-intro .lede {
  max-width: 48rem;
}

.cap-how-intro .lede + .lede {
  margin-top: 0.5rem;
}

.cap-how-intro .lede {
  color: rgba(244, 245, 247, 0.82);
}

/* —— Home: challenge + value proposition cards —— */
.home-challenge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.home-challenge-copy .lede {
  max-width: 52ch;
}

.home-challenge-quote {
  margin-top: 4px;
}

.home-challenge-quote .pulsar-quote-text {
  max-width: none;
}

.home-challenge-quote .pulsar-founder-tag {
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.home-how-intro > .home-how-intro__kicker,
.home-how-intro > .home-how-intro__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-how-intro > .home-how-intro__kicker {
  width: fit-content;
  max-width: 100%;
  margin-bottom: clamp(12px, 2vw, 18px);
}

.home-how-intro > .home-how-intro__title {
  display: block;
  width: 100%;
  max-width: 42rem;
  margin-top: 0;
  margin-bottom: clamp(20px, 3vw, 28px);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.home-how-intro .actions {
  justify-content: center;
}

/* —— Home: who benefits — playable flip cards —— */
.home-value-props {
  container-type: inline-size;
  overflow: visible;
}

.home-value-props__kicker {
  margin: 0 0 clamp(10px, 1.5vw, 14px);
}

.home-value-props__title {
  font-size: clamp(0.72rem, 3.15cqi, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 clamp(10px, 1.5vw, 14px);
  max-width: none;
  white-space: nowrap;
  color: var(--text);
}

.home-value-props__lede {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 clamp(24px, 3.5vw, 32px);
  max-width: 42ch;
}

.home-value-props__grid {
  --benefit-card-w: 260px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: safe center;
  gap: clamp(14px, 2vw, 18px);
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(8px, 2vw, 16px);
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-block: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 45, 66, 0.22) transparent;
}

.home-value-props__grid::-webkit-scrollbar {
  height: 6px;
}

.home-value-props__grid::-webkit-scrollbar-thumb {
  background: rgba(43, 45, 66, 0.22);
  border-radius: 999px;
}

.home-value-props__actions {
  margin-top: clamp(8px, 2vw, 16px);
}

.benefit-card {
  perspective: 1200px;
  flex: 0 0 var(--benefit-card-w, 260px);
  width: var(--benefit-card-w, 260px);
  max-width: var(--benefit-card-w, 260px);
  scroll-snap-align: start;
  height: clamp(300px, 32vw, 336px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  overflow: visible;
}

.benefit-card__flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  transform-origin: center center;
}

.benefit-card.is-flipped .benefit-card__flip {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover:not(.is-peeking) .benefit-card__flip,
  .benefit-card:focus-visible:not(.is-peeking) .benefit-card__flip {
    transform: rotateY(180deg);
  }
}

@keyframes benefit-card-peek {
  0% { transform: rotateY(0deg); }
  30% { transform: rotateY(22deg); }
  55% { transform: rotateY(22deg); }
  100% { transform: rotateY(0deg); }
}

.benefit-card.is-peeking .benefit-card__flip {
  animation: benefit-card-peek 1.4s cubic-bezier(0.45, 0, 0.25, 1) forwards;
}

.benefit-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(43, 45, 66, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover .benefit-card__face,
.benefit-card:focus-visible .benefit-card__face {
  border-color: rgba(78, 205, 196, 0.45);
  box-shadow:
    0 18px 52px rgba(43, 45, 66, 0.13),
    0 0 0 1px rgba(78, 205, 196, 0.12);
}

.benefit-card__face--back {
  transform: rotateY(180deg);
}

.benefit-card__visual {
  position: relative;
  flex-shrink: 0;
  height: clamp(108px, 13vw, 128px);
  overflow: hidden;
  background: var(--surface-1);
  border-bottom: 1px solid var(--line);
}

.benefit-card__face--front .benefit-card__visual--gradient {
  flex: 1 1 48%;
  min-height: clamp(132px, 15vw, 156px);
  max-height: 50%;
}

.benefit-card__visual--gradient {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  height: auto;
  padding: 2.65rem clamp(12px, 1.4vw, 14px) clamp(12px, 1.4vw, 14px);
  border-bottom: 1px solid var(--line);
}

.benefit-card--integration .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #d4f2ef 0%, #f2fbfb 50%, #e6f7f4 100%);
}

.benefit-card--architect .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #dce8f8 0%, #f3f7fd 50%, #e5edf9 100%);
}

.benefit-card--quality .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #e8e2f6 0%, #f6f4fc 50%, #ebe6f8 100%);
}

.benefit-card--engineering-head .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #fde8dc 0%, #fff6f1 50%, #fceee3 100%);
}

.benefit-card--leadership .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #f9e8cf 0%, #fff9f0 50%, #fbf0dd 100%);
}

.benefit-card--product-line .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #f5e3eb 0%, #fdf6f9 50%, #f8eaf0 100%);
}

html[data-theme="dark"] .benefit-card--integration .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #1a3532 0%, #1e2a2e 50%, #1c2f2c 100%);
}

html[data-theme="dark"] .benefit-card--architect .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #1c2a3d 0%, #1e2630 50%, #1a2838 100%);
}

html[data-theme="dark"] .benefit-card--quality .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #2a2540 0%, #222030 50%, #262038 100%);
}

html[data-theme="dark"] .benefit-card--engineering-head .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #3d2c24 0%, #2e2622 50%, #352820 100%);
}

html[data-theme="dark"] .benefit-card--leadership .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #3a3020 0%, #2c2820 50%, #332c22 100%);
}

html[data-theme="dark"] .benefit-card--product-line .benefit-card__visual--gradient {
  background: linear-gradient(145deg, #352430 0%, #2a2228 50%, #302028 100%);
}

.benefit-card__role-headline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding-right: 2rem;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
}

.benefit-card__role-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  background: var(--teal);
  opacity: 0.88;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='8' r='4' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 20c0-4 3.5-6 7-6s7 2 7 6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='8' r='4' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 20c0-4 3.5-6 7-6s7 2 7 6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.benefit-card--engineering-head .benefit-card__role-icon,
.benefit-card--leadership .benefit-card__role-icon,
.benefit-card--product-line .benefit-card__role-icon {
  background: var(--orange);
}

.benefit-card__visual--gradient .benefit-card__index {
  top: clamp(10px, 1.2vw, 12px);
  bottom: auto;
}

.benefit-card__art {
  display: none;
}

.benefit-card__role-badge {
  position: absolute;
  top: clamp(10px, 1.2vw, 12px);
  left: clamp(10px, 1.2vw, 12px);
  z-index: 2;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: default;
  pointer-events: none;
  user-select: none;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.benefit-card__role-badge--engineering {
  color: #2a8f88;
  border: 1px dashed rgba(78, 205, 196, 0.4);
}

.benefit-card__role-badge--leadership {
  color: #8f4f2a;
  border: 1px dashed rgba(239, 131, 84, 0.4);
}

.benefit-card__index {
  position: absolute;
  right: clamp(10px, 1.2vw, 12px);
  bottom: clamp(8px, 1vw, 10px);
  z-index: 1;
  font-family: var(--mono);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(43, 45, 66, 0.1);
  pointer-events: none;
}

.benefit-card__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.5vw, 16px) 14px;
  min-height: 0;
}

.benefit-card__panel--back {
  gap: 10px;
  padding-bottom: 8px;
  overflow-y: auto;
}

.benefit-card__panel--back .benefit-card__role,
.benefit-card__role {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.benefit-card__role::before {
  content: "";
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  background: currentColor;
  opacity: 0.85;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='8' r='4' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 20c0-4 3.5-6 7-6s7 2 7 6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='8' r='4' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 20c0-4 3.5-6 7-6s7 2 7 6' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.benefit-card__role-headline::before {
  display: none;
}

.benefit-card--engineering-head .benefit-card__role,
.benefit-card--leadership .benefit-card__role,
.benefit-card--product-line .benefit-card__role {
  color: var(--orange);
}

.benefit-card__title {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
}

.benefit-card__metric {
  margin: auto 0 0;
  font-size: clamp(0.8rem, 1.05vw, 0.88rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.35;
  color: var(--text);
}

.benefit-card__metric--rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.benefit-card__metric-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 1.35rem;
}

.benefit-card__metric-text {
  flex: 1;
  min-width: 0;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: inherit;
  color: inherit;
}

.benefit-card__metric-value {
  font-family: var(--mono);
  font-size: 1.15em;
  font-weight: 600;
  font-style: normal;
  color: #4ecdc4;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.benefit-card__metric-arrow {
  flex-shrink: 0;
  width: 1.1rem;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
  text-align: right;
}

.home-value-props .benefit-card__metric-row--up .benefit-card__metric-arrow {
  color: #4ecdc4;
  color: var(--teal);
}

.home-value-props .benefit-card__metric-row--down .benefit-card__metric-arrow {
  color: #ef8354;
  color: var(--orange);
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card .benefit-card__face--front::after {
    content: "";
    position: absolute;
    bottom: 14px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.7), transparent);
    transform: translateX(-50%);
    opacity: 0;
    transition: width 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
    pointer-events: none;
  }

  .benefit-card:hover .benefit-card__face--front::after,
  .benefit-card:focus-visible .benefit-card__face--front::after {
    width: 42%;
    opacity: 1;
  }
}

.benefit-card__back-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.benefit-card__body {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.55;
  color: var(--muted);
}

.benefit-card__outcomes {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.benefit-card__outcomes li {
  margin: 0;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  background: rgba(78, 205, 196, 0.09);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 999px;
}

/* Homepage: two-line workflow (compact; tabs from blocks-native) */

/* Homepage: two-line workflow (compact; tabs from blocks-native) */
.home-workflow-embed {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-height: 0 !important;
  height: auto !important;
}

#pulsar-workflow-mount .workflow--two-line {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 16px 48px rgba(43, 45, 66, 0.08);
  overflow: hidden;
}

#pulsar-workflow-mount .workflow--two-line .wfl2-body {
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px) clamp(26px, 3vw, 34px);
  border-left: 3px solid transparent;
}

#pulsar-workflow-mount .wf-panel.before-panel .wfl2-body {
  border-left-color: rgba(220, 38, 38, 0.45);
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.04) 0%, transparent 48%);
}

#pulsar-workflow-mount .wf-panel.after-panel .wfl2-body {
  border-left-color: var(--teal);
  background: linear-gradient(90deg, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
}

#pulsar-workflow-mount .workflow--two-line .wfl2-body p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1rem;
}

#pulsar-workflow-mount .workflow--two-line .wfl2-body p:last-child {
  margin-bottom: 0;
}

#pulsar-workflow-mount .workflow--two-line .wfl2-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Homepage: dual-track timeline canvas (see js/blocks/homepage-workflow-timeline.js) */
.home-workflow-timeline {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-0);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(43, 45, 66, 0.07);
}

.home-workflow-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(78, 205, 196, 0.2), var(--teal) 35%, var(--orange) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-workflow-timeline__caption {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2.5vw, 24px) 0;
  max-width: 42rem;
}

.home-workflow-timeline__canvas-wrap {
  width: 100%;
  padding: clamp(8px, 1.5vw, 14px) clamp(12px, 2vw, 20px) clamp(18px, 2.5vw, 22px);
}

#home-workflow-timeline-canvas {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 680px) {
  .home-challenge-layout {
    grid-template-columns: 1fr;
  }
}

/* —— Home: industry sectors —— */
.home-industries-band .home-industries-band__title {
  margin: 0 0 clamp(22px, 3.5vw, 32px);
}

.home-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.home-industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(43, 45, 66, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-industry-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(78, 205, 196, 0.45);
  box-shadow:
    0 16px 48px rgba(43, 45, 66, 0.12),
    0 0 0 1px rgba(78, 205, 196, 0.12);
}

.home-industry-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 400 / 220;
  overflow: hidden;
  line-height: 0;
  background: var(--surface-1);
}

.home-industry-card__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, var(--teal), rgba(91, 159, 212, 0.85) 55%, var(--orange));
  opacity: 0.8;
  pointer-events: none;
}

.home-industry-card:hover .home-industry-card__visual::before {
  opacity: 1;
}

.home-industry-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
  pointer-events: none;
}

.home-industry-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.home-industry-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.home-industry-card__cta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.home-industry-card:hover .home-industry-card__cta {
  color: var(--orange);
}

@media (max-width: 960px) {
  .home-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .home-industry-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Home: capabilities teaser (early access) —— */
.home-cap-teaser--early-access,
#early-access {
  container-type: inline-size;
  overflow: visible;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

.home-cap-teaser--early-access .home-cap-teaser__kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(12px, 2vw, 16px);
  color: var(--teal);
}

.home-cap-teaser--early-access .home-cap-teaser__kicker::before {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.home-cap-teaser--early-access .home-cap-teaser__title {
  max-width: none;
  margin-bottom: clamp(12px, 2vw, 16px);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .home-cap-teaser--early-access .home-cap-teaser__title {
    white-space: normal;
    font-size: clamp(1.35rem, 5.5vw, 1.5rem);
  }

  .home-cap-teaser--early-access .home-cap-teaser__lede {
    white-space: normal;
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    line-height: 1.45;
  }
}

.home-cap-teaser__title-hi {
  font-style: normal;
  background: linear-gradient(105deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  .home-cap-teaser__title-hi {
    color: var(--teal);
    background: none;
  }
}

.home-cap-teaser--early-access .home-cap-teaser__lede {
  max-width: none;
  margin-bottom: 0;
  white-space: nowrap;
  font-size: clamp(0.65rem, 2.78cqi, 1.1rem);
}

.home-cap-teaser .home-cap-grid {
  margin-top: clamp(16px, 2.5vw, 28px);
}

.home-cap-teaser--early-access .home-cap-grid {
  --home-cap-card-w: 200px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 18px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-block: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 45, 66, 0.22) transparent;
}

.home-cap-teaser--early-access .home-cap-grid::-webkit-scrollbar {
  height: 6px;
}

.home-cap-teaser--early-access .home-cap-grid::-webkit-scrollbar-thumb {
  background: rgba(43, 45, 66, 0.22);
  border-radius: 999px;
}

.home-cap-teaser--early-access .home-cap-card--flip,
.home-cap-teaser--early-access .home-cap-card--link {
  flex: 0 0 var(--home-cap-card-w);
  width: var(--home-cap-card-w);
  max-width: var(--home-cap-card-w);
  scroll-snap-align: start;
}

.home-cap-teaser--early-access .home-cap-card--flip {
  height: clamp(248px, 26vw, 272px);
}

.home-cap-teaser--early-access .home-cap-card--link {
  position: relative;
  cursor: pointer;
}

.home-cap-teaser--early-access .home-cap-card--compact {
  height: auto;
  min-height: 0;
}

.home-cap-teaser--early-access .home-cap-card--compact .home-cap-card__visual {
  aspect-ratio: 400 / 120;
}

.home-cap-teaser--early-access .home-cap-card--compact .home-cap-card__body {
  padding: 10px 12px 12px;
}

.home-cap-teaser--early-access .home-cap-card--compact .home-cap-card__heading {
  margin: 0;
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  line-height: 1.25;
}

.home-cap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 16px);
}

.home-cap-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(43, 45, 66, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-cap-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(78, 205, 196, 0.45);
  box-shadow:
    0 16px 48px rgba(43, 45, 66, 0.1),
    0 0 0 1px rgba(78, 205, 196, 0.12);
}

.home-cap-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 400 / 170;
  overflow: hidden;
  background: var(--surface-1);
}

.home-cap-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-cap-card__body {
  padding: clamp(12px, 1.5vw, 15px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-cap-card__eyebrow {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 8px;
}

.home-cap-card__body h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.home-cap-card__body p {
  font-size: 0.81rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 10px;
  flex: 1;
}

.home-cap-card__body p.home-cap-card__eyebrow,
.home-cap-card__body p.home-cap-card__persona {
  flex: 0 0 auto;
}

.home-cap-card__persona {
  margin: 8px 0 10px;
  align-self: flex-start;
}

.home-cap-card__persona .persona-tag {
  margin: 0;
}

.home-cap-card__cta {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.home-cap-card:hover .home-cap-card__cta {
  color: var(--orange);
}

.home-cap-card--static {
  position: relative;
  cursor: default;
}

.home-cap-card--static:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(43, 45, 66, 0.07);
}

/* Homepage early access: flip capability cards */
.home-cap-card--flip {
  position: relative;
  perspective: 1200px;
  height: clamp(248px, 26vw, 272px);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  overflow: visible;
}

.home-cap-card--flip:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.home-cap-card--flip .home-cap-card__flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  transform-origin: center center;
}

.home-cap-card--flip.is-flipped .home-cap-card__flip {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .home-cap-card--flip:hover .home-cap-card__flip,
  .home-cap-card--flip:focus-visible .home-cap-card__flip {
    transform: rotateY(180deg);
  }
}

.home-cap-card--flip .home-cap-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(43, 45, 66, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-cap-card--flip:hover .home-cap-card__face,
.home-cap-card--flip:focus-visible .home-cap-card__face {
  border-color: rgba(78, 205, 196, 0.45);
  box-shadow:
    0 18px 52px rgba(43, 45, 66, 0.13),
    0 0 0 1px rgba(78, 205, 196, 0.12);
}

.home-cap-card--flip .home-cap-card__face--back {
  transform: rotateY(180deg);
}

.home-cap-card--flip .home-cap-card__face--front {
  justify-content: flex-start;
}

.home-cap-card--flip .home-cap-card__badge {
  z-index: 2;
}

@media (hover: none) {
  .benefit-card:not(.is-flipped) .benefit-card__title::after,
  .home-cap-card--flip:not(.is-flipped) .home-cap-card__heading::after {
    content: " · tap to flip";
    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.75;
  }
}

.home-cap-card--flip .home-cap-card__face--front .home-cap-card__visual {
  flex: 1 1 0;
  width: 100%;
  min-height: clamp(88px, 9vw, 100px);
  height: auto;
  aspect-ratio: auto;
}

.home-cap-card--flip .home-cap-card__face--front .home-cap-card__visual img {
  object-fit: cover;
  object-position: center top;
}

.home-cap-card--flip .home-cap-card__body--front {
  position: static;
  flex: 0 0 auto;
  padding: 8px 12px 12px;
  background: none;
}

.home-cap-card--flip .home-cap-card__face--front .home-cap-card__heading {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.25;
}

.home-cap-card--flip .home-cap-card__face--back {
  justify-content: flex-start;
}

.home-cap-card__heading {
  margin: 0;
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.home-cap-card--flip .home-cap-card__panel--back {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px 6px;
  min-height: 0;
  overflow-y: auto;
}

.home-cap-card__panel--back {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(12px, 1.5vw, 15px);
  min-height: 0;
  overflow-y: auto;
}

.home-cap-card--flip .home-cap-card__panel--back .home-cap-card__heading {
  flex-shrink: 0;
  font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.25;
}

.home-cap-card__panel--back .home-cap-card__heading {
  flex-shrink: 0;
}

.home-cap-card--flip .home-cap-card__detail {
  font-size: 0.74rem;
  line-height: 1.48;
}

.home-cap-card__detail {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .home-cap-card--flip .home-cap-card__face--front::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.7), transparent);
    transform: translateX(-50%);
    opacity: 0;
    transition: width 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
    pointer-events: none;
  }

  .home-cap-card--flip:hover .home-cap-card__face--front::after,
  .home-cap-card--flip:focus-visible .home-cap-card__face--front::after {
    width: 38%;
    opacity: 1;
  }
}

.home-cap-card__badge {
  position: absolute;
  top: clamp(10px, 1.2vw, 12px);
  right: clamp(10px, 1.2vw, 12px);
  z-index: 1;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a8f88;
  background: rgba(255, 255, 255, 0.88);
  border: 1px dashed rgba(78, 205, 196, 0.38);
  cursor: default;
  pointer-events: none;
  user-select: none;
  box-shadow: none;
}

.home-cap-teaser__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(24px, 3.5vw, 36px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
}

.home-cap-teaser__footer-copy {
  flex: 1 1 16rem;
}

.home-cap-teaser__footer-line {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.home-cap-teaser__footer-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.home-cap-teaser__cta {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .home-cap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .home-cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Platform: same capability cards as home, with role tags — six columns on wide */
#platform-capability-briefs .home-cap-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(16px, 2.5vw, 24px);
}

@media (max-width: 1200px) {
  #platform-capability-briefs .home-cap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #platform-capability-briefs .home-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  #platform-capability-briefs .home-cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Industries page: sector anchor targets */
.industry-deeplink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.industry-deeplink-card {
  scroll-margin-top: calc(var(--nav-h) + 16px);
  padding: clamp(16px, 2vw, 22px);
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.industry-deeplink-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.industry-deeplink-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .industry-deeplink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .industry-deeplink-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Solution / capability detail template (hero + explainer + KPIs) —— */
.solution-hero-band {
  padding-top: clamp(20px, 3vw, 32px);
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.solution-hero__text .eyebrow {
  margin-bottom: 10px;
}

.solution-hero__text h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--text);
}

.solution-hero__text .lede {
  margin: 0;
  max-width: 36rem;
}

.solution-frame {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 16px 48px rgba(43, 45, 66, 0.1);
  overflow: hidden;
}

.solution-frame img,
.solution-frame video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.solution-frame__placeholder {
  aspect-ratio: 16 / 10;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background:
    linear-gradient(145deg, rgba(78, 205, 196, 0.06) 0%, transparent 45%, rgba(91, 159, 212, 0.05) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.02) 10px,
      rgba(0, 0, 0, 0.02) 11px
    );
}

html[data-theme="dark"] .solution-frame__placeholder {
  background:
    linear-gradient(145deg, rgba(78, 205, 196, 0.1) 0%, transparent 50%, rgba(91, 159, 212, 0.08) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 11px
    );
}

.solution-explain__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(20px, 3vw, 28px);
  color: var(--text);
}

.solution-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.solution-split:last-child {
  margin-bottom: 0;
}

.solution-split--reverse .solution-split__media {
  order: 2;
}

.solution-split--reverse .solution-split__body {
  order: 1;
}

.solution-split__media {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-0);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(43, 45, 66, 0.08);
}

.solution-split__media .solution-frame__placeholder {
  aspect-ratio: 4 / 3;
  min-height: 180px;
}

.solution-split__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.solution-split__body p:not(.eyebrow) {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

.solution-outcomes__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(8px, 1.5vw, 12px);
  color: var(--text);
}

.solution-outcomes__lede {
  margin: 0 0 clamp(22px, 3vw, 32px);
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.solution-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.solution-kpi {
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 8px 28px rgba(43, 45, 66, 0.06);
}

.solution-kpi__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.solution-kpi__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.25;
}

.solution-kpi__hint {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

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

  .solution-hero__visual {
    order: 2;
  }

  .solution-hero__text {
    order: 1;
  }

  .solution-split,
  .solution-split--reverse {
    grid-template-columns: 1fr;
  }

  .solution-split--reverse .solution-split__media,
  .solution-split--reverse .solution-split__body {
    order: unset;
  }

  .solution-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Capability detail: hero KPI strip, how-it-works steps, measured impact (solution template) —— */
.solution-hero__actions {
  margin-top: 10px;
}

.solution-hero__deeplinks {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 14px;
}

.solution-hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 36px);
  margin-top: clamp(22px, 3vw, 32px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
  max-width: 40rem;
}

.solution-hero-kpi__num {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 4px;
}

.solution-hero-kpi__lbl {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.solution-how__head {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.solution-how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.solution-how__step {
  display: grid;
  grid-template-columns: minmax(56px, 72px) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 clamp(28px, 4vw, 48px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.solution-how__step--animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.solution-how__step--animate.solution-how__step--visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-how__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  color: var(--line);
  font-family: var(--mono);
  line-height: 1;
  padding-top: 4px;
}

.solution-how__body h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.solution-how__body > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.solution-how__detail {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-how__detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.solution-how__detail-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.solution-how__viz {
  background: var(--surface-0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.solution-how__mono-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.solution-how__mono-dot--teal {
  background: var(--teal);
}

.solution-how__mono-dot--orange {
  background: var(--orange);
}

.solution-how__mono-dot--muted {
  background: var(--dim);
  opacity: 0.45;
}

.solution-how__mono-text {
  color: var(--muted);
}

.solution-how__mono-text--hi {
  color: var(--teal);
}

.solution-how__mono-text--alert {
  color: var(--orange);
}

.solution-how__mono-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
  margin-top: 2px;
}

.solution-impact__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.solution-impact__head h2 {
  color: var(--text);
  margin: 0 0 10px;
}

.solution-impact__head p {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.solution-impact__head--roi p {
  max-width: 40rem;
}

.solution-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.solution-impact__card {
  padding: clamp(24px, 3vw, 32px) clamp(18px, 2.5vw, 26px);
  background: var(--bg-elev);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.solution-impact__card:last-child {
  border-right: none;
}

.solution-impact__card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.solution-impact__card:hover::before {
  transform: scaleX(1);
}

.solution-impact__before {
  font-size: 0.68rem;
  font-family: var(--mono);
  color: var(--dim);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.solution-impact__value {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.solution-impact__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.solution-impact__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.solution-impact__calc {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 24px) clamp(16px, 2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-impact__calc-part {
  text-align: center;
  padding: 0 clamp(14px, 2vw, 24px);
}

.solution-impact__calc-num {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--mono);
}

.solution-impact__calc-txt {
  font-size: 0.68rem;
  color: var(--dim);
  margin-top: 4px;
}

.solution-impact__calc-op {
  font-size: 1.1rem;
  color: var(--dim);
  opacity: 0.5;
}

.solution-impact__calc-result {
  padding: 0 clamp(14px, 2vw, 24px);
  border-left: 1px solid var(--line);
  text-align: center;
}

.solution-impact__calc-result .solution-impact__calc-num {
  color: var(--orange);
}

.solution-impact__fineprint {
  text-align: center;
  margin-top: 16px;
  font-size: 0.65rem;
  color: var(--dim);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.solution-impact__cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 52px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.solution-impact__cta p {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .solution-how__step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-how__num {
    font-size: 1.75rem;
  }

  .solution-impact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-impact__calc-result {
    border-left: none;
    flex-basis: 100%;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .solution-impact__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Root Cause workflow: simultaneous without/with + value matrix —— */
.solution-workflow-diff__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.solution-workflow-diff__pill {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid transparent;
}

.solution-workflow-diff__pill--bad {
  color: #b91c1c;
  background: rgba(230, 57, 70, 0.08);
  border-color: rgba(230, 57, 70, 0.35);
}

.solution-workflow-diff__pill--good {
  color: #047857;
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(5, 150, 105, 0.38);
}

.solution-workflow-diff__vs {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

.solution-workflow-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.solution-workflow-diff__col {
  background: var(--surface-0);
  min-width: 0;
}

.solution-workflow-diff__col-head {
  padding: clamp(16px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.solution-workflow-diff__col--without .solution-workflow-diff__col-head {
  background: rgba(250, 250, 252, 0.95);
}

.solution-workflow-diff__col--with .solution-workflow-diff__col-head {
  background: rgba(78, 205, 196, 0.08);
  border-left: 1px solid rgba(78, 205, 196, 0.2);
}

.solution-workflow-diff__badge {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
  padding: 4px 10px;
  border-radius: 4px;
}

.solution-workflow-diff__badge--bad {
  background: rgba(230, 57, 70, 0.1);
  color: #dc2626;
}

.solution-workflow-diff__badge--good {
  background: rgba(78, 205, 196, 0.15);
  color: #047857;
}

.solution-workflow-diff__col-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.solution-workflow-diff__steps {
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
}

.solution-workflow-diff__step {
  display: flex;
  gap: 14px;
  padding-bottom: 22px;
  position: relative;
}

.solution-workflow-diff__step:last-child {
  padding-bottom: 0;
}

.solution-workflow-diff__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.solution-workflow-diff__col--with .solution-workflow-diff__step:not(:last-child)::before {
  background: rgba(78, 205, 196, 0.28);
}

.solution-workflow-diff__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.solution-workflow-diff__dot--bad {
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.22);
}

.solution-workflow-diff__dot--good {
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid rgba(78, 205, 196, 0.32);
}

.solution-workflow-diff__dot--final-bad {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}

.solution-workflow-diff__dot--final-good {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.solution-workflow-diff__body {
  min-width: 0;
}

.solution-workflow-diff__meta {
  font-size: 0.62rem;
  font-family: var(--mono);
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.solution-workflow-diff__step-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.solution-workflow-diff__step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.solution-workflow-diff__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.58rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--mono);
}

.solution-workflow-diff__tag--warn {
  background: #fff3e0;
  color: #c2410c;
}

.solution-workflow-diff__tag--ok {
  background: rgba(78, 205, 196, 0.12);
  color: #047857;
}

.solution-value-matrix {
  margin-top: clamp(36px, 5vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, #171a22 0%, #0e1016 55%, #12151c 100%);
  box-shadow: 0 20px 50px rgba(43, 45, 66, 0.1);
}

.solution-value-matrix__inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.solution-value-matrix__inner > .solution-value-matrix__header,
.solution-value-matrix__inner > .solution-value-matrix__row {
  min-width: 480px;
}

.solution-value-matrix__header,
.solution-value-matrix__row {
  display: grid;
  grid-template-columns: minmax(140px, 1.15fr) minmax(100px, 1fr) minmax(100px, 1fr);
  align-items: center;
  gap: 0;
}

.solution-value-matrix__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.solution-value-matrix__header > div {
  padding: 12px 16px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.42);
}

.solution-value-matrix__head-bad {
  text-align: right;
  color: #fca5a5 !important;
}

.solution-value-matrix__head-good {
  text-align: left;
  color: #6ee7b7 !important;
}

.solution-value-matrix__row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.solution-value-matrix__label {
  padding: 14px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.92);
  line-height: 1.35;
}

.solution-value-matrix__cell--bad {
  padding: 14px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #f87171;
  text-align: right;
  line-height: 1.35;
}

.solution-value-matrix__cell--good {
  padding: 14px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #34d399;
  text-align: left;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .solution-workflow-diff__grid {
    grid-template-columns: 1fr;
  }

  .solution-workflow-diff__col--with .solution-workflow-diff__col-head {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

/* —— Buttons —— */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: #ffffff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(239, 131, 84, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--color-metal);
  transform: translateY(-1px);
}

.band--dark .btn--ghost {
  color: rgba(244, 245, 247, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
}

.band--dark .btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* —— Grids —— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 22px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
  box-shadow: 0 12px 40px rgba(43, 45, 66, 0.06);
}

html[data-theme="dark"] .card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-icon {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* —— Page header —— */
.page-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 64px) clamp(12px, 2vw, 18px) clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  max-width: none;
}

/* Contact section deep-link (about page) */
#contact {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* Capabilities page: module anchors from homepage teaser */
.capability-card {
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

/* —— Footer —— (full-bleed dark; CTA row + mega-style links + graph canvas) */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 72% 48% at 12% 0%, rgba(78, 205, 196, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 42% at 92% 85%, rgba(239, 131, 84, 0.07) 0%, transparent 48%),
    linear-gradient(168deg, var(--surface-night-edge) 0%, var(--surface-night) 42%, var(--surface-night-mid) 100%);
  margin-top: auto;
  color: #f4f5f7;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 28px;
}

.site-footer__graph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.site-footer__graph.is-visible {
  opacity: 1;
}

.site-footer__cta {
  background: transparent;
  color: #f4f5f7;
  padding: clamp(14px, 2.2vw, 22px) clamp(12px, 2vw, 18px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.site-footer__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 80%, rgba(239, 131, 84, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.site-footer__cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(14px, 3vw, 28px);
  align-items: center;
}

@media (max-width: 640px) {
  .site-footer__cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__cta-actions {
    justify-content: flex-start;
  }

  .site-footer__cta-btn,
  .site-footer__cta .btn--ghost {
    min-height: 44px;
    padding: 12px 20px;
  }
}

.site-footer__cta-copy {
  min-width: 0;
  max-width: 36rem;
}

.site-footer__cta-head {
  font-size: clamp(1.02rem, 1.85vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 4px;
  color: #f4f5f7;
}

.site-footer__cta-lede {
  font-size: clamp(0.8rem, 1.15vw, 0.9rem);
  line-height: 1.45;
  color: rgba(244, 245, 247, 0.76);
  margin: 0;
  font-weight: 400;
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer__cta-btn {
  flex-shrink: 0;
  font-size: 0.7rem;
  padding: 10px 18px;
  box-shadow: 0 8px 28px rgba(239, 131, 84, 0.28);
}

.site-footer__cta-btn:hover {
  box-shadow: 0 12px 36px rgba(239, 131, 84, 0.38);
}

.site-footer__cta .btn--ghost {
  color: rgba(244, 245, 247, 0.85);
  border-color: rgba(78, 205, 196, 0.28);
  font-size: 0.7rem;
  padding: 10px 18px;
}

.site-footer__cta .btn--ghost:hover {
  color: var(--teal);
  border-color: rgba(78, 205, 196, 0.55);
}

.site-footer__scan {
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 205, 196, 0.35) 28%,
    rgba(78, 205, 196, 0.35) 72%,
    transparent 100%
  );
  opacity: 0.18;
  position: relative;
  z-index: 2;
}

.site-footer__main {
  padding: clamp(28px, 3.5vw, 44px) clamp(12px, 2vw, 18px) clamp(20px, 2.5vw, 32px);
  background: transparent;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(229, 231, 235, 0.06);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__brand {
  padding-right: clamp(0px, 2vw, 16px);
}

.site-footer__logo {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: #f4f5f7;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--mono);
}

.site-footer__logo:hover {
  color: var(--teal);
  text-decoration: none;
}

.site-footer__tagline {
  font-family: var(--font);
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(244, 245, 247, 0.72);
  max-width: 22rem;
  margin: 0 0 16px;
  font-weight: 400;
}

.site-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.22);
  padding: 4px 11px;
  border-radius: 999px;
  margin: 0;
}

.site-footer__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: site-footer-pulse 2s ease-in-out infinite;
}

@keyframes site-footer-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

.site-footer__col-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 245, 247, 0.48);
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links--stack {
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
  text-decoration: none;
}

.site-footer .footer-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(244, 245, 247, 0.68);
}

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

.site-footer__bottom {
  position: relative;
  z-index: 2;
  padding: 14px clamp(12px, 2vw, 18px) 18px;
}

.site-footer__bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.site-footer__copy {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: rgba(141, 153, 174, 0.55);
}

.site-footer__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-footer__social {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(229, 231, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 245, 247, 0.55);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.site-footer__social:hover {
  border-color: rgba(78, 205, 196, 0.35);
  background: rgba(78, 205, 196, 0.08);
  color: var(--teal);
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__legal-links a {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: rgba(141, 153, 174, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__legal-links a:hover {
  color: rgba(244, 245, 247, 0.72);
}

.site-footer__coords {
  position: absolute;
  bottom: 10px;
  right: clamp(12px, 2vw, 18px);
  margin: 0;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  color: rgba(78, 205, 196, 0.2);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 0.74rem;
}

.section--cta-compact {
  padding-top: clamp(18px, 3vw, 26px) !important;
  padding-bottom: clamp(18px, 3vw, 26px) !important;
}

.section--cta-compact .lede {
  margin-bottom: 0;
}

.section--cta-compact .actions {
  margin-top: 10px;
  justify-content: flex-end;
}

.list-check {
  list-style: none;
  margin-top: 1rem;
}

.list-check li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* —— Embedded Website_blocks (iframes) —— */
.embed {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0e0f12;
  box-shadow: 0 20px 60px rgba(43, 45, 66, 0.12);
  line-height: 0;
  display: flex;
  flex-direction: column;
}

.band--dark .embed {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.embed--light {
  background: #f3f5f8;
}

.embed iframe {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  border: 0;
}

/* Native block mounts (no iframe): allow content to define height on mobile */
.embed.embed--native {
  line-height: normal;
  overflow: visible;
  min-height: 0;
}

.embed.embed--native.embed--hero {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: clamp(420px, 46vh, 620px);
}

.embed.embed--native.embed--how {
  height: auto;
  min-height: 480px;
  overflow: visible;
}

.embed.embed--native.embed--challenge,
.embed.embed--native.embed--diff,
.embed.embed--native.embed--workflow {
  height: auto;
  min-height: 0;
}

.embed.embed--native.embed--card {
  height: auto;
  min-height: 440px;
}

.embed.embed--native.embed--quote {
  height: auto;
  min-height: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.band--white .embed.embed--native.embed--quote,
.band--muted .embed.embed--native.embed--quote {
  background: transparent;
}

.embed--hero {
  min-height: 420px;
  height: clamp(420px, 52vh, 620px);
}

.embed--how {
  min-height: 460px;
  height: clamp(460px, 44vw, 560px);
}

.embed--challenge {
  min-height: 620px;
  height: min(86vh, 820px);
}

.embed--diff {
  min-height: 600px;
  height: min(82vh, 780px);
}

.embed--workflow {
  min-height: 420px;
  height: min(68vh, 560px);
}

.embed--card {
  min-height: 420px;
  height: clamp(420px, 42vw, 500px);
}

.embed--quote {
  min-height: 340px;
  height: auto;
}

.embed--quote iframe {
  flex: 0 0 auto;
  height: 360px;
  min-height: 320px;
}

@media (max-width: 640px) {
  .embed--hero {
    height: 400px;
    min-height: 400px;
  }

  .embed--hero.embed--native {
    height: 380px;
    min-height: 360px;
  }

  .embed--how {
    min-height: 480px;
    height: clamp(480px, 112vw, 580px);
  }

  .embed--how.embed--native {
    height: auto;
    min-height: 0;
  }

  .embed--challenge {
    height: min(92vh, 900px);
    min-height: 640px;
  }

  .embed--diff {
    height: min(88vh, 860px);
    min-height: 620px;
  }

  .embed--workflow {
    min-height: 460px;
    height: min(78vh, 620px);
  }

  .embed--card {
    min-height: 440px;
    height: clamp(440px, 108vw, 520px);
  }

  .embed--quote iframe {
    height: 380px;
    min-height: 340px;
  }

  .embed--challenge.embed--native,
  .embed--diff.embed--native {
    min-height: 0;
  }

  .embed--workflow.embed--native {
    min-height: 0;
  }

  .embed--card.embed--native {
    min-height: 400px;
  }
}


/* Contact / Get started page */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.contact-hero__copy {
  max-width: 40rem;
}

.contact-hero__copy .lede {
  margin-bottom: 16px;
}

.contact-hero__copy .prose {
  margin: 0;
}

.contact-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(14px, 2.2vw, 20px);
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 32px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(78, 205, 196, 0.1) 0%, transparent 58%),
    var(--bg-card);
  box-shadow: 0 12px 40px rgba(43, 45, 66, 0.08);
}

.contact-cta-card__divider {
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
}

.contact-cta-card .eyebrow {
  margin: 0;
}

.contact-cta-card__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-cta-card__sub {
  margin: 0;
  max-width: 26rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-cta-card__btn {
  margin-top: 4px;
  gap: 10px;
}

.contact-cta-card__btn-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.contact-cta-card__note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-cta-card__note svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-cta-card__email {
  margin: 0;
  padding-top: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.contact-cta-card__email a {
  color: var(--teal);
  font-weight: 500;
}

.contact-cta-card__email a:hover {
  text-decoration: underline;
}

html[data-theme="dark"] .contact-cta-card {
  background:
    radial-gradient(ellipse 88% 65% at 50% 0%, rgba(78, 205, 196, 0.12) 0%, transparent 55%),
    var(--bg-card);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-hero__cta {
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }
}


/* About page — mission band full width; photo flush to viewport left */
#our-mission .about-mission {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 36rem);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(42px, 6vw, 84px) clamp(16px, 2.5vw, 32px) clamp(42px, 6vw, 84px) 0;
}

.about-mission__content {
  max-width: 34rem;
  padding-top: 0.25rem;
}

.about-mission .scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-mission .scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-mission .scroll-reveal.d1 {
  transition-delay: 0.08s;
}

.about-mission .scroll-reveal.d2 {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .about-mission .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-mission__media {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.about-mission__photo {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.about-mission__location-toggle {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 5vw, 56px);
  bottom: clamp(18px, 10%, 48px);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px 7px 10px;
  border-radius: 4px;
  border: 1px dashed rgba(43, 45, 66, 0.22);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  line-height: 1;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.about-mission__location-toggle-icon {
  flex-shrink: 0;
  color: var(--teal);
}

.about-mission__location-toggle-sep {
  opacity: 0.45;
}

html[data-theme="dark"] .about-mission__location-toggle {
  background: rgba(22, 24, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
  color: #c8ced9;
  box-shadow: none;
}

.about-mission__content .prose + .prose {
  margin-top: 12px;
}

.about-leadership-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
}

.about-leader-card {
  text-align: center;
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 14px 18px;
}

.about-leader-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin: 0 0 14px;
  display: block;
  box-shadow: 0 6px 20px rgba(43, 45, 66, 0.1);
}

.about-leader-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.about-leader-role {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.about-leader-bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-credibility-lede {
  max-width: 64ch;
  margin: 56px auto 0;
  text-align: center;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.45;
}

.about-story-placeholder {
  margin-top: 14px;
  min-height: 180px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--muted);
  background: var(--bg-soft);
}

.about-hero-band {
  background: transparent;
}

.platform-hero-band,
.why-pulsar-hero-band {
  background: transparent;
}

body.page-hero main > .band--white:first-child {
  background: transparent;
}

/* Contact: keep readable light (or dark) surface — page-hero otherwise clears the first white band */
body.page-contact.page-hero main > .band--white:first-child {
  background:
    radial-gradient(ellipse 78% 58% at 0% -5%, rgba(78, 205, 196, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 62% 48% at 100% 102%, rgba(239, 131, 84, 0.07) 0%, transparent 50%),
    var(--surface-0);
}

html[data-theme="dark"] body.page-contact.page-hero main > .band--white:first-child {
  background:
    radial-gradient(ellipse 72% 52% at 100% 0%, rgba(91, 159, 212, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 58% 46% at 0% 100%, rgba(78, 205, 196, 0.1) 0%, transparent 48%),
    #16181f;
}

body.page-contact .contact-hero__copy .lede,
body.page-contact .contact-hero__copy .prose {
  color: #3a3f52;
}

html[data-theme="dark"] body.page-contact .contact-hero__copy .lede,
html[data-theme="dark"] body.page-contact .contact-hero__copy .prose {
  color: #c8ced9;
}

body.page-contact .contact-hero__copy .eyebrow {
  color: #0a5c56;
}

html[data-theme="dark"] body.page-contact .contact-hero__copy .eyebrow {
  color: #7dd3fc;
}

body.solution-page.page-hero main > .band--white:first-child {
  background:
    radial-gradient(ellipse 70% 52% at 0% 0%, rgba(91, 159, 212, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 56% 42% at 100% 100%, rgba(78, 205, 196, 0.1) 0%, transparent 52%),
    #eef3f9;
}

@media (max-width: 1100px) {
  .about-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #our-mission .about-mission {
    grid-template-columns: 1fr;
    padding-left: clamp(12px, 2vw, 18px);
    padding-right: clamp(12px, 2vw, 18px);
  }

  .about-mission__content {
    max-width: none;
  }

  .about-mission__media {
    height: auto;
  }

  .about-mission__photo {
    height: auto;
    max-height: min(72vw, 420px);
    object-position: center center;
  }

  .about-mission__location-toggle {
    left: clamp(12px, 3vw, 24px);
    bottom: clamp(14px, 6%, 28px);
  }
}

@media (max-width: 640px) {
  .about-leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Custom Reports / focused system views (capability page) —— */
.sol-reports-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.sol-reports-hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sol-reports-hero-card:hover {
  border-color: rgba(78, 205, 196, 0.35);
  box-shadow: 0 4px 20px rgba(78, 205, 196, 0.08);
}

.sol-reports-hero-card--active {
  border-color: rgba(78, 205, 196, 0.55);
  background: rgba(78, 205, 196, 0.08);
}

.sol-reports-hero-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--surface-0);
  border: 1px solid var(--line);
  color: var(--teal);
}

.sol-reports-hero-card__icon--orange {
  color: var(--orange);
}

.sol-reports-hero-card__icon--muted {
  color: var(--dim);
}

.sol-reports-hero-card__body {
  flex: 1;
  min-width: 0;
}

.sol-reports-hero-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 2px;
}

.sol-reports-hero-card__sub {
  font-size: 0.68rem;
  font-family: var(--mono);
  color: var(--dim);
  line-height: 1.35;
}

.sol-reports-hero-card__role {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface-1);
  color: var(--muted);
  flex-shrink: 0;
}

.sol-reports-hero-card__role--arch {
  background: rgba(78, 205, 196, 0.12);
  color: #0a5c56;
}

.sol-reports-hero-card__role--eng {
  background: rgba(239, 131, 84, 0.12);
  color: #b45309;
}

.sol-reports-insight .sol-reports-divider {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin: clamp(18px, 2.5vw, 26px) 0;
}

.sol-reports-graph-card {
  padding: clamp(18px, 2.5vw, 26px);
  background: var(--surface-0);
}

.sol-reports-graph-card__label {
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.sol-reports-graph-card__diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sol-reports-graph-card__feeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sol-reports-graph-card__feed {
  padding: 8px 12px;
  background: var(--surface-0);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.68rem;
  font-family: var(--mono);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sol-reports-graph-card__feed::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.sol-reports-contrast {
  margin-top: 16px;
}

.sol-reports-contrast__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.sol-reports-contrast__cell {
  padding: 12px 14px;
  background: var(--surface-0);
}

.sol-reports-contrast__cell--bad {
  background: rgba(230, 57, 70, 0.08);
}

.sol-reports-contrast__cell--good {
  background: rgba(78, 205, 196, 0.1);
}

.sol-reports-contrast__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 6px;
}

.sol-reports-contrast__label--bad {
  color: #c53030;
}

.sol-reports-contrast__label--good {
  color: #0a5c56;
}

.sol-reports-contrast__text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.sol-reports-section-head {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.sol-reports-section-head .lede {
  max-width: 36rem;
  margin-bottom: 0;
}

.sol-reports-section-head h2 {
  margin: 0 0 10px;
}

.sol-reports-insight .solution-split__body p + p {
  margin-top: 12px;
}

.sol-reports-tech-copy h2 {
  margin: 0 0 clamp(12px, 2vw, 18px);
}

.sol-reports-view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.sol-reports-view-card {
  padding: clamp(22px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
  background: var(--surface-0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sol-reports-view-card:hover {
  border-color: rgba(78, 205, 196, 0.35);
  box-shadow: 0 8px 28px rgba(43, 45, 66, 0.08);
}

.sol-reports-view-card__num {
  font-size: 0.65rem;
  font-family: var(--mono);
  color: var(--dim);
  font-weight: 600;
  margin-bottom: 12px;
}

.sol-reports-view-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface-1);
}

.sol-reports-view-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
  line-height: 1.3;
}

.sol-reports-view-card__q {
  font-size: 0.72rem;
  color: var(--dim);
  font-style: italic;
  margin: 0 0 12px;
  line-height: 1.5;
  font-family: var(--mono);
}

.sol-reports-view-card__body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.sol-reports-view-card__source {
  font-size: 0.65rem;
  font-family: var(--mono);
  color: var(--dim);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.sol-reports-view-card__source span {
  color: #0a5c56;
}

.sol-reports-view-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.sol-reports-pill {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--mono);
  padding: 2px 8px;
  border-radius: 4px;
}

.sol-reports-pill--arch {
  background: rgba(78, 205, 196, 0.12);
  color: #0a5c56;
}

.sol-reports-pill--eng {
  background: rgba(239, 131, 84, 0.12);
  color: #b45309;
}

.sol-reports-pill--qual {
  background: rgba(141, 153, 174, 0.15);
  color: var(--muted);
}

.sol-reports-pill--prog {
  background: rgba(43, 45, 66, 0.08);
  color: var(--text);
}

.sol-reports-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.sol-reports-role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-0);
  box-shadow: 0 8px 28px rgba(43, 45, 66, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sol-reports-role-card:hover {
  border-color: rgba(78, 205, 196, 0.35);
  box-shadow: 0 12px 32px rgba(78, 205, 196, 0.1);
}

.sol-reports-role-card__header {
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-0);
}

.sol-reports-role-card__eyebrow {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  color: var(--dim);
  margin-bottom: 6px;
}

.sol-reports-role-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
}

.sol-reports-role-card__question {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}

.sol-reports-role-card__views {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.sol-reports-role-card__views-label {
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.sol-reports-role-card__view {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.sol-reports-role-card__view:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sol-reports-role-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35em;
}

.sol-reports-role-card__dot--teal {
  background: var(--teal);
}

.sol-reports-role-card__dot--orange {
  background: var(--orange);
}

.sol-reports-role-card__dot--gray {
  background: var(--dim);
}

.sol-reports-role-card__view-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.sol-reports-role-card__view-desc {
  font-size: 0.68rem;
  color: var(--dim);
  font-family: var(--mono);
  line-height: 1.4;
}

.sol-reports-role-card__viz {
  padding: 12px 16px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--line);
}

.sol-reports-role-card__outcome {
  padding: 14px 20px;
  background: var(--surface-0);
}

.sol-reports-role-card__outcome-label {
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.sol-reports-role-card__outcome-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.sol-reports-query-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.sol-reports-query-col__head {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-1);
}

.sol-reports-query-col--pul .sol-reports-query-col__head {
  background: rgba(78, 205, 196, 0.12);
}

.sol-reports-query-col__head-label {
  font-size: 0.62rem;
  font-family: var(--mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 4px;
}

.sol-reports-query-col--pul .sol-reports-query-col__head-label {
  color: #0a5c56;
}

.sol-reports-query-col__head-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.sol-reports-query-col--pul .sol-reports-query-col__head-title {
  color: #0a5c56;
}

.sol-reports-query-col__rows {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface-0);
}

.sol-reports-query-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sol-reports-query-row__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--mono);
}

.sol-reports-query-row__icon--bad {
  background: rgba(230, 57, 70, 0.12);
  color: #c53030;
}

.sol-reports-query-row__icon--good {
  background: rgba(78, 205, 196, 0.15);
  color: #0a5c56;
}

.sol-reports-query-row__title {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.sol-reports-query-row__desc {
  font-size: 0.75rem;
  color: var(--dim);
  line-height: 1.5;
  margin: 0;
}

.sol-reports-query-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.sol-reports-query-example {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.sol-reports-query-example__query {
  font-size: 0.72rem;
  font-family: var(--mono);
  color: var(--teal);
  margin: 0 0 10px;
  line-height: 1.45;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.sol-reports-query-example__arrow {
  font-size: 0.65rem;
  color: var(--dim);
  font-family: var(--mono);
  margin-bottom: 6px;
}

.sol-reports-query-example__result {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sol-reports-query-example__desc {
  font-size: 0.68rem;
  color: var(--dim);
  line-height: 1.45;
  margin: 0;
}

.sol-reports-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.sol-reports-tech-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(18px, 2.5vw, 24px);
}

.sol-reports-tech-row {
  display: grid;
  grid-template-columns: minmax(100px, 130px) 1fr;
  border-bottom: 1px solid var(--line);
}

.sol-reports-tech-row:last-child {
  border-bottom: none;
}

.sol-reports-tech-row__key {
  padding: 12px 14px;
  background: var(--surface-1);
  font-size: 0.65rem;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.sol-reports-tech-row__val {
  padding: 12px 14px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.sol-reports-tech-diagram {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 22px);
  background: var(--surface-0);
  box-shadow: 0 12px 40px rgba(43, 45, 66, 0.08);
}

.sol-reports-tech-diagram__label {
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

@media (max-width: 960px) {
  .sol-reports-hero-stack {
    margin-left: 0;
    max-width: none;
  }

  .sol-reports-view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sol-reports-roles-grid {
    grid-template-columns: 1fr;
  }

  .sol-reports-query-grid {
    grid-template-columns: 1fr;
  }

  .sol-reports-query-examples {
    grid-template-columns: 1fr;
  }

  .sol-reports-tech-grid {
    grid-template-columns: 1fr;
  }

  .sol-reports-contrast__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sol-reports-view-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Industry: Automotive (industries/automotive.html) —— */
.automotive-industry .solution-hero--automotive .solution-hero__text h1 {
  font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  line-height: 1.12;
  max-width: min(38rem, 100%);
}

.automotive-industry .solution-hero--automotive .solution-hero__text .lede {
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.62;
}

@media (max-width: 900px) {
  .automotive-industry .solution-hero--automotive .solution-hero__text h1 {
    max-width: none;
  }
}

.automotive-industry .auto-chain__prose {
  max-width: 44rem;
  margin-top: clamp(8px, 1.5vw, 14px);
}

.automotive-industry .auto-chain__prose p {
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.automotive-industry .auto-chain__prose p:last-child {
  margin-bottom: 0;
}

.automotive-industry .auto-context__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(8px, 2vw, 16px);
}

.automotive-industry .auto-context__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
}

.automotive-industry .auto-context__list li {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 3px solid rgba(78, 205, 196, 0.55);
}

.automotive-industry .auto-context__list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.automotive-industry .auto-context__list span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.automotive-industry .auto-stack-figure {
  background: #fff;
}

.automotive-industry .auto-stack-figure svg {
  display: block;
  width: 100%;
  height: auto;
}

.automotive-industry .auto-phase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(8px, 2vw, 12px);
}

.automotive-industry .auto-phase-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 8px 28px rgba(43, 45, 66, 0.06);
}

.automotive-industry .auto-phase-card__eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 8px;
}

.automotive-industry .auto-phase-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.automotive-industry .auto-phase-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.automotive-industry .auto-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(8px, 2vw, 12px);
}

.automotive-industry .auto-role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: clamp(18px, 2.2vw, 22px);
  text-align: left;
}

.automotive-industry .auto-role-card h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.automotive-industry .auto-role-card__q {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--dim);
}

.automotive-industry .auto-role-card__a {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.automotive-industry .auto-role-card__a strong {
  color: var(--text);
}

.automotive-industry .auto-cred.auto-cred--quote.section {
  max-width: 46rem;
  margin-inline: auto;
  padding-block: clamp(28px, 4.5vw, 52px);
}

.automotive-industry .auto-cred-quote--standfirst {
  margin: 0;
}

.automotive-industry .auto-cred-quote--standfirst .auto-cred-quote__label {
  display: block;
  font-family: var(--sans, "DM Sans", system-ui, sans-serif);
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(239, 131, 84, 0.88);
  margin: 0 0 clamp(10px, 1.5vw, 14px);
  line-height: 1.45;
  max-width: 38rem;
}

.automotive-industry .auto-cred-quote--standfirst .auto-cred-quote__head {
  margin: 0;
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--text);
  max-width: 44rem;
}

.automotive-industry .auto-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .automotive-industry .auto-context__grid {
    grid-template-columns: 1fr;
  }

  .automotive-industry .auto-phase-grid,
  .automotive-industry .auto-role-grid {
    grid-template-columns: 1fr;
  }

  .automotive-industry .auto-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Automotive: SDV program timeline v2 (car stage + phases) —— */
.automotive-industry .sdv-timeline-section {
  --sdv-teal-mid: #2cb5ac;
  --sdv-orange: #ef8354;
  --sdv-border: var(--line);
  --sdv-surface: var(--surface-1);
  --sdv-bg: var(--bg-card);
  padding-block: clamp(56px, 7vw, 100px) clamp(64px, 8vw, 120px);
}

.automotive-industry .sdv-timeline-section .sdv-timeline-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

@media (min-width: 1024px) {
  .automotive-industry .sdv-timeline-section.section {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-block: clamp(24px, 3vw, 44px) clamp(28px, 3.5vw, 52px);
    padding-inline: clamp(20px, 3vw, 48px);
  }

  .automotive-industry .sdv-timeline-section .sdv-timeline-container {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .automotive-industry .sdv-timeline-section .car-stage {
    margin-bottom: clamp(16px, 2vw, 28px);
  }

}

.automotive-industry .sdv-timeline-section .tl-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

@media (min-width: 1024px) {
  .automotive-industry .sdv-timeline-section .tl-header {
    margin-bottom: clamp(14px, 2vw, 22px);
  }
}

.automotive-industry .sdv-timeline-section .tl-eyebrow {
  font-size: 0.69rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sdv-teal-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.automotive-industry .sdv-timeline-section .tl-eyebrow::after {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background: var(--teal);
}

.automotive-industry .sdv-timeline-section .tl-header__title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.12;
  max-width: 42rem;
  margin: 0 0 clamp(8px, 1.2vw, 12px);
  color: var(--text);
}

.automotive-industry .sdv-timeline-section .tl-header__lede {
  font-size: clamp(0.92rem, 1.2vw, 0.97rem);
  color: var(--muted);
  max-width: 35rem;
  line-height: 1.65;
  margin: 0;
}

.automotive-industry .sdv-timeline-section .car-stage {
  margin-bottom: clamp(36px, 5vw, 56px);
  background: var(--sdv-surface);
  border: 1px solid var(--sdv-border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 220px;
}

.automotive-industry .sdv-timeline-section .car-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--line);
  display: flex;
  align-items: center;
}

.automotive-industry .sdv-timeline-section .road-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sdv-bg) 0, var(--sdv-bg) 28px, transparent 28px, transparent 56px);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.automotive-industry .sdv-timeline-section .car-stage.phase-5 .road-line {
  opacity: 1;
}

.automotive-industry .sdv-timeline-section .car-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--sdv-surface);
  border-top: 1px solid var(--sdv-border);
}

.automotive-industry .sdv-timeline-section .car-scene-label {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 0.62rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  transition: opacity 0.3s ease;
}

.automotive-industry .sdv-timeline-section .bg-element {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.automotive-industry .sdv-timeline-section .sdv-bg-flex {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.automotive-industry .sdv-timeline-section .sdv-bg-flex--hil {
  gap: 8px;
}

.automotive-industry .sdv-timeline-section .sdv-bg-flex--gate {
  align-items: center;
  gap: 14px;
}

.automotive-industry .sdv-timeline-section .sdv-bg-flex--trees {
  gap: 28px;
}

.automotive-industry .sdv-timeline-section .doc-sheet {
  width: 42px;
  height: 54px;
  border: 1px solid var(--sdv-border);
  border-radius: 4px;
  background: var(--sdv-bg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 7px;
}

.automotive-industry .sdv-timeline-section .doc-line {
  height: 2px;
  border-radius: 1px;
  background: var(--sdv-border);
}

.automotive-industry .sdv-timeline-section .doc-line:first-child {
  width: 100%;
}
.automotive-industry .sdv-timeline-section .doc-line:nth-child(2) {
  width: 75%;
}
.automotive-industry .sdv-timeline-section .doc-line:nth-child(3) {
  width: 85%;
}
.automotive-industry .sdv-timeline-section .doc-line:nth-child(4) {
  width: 60%;
}
.automotive-industry .sdv-timeline-section .doc-line--teal {
  background: var(--teal);
  opacity: 0.5;
}

.automotive-industry .sdv-timeline-section .code-term {
  width: 120px;
  height: 80px;
  background: #1e222d;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.automotive-industry .sdv-timeline-section .code-term--short {
  height: 64px;
  margin-bottom: 0;
}

.automotive-industry .sdv-timeline-section .code-line {
  height: 6px;
  border-radius: 2px;
}
.automotive-industry .sdv-timeline-section .cl-green {
  background: rgba(78, 205, 196, 0.7);
}
.automotive-industry .sdv-timeline-section .cl-blue {
  background: rgba(100, 149, 237, 0.6);
}
.automotive-industry .sdv-timeline-section .cl-white {
  background: rgba(255, 255, 255, 0.2);
}
.automotive-industry .sdv-timeline-section .cl-orange {
  background: rgba(239, 131, 84, 0.6);
}
.automotive-industry .sdv-timeline-section .cl-short {
  width: 55%;
}
.automotive-industry .sdv-timeline-section .cl-med {
  width: 75%;
}
.automotive-industry .sdv-timeline-section .cl-full {
  width: 100%;
}

.automotive-industry .sdv-timeline-section .hil-rack {
  width: 36px;
  height: 72px;
  background: #2b2d42;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 5px;
}
.automotive-industry .sdv-timeline-section .hil-rack--short {
  height: 56px;
}
.automotive-industry .sdv-timeline-section .rack-slot {
  height: 6px;
  border-radius: 2px;
  background: rgba(78, 205, 196, 0.3);
}
.automotive-industry .sdv-timeline-section .rack-slot.active {
  background: var(--teal);
}

.automotive-industry .sdv-timeline-section .hil-leds {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  padding-bottom: 4px;
}
.automotive-industry .sdv-timeline-section .hil-led {
  width: 28px;
  height: 6px;
  border-radius: 2px;
  background: rgba(78, 205, 196, 0.4);
}
.automotive-industry .sdv-timeline-section .hil-led--orange {
  width: 20px;
  background: rgba(239, 131, 84, 0.4);
}
.automotive-industry .sdv-timeline-section .hil-led--dim {
  background: rgba(78, 205, 196, 0.2);
}

.automotive-industry .sdv-timeline-section .gate-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sdv-teal-mid);
}

.automotive-industry .sdv-timeline-section .gate-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.automotive-industry .sdv-timeline-section .gate-bar {
  height: 4px;
  width: 52px;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0.7;
}
.automotive-industry .sdv-timeline-section .gate-bar--mid {
  width: 40px;
  opacity: 0.5;
}
.automotive-industry .sdv-timeline-section .gate-bar--short {
  width: 48px;
  opacity: 0.6;
}

.automotive-industry .sdv-timeline-section .road-tree {
  width: 16px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.automotive-industry .sdv-timeline-section .road-tree--sm {
  transform: scale(0.8);
}
.automotive-industry .sdv-timeline-section .road-tree--sm2 {
  transform: scale(0.85);
}
.automotive-industry .sdv-timeline-section .tree-top {
  width: 20px;
  height: 28px;
  background: #4a7c59;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.automotive-industry .sdv-timeline-section .tree-trunk {
  width: 4px;
  height: 12px;
  background: #7d5a3c;
}

.automotive-industry .sdv-timeline-section .car-container {
  position: absolute;
  bottom: 40px;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.automotive-industry .sdv-timeline-section .car-stage.phase-0 .car-container {
  left: 15%;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-1 .car-container {
  left: 22%;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-2 .car-container {
  left: 35%;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .car-container {
  left: 48%;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .car-container {
  left: 60%;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .car-container {
  left: 72%;
  animation: sdv-car-drive 0.8s ease 0.1s both;
}

@keyframes sdv-car-drive {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}

.automotive-industry .sdv-timeline-section .car-stage.phase-5 .wheel-spin {
  animation: sdv-wheel-spin 0.6s linear infinite;
  transform-origin: center;
}

@keyframes sdv-wheel-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.automotive-industry .sdv-timeline-section .car-body-fill {
  transition: fill 0.5s ease, opacity 0.5s ease;
}

.automotive-industry .sdv-timeline-section .car-stage.phase-0 .car-body-fill {
  fill: transparent;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-1 .car-body-fill {
  fill: #e8f9f8;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-2 .car-body-fill {
  fill: #d4f4f2;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .car-body-fill {
  fill: #c2eeeb;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .car-body-fill {
  fill: #b0e8e4;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .car-body-fill {
  fill: #4ecdc4;
}

.automotive-industry .sdv-timeline-section .car-outline {
  transition: stroke 0.5s ease;
  stroke: var(--muted);
}

.automotive-industry .sdv-timeline-section .car-stage.phase-0 .car-outline {
  stroke-dasharray: 4 3;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-1 .car-outline {
  stroke: var(--dim);
  stroke-dasharray: none;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-2 .car-outline,
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .car-outline,
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .car-outline,
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .car-outline {
  stroke: var(--sdv-teal-mid);
  stroke-dasharray: none;
}

.automotive-industry .sdv-timeline-section .car-glass {
  transition: fill 0.5s ease, opacity 0.5s ease;
}

.automotive-industry .sdv-timeline-section .car-stage.phase-0 .car-glass {
  fill: transparent;
  opacity: 0.5;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-1 .car-glass {
  fill: #b2e8f0;
  opacity: 0.6;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-2 .car-glass {
  fill: #7fdbf7;
  opacity: 0.7;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .car-glass {
  fill: #7fdbf7;
  opacity: 0.8;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .car-glass {
  fill: #7fdbf7;
  opacity: 0.9;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .car-glass {
  fill: #b2e8f0;
  opacity: 1;
}

.automotive-industry .sdv-timeline-section .car-wheel-rim {
  transition: fill 0.5s ease;
}

.automotive-industry .sdv-timeline-section .car-stage.phase-0 .car-wheel-rim {
  fill: transparent;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-1 .car-wheel-rim {
  fill: #ccc;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-2 .car-wheel-rim {
  fill: #aaa;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .car-wheel-rim {
  fill: #888;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .car-wheel-rim {
  fill: #666;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .car-wheel-rim {
  fill: #444;
}

.automotive-industry .sdv-timeline-section .ecu-node {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-2 .ecu-node,
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .ecu-node {
  opacity: 1;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .ecu-node,
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .ecu-node {
  opacity: 0.4;
}

@keyframes sdv-ecu-pulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.35;
  }
}

.automotive-industry .sdv-timeline-section .ecu-pulse {
  animation: sdv-ecu-pulse 1.6s ease-in-out infinite;
}
.automotive-industry .sdv-timeline-section .ecu-pulse--delay {
  animation-delay: 0.15s;
}
.automotive-industry .sdv-timeline-section .ecu-pulse--delay2 {
  animation-delay: 0.35s;
}

.automotive-industry .sdv-timeline-section .headlight {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-4 .headlight {
  opacity: 0.5;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-5 .headlight {
  opacity: 1;
}

.automotive-industry .sdv-timeline-section .diag-line {
  opacity: 0;
  transition: opacity 0.4s ease;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.automotive-industry .sdv-timeline-section .car-stage.phase-3 .diag-line {
  opacity: 1;
  animation: sdv-diag-draw 0.8s ease 0.3s both;
}

@keyframes sdv-diag-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.automotive-industry .sdv-timeline-section .car-window-divider {
  stroke: var(--muted);
  opacity: 0.3;
}
.automotive-industry .sdv-timeline-section .car-grille-line {
  stroke: var(--muted);
  opacity: 0.6;
}

.automotive-industry .sdv-timeline-section .car-phase-caption {
  position: absolute;
  bottom: 50px;
  right: 24px;
  text-align: right;
}
.automotive-industry .sdv-timeline-section .cpc-phase {
  font-size: 0.56rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 2px;
}
.automotive-industry .sdv-timeline-section .cpc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.3s ease;
}

.automotive-industry .sdv-timeline-section .progress-track {
  align-items: center;
  padding-top: 24px;
  margin-top: clamp(24px, 4vw, 40px);
}

@media (min-width: 1024px) {
  .automotive-industry .sdv-timeline-section .progress-track {
    padding-top: 14px;
    margin-top: clamp(8px, 1.2vw, 18px);
  }
}

.automotive-industry .sdv-timeline-section button.prog-phase {
  align-items: center;
}

.automotive-industry .sdv-timeline-section .progress-track::before {
  top: 36px;
}

.automotive-industry .sdv-timeline-section .prog-line {
  top: 29px;
}

.automotive-industry .sdv-timeline-section .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.automotive-industry .sdv-timeline-section .scroll-reveal.visible {
  opacity: 1;
  transform: none;
}
.automotive-industry .sdv-timeline-section .scroll-reveal.d1 {
  transition-delay: 0.08s;
}
.automotive-industry .sdv-timeline-section .scroll-reveal.d2 {
  transition-delay: 0.16s;
}
.automotive-industry .sdv-timeline-section .scroll-reveal.d3 {
  transition-delay: 0.24s;
}

@media (max-width: 900px) {
  .automotive-industry .sdv-timeline-section .sdv-timeline-container {
    padding-inline: 20px;
  }
}
/* Progress track */
.automotive-industry .progress-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 20px 0 0;
  margin-top: clamp(8px, 2vw, 16px);
  position: relative;
}

.automotive-industry .progress-track::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.automotive-industry button.prog-phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
  appearance: none;
  border: none;
  background: transparent;
  margin: 0;
  padding: 4px 2px 0;
  font: inherit;
  color: inherit;
}

.automotive-industry button.prog-phase:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.automotive-industry .prog-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  border: 2px solid var(--bg-card);
  outline: 1px solid var(--line);
  z-index: 1;
  transition: background 0.25s ease, outline-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.automotive-industry .prog-phase.done .prog-dot {
  background: var(--teal);
  outline-color: rgba(78, 205, 196, 0.35);
}

.automotive-industry .prog-phase.current .prog-dot {
  background: var(--teal);
  outline-color: rgba(78, 205, 196, 0.35);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
  width: 14px;
  height: 14px;
}

.automotive-industry .prog-line {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 1px;
  display: block;
  background: var(--teal);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 0;
}

.automotive-industry .prog-phase.done .prog-line {
  transform: scaleX(1);
}

.automotive-industry .prog-phase:last-child .prog-line {
  display: none;
}

.automotive-industry .prog-label {
  font-size: 0.58rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
  line-height: 1.25;
}

.automotive-industry .prog-phase.current .prog-label,
.automotive-industry .prog-phase.done .prog-label {
  color: var(--teal);
}

/* Phase tabs */
.automotive-industry .phases-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-1);
}

.automotive-industry .phase-tab {
  flex: 1;
  padding: 14px 14px 12px;
  border: none;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.automotive-industry .phase-tab:last-child {
  border-right: none;
}

.automotive-industry .phase-tab:hover {
  background: rgba(78, 205, 196, 0.04);
}

.automotive-industry .phase-tab.active {
  background: var(--bg-card);
}

.automotive-industry .phase-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.automotive-industry .phase-tab:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
  z-index: 1;
}

.automotive-industry .pt-num {
  font-size: 0.56rem;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.automotive-industry .pt-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
  display: block;
}

.automotive-industry .phase-tab.active .pt-name {
  color: var(--text);
}

.automotive-industry .pt-range {
  font-size: 0.62rem;
  font-family: var(--mono);
  color: var(--dim);
  margin-top: 3px;
  display: block;
}

/* Stage: left context | mid KPIs | roles */
.automotive-industry .sdv-timeline-section .stage.sdv-stage--cols3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 340px);
  gap: 0;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  min-height: min(420px, 62vh);
  align-items: stretch;
  background: var(--bg-card);
}

.automotive-industry .sdv-timeline-section .stage-left {
  padding: clamp(22px, 2.5vw, 32px);
  border-right: 1px solid var(--line);
  background: var(--bg-card);
  min-width: 0;
}

.automotive-industry .sdv-timeline-section .stage-mid {
  padding: clamp(22px, 2.5vw, 32px) clamp(18px, 2.2vw, 28px);
  border-right: 1px solid var(--line);
  background: var(--bg-card);
  min-width: 0;
}

.automotive-industry .sdv-timeline-section .stage-left .panel-headline {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  margin-bottom: 10px;
}

.automotive-industry .sdv-timeline-section .stage-left .panel-pain {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.62;
  margin: 0 0 18px;
  max-width: 22rem;
}

.automotive-industry .sdv-timeline-section .panel-how {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(78, 205, 196, 0.08);
  border: 1px solid rgba(78, 205, 196, 0.18);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
}

.automotive-industry .sdv-timeline-section .panel-how-label {
  font-size: 0.56rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sdv-teal-mid);
  flex-shrink: 0;
  padding-top: 1px;
}

.automotive-industry .sdv-timeline-section .panel-how-text {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.automotive-industry .sdv-timeline-section .mid-label {
  font-size: 0.56rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.automotive-industry .sdv-timeline-section .kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.automotive-industry .sdv-timeline-section .kpi-item {
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
}

.automotive-industry .sdv-timeline-section .kpi-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.automotive-industry .sdv-timeline-section .kpi-item--key {
  background: rgba(239, 131, 84, 0.05);
  border-color: rgba(239, 131, 84, 0.28);
}

.automotive-industry .sdv-timeline-section .kpi-item--key::before {
  background: var(--sdv-orange);
  opacity: 1;
}

.automotive-industry .sdv-timeline-section .kpi-item--key .kpi-num {
  color: var(--sdv-orange);
}

.automotive-industry .sdv-timeline-section .kpi-num {
  display: block;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 600;
  font-family: var(--mono);
  color: var(--sdv-teal-mid);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.automotive-industry .sdv-timeline-section .kpi-lbl {
  display: block;
  font-size: 0.69rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.automotive-industry .sdv-timeline-section .stage.sdv-stage--cols3 .stage-right {
  grid-column: 3;
  grid-row: 1;
  border-left: none;
  border-top: none;
}

.automotive-industry .phase-panel {
  display: none;
  animation: sdv-panel-in 0.35s ease both;
}

.automotive-industry .phase-panel.active {
  display: block;
}

@keyframes sdv-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.automotive-industry .panel-phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sdv-teal-mid);
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.automotive-industry .panel-phase-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: sdv-dot-blink 2s ease-in-out infinite;
}

@keyframes sdv-dot-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.automotive-industry .panel-headline {
  font-size: clamp(1.12rem, 1.75vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}

.automotive-industry .panel-headline em {
  font-style: normal;
  color: var(--sdv-orange);
}

.automotive-industry .panel-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 22px;
}

.automotive-industry .sdv-timeline-section .pulsar-value-callout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: rgba(239, 131, 84, 0.06);
  border: 1px solid rgba(239, 131, 84, 0.25);
  border-left: 3px solid var(--sdv-orange);
  border-radius: 0 6px 6px 0;
}

.automotive-industry .sdv-timeline-section .pvc-label {
  font-size: 0.56rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sdv-orange);
  flex-shrink: 0;
}

.automotive-industry .sdv-timeline-section .pvc-text {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.automotive-industry .pulsar-action {
  padding: 12px 16px;
  background: rgba(43, 45, 66, 0.03);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.automotive-industry .pa-label {
  font-size: 0.56rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sdv-teal-mid);
  margin-bottom: 4px;
}

.automotive-industry .pa-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.automotive-industry .pa-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.automotive-industry .stage-right {
  background: var(--surface-1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.automotive-industry .sdv-stage--cols3 .stage-right {
  padding: 18px 18px 20px 20px;
  gap: 10px;
}

.automotive-industry .roles-heading {
  font-size: 0.58rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.automotive-industry .role-item {
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  animation: sdv-role-in 0.4s ease both;
}

.automotive-industry .role-item:hover {
  border-color: rgba(78, 205, 196, 0.3);
  box-shadow: 0 2px 8px rgba(78, 205, 196, 0.06);
}

@keyframes sdv-role-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.automotive-industry .role-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.automotive-industry .ri--prog {
  background: rgba(239, 131, 84, 0.12);
}

.automotive-industry .ri--eng {
  background: rgba(78, 205, 196, 0.12);
}

.automotive-industry .ri--qual {
  background: rgba(141, 153, 174, 0.14);
}

.automotive-industry .ri--arch {
  background: rgba(43, 45, 66, 0.07);
}

.automotive-industry .ri--svc {
  background: rgba(78, 205, 196, 0.1);
}

.automotive-industry .role-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}

.automotive-industry .role-org {
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--dim);
  margin-bottom: 4px;
}

.automotive-industry .role-need {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.45;
}

.automotive-industry .role-pulsar {
  font-size: 0.58rem;
  font-family: var(--mono);
  color: var(--sdv-orange);
  margin-top: 5px;
  padding: 3px 7px;
  background: rgba(239, 131, 84, 0.08);
  border: 1px solid rgba(239, 131, 84, 0.2);
  border-radius: 3px;
  display: inline-block;
}

/* SDV timeline roles column */
.automotive-industry .sdv-timeline-section .stage-right .role-item {
  display: block;
  padding: 12px 14px;
  gap: 0;
}

.automotive-industry .sdv-timeline-section .stage-right .roles-heading {
  font-size: 0.64rem;
  padding-bottom: 12px;
}

.automotive-industry .sdv-timeline-section .stage-right .role-title {
  font-size: 0.82rem;
  margin-bottom: 3px;
}

.automotive-industry .sdv-timeline-section .stage-right .role-org {
  font-size: 0.66rem;
  margin-bottom: 5px;
}

.automotive-industry .sdv-timeline-section .stage-right .role-pulsar {
  font-size: 0.64rem;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .automotive-industry .sdv-timeline-section .stage {
    grid-template-columns: 1fr;
  }

  .automotive-industry .sdv-timeline-section .stage.sdv-stage--cols3 {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .automotive-industry .sdv-timeline-section .stage-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .automotive-industry .sdv-timeline-section .stage-mid {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .automotive-industry .sdv-timeline-section .stage.sdv-stage--cols3 .stage-right {
    grid-column: 1;
    grid-row: auto;
    border-top: none;
  }

  .automotive-industry .sdv-timeline-section .kpi-grid {
    grid-template-columns: 1fr;
  }

  .automotive-industry .phases-nav {
    flex-wrap: wrap;
  }

  .automotive-industry .phase-tab {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--line);
  }

  .automotive-industry .phase-tab:nth-child(2n) {
    border-right: none;
  }
}
