@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --white: #ffffff;
  --off-white: #f2f5f7;
  --teal-light: #51ddd6;
  --teal-mid: #3b8d9b;
  --slate: #6b8599;
  --navy-deep: #0c2340;
  --teal: #00b896;

  --ink: var(--navy-deep);
  --copy: #344b63;
  --muted: var(--slate);
  --line: #e8edf2;
  --page: var(--off-white);
  --panel: var(--white);
  --panel-alt: #f9fafb;
  --panel-soft: var(--off-white);

  --brand: var(--teal);
  --brand-strong: var(--teal);
  --accent: var(--teal);
  --accent-soft: rgba(0, 184, 150, 0.12);
  --tile-hue-border: rgba(0, 184, 150, 0.38);
  --tile-hue-border-dark: rgba(81, 221, 214, 0.41);
  --tile-hue-shadow: 0 0 0 4px rgba(81, 221, 214, 0.14), 0 12px 28px rgba(0, 184, 150, 0.17);
  --tile-hue-shadow-strong: 0 0 0 4px rgba(81, 221, 214, 0.19), 0 14px 32px rgba(0, 184, 150, 0.22);
  --tile-hue-shadow-dark: 0 0 0 4px rgba(81, 221, 214, 0.17), 0 14px 34px rgba(0, 184, 150, 0.24);
  --shell: var(--navy-deep);
  --shell-line: rgba(255, 255, 255, 0.12);
  --success: var(--teal);
  --danger: #c53030;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    'Barlow',
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    sans-serif;
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
}

.eyebrow,
.hero-badge,
.team-role,
.solution-card-label,
.ai-card-label,
.compare-table thead th {
  font-family: 'Barlow', system-ui, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 245, 247, 0.97);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.08);
}

.site-header-inner,
.site-footer-inner,
.section-inner {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 72px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-weight: 700;
  flex-shrink: 0;
}

.site-header .brand-lockup {
  gap: 0;
}

.site-header .brand-lockup img {
  width: clamp(10.25rem, 16vw, 12.5rem);
  height: auto;
  border-radius: 0;
  border: 0;
}

.site-header .brand-lockup div {
  display: none;
}

.brand-lockup img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.brand-lockup span {
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-lockup small {
  display: block;
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}

.site-nav-link,
.site-nav-trigger,
.site-submenu-link {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0;
  transition:
    color 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.site-nav-link,
.site-nav-trigger {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border-radius: 6px;
  white-space: nowrap;
}

.site-nav-trigger {
  gap: 0.45rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 14.5rem;
  height: 0.9rem;
}

.site-nav-caret {
  width: 0.48rem;
  height: 0.48rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  transform-origin: center;
}

.site-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 14.5rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.12);
  z-index: 30;
}

.site-nav-group:hover .site-submenu,
.site-nav-group:focus-within .site-submenu,
.site-nav-group.is-open .site-submenu {
  display: grid;
  gap: 0.2rem;
}

.site-submenu-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-trigger:hover,
.site-nav-group.is-open .site-nav-trigger {
  color: var(--ink);
  background: rgba(0, 184, 150, 0.08);
}

.site-nav-link[aria-current='page'],
.site-nav-trigger[data-active='true'] {
  color: var(--ink);
  background: rgba(0, 184, 150, 0.12);
}

.site-submenu-link[aria-current='page'],
.site-submenu-link:hover {
  color: var(--ink);
  background: rgba(0, 184, 150, 0.1);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.header-actions-primary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero h1 {
    font-size: 5.25rem;
  }

  .page-head h1 {
    font-size: 3.75rem;
  }

  .site-header-inner {
    gap: 0.75rem;
  }

  .site-nav {
    gap: 0.35rem;
  }

  .site-nav-link,
  .site-nav-trigger {
    padding-inline: 0.58rem;
    font-size: 0.9rem;
  }

  .header-actions-primary .button {
    padding-inline: 1.05rem;
  }
}

@media (min-width: 981px) and (max-width: 1080px) {
  .brand-lockup small {
    display: none;
  }
}

.menu-toggle {
  display: none;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(12, 35, 64, 0.16);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
}

.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.85rem 1.35rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease;
}

.button {
  background: linear-gradient(135deg, var(--teal-light), var(--teal), var(--teal-mid));
  border-color: var(--teal);
  color: #ffffff;
}

.button:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(12, 35, 64, 0.42);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-mid);
}

.button-secondary.button-light {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--ink);
}

.button-link {
  border-color: rgba(12, 35, 64, 0.18);
  background: transparent;
  color: var(--ink);
}

.button-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.hero {
  background: var(--off-white);
  color: var(--ink);
  padding: 3.75rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hero-grid > :first-child {
  max-width: none;
}

.hero-heading-row {
  display: grid;
  grid-template-columns: max-content minmax(24rem, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: 6.25rem;
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 12ch;
  font-weight: 900;
}

.page-head h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 16ch;
  font-weight: 800;
}

.hero-heading-row h1 {
  width: 12ch;
  max-width: 100%;
}

.hero-title-accent {
  color: var(--teal-light);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero-title-accent {
    background-image: linear-gradient(135deg, var(--teal-light), var(--teal), var(--teal-mid));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    -webkit-text-fill-color: transparent;
  }
}

.hero-heading-image {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1024 / 573;
  border-radius: 8px;
  border: 1px solid var(--line);
  justify-self: stretch;
}

.hero p {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--copy);
  font-size: 1.02rem;
  line-height: 1.7;
}

.page-head p {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal-mid);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 38rem;
  margin-top: 1.45rem;
}

.hero-note {
  display: grid;
  min-height: 5.35rem;
  align-content: center;
  gap: 0.25rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--tile-hue-border-dark);
  border-radius: 6px;
  background: var(--navy-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    var(--tile-hue-shadow-dark);
}

.hero-note strong,
.caption-grid strong {
  display: block;
  margin-bottom: 0;
}

.hero-note strong {
  font-size: 0.88rem;
  line-height: 1.1;
  color: var(--teal-light);
}

.hero-note span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  line-height: 1.3;
}

.caption-grid strong {
  font-size: 0.95rem;
}

.caption-grid span {
  font-size: 0.9rem;
  line-height: 1.6;
}

.caption-grid strong {
  color: var(--ink);
}

.caption-grid span {
  color: var(--copy);
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--tile-hue-shadow);
}

.media-frame-spaced {
  margin: 1.5rem 0;
}

.media-frame img {
  width: 100%;
  height: auto;
}

.hero-visual-frame {
  background: var(--navy-deep);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1376 / 768;
  background: var(--navy-deep);
  isolation: isolate;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-wires,
.hero-screen-sheen,
.hero-activity-node,
.hero-truck-door {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-visual-wires {
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.hero-wire-path {
  fill: none;
  stroke: rgba(81, 221, 214, 0.28);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2 11;
}

.hero-light-node {
  fill: #dffffa;
  opacity: 0;
}

.hero-screen-sheen {
  overflow: hidden;
  border-radius: 4px;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.hero-screen-sheen::before {
  content: '';
  position: absolute;
  inset: -15% 74% -15% -38%;
  background: linear-gradient(90deg, transparent, rgba(213, 255, 250, 0.7), transparent);
  transform: skewX(-18deg);
  animation: hero-screen-scan 6.8s ease-in-out infinite;
}

.hero-screen-sheen-ops {
  left: 36.8%;
  top: 25.3%;
  width: 18.2%;
  height: 16.6%;
}

.hero-screen-sheen-dispatch {
  left: 65.6%;
  top: 6.5%;
  width: 16.5%;
  height: 22.5%;
}

.hero-screen-sheen-field {
  left: 62%;
  top: 60%;
  width: 13.6%;
  height: 14.8%;
}

.hero-activity-node {
  width: clamp(0.38rem, 0.62vw, 0.58rem);
  height: clamp(0.38rem, 0.62vw, 0.58rem);
  border-radius: 50%;
  background: #dffffa;
  box-shadow:
    0 0 10px rgba(81, 221, 214, 0.7),
    0 0 18px rgba(81, 221, 214, 0.34);
  opacity: 0.68;
  animation: hero-worker-breathe 4.8s ease-in-out infinite;
}

.hero-activity-node::after {
  content: '';
  position: absolute;
  inset: -0.38rem;
  border: 1px solid rgba(81, 221, 214, 0.42);
  border-radius: inherit;
  opacity: 0;
  animation: hero-activity-ring 4.8s ease-in-out infinite;
}

.hero-activity-ops-one {
  left: 50.2%;
  top: 40.8%;
}

.hero-activity-ops-two {
  left: 60.7%;
  top: 62.8%;
  animation-delay: -2.2s;
}

.hero-activity-field-one {
  left: 72.5%;
  top: 69.7%;
  animation-delay: -1.1s;
}

.hero-activity-field-two {
  left: 84.9%;
  top: 66.5%;
  animation-delay: -3s;
}

.hero-activity-truck {
  left: 88.2%;
  top: 55.2%;
  animation-delay: -3.8s;
}

.hero-truck-door {
  left: 79.1%;
  top: 50.1%;
  width: 4.8%;
  height: 12.8%;
  clip-path: polygon(17% 6%, 97% 20%, 82% 97%, 0 76%);
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.72) 0 58%,
      rgba(0, 184, 150, 0.32) 59% 66%,
      rgba(211, 225, 230, 0.62) 67%
    ),
    rgba(237, 243, 244, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(12, 35, 64, 0.14),
    0 2px 8px rgba(12, 35, 64, 0.12);
  transform-origin: 96% 45%;
  opacity: 0.54;
  animation: hero-truck-door-swing 8.4s ease-in-out infinite;
}

.hero-media-block {
  width: 100%;
  max-width: 48rem;
  justify-self: center;
}

.home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom-color: var(--shell-line);
  background: var(--navy-deep);
  color: #ffffff;
}

.home-hero .hero-heading-row {
  grid-template-columns: 1fr;
}

.home-hero h1 {
  font-size: clamp(4.75rem, 5.2vw, 6.25rem);
  color: #ffffff;
}

.home-hero .hero-title-accent,
.home-hero .hero-badge {
  color: var(--teal-light);
}

.home-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.home-hero .button-secondary:hover {
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal-light);
}

.home-hero .hero-note {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero .hero-note strong {
  color: var(--teal-light);
}

.home-hero .hero-note span {
  color: rgba(81, 221, 214, 0.82);
}

.home-hero .hero-heading-image {
  display: none;
}

.home-hero-media {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero-media[data-animated-hero] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-media[data-animated-hero] img {
  position: relative;
  z-index: 1;
}

.home-hero-media img {
  aspect-ratio: 1376 / 768;
  object-fit: contain;
  object-position: right center;
}

@media (min-width: 981px) {
  .home-hero {
    min-height: clamp(38rem, 45vw, 43.5rem);
    padding: 0;
  }

  .home-hero .hero-grid {
    --home-hero-edge: max(1rem, (100vw - 1160px) / 2);

    position: relative;
    min-height: clamp(38rem, 45vw, 43.5rem);
    grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1fr);
    align-items: center;
    gap: 2.75rem;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  .home-hero .hero-grid > :first-child {
    position: relative;
    z-index: 2;
    max-width: 49rem;
  }

  .home-hero .hero-media-block {
    position: absolute;
    top: 0;
    right: calc(var(--home-hero-edge) * -1 - clamp(7rem, 11vw, 13rem));
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    width: min(62vw, 74rem);
    max-width: none;
    margin-right: 0;
    justify-self: auto;
  }

  .home-hero .home-hero-media {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
  }

  .home-hero .home-hero-media img {
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }
}

.caption-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.caption-grid div {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.section {
  padding: 5rem 0;
}

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

.section-neutral {
  background: var(--panel-alt);
}

.section-home-contrast {
  background: var(--shell);
  border-top: 1px solid var(--shell-line);
  border-bottom: 1px solid var(--shell-line);
}

.what-is-section {
  background: var(--panel-alt);
}

.what-is-section .section-inner {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--tile-hue-border-dark);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.what-is-section .section-intro {
  max-width: 58rem;
  margin-bottom: 0;
}

.what-is-section h2 {
  color: #ffffff;
}

.what-is-section .section-intro p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.what-is-statements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.what-is-statements li {
  display: grid;
  min-height: 6.75rem;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--tile-hue-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.18;
  box-shadow: var(--tile-hue-shadow);
}

.what-is-statements strong,
.what-is-statements span {
  display: block;
}

.what-is-statements strong {
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

.what-is-statements span {
  padding-top: 0.58rem;
  border-top: 1px solid rgba(12, 35, 64, 0.1);
  color: var(--copy);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.reactive-operations-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reactive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reactive-card {
  min-height: 10.5rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--tile-hue-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--tile-hue-shadow);
}

.reactive-card h3 {
  margin: 0 0 0.55rem;
  color: var(--teal);
  font-size: 1.2rem;
  line-height: 1.15;
}

.reactive-card p {
  margin: 0;
  color: var(--copy);
  line-height: 1.55;
}

.section-home-contrast h2,
.section-home-contrast h3,
.section-home-contrast .eyebrow {
  color: #ffffff;
}

.section-home-contrast .section-intro p,
.section-home-contrast .feature-panel-copy p,
.section-home-contrast .feature-tab-copy {
  color: rgba(255, 255, 255, 0.76);
}

.section-home-contrast .feature-tabs {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.section-home-contrast .feature-tab {
  color: rgba(255, 255, 255, 0.64);
}

.section-home-contrast .feature-tab:hover {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(81, 221, 214, 0.55);
}

.section-home-contrast .feature-tab.active,
.section-home-contrast .feature-tab.active:hover {
  color: #ffffff;
  border-bottom-color: var(--teal);
}

.section-home-contrast .feature-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-home-contrast .feature-panel-media {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-home-contrast .feature-panel-media.is-illustration {
  width: 100%;
}

.section-home-contrast .feature-panel-media img {
  border-radius: 0;
  mix-blend-mode: lighten;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.section-home-contrast .feature-panel-points div {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.section-home-contrast .feature-panel-points strong {
  color: #ffffff;
}

.section-home-contrast .feature-panel-points span {
  color: rgba(255, 255, 255, 0.76);
}

.business-context-grid,
.business-fit-grid {
  display: grid;
  gap: 1rem;
}

.business-context-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.context-card,
.fit-list div,
.resource-white-paper-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.context-card {
  padding: 1.25rem;
  border-color: var(--tile-hue-border-dark);
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.context-card h3 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.context-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.business-fit-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
  align-items: start;
}

.business-fit-grid .section-intro,
.white-paper-cta .section-intro {
  margin-bottom: 0;
}

.fit-list {
  display: grid;
  gap: 0.75rem;
}

.fit-list div {
  padding: 1rem;
  border-color: var(--tile-hue-border-dark);
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.fit-list strong,
.resource-white-paper-panel strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.fit-list span,
.resource-white-paper-panel span {
  display: block;
  color: var(--copy);
  line-height: 1.6;
}

.fit-list strong {
  color: #ffffff;
}

.fit-list span {
  color: rgba(255, 255, 255, 0.74);
}

.white-paper-cta-section {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.white-paper-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.white-paper-cta .section-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.resource-white-paper-section {
  scroll-margin-top: 6rem;
}

.resource-white-paper-list {
  display: grid;
  gap: 1rem;
}

.resource-white-paper-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  box-shadow: var(--tile-hue-shadow);
}

.section-inner h2,
.article-layout h1,
.form-panel h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.section-intro {
  max-width: 52rem;
  margin-bottom: 1.75rem;
}

.section-intro p {
  margin: 0.9rem 0 0;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.7;
}

.company-section-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: clamp(1.1rem, 2.2vw, 1.55rem);
  overflow: hidden;
  border: 1px solid var(--tile-hue-border-dark);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.company-section-head .section-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  max-width: 46rem;
}

.company-section-head .section-intro h2 {
  color: #ffffff;
}

.company-section-head .section-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.company-section-head .eyebrow {
  color: var(--teal-light);
}

.company-section-head .inline-link {
  color: var(--teal-light);
}

.company-section-head .media-frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: clamp(9.5rem, 19vw, 15.5rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.company-section-head .media-frame img {
  width: 100%;
  height: clamp(9.5rem, 19vw, 15.5rem);
  object-fit: contain;
  object-position: right center;
  transform: scale(1.08);
  transform-origin: right center;
}

@media (min-width: 980px) {
  .company-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.85fr);
    gap: 1.5rem;
  }
}

.feature-grid,
.article-grid,
.persona-grid,
.detail-grid,
.metric-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid,
.article-grid,
.persona-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.module-card {
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--tile-hue-shadow);
}

.module-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.module-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.module-card-head span {
  color: var(--teal-mid);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.module-card p {
  margin: 0;
  color: var(--copy);
  line-height: 1.65;
}

.module-card a {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--brand);
  font-weight: 600;
}

.platform-addons-section .module-card {
  border-color: var(--tile-hue-border-dark);
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.platform-addons-section .module-card-head {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.platform-addons-section .module-card h3 {
  color: #ffffff;
}

.platform-addons-section .module-card-head span,
.platform-addons-section .module-card a {
  color: var(--teal-light);
}

.platform-addons-section .module-card p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-card,
.article-card,
.persona-card,
.metric-card,
.faq-card,
.panel,
.panel-soft,
.form-panel,
.quote-panel,
.detail-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--tile-hue-shadow);
}

.feature-card,
.article-card,
.persona-card,
.metric-card,
.faq-card,
.panel,
.panel-soft,
.form-panel,
.quote-panel {
  padding: 1.35rem;
}

.panel-soft img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.platform-core-intro {
  padding-bottom: 0.75rem;
}

.platform-core-intro .section-intro {
  margin-bottom: 0;
}

.section.platform-module-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.platform-core-intro + .platform-module-section {
  padding-top: 0.75rem;
}

.platform-module-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.platform-module-menu a {
  display: flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--tile-hue-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--tile-hue-shadow);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.platform-module-menu a:hover,
.platform-module-menu a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-mid);
}

.platform-module-menu .platform-module-menu-optional {
  border-color: var(--tile-hue-border-dark);
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
  color: var(--teal-light);
}

.platform-module-menu .platform-module-menu-optional:hover,
.platform-module-menu .platform-module-menu-optional:focus-visible {
  border-color: var(--teal-light);
  color: #ffffff;
}

.platform-module-list {
  display: grid;
  gap: 1rem;
}

.platform-module-toggle {
  scroll-margin-top: 7rem;
  overflow: hidden;
  border: 1px solid var(--tile-hue-border-dark);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
  color: #ffffff;
}

.platform-addons-section {
  scroll-margin-top: 7rem;
}

.platform-module-summary {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) minmax(0, 1fr) 2rem;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  cursor: pointer;
  list-style: none;
}

.platform-module-summary::-webkit-details-marker {
  display: none;
}

.platform-module-toggle[open] .platform-module-summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-module-thumb {
  display: flex;
  min-height: clamp(10rem, 18vw, 14rem);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.platform-module-thumb img {
  width: 115%;
  max-width: none;
  height: clamp(10rem, 18vw, 14rem);
  object-fit: contain;
  object-position: center;
}

.platform-module-thumb-schedule img {
  width: 124%;
  object-position: right center;
}

.platform-module-copy {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.platform-module-copy h2 {
  max-width: 17em;
  margin: 0;
}

.platform-module-brief {
  display: block;
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.platform-module-toggle-mark {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  justify-self: end;
  color: var(--teal-light);
}

.platform-module-toggle-mark::before,
.platform-module-toggle-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  border-top: 2px solid currentColor;
  transform: translate(-50%, -50%);
}

.platform-module-toggle-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.platform-module-toggle[open] .platform-module-toggle-mark::after {
  opacity: 0;
}

.platform-module-body {
  padding: 1.2rem clamp(1rem, 2.4vw, 1.45rem) clamp(1rem, 2.4vw, 1.45rem);
}

.platform-module-body .feature-panel-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.platform-module-section .eyebrow {
  color: var(--teal-light);
}

.platform-module-section h2 {
  color: #ffffff;
}

.platform-module-section .feature-panel-points span {
  color: rgba(255, 255, 255, 0.74);
}

.platform-module-section .feature-panel-points div {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.platform-module-section .feature-panel-points strong {
  color: #ffffff;
}

.media-placeholder {
  display: grid;
  min-height: clamp(16rem, 24vw, 24rem);
  place-items: center;
  border: 1px dashed rgba(12, 35, 64, 0.24);
  border-radius: 8px;
  background: var(--off-white);
  color: var(--muted);
  font-weight: 600;
}

.feature-card h3,
.article-card h3,
.persona-card h3,
.faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.feature-card p,
.article-card p,
.persona-card p,
.faq-card p,
.panel p,
.quote-panel p,
.form-note {
  margin: 0;
  color: var(--copy);
  line-height: 1.65;
}

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

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

.team-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.team-experience-grid .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-experience-grid > .panel,
.team-experience-grid .persona-card {
  border-color: var(--tile-hue-border-dark);
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.team-experience-grid .eyebrow {
  color: var(--teal-light);
}

.team-experience-grid h2,
.team-experience-grid .persona-card h3 {
  color: #ffffff;
}

.team-experience-grid .section-intro p,
.team-experience-grid .persona-card p {
  color: rgba(255, 255, 255, 0.74);
}

.funding-support-section {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.investor-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--tile-hue-shadow);
}

.investor-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.investor-logo {
  display: flex;
  min-width: 0;
  min-height: 3.25rem;
  align-items: center;
}

.investor-logo img {
  width: auto;
  max-width: min(13rem, 100%);
  max-height: 3.15rem;
  object-fit: contain;
}

.investor-type {
  flex-shrink: 0;
  color: var(--copy);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.investor-card p {
  margin: 0;
  color: var(--copy);
  line-height: 1.65;
}

.investor-card p:last-child {
  margin-top: auto;
}

.company-values-section {
  background: var(--panel);
  color: var(--ink);
}

.company-values-section .section-intro h2 {
  color: var(--ink);
}

.company-values-section .section-intro p {
  color: var(--copy);
}

.company-values-section .eyebrow {
  color: var(--teal-light);
}

.company-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.company-value-card {
  padding: 1.35rem;
  border: 1px solid var(--tile-hue-border-dark);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.company-value-mark {
  display: block;
  width: 2rem;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--teal-light);
}

.company-value-card h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.25;
}

.company-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.team-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.team-avatar {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(0, 184, 150, 0.22);
  background: rgba(12, 35, 64, 0.04);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-name {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.team-title {
  margin: 0.25rem 0 0;
  color: var(--copy);
  font-size: 0.95rem;
  line-height: 1.35;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-link:hover {
  color: var(--brand-strong);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.logo-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--tile-hue-shadow);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.logo-grid a:hover {
  border-color: rgba(0, 184, 150, 0.42);
  box-shadow: var(--tile-hue-shadow-strong);
}

.logo-grid img {
  max-height: 40px;
  width: auto;
}

.partner-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  margin-bottom: 1rem;
}

.partner-logo-frame img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.83rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-success {
  color: var(--success);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.feature-tab {
  padding: 0 0 0.85rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.feature-tab:hover {
  color: var(--ink);
}

.feature-tab:focus {
  outline: none;
}

.feature-tab:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--teal);
  outline-offset: 0.35rem;
}

.feature-tab.active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--brand);
}

.feature-panel-wrap {
  position: relative;
  min-height: 25rem;
}

.feature-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.5rem;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.feature-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.feature-panel-copy h3 {
  margin: 0;
  font-size: 1.3rem;
}

.feature-panel-copy p {
  margin-top: 0.8rem;
}

.feature-panel-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.feature-panel-points div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.feature-panel-points strong {
  display: block;
  margin-bottom: 0.3rem;
}

.feature-panel-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--tile-hue-shadow);
}

.feature-panel-media.is-illustration {
  width: 91%;
  justify-self: end;
  align-self: center;
}

.feature-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel-media.is-illustration img {
  height: auto;
  object-fit: contain;
}

.solution-card {
  overflow: hidden;
  padding: 0;
}

.solution-card:hover {
  border-color: rgba(0, 184, 150, 0.34);
  box-shadow: var(--tile-hue-shadow-strong);
}

.solution-card-thumb {
  min-height: 12rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.solution-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.solution-card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
}

.solution-card-label {
  position: relative;
  z-index: 2;
}

.solution-card-thumb.water {
  background: linear-gradient(135deg, var(--teal-light), var(--teal), var(--teal-mid));
}

.solution-card-thumb.gas {
  background: linear-gradient(135deg, var(--navy-deep), var(--teal));
}

.solution-card-thumb.electric {
  background: linear-gradient(135deg, var(--teal-mid), var(--navy-deep));
}

.solution-card-body {
  padding: 1.35rem;
}

.detail-list {
  padding: 0;
  overflow: hidden;
}

.detail-list li {
  list-style: none;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--copy);
  line-height: 1.6;
}

.detail-list li:first-child {
  border-top: 0;
}

.detail-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.8rem;
  line-height: 1;
}

.metric-card span {
  color: var(--copy);
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-head {
  background: var(--shell);
  color: #fff;
  padding: 3.8rem 0 3rem;
  border-bottom: 1px solid var(--shell-line);
}

.resources-page-head {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  background: #0e152b;
}

.resources-page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0e152b 0%,
    rgba(14, 21, 43, 0.98) 36%,
    rgba(14, 21, 43, 0.82) 58%,
    rgba(14, 21, 43, 0.24) 78%,
    rgba(14, 21, 43, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.resources-page-head .breadcrumbs,
.resources-page-head .page-head-text {
  position: relative;
  z-index: 2;
}

.resources-page-head .page-head-row {
  display: block;
  min-height: 22rem;
}

.resources-page-head .page-head-text {
  width: min(44rem, 52vw);
}

.resources-page-head .page-head-image-wrap {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(60vw, 64rem);
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.resources-page-head .page-head-image-wrap[data-animated-hero] {
  overflow: hidden;
  isolation: isolate;
}

.resources-page-head .page-head-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.resources-page-head .page-head-image-wrap[data-animated-hero] .page-head-image {
  position: relative;
  z-index: 1;
}

.resources-page-head .page-head-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.company-page-head {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  background: var(--navy-deep);
  padding-bottom: 2rem;
}

.company-page-head::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(64vw, 58rem);
  background: linear-gradient(
    90deg,
    var(--navy-deep) 0%,
    rgba(12, 35, 64, 0.96) 42%,
    rgba(12, 35, 64, 0.7) 72%,
    rgba(12, 35, 64, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.company-page-head .breadcrumbs,
.company-page-head .page-head-text {
  position: relative;
  z-index: 2;
}

.company-page-head .page-head-row {
  display: block;
  min-height: 22rem;
}

.company-page-head .page-head-text {
  width: min(48rem, 56vw);
}

.company-page-head .page-head-image-wrap {
  position: absolute;
  inset: -4.5rem -3rem -4.5rem auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(62vw, 64rem);
  height: calc(100% + 9rem);
  pointer-events: none;
  z-index: 0;
}

.company-page-head .company-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.request-demo-page-head {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  background: var(--navy-deep);
  padding-bottom: 2rem;
}

.request-demo-page-head::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(64vw, 58rem);
  background: linear-gradient(
    90deg,
    var(--navy-deep) 0%,
    rgba(12, 35, 64, 0.96) 42%,
    rgba(12, 35, 64, 0.7) 72%,
    rgba(12, 35, 64, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.request-demo-page-head .breadcrumbs,
.request-demo-page-head .page-head-text {
  position: relative;
  z-index: 2;
}

.request-demo-page-head .page-head-row {
  display: block;
  min-height: 22rem;
}

.request-demo-page-head .page-head-text {
  width: min(48rem, 56vw);
}

.request-demo-page-head .page-head-image-wrap {
  position: absolute;
  inset: -4.5rem -3rem -4.5rem auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(62vw, 64rem);
  height: calc(100% + 9rem);
  pointer-events: none;
  z-index: 0;
}

.request-demo-page-head .request-demo-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.partners-page-head {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(
      90deg,
      var(--navy-deep) 0%,
      rgba(12, 35, 64, 0.98) 38%,
      rgba(12, 35, 64, 0.68) 58%,
      rgba(12, 35, 64, 0.18) 76%,
      rgba(12, 35, 64, 0) 100%
    ),
    url('../images/ecosystem2_transparent.png');
  background-position:
    center,
    right center;
  background-repeat: no-repeat;
  background-size:
    100% 100%,
    auto 112%;
}

.partners-page-head .breadcrumbs,
.partners-page-head .page-head-text {
  position: relative;
  z-index: 2;
}

.partners-page-head[data-animated-hero] {
  isolation: isolate;
}

.partners-page-head[data-animated-hero] .hero-visual-wires {
  inset: 0 0 0 auto;
  width: min(62vw, 64rem);
  height: 100%;
  z-index: 0;
  opacity: 0.72;
}

.partners-page-head[data-animated-hero] .hero-wire-path {
  stroke: rgba(81, 221, 214, 0.22);
}

.partners-page-head .page-head-row {
  display: block;
  min-height: 22rem;
}

.partners-page-head .page-head-text {
  width: min(48rem, 58vw);
}

.partners-why-section {
  background: var(--navy-deep);
  color: #ffffff;
}

.partners-why-section .section-intro h2 {
  color: #ffffff;
}

.partners-why-section .section-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.partners-why-section .eyebrow {
  color: var(--teal-light);
}

.partners-why-section .feature-card {
  background: #ffffff;
}

.partners-why-section .feature-card h3 {
  color: var(--ink);
}

.partners-why-section .feature-card p {
  color: var(--copy);
}

.partners-connected-section .detail-grid {
  align-items: start;
}

.partners-connected-section .panel,
.partners-connected-section .detail-list {
  border-color: var(--tile-hue-border-dark);
  background: var(--navy-deep);
  box-shadow: var(--tile-hue-shadow-dark);
}

.partners-connected-section .detail-list {
  margin: 0;
}

.partners-connected-section .eyebrow,
.partners-connected-section .button-link:hover {
  color: var(--teal-light);
}

.partners-connected-section h2,
.partners-connected-section .detail-list strong {
  color: #ffffff;
}

.partners-connected-section .panel p,
.partners-connected-section .detail-list li {
  color: rgba(255, 255, 255, 0.74);
}

.partners-connected-section .detail-list li {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.partners-connected-section .button:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.partners-connected-section .button-link {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.partners-connected-section .button-link:hover {
  border-color: var(--teal-light);
}

.platform-page-head {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 33rem;
  padding-bottom: 2rem;
}

.platform-page-head::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.platform-page-head .breadcrumbs,
.platform-page-head .page-head-text {
  position: relative;
  z-index: 2;
}

.platform-page-head .page-head-row {
  display: block;
  min-height: 22rem;
}

.platform-page-head .page-head-text {
  width: min(43rem, 50vw);
}

.platform-page-head .page-head-text h1 {
  max-width: 11.6em;
  font-size: clamp(3.9rem, 5.8vw, 5.2rem);
  line-height: 0.94;
}

.platform-page-head .hero-title-accent {
  display: block;
  color: var(--teal-light);
}

.platform-page-head .page-head-image-wrap {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(78vw, 86rem);
  overflow: hidden;
  pointer-events: none;
  transform: translateX(clamp(1.5rem, 3vw, 2.75rem));
  z-index: 0;
}

.page-head-row {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 0.9fr);
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

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

.page-head-image-wrap {
  display: block;
}

.page-head-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.platform-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.04) brightness(1.04);
  transform: none;
}

.platform-page-head .hero-screen-sheen,
.platform-page-head .hero-truck-door {
  display: none;
}

.ai-hero-row {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
}

.ai-hero-image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.ai-hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.ai-card-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ai-benefit-card,
.ai-feature-card {
  display: grid;
  align-content: start;
}

.ai-benefit-card .ai-card-label,
.ai-feature-card .ai-card-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand);
}

.ai-closing-panel {
  max-width: 50rem;
}

.ai-closing-panel p {
  margin: 1rem 0 0;
  color: var(--copy);
  line-height: 1.7;
}

.breadcrumbs {
  display: inline-flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.campaign-hero {
  background-image:
    linear-gradient(90deg, rgba(12, 35, 64, 0.96), rgba(12, 35, 64, 0.72) 52%, rgba(12, 35, 64, 0.3)),
    var(--campaign-hero-image);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.campaign-hero .breadcrumbs {
  padding-top: 1.15rem;
}

.campaign-hero-content {
  max-width: 64rem;
  padding: 3.4rem 0 3.8rem;
}

.campaign-hero h1 {
  margin: 1rem 0 0;
  max-width: 62rem;
  font-size: 3.35rem;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.campaign-hero p {
  margin: 1rem 0 0;
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
  line-height: 1.7;
}

.campaign-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.campaign-meta span,
.webinar-agenda span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.campaign-meta span {
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
}

.campaign-meta strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.playbook-panel h2 {
  font-size: 1.65rem;
}

.playbook-panel .feature-panel-points {
  margin-top: 1.35rem;
}

.playbook-table-wrap {
  overflow-x: auto;
}

.playbook-table {
  min-width: 760px;
}

.registration-grid {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: start;
}

.registration-grid > .panel {
  height: 100%;
}

.registration-grid > .form-panel {
  align-self: start;
}

.registration-grid > .form-panel .section-actions {
  margin: 1.75rem 0 1.15rem;
}

.registration-grid > .form-panel .button {
  width: 100%;
  min-height: 52px;
}

.webinar-agenda {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.webinar-agenda div {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.webinar-agenda strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.webinar-agenda span {
  color: var(--copy);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 1.2rem;
  align-items: start;
}

.article-layout > aside {
  align-self: start;
  height: fit-content;
}

.article-shell {
  padding: 1.5rem;
}

.article-content-panel {
  background: var(--panel);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--tile-hue-shadow);
}

.article-card-thumb {
  width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  border-radius: 8px;
}

.article-card-thumb-document {
  aspect-ratio: 16 / 9;
  height: clamp(9rem, 18vw, 15rem);
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  background: #ffffff;
}

.article-card-thumb-logo {
  aspect-ratio: 16 / 9;
  height: clamp(9rem, 18vw, 15rem);
  padding: clamp(2rem, 4vw, 3.25rem);
  object-fit: contain;
  border: 1px solid var(--line);
  background: #ffffff;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-shell p,
.article-shell li {
  color: var(--copy);
  line-height: 1.75;
}

.article-shell h2 {
  margin: 1.8rem 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.article-shell ul {
  padding-left: 1.15rem;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.article-byline picture,
.article-byline img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-byline div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.article-byline strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.article-byline span {
  font-size: 0.82rem;
  color: var(--copy);
  line-height: 1.3;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.compare-table th,
.compare-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 2px solid var(--line);
  background: rgba(15, 23, 42, 0.02);
}

.compare-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.platform-comparison-card {
  padding: clamp(1rem, 2.4vw, 1.45rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: var(--tile-hue-shadow);
}

.platform-comparison-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.34fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.platform-comparison-copy .eyebrow {
  margin-bottom: 0.4rem;
}

.platform-comparison-copy h2 {
  max-width: 18em;
  margin: 0;
  font-size: 3rem;
  line-height: 0.98;
}

.platform-comparison-copy p {
  max-width: 44rem;
  margin: 0.5rem 0 0;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.55;
}

.platform-comparison-score {
  padding: 1rem;
  border: 1px solid rgba(0, 184, 150, 0.24);
  border-radius: 8px;
  background: rgba(0, 184, 150, 0.07);
}

.platform-comparison-score span {
  display: block;
  color: var(--ink);
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.9;
}

.platform-comparison-score strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--teal);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.platform-comparison-score p {
  margin: 0.45rem 0 0;
  color: var(--copy);
  font-size: 0.9rem;
  line-height: 1.35;
}

.platform-comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  -webkit-overflow-scrolling: touch;
}

.platform-comparison-scroll:focus {
  outline: 2px solid rgba(0, 184, 150, 0.42);
  outline-offset: 3px;
}

.platform-comparison-table {
  width: 100%;
  min-width: 66rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.platform-comparison-table th,
.platform-comparison-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.platform-comparison-table thead th {
  background: var(--navy-deep);
  color: #ffffff;
  font-family: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.05;
}

.platform-comparison-table thead th:first-child {
  border-top-left-radius: 7px;
}

.platform-comparison-table thead th:last-child {
  background: var(--navy-deep);
  border-top-right-radius: 7px;
  color: var(--teal-light);
  font-weight: 800;
}

.platform-comparison-table thead th:last-child .comparison-column-note {
  color: rgba(81, 221, 214, 0.72);
  font-weight: 700;
}

.platform-comparison-table thead .comparison-column-note {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.platform-comparison-table tbody tr:nth-child(even) th,
.platform-comparison-table tbody tr:nth-child(even) td {
  background: var(--panel-alt);
}

.platform-comparison-table tbody th {
  width: 25%;
  color: var(--ink);
  font-weight: 700;
}

.platform-comparison-table tbody th span {
  display: block;
  width: fit-content;
  margin-top: 0.22rem;
  padding: 0.05rem 0.32rem;
  border-radius: 4px;
  background: rgba(0, 184, 150, 0.11);
  color: var(--teal-mid);
  font-size: 0.72rem;
  font-weight: 700;
}

.platform-comparison-table tbody td:last-child {
  background: rgba(0, 184, 150, 0.06);
}

.platform-comparison-table tbody tr:nth-child(even) td:last-child {
  background: rgba(0, 184, 150, 0.09);
}

.platform-comparison-table tbody tr:last-child th,
.platform-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 7.2rem;
  min-height: 1.75rem;
  gap: 0.45rem;
  padding: 0.22rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
}

.comparison-status::before {
  content: '';
  display: inline-block;
  flex: 0 0 auto;
}

.comparison-status.is-native,
.comparison-status.is-native-module {
  color: var(--teal);
  background: rgba(0, 184, 150, 0.09);
}

.comparison-status.is-native-module {
  min-width: 9.4rem;
}

.comparison-status.is-strong {
  color: var(--teal-mid);
  background: rgba(59, 141, 155, 0.08);
}

.comparison-status.is-partial {
  color: var(--slate);
  background: rgba(107, 133, 153, 0.08);
}

.comparison-status.is-addon {
  color: #b87916;
  background: rgba(217, 173, 95, 0.12);
}

.comparison-status.is-manual {
  color: #a77766;
  background: rgba(184, 135, 116, 0.09);
}

.comparison-status.is-native::before,
.comparison-status.is-native-module::before,
.comparison-status.is-strong::before {
  width: 0.52rem;
  height: 0.3rem;
  margin-top: -0.1rem;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.comparison-status.is-partial::before {
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
}

.comparison-status.is-addon::before {
  content: '+';
  font-size: 1rem;
  line-height: 0.75;
}

.comparison-status.is-manual::before {
  width: 0.52rem;
  border-top: 2px solid currentColor;
}

.platform-comparison-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 600;
}

.platform-comparison-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.platform-comparison-legend .comparison-status {
  min-width: auto;
}

@media (max-width: 640px) {
  .platform-module-menu {
    grid-template-columns: 1fr;
  }

  .platform-comparison-card {
    padding: 0.85rem;
  }

  .platform-comparison-head {
    grid-template-columns: 1fr;
  }

  .platform-comparison-copy h2 {
    font-size: 2.15rem;
  }

  .platform-comparison-score {
    max-width: none;
  }

  .platform-comparison-score span {
    font-size: 2.4rem;
  }

  .platform-comparison-table {
    min-width: 58rem;
    font-size: 0.84rem;
  }

  .platform-comparison-table th,
  .platform-comparison-table td {
    padding: 0.62rem 0.65rem;
  }

  .compare-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    font-size: 0.85rem;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table thead,
  .compare-table tbody,
  .compare-table tr {
    width: max-content;
    min-width: 100%;
  }

  .compare-table th,
  .compare-table td {
    min-width: 9rem;
  }

  .compare-table td:first-child {
    white-space: normal;
  }
}

.lead-form {
  display: grid;
  gap: 0.95rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.93rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(12, 35, 64, 0.16);
  border-radius: 6px;
  background: #fff;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(0, 184, 150, 0.28);
  border-color: var(--brand);
}

.form-status {
  min-height: 1.2rem;
  color: var(--copy);
  font-size: 0.92rem;
}

.form-status.is-loading {
  color: var(--accent);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-secondary-action {
  margin: -0.35rem 0 0;
  color: var(--copy);
  font-size: 0.92rem;
}

.support-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--brand);
  font-weight: 600;
}

.form-secondary-action .support-link {
  margin-top: 0;
}

.support-link[hidden] {
  display: none;
}

[data-scheduler-cta] {
  display: none;
  margin-top: 1rem;
}

[data-scheduler-cta].is-visible {
  display: block;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: #06102f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner > :first-child {
  padding: 2rem;
}

.cta-banner h2,
.cta-banner p {
  color: #ffffff;
}

.cta-banner p {
  margin-top: 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.74);
}

.cta-banner .section-actions {
  margin-top: 1.25rem;
}

.cta-banner .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.cta-banner .button-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-banner-shot {
  align-self: stretch;
  min-height: clamp(25rem, 30vw, 26.5rem);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #06102f;
  box-shadow: none;
}

.cta-banner-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .animate-on-scroll:nth-child(1) {
  transition-delay: 0ms;
}

.stagger > .animate-on-scroll:nth-child(2) {
  transition-delay: 100ms;
}

.stagger > .animate-on-scroll:nth-child(3) {
  transition-delay: 200ms;
}

.stagger > .animate-on-scroll:nth-child(4) {
  transition-delay: 300ms;
}

.site-footer {
  background: var(--shell);
  color: #fff;
  padding: 3rem 0;
  margin-top: 3rem;
}

.site-footer .brand-lockup {
  color: #ffffff;
  margin-bottom: 1rem;
}

.site-footer .brand-lockup img {
  width: clamp(10.25rem, 16vw, 12.5rem);
  height: auto;
}

.site-footer .brand-lockup div {
  display: none;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.site-footer h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.site-footer p,
.site-footer li,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

.site-footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  line-height: 1.65;
}

.site-footer-nav a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.site-footer-legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer-legal a {
  color: inherit;
}

.site-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer-divider {
  opacity: 0.55;
}

@media (max-width: 980px) {
  .home-hero {
    --home-hero-pad-top: clamp(3rem, 7vw, 4rem);
    --home-hero-pad-bottom: clamp(2.5rem, 7vw, 3.5rem);

    min-height: clamp(33rem, 74vw, 39rem);
    padding: var(--home-hero-pad-top) 0 var(--home-hero-pad-bottom);
  }

  .home-hero .hero-grid {
    position: relative;
    min-height: inherit;
    gap: 0;
    align-items: center;
  }

  .home-hero .hero-grid > :first-child {
    position: relative;
    z-index: 2;
  }

  .home-hero .hero-media-block {
    position: absolute;
    top: calc(var(--home-hero-pad-top) * -1);
    right: -1rem;
    bottom: calc(var(--home-hero-pad-bottom) * -1);
    z-index: 1;
    display: flex;
    width: min(120vw, 58rem);
    max-width: none;
    margin-top: 0;
    justify-self: auto;
    align-items: stretch;
    justify-content: flex-end;
    opacity: 0.34;
    pointer-events: none;
  }

  .home-hero .home-hero-media {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
  }

  .home-hero .home-hero-media[data-animated-hero] {
    overflow: visible;
  }

  .home-hero .home-hero-media img {
    width: auto;
    max-width: none;
    height: 100%;
    object-position: right bottom;
  }

  .hero h1 {
    font-size: 4.75rem;
  }

  .page-head h1 {
    font-size: 3.35rem;
  }

  .platform-page-head .page-head-text h1 {
    max-width: 11.6em;
    font-size: 3.35rem;
  }

  .platform-page-head,
  .resources-page-head,
  .company-page-head,
  .request-demo-page-head,
  .partners-page-head {
    min-height: 0;
  }

  .platform-page-head::before,
  .resources-page-head::before,
  .company-page-head::before,
  .request-demo-page-head::before {
    content: none;
  }

  .platform-page-head .page-head-row,
  .resources-page-head .page-head-row,
  .company-page-head .page-head-row,
  .request-demo-page-head .page-head-row,
  .partners-page-head .page-head-row {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.5rem;
  }

  .platform-page-head .page-head-text,
  .resources-page-head .page-head-text,
  .company-page-head .page-head-text,
  .request-demo-page-head .page-head-text,
  .partners-page-head .page-head-text {
    width: auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .platform-page-head .page-head-text p,
  .resources-page-head .page-head-text p,
  .company-page-head .page-head-text p,
  .request-demo-page-head .page-head-text p,
  .partners-page-head .page-head-text p {
    max-width: 100%;
  }

  .platform-page-head .page-head-image-wrap,
  .resources-page-head .page-head-image-wrap,
  .company-page-head .page-head-image-wrap,
  .request-demo-page-head .page-head-image-wrap {
    position: static;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    pointer-events: auto;
  }

  .platform-page-head .platform-hero-image,
  .resources-page-head .page-head-image,
  .company-page-head .company-hero-image,
  .request-demo-page-head .request-demo-hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .platform-page-head {
    min-height: clamp(32rem, 72vw, 38rem);
  }

  .platform-page-head::before {
    content: none;
  }

  .platform-page-head .page-head-row {
    display: block;
    min-height: 22rem;
  }

  .platform-page-head .page-head-image-wrap {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    display: flex;
    width: min(120vw, 56rem);
    max-width: none;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    opacity: 0.56;
    pointer-events: none;
    transform: translateX(1.25rem);
  }

  .platform-page-head .platform-hero-image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
  }

  .company-page-head .page-head-image-wrap,
  .request-demo-page-head .page-head-image-wrap {
    height: clamp(14rem, 42vw, 22rem);
  }

  .company-page-head .company-hero-image,
  .request-demo-page-head .request-demo-hero-image {
    height: 100%;
  }

  .resources-page-head,
  .company-page-head,
  .request-demo-page-head,
  .partners-page-head {
    min-height: clamp(31rem, 68vw, 37rem);
    isolation: isolate;
  }

  .resources-page-head::before,
  .company-page-head::before,
  .request-demo-page-head::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: min(78vw, 36rem);
    background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(12, 35, 64, 0.92) 56%, rgba(12, 35, 64, 0.26) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .resources-page-head .page-head-row,
  .company-page-head .page-head-row,
  .request-demo-page-head .page-head-row,
  .partners-page-head .page-head-row {
    display: block;
    min-height: 22rem;
  }

  .resources-page-head .page-head-image-wrap,
  .company-page-head .page-head-image-wrap,
  .request-demo-page-head .page-head-image-wrap {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    display: flex;
    width: min(120vw, 56rem);
    max-width: none;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    opacity: 0.34;
    pointer-events: none;
  }

  .resources-page-head .page-head-image-wrap picture {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
  }

  .resources-page-head .page-head-image,
  .company-page-head .company-hero-image,
  .request-demo-page-head .request-demo-hero-image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .company-page-head .company-hero-image-wrap {
    inset: 0 -4rem 0 auto;
    width: min(128vw, 52rem);
    opacity: 0.36;
  }

  .company-page-head .company-hero-image {
    object-position: right center;
  }

  .platform-module-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-grid,
  .team-experience-grid,
  .article-layout,
  .site-footer-grid,
  .feature-panel,
  .investor-grid,
  .business-fit-grid,
  .white-paper-cta,
  .resource-white-paper-panel,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .platform-module-summary {
    grid-template-columns: minmax(0, 1fr) 2rem;
  }

  .platform-module-thumb {
    grid-column: 1 / -1;
    min-height: clamp(12rem, 46vw, 18rem);
  }

  .platform-module-thumb img {
    height: clamp(12rem, 46vw, 18rem);
  }

  .platform-module-copy {
    grid-column: 1;
  }

  .platform-module-toggle-mark {
    grid-column: 2;
    grid-row: 2;
  }

  .platform-module-body .feature-panel-points {
    grid-template-columns: 1fr;
  }

  .white-paper-cta .section-actions {
    justify-content: flex-start;
  }

  .cta-banner-shot {
    aspect-ratio: 2752 / 1536;
    min-height: 0;
  }

  .site-footer-nav {
    justify-content: flex-start;
  }

  .feature-panel-media.is-illustration {
    width: 100%;
  }

  .feature-panel-wrap {
    min-height: 0;
  }

  .feature-panel {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .feature-panel.is-active {
    display: grid;
  }

  .feature-grid,
  .team-experience-grid .feature-grid,
  .article-grid,
  .persona-grid,
  .business-context-grid,
  .reactive-grid,
  .what-is-statements,
  .team-grid,
  .metric-grid,
  .module-grid,
  .hero-notes,
  .caption-grid,
  .company-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid.team-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header.is-open .site-nav {
    display: grid;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem;
    gap: 0.85rem;
  }

  .site-nav-link,
  .site-nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav-group {
    display: grid;
    gap: 0.4rem;
  }

  .site-nav-group::after {
    content: none;
  }

  .site-submenu {
    display: none;
    position: static;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav-group:hover .site-submenu,
  .site-nav-group:focus-within .site-submenu {
    display: none;
  }

  .site-header.is-open .site-nav-group.is-open .site-submenu {
    display: grid;
  }

  .site-submenu-link {
    padding: 0.35rem 0;
    border-radius: 0;
    white-space: normal;
  }

  .site-submenu-link[aria-current='page'],
  .site-submenu-link:hover {
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-wires,
  .hero-screen-sheen,
  .hero-activity-node,
  .hero-truck-door {
    display: none;
  }
}

@keyframes hero-screen-scan {
  0%,
  24% {
    transform: translateX(0) skewX(-18deg);
  }

  52%,
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

@keyframes hero-worker-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.86);
    opacity: 0.42;
  }

  42% {
    transform: translate3d(0.08rem, -0.12rem, 0) scale(1);
    opacity: 0.78;
  }

  68% {
    transform: translate3d(-0.06rem, 0.06rem, 0) scale(0.9);
    opacity: 0.5;
  }
}

@keyframes hero-activity-ring {
  0%,
  48%,
  100% {
    transform: scale(0.74);
    opacity: 0;
  }

  68% {
    transform: scale(1.65);
    opacity: 0.38;
  }
}

@keyframes hero-truck-door-swing {
  0%,
  18%,
  100% {
    transform: perspective(28rem) rotateY(0deg) skewY(-7deg);
  }

  42%,
  62% {
    transform: perspective(28rem) rotateY(-42deg) skewY(-7deg) translateX(-0.08rem);
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .page-head h1 {
    font-size: 2.55rem;
  }

  .section-inner h2,
  .article-layout h1,
  .form-panel h2 {
    font-size: 2rem;
  }

  .hero-heading-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-hero .hero-heading-row h1 {
    width: auto;
    max-width: 10ch;
  }

  .home-hero .hero-grid {
    gap: 1.15rem;
  }

  .home-hero .hero-actions {
    margin-top: 1.25rem;
  }

  .home-hero .hero-media-block {
    right: -1rem;
    width: min(150vw, 50rem);
    margin-top: 0;
    opacity: 0.28;
  }

  .home-hero .home-hero-media img {
    width: auto;
    max-width: none;
    height: 100%;
  }

  .home-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-heading-image {
    width: min(100%, 27rem);
    max-width: 27rem;
    justify-self: start;
  }

  .hero-screen-sheen,
  .hero-activity-node,
  .hero-truck-door {
    opacity: 0.48;
  }

  .page-head-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-page-head {
    min-height: 0;
  }

  .platform-page-head::before {
    content: none;
  }

  .platform-page-head .page-head-row {
    display: grid;
    min-height: 0;
    max-width: 100%;
  }

  .platform-page-head .page-head-text {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .platform-page-head .page-head-text h1 {
    max-width: 11.6em;
    font-size: 2.55rem;
  }

  .platform-page-head .page-head-image-wrap {
    position: static;
    width: auto;
    min-width: 0;
    max-width: 100%;
    pointer-events: auto;
  }

  .platform-page-head .platform-hero-image {
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .platform-page-head {
    min-height: 34rem;
  }

  .platform-page-head::before {
    content: none;
  }

  .platform-page-head .page-head-row {
    display: block;
    min-height: 22rem;
  }

  .platform-page-head .page-head-image-wrap {
    position: absolute;
    inset: 0 0 0 auto;
    display: flex;
    width: min(164vw, 48rem);
    max-width: none;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    opacity: 0.52;
    pointer-events: none;
    transform: translateX(0.75rem);
  }

  .platform-page-head .platform-hero-image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
  }

  .resources-page-head {
    min-height: 0;
  }

  .resources-page-head::before {
    content: none;
  }

  .resources-page-head .page-head-row {
    display: grid;
    min-height: 0;
  }

  .resources-page-head .page-head-text {
    width: auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .resources-page-head .page-head-text h1 {
    max-width: 12ch;
  }

  .resources-page-head .page-head-text p {
    max-width: 100%;
  }

  .resources-page-head .page-head-image-wrap {
    position: static;
    width: auto;
    min-width: 0;
    max-width: 100%;
    height: auto;
    pointer-events: auto;
  }

  .resources-page-head .page-head-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .company-page-head {
    min-height: 0;
  }

  .company-page-head::before {
    content: none;
  }

  .company-page-head .page-head-row {
    display: grid;
    min-height: 0;
  }

  .company-page-head .page-head-text {
    width: auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .company-page-head .page-head-text h1 {
    max-width: 12ch;
  }

  .company-page-head .page-head-text p {
    max-width: 100%;
  }

  .company-page-head .page-head-image-wrap {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 14rem;
    pointer-events: auto;
  }

  .company-page-head .company-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .request-demo-page-head {
    min-height: 0;
  }

  .request-demo-page-head::before {
    content: none;
  }

  .request-demo-page-head .page-head-row {
    display: grid;
    min-height: 0;
  }

  .request-demo-page-head .page-head-text {
    width: auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .request-demo-page-head .page-head-text h1 {
    max-width: 12ch;
  }

  .request-demo-page-head .page-head-text p {
    max-width: 100%;
  }

  .request-demo-page-head .page-head-image-wrap {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 14rem;
    pointer-events: auto;
  }

  .request-demo-page-head .request-demo-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .partners-page-head {
    min-height: 33rem;
    background-image:
      linear-gradient(90deg, rgba(12, 35, 64, 0.94), rgba(12, 35, 64, 0.7)), url('../images/ecosystem2_transparent.png');
    background-position:
      center,
      right center;
    background-size:
      100% 100%,
      cover;
  }

  .partners-page-head .page-head-row {
    display: block;
    min-height: 22rem;
  }

  .partners-page-head .page-head-text {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .partners-page-head .page-head-text p {
    max-width: 100%;
  }

  .campaign-hero {
    background-image:
      linear-gradient(90deg, rgba(12, 35, 64, 0.97), rgba(12, 35, 64, 0.84)), var(--campaign-hero-image);
  }

  .campaign-hero-content {
    padding: 2.7rem 0 3rem;
  }

  .campaign-hero h1 {
    font-size: 2.45rem;
  }

  .campaign-meta {
    grid-template-columns: 1fr;
  }

  .ai-hero-row {
    grid-template-columns: 1fr;
  }

  .page-head-image {
    max-width: 27rem;
  }

  .resources-page-head,
  .company-page-head,
  .request-demo-page-head,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap) {
    position: relative;
    min-height: 33rem;
    overflow: hidden;
    isolation: isolate;
  }

  .resources-page-head::before,
  .company-page-head::before,
  .request-demo-page-head::before,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: min(88vw, 34rem);
    background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(12, 35, 64, 0.9) 58%, rgba(12, 35, 64, 0.22) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .resources-page-head .breadcrumbs,
  .resources-page-head .page-head-text,
  .company-page-head .breadcrumbs,
  .company-page-head .page-head-text,
  .request-demo-page-head .breadcrumbs,
  .request-demo-page-head .page-head-text,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)
    .breadcrumbs,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)
    .page-head-text {
    position: relative;
    z-index: 2;
  }

  .resources-page-head .page-head-row,
  .company-page-head .page-head-row,
  .request-demo-page-head .page-head-row,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)
    .page-head-row {
    display: block;
    min-height: 22rem;
  }

  .resources-page-head .page-head-image-wrap,
  .company-page-head .page-head-image-wrap,
  .request-demo-page-head .page-head-image-wrap,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)
    .page-head-image-wrap {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    display: flex;
    width: min(164vw, 48rem);
    max-width: none;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
  }

  .resources-page-head .page-head-image-wrap picture,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)
    picture.page-head-image-wrap {
    display: flex;
    justify-content: flex-end;
  }

  .resources-page-head .page-head-image-wrap picture {
    width: 100%;
    height: 100%;
  }

  .resources-page-head .page-head-image,
  .company-page-head .company-hero-image,
  .request-demo-page-head .request-demo-hero-image,
  .page-head:not(.platform-page-head):not(.partners-page-head):not(.resources-page-head):not(.company-page-head):not(
      .request-demo-page-head
    ):has(.page-head-image-wrap)
    .page-head-image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .company-page-head .company-hero-image-wrap {
    inset: 0 -5rem 0 auto;
    width: min(150vw, 44rem);
    opacity: 0.36;
  }

  .company-page-head .company-hero-image {
    object-position: right center;
  }

  .ai-hero-image-wrap {
    max-width: 27rem;
  }

  .feature-grid,
  .team-experience-grid .feature-grid,
  .article-grid,
  .persona-grid,
  .business-context-grid,
  .reactive-grid,
  .what-is-statements,
  .investor-grid,
  .team-grid,
  .metric-grid,
  .module-grid,
  .field-grid,
  .hero-notes,
  .caption-grid,
  .company-values-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .team-grid.team-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-head {
    padding: 3rem 0 2.5rem;
  }

  .home-hero {
    --home-hero-pad-top: 3rem;
    --home-hero-pad-bottom: 3rem;

    min-height: 33rem;
    padding: var(--home-hero-pad-top) 0 var(--home-hero-pad-bottom);
  }

  .home-hero .hero-media-block {
    right: -1rem;
    width: min(170vw, 48rem);
    opacity: 0.24;
  }

  .section {
    padding: 3.25rem 0;
  }

  .site-footer-bottom,
  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-panel-wrap {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    gap: 0.75rem;
  }

  .investor-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .investor-type {
    white-space: normal;
  }

  .header-actions-primary {
    display: none;
  }
}
