:root {
  --ink: #101820;
  --muted: #101820;
  --line: rgba(16, 24, 32, 0.12);
  --surface: #ffffff;
  --white: #ffffff;
  --navy: #071e33;
  --charcoal: #191714;
  --green: #3c9f73;
  --blue: #0f6ea9;
  --blue-dark: #0a4f78;
  --blue-soft: #e6f3fb;
  --cyan: #21a9d3;
  --teal: #118fa0;
  --orange: #ff5a24;
  --orange-hot: #ff8a3d;
  --orange-deep: #e84b18;
  --demo-cta: #ff5a24;
  --demo-cta-hover: #e84b18;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
  /* Fluid enterprise layout system — viewport-driven (no pixel width barriers) */
  --page-gutter: clamp(16px, 2vw, 48px);
  --max: 96vw;
  --max-hero: 98vw;
  --header-max: var(--max);
  --home-header-width: var(--header-max);
  --max-prose: 44rem;
  --max-heading: min(40ch, 100%);
  --max-narrow: 90vw;
  --max-diagram: 98vw;
  --max-band-detail: 98vw;
  --mega-width: min(82vw, 1360px);
  --motion-fast: 180ms;
  --motion-normal: 280ms;
  --motion-premium: 400ms;
  /* Global motion design system */
  --motion-micro: 160ms;
  --motion-ui: 240ms;
  --motion-reveal: 560ms;
  --motion-page-enter: 420ms;
  --motion-page-leave: 220ms;
  --motion-stagger: 60ms;
  --motion-distance: 24px;
  --motion-distance-sm: 12px;
  --motion-scale-hover: 1.01;
  --motion-scale-press: 0.98;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --nav-motion: var(--motion-normal) var(--ease-smooth);
  --nav-label: #0b1f33;
  --nav-hover: var(--demo-cta, #ff5a24);
  --nav-active: var(--demo-cta, #ff5a24);
  --nav-hover-bg: transparent;
  --nav-active-bg: transparent;
  --nav-surface: rgba(255, 255, 255, 0.94);
  --nav-surface-border: rgba(255, 255, 255, 0.88);
  --brand-height: 38px;
  --brand-gap: 8px;
  --brand-pad-block: 3px;
  --brand-pad-inline: 14px;
  --brand-pad-inline-start: 12px;

  /* Typography color system */
  --color-section-eyebrow: #001feb;
  --color-section-heading: #0a4f78;
  --color-ui-icon: #ff5a24;
  --color-section-heading-inverse: #ffffff;
  --color-body-text: #101820;
  --color-muted-text: #101820;
  --color-secondary-text: #5e6a78;
  --color-section-label: var(--color-section-eyebrow);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--color-body-text);
  background: var(--surface);
  font-family: Aptos, "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.home-page {
  --ink: #15130f;
  --muted: #15130f;
  --surface: #ffffff;
  --surface-warm: #ffffff;
  --line: rgba(21, 19, 15, 0.12);
  --blue: #0f6ea9;
  --blue-dark: #0a4f78;
  --blue-soft: #e8f4fb;
  --orange: #ff5a24;
  --charcoal: #191714;
  --color-section-heading: #0a4f78;
  --color-body-text: #15130f;
  --color-muted-text: #15130f;
  background: var(--surface);
  font-family: Inter, Graphik, "Segoe UI", system-ui, sans-serif;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: "Plus Jakarta Sans", Inter, Graphik, "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
}

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

button { font: inherit; }

.site-header {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--header-max), calc(100% - 2 * var(--page-gutter)));
  max-width: none;
  margin: 0 auto;
  gap: 16px;
  padding-inline: 0;
}

.home-page .header-inner::before {
  content: none;
  display: none;
}

.brand,
.demo-button:not(.btn-liquid),
.mobile-toggle {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.12);
}

.brand {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--brand-gap);
  width: max-content;
  min-width: 0;
  height: var(--brand-height);
  padding: var(--brand-pad-block) var(--brand-pad-inline);
  padding-inline-start: var(--brand-pad-inline-start);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue-dark);
  background: var(--nav-surface);
  border-color: var(--nav-surface-border);
  box-shadow:
    0 8px 28px rgba(16, 24, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background var(--nav-motion),
    border-color var(--nav-motion),
    box-shadow var(--nav-motion),
    color var(--nav-motion),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:not(:has(img)) {
  padding-inline: 12px;
}

.brand:hover {
  border-color: rgba(15, 110, 169, 0.22);
  box-shadow:
    0 10px 32px rgba(16, 24, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.home-page .brand,
.home-page .demo-button:not(.btn-liquid) {
  background: var(--nav-surface);
  border-color: var(--nav-surface-border);
  box-shadow:
    0 10px 40px rgba(21, 19, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    background var(--nav-motion),
    border-color var(--nav-motion),
    box-shadow var(--nav-motion),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .header-inner:hover .brand {
  transform: translateX(8px) translateY(-1px) scale(0.75);
}

.home-page .header-inner:hover .nav-shell {
  transform: translateX(-50%) translateY(-1px) scale(1.012);
}

.home-page .header-inner:hover .demo-button {
  transform: translateX(-8px) translateY(-1px) scale(0.75);
}

.home-page .header-inner.is-pointer-active .brand {
  transform: translateX(calc(8px + var(--header-x, 0px) * -0.18)) translateY(calc(-1px + var(--header-y, 0px) * 0.18)) scale(0.75);
}

.home-page .header-inner.is-pointer-active .nav-shell {
  transform: translateX(-50%) translate(calc(var(--header-x, 0px) * 0.08), calc(-1px + var(--header-y, 0px) * 0.1)) scale(1.012);
}

.home-page .header-inner.is-pointer-active .demo-button {
  transform: translateX(calc(-8px + var(--header-x, 0px) * -0.18)) translateY(calc(-1px + var(--header-y, 0px) * 0.18)) scale(0.75);
}

.brand img {
  display: block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand.brand--wordmark {
  gap: 0;
  padding-inline: 12px 14px;
  padding-inline-start: 12px;
  background: #fff;
  border: 1px solid rgba(16, 24, 32, 0.08);
  box-shadow:
    0 8px 28px rgba(16, 24, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .brand.brand--wordmark {
  background: #fff;
  border-color: rgba(16, 24, 32, 0.08);
  box-shadow:
    0 8px 28px rgba(16, 24, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.brand.brand--wordmark:hover,
.brand.brand--wordmark:focus-visible {
  background: #fff;
  border-color: rgba(15, 110, 169, 0.18);
  box-shadow:
    0 10px 32px rgba(16, 24, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.brand.brand--wordmark img {
  width: auto;
  height: 32px;
  max-width: min(220px, 48vw);
  object-fit: contain;
  filter: none;
  transition: none;
}

.brand.brand--wordmark:hover img {
  transform: none;
  filter: none;
}

.brand span {
  line-height: 1;
  white-space: nowrap;
}

.home-page .brand img {
  filter: none;
  transition: none;
}

.home-page .brand.brand--wordmark img {
  filter: none;
}

.home-page .header-inner:hover .brand img {
  transform: none;
}

.home-page .header-inner:hover .brand.brand--wordmark img {
  transform: none;
}

.nav-shell {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-color: rgba(16, 24, 32, 0.08);
  box-shadow:
    0 8px 28px rgba(16, 24, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-shell:hover,
.nav-shell:focus-within,
.nav-shell:has(.menu-trigger.is-open) {
  background: #fff;
  border-color: rgba(15, 110, 169, 0.14);
  box-shadow:
    0 10px 32px rgba(16, 24, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--nav-label);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background var(--nav-motion),
    color var(--nav-motion),
    text-shadow var(--nav-motion),
    transform var(--nav-motion);
}

.home-page .nav-link {
  color: var(--nav-label, #0b1f33);
  background: transparent;
  text-shadow: none;
}

.home-page .nav-link > a {
  color: inherit;
}

.nav-shell:hover .nav-link,
.nav-shell:focus-within .nav-link,
.nav-shell:has(.menu-trigger.is-open) .nav-link,
.nav-shell .nav-link {
  color: var(--nav-label, #0b1f33);
  text-shadow: none;
}

.nav-shell:hover .nav-link > a,
.nav-shell:focus-within .nav-link > a,
.nav-shell:has(.menu-trigger.is-open) .nav-link > a,
.nav-shell .nav-link > a,
.nav-shell .menu-trigger > a {
  color: inherit;
}

.nav-shell:hover .nav-link:hover,
.nav-shell:focus-within .nav-link:hover,
.nav-shell:has(.menu-trigger.is-open) .nav-link:hover,
.nav-shell:hover .menu-trigger:hover,
.nav-shell:focus-within .menu-trigger:hover,
.nav-shell:has(.menu-trigger.is-open) .menu-trigger:hover {
  color: var(--nav-hover);
}

.nav-shell:hover .nav-link.active,
.nav-shell:focus-within .nav-link.active,
.nav-shell:has(.menu-trigger.is-open) .nav-link.active {
  color: var(--nav-active);
}

.nav-link > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  white-space: nowrap;
}

.menu-trigger {
  gap: 0;
}

.menu-trigger > a {
  padding-inline-end: 4px;
}

.mega-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-inline-end: 6px;
  padding: 0 8px 0 2px;
  min-width: 22px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.mega-toggle:hover,
.mega-toggle:focus-visible {
  color: var(--nav-hover);
}

.mega-toggle:focus-visible {
  outline: 2px solid var(--demo-cta, #ff5a24);
  outline-offset: 2px;
}

.nav-link:hover,
.menu-trigger:hover {
  color: var(--nav-hover);
  background: transparent;
}

.nav-link.active {
  color: var(--nav-active);
  background: transparent;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}

.menu-trigger:hover .chevron {
  transform: translateY(1px) rotate(225deg);
}

.menu-trigger.is-open {
  color: var(--nav-hover);
  background: transparent;
}

.menu-trigger.is-open .chevron {
  transform: translateY(1px) rotate(225deg);
}

.mega-menu {
  --mega-ink: var(--navy, #071e33);
  --mega-muted: #5e6a78;
  --mega-accent: var(--color-ui-icon, #ff5a24);
  --mega-hover: rgba(255, 90, 36, 0.06);
  --mega-width: min(560px, 92vw);
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: var(--mega-width);
  padding: 20px 22px 14px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 1px 2px rgba(16, 24, 32, 0.04),
    0 20px 48px rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  filter: blur(6px);
  transform-origin: top center;
  transition:
    opacity 250ms ease-out,
    transform 250ms ease-out,
    filter 250ms ease-out,
    visibility 0s linear 250ms;
}

/* Invisible hover bridge between trigger and panel */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.menu-trigger.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  filter: blur(0);
  transition:
    opacity 250ms ease-out,
    transform 250ms ease-out,
    filter 250ms ease-out,
    visibility 0s linear 0s;
}

.mega-menu-head {
  padding: 0 4px 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.07);
}

.mega-menu-title {
  margin: 0;
  color: var(--mega-ink);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mega-menu-lead {
  margin: 6px 0 0;
  max-width: 48ch;
  color: var(--mega-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 8px;
  row-gap: 2px;
  padding: 8px 0 4px;
  align-items: stretch;
}

.mega-menu a.mega-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 12px;
  align-items: center;
  column-gap: 10px;
  min-height: 52px;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  color: var(--mega-ink);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.mega-menu a.mega-item:hover,
.mega-menu a.mega-item:focus-visible {
  background: var(--mega-hover);
  outline: none;
  transform: none;
  border-color: transparent;
}

.mega-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 0;
  color: var(--mega-accent);
}

.mega-item-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
}

.mega-item-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega-menu a.mega-item strong,
.mega-item-copy strong {
  display: block;
  color: var(--mega-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: color 180ms ease;
}

.mega-menu a.mega-item small,
.mega-item-copy small {
  display: block;
  color: var(--mega-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.mega-menu a.mega-item:hover strong,
.mega-menu a.mega-item:focus-visible strong {
  color: var(--mega-accent);
}

.mega-menu a.mega-item:hover small,
.mega-menu a.mega-item:focus-visible small {
  color: rgba(7, 30, 51, 0.78);
}

.mega-item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 0;
  color: var(--mega-muted);
  opacity: 0;
  transform: translateX(-2px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.mega-item-arrow svg {
  display: block;
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
}

.mega-menu a.mega-item:hover .mega-item-arrow,
.mega-menu a.mega-item:focus-visible .mega-item-arrow {
  opacity: 0.85;
  color: var(--mega-accent);
  transform: translateX(0);
}

.mega-menu a.mega-menu-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin: 6px 4px 0;
  padding: 8px 4px;
  border: 0;
  border-top: 0;
  border-radius: 0;
  color: var(--blue-dark, var(--blue, #0f6ea9));
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 180ms ease;
}

.mega-menu a.mega-menu-all:hover,
.mega-menu a.mega-menu-all:focus-visible {
  color: var(--mega-accent);
  background: transparent;
  border-top-color: transparent;
  outline: none;
  transform: none;
  text-decoration: none;
}

.mega-menu-all span,
.mega-menu-all .mega-all-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.mega-menu-all:hover span,
.mega-menu-all:focus-visible span,
.mega-menu-all:hover .mega-all-arrow,
.mega-menu-all:focus-visible .mega-all-arrow {
  transform: translateX(3px);
}

.mega-menu-all .mega-all-arrow svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 980px) {
  .mega-menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .mega-menu a.mega-item,
  .mega-item-icon,
  .mega-item-arrow,
  .mega-menu-all span,
  .mega-menu-all .mega-all-arrow {
    transition: none !important;
    filter: none !important;
  }

  .menu-trigger.is-open .mega-menu {
    transform: translate(-50%, 0);
  }
}

.demo-button:not(.btn-liquid),
.primary-action:not(.btn-liquid) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 4px 5px 4px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-hot), var(--demo-cta));
  font-size: 13px;
  font-weight: 800;
  transition:
    background var(--motion-normal) var(--ease-standard),
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard);
}

.demo-button:hover:not(.btn-liquid),
.primary-action:hover:not(.btn-liquid) {
  background: linear-gradient(135deg, var(--demo-cta), var(--demo-cta-hover));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(255, 90, 36, 0.32);
}

.home-page .demo-button:not(.btn-liquid) {
  background: linear-gradient(135deg, var(--orange-hot), var(--demo-cta));
}

.home-page .demo-button:not(.btn-liquid):hover {
  background: linear-gradient(135deg, var(--demo-cta), var(--demo-cta-hover));
}

.demo-button svg,
.primary-action svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.demo-button:hover svg,
.primary-action:hover svg {
  transform: translateX(4px);
}

.mobile-toggle,
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.home-hero {
  min-height: min(100vh, 980px);
  color: var(--ink);
  background: var(--surface);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  padding: clamp(88px, 10vh, 120px) var(--page-gutter) clamp(48px, 6vh, 80px);
  width: min(var(--max-hero), calc(100% - 2 * var(--page-gutter)));
  max-width: none;
  margin: 0 auto;
}

.home-hero .hero-content {
  max-width: min(36rem, 52%);
  display: grid;
  gap: 28px;
}

.page-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 30, 51, 0.92), rgba(7, 30, 51, 0.62), rgba(7, 30, 51, 0.2)),
    var(--hero-image, linear-gradient(135deg, #071e33 0%, #0f6ea9 100%)) center / cover;
}

.products-hero {
  --hero-image: none;
  min-height: 92vh;
}

.products-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(120px, 14vh, 168px);
  padding-bottom: clamp(56px, 7vh, 96px);
  width: min(var(--max-hero), calc(100% - 2 * var(--page-gutter)));
  max-width: none;
  margin-inline: auto;
}

.products-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.04;
}

.products-hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 24px;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.7;
}

.hero-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-hero-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 72px rgba(7, 30, 51, 0.26);
  transform: scale(1.04);
  transform-origin: center right;
}

.product-hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-hero-label,
.product-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-hero-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.product-hero-badge {
  color: #072639;
  background: rgba(255, 255, 255, 0.92);
}

.product-hero-panel-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-hero-panel-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.product-hero-panel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.product-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-hero-metrics > div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.product-hero-metrics strong {
  font-size: 18px;
}

.product-hero-metrics span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Products hero: bright blue enterprise field */
.products-hero {
  background: #0b7fd4;
}

.products-hero::before {
  background:
    radial-gradient(ellipse 70% 55% at 82% 38%, rgba(255, 255, 255, 0.28), transparent 62%),
    radial-gradient(ellipse 55% 50% at 8% 78%, rgba(33, 220, 255, 0.35), transparent 68%),
    radial-gradient(ellipse 48% 42% at 48% 0%, rgba(120, 210, 255, 0.4), transparent 70%),
    linear-gradient(155deg, #1aa8ff 0%, #0f8ae8 42%, #0a72d4 72%, #0862bb 100%);
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 60% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 60% 40%, #000 30%, transparent 78%);
  pointer-events: none;
}

.products-hero .products-hero-layout {
  align-items: center;
  padding-top: 150px;
  padding-bottom: 84px;
}

.products-hero .products-hero-copy > * {
  opacity: 0;
  animation: productsHeroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.products-hero .products-hero-copy .eyebrow { animation-delay: 0.05s; }
.products-hero .products-hero-copy h1 { animation-delay: 0.14s; }
.products-hero .products-hero-copy p:not(.eyebrow) { animation-delay: 0.24s; }
.products-hero .products-hero-copy .hero-actions { animation-delay: 0.34s; }
.products-hero .products-hero-copy .hero-trust-list { animation-delay: 0.44s; }

@keyframes productsHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-hero .hero-actions {
  margin-top: 32px;
}

.hero-suite-link {
  gap: 8px;
  padding: 0 24px;
}

.hero-suite-link .suite-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.hero-suite-link:hover .suite-arrow,
.hero-suite-link:focus-visible .suite-arrow {
  transform: translateX(4px);
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Enterprise dashboard panel */
.hero-dashboard {
  position: relative;
  animation: productsHeroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.hero-dash-widget {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-dash-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-dash-widget-head strong {
  font-size: 14px;
}

.hero-dash-widget-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-dash-live i,
.kpi-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(60, 159, 115, 0.18);
}

.hero-dash-row {
  display: grid;
  grid-template-columns: 72px 1fr 38px;
  align-items: center;
  gap: 10px;
}

.hero-dash-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-dash-row b {
  font-size: 12px;
  text-align: right;
}

.hero-dash-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(7, 30, 51, 0.08);
  overflow: hidden;
}

.hero-dash-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left center;
  animation: heroDashFill 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

@keyframes heroDashFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-dash-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 64px;
}

.hero-dash-bars i {
  height: var(--bar, 50%);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  opacity: 0.85;
  transform-origin: bottom center;
  animation: heroDashRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s backwards;
}

@keyframes heroDashRise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.hero-dash-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-dash-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Floating KPI cards */
.hero-kpi {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(7, 30, 51, 0.28);
  color: var(--navy);
  animation: heroKpiFloat 7s ease-in-out infinite;
}

.hero-kpi span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-kpi strong {
  font-size: 17px;
}

.hero-kpi .kpi-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 14px;
}

.hero-kpi-a { top: -22px; left: -30px; animation-delay: 0s; }
.hero-kpi-b { top: 34%; right: -18px; animation-delay: 1.8s; }
.hero-kpi-c { bottom: -20px; left: -24px; animation-delay: 3.2s; }
.hero-kpi-d { bottom: 26%; right: -22px; animation-delay: 4.6s; }

@keyframes heroKpiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (prefers-reduced-motion: reduce) {
  .products-hero .products-hero-copy > *,
  .hero-dashboard,
  .hero-dash-track i,
  .hero-dash-bars i {
    animation: none;
    opacity: 1;
  }

  .hero-kpi {
    animation: none;
  }
}

@media (max-width: 1240px) and (min-width: 1101px) {
  .site-header {
    padding: 0 20px;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
  }

  .nav-shell {
    position: relative;
    left: auto;
    order: 3;
    width: 100%;
    max-width: 100%;
    transform: none;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .nav-link {
    min-height: 40px;
    padding: 0 13px;
  }

  .nav-capsule {
    white-space: normal;
    line-height: 1.2;
  }

  .demo-button {
    min-height: 42px;
    padding-left: 14px;
    padding-right: 10px;
  }
}

@media (max-width: 1100px) {
  .product-hero-panel {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .products-hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
  }

  .products-hero .products-hero-layout {
    padding-top: 136px;
    padding-bottom: 70px;
  }

  .hero-dashboard {
    max-width: 520px;
  }

  .hero-kpi-a { left: auto; right: 18px; top: -26px; }
  .hero-kpi-c { left: -14px; }
  .hero-kpi-d { display: none; }
}

@media (max-width: 760px) {
  .products-hero .products-hero-layout {
    gap: 44px;
  }

  .products-hero .hero-actions {
    margin-top: 28px;
  }

  .products-hero .hero-actions .primary-action,
  .products-hero .hero-actions .secondary-action {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-dashboard {
    max-width: none;
  }

  .hero-dash-analytics {
    display: none;
  }

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

  .hero-capability-list {
    grid-template-columns: 1fr;
  }

  .hero-kpi {
    position: static;
    animation: none;
  }

  .hero-kpi-a,
  .hero-kpi-b,
  .hero-kpi-c {
    display: grid;
  }

  .hero-kpi-d { display: none; }

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

  .hero-dashboard > .product-hero-panel-top,
  .hero-dashboard > .hero-dash-widget,
  .hero-dashboard > .hero-dash-chips {
    grid-column: 1 / -1;
  }

  .hero-kpi-c { grid-column: 1 / -1; }
}

.solutions-hero {
  --hero-image: url("../images/hero/solutions-hero-workflows.webp");
}

.company-hero {
  --hero-image: url("../images/hero/company-hero-ecosystem.webp");
}

.contact-hero {
  --hero-image: linear-gradient(135deg, #071e33 0%, #0f6ea9 100%);
}

.legal-hero {
  min-height: min(72vh, 560px);
  --hero-image: linear-gradient(135deg, #071e33, #0f6ea9);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-hero), calc(100% - 2 * var(--page-gutter)));
  max-width: none;
  padding-top: clamp(120px, 14vh, 168px);
  padding-bottom: clamp(64px, 8vh, 112px);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 42rem;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.55;
}

.ops-card.compact {
  top: 166px;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 30, 51, 0.92), rgba(7, 30, 51, 0.62), rgba(7, 30, 51, 0.16)),
    linear-gradient(135deg, #071e33 0%, #0f6ea9 100%) center / cover;
  transform: scale(1.02);
}

.home-page .hero-media {
  background: #ffffff;
  transform: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 148px 24px 64px;
}

.home-page .hero-content {
  padding-top: 48px;
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-section-eyebrow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow {
  color: var(--color-section-eyebrow);
}

.home-page .hero .eyebrow {
  color: var(--color-section-eyebrow);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 840px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 780;
}

.home-page h1 {
  max-width: none;
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 1.06;
  font-weight: 700;
}

/* Exec hero H1: no legacy ch-column; width comes from .home-exec-hero-copy */
.home-page .home-exec-hero h1,
.home-page .home-exec-hero-copy h1 {
  max-width: none;
}

.hero-title .char {
  --heat: 0;
  --heat-pct: 0%;
  --tone: var(--orange);
  display: inline-block;
  color: color-mix(in srgb, var(--ink), var(--tone) var(--heat-pct));
  filter: brightness(calc(1 + var(--heat) * 0.34)) saturate(calc(1 + var(--heat) * 0.28));
  text-shadow:
    0 0 calc(var(--heat) * 10px) color-mix(in srgb, var(--tone) 30%, transparent),
    0 0 calc(var(--heat) * 22px) color-mix(in srgb, var(--tone) 18%, transparent);
  transform: translateY(calc(var(--heat) * -1px));
  transition:
    color 0.18s ease,
    filter 0.18s ease,
    text-shadow 0.18s ease,
    transform 0.18s ease;
}

.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .char.is-space {
  min-width: 0.28em;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 760;
}

h3 {
  font-size: 28px;
  line-height: 1.08;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.45;
}

.home-page .hero-content > p:not(.eyebrow) {
  max-width: 38ch;
  color: color-mix(in srgb, var(--ink) 84%, var(--muted));
  font-size: clamp(17px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.hero-support span {
  position: relative;
  display: inline;
  color: color-mix(in srgb, var(--orange) 52%, var(--ink));
  font-weight: 900;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background:
    linear-gradient(180deg, transparent 56%, rgba(255, 90, 36, 0.1) 56%),
    linear-gradient(90deg, rgba(255, 90, 36, 0.045), rgba(15, 110, 169, 0.045));
  border-radius: 6px;
  padding: 0 3px;
}

.home-page .hero-actions {
  margin-top: 26px;
}

.hero-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin-top: 22px;
}

.hero-proof-label,
.trust-logo-card {
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.hero-proof-label {
  white-space: nowrap;
  color: var(--blue);
  text-transform: uppercase;
}

.hero-proof-rail {
  position: relative;
  width: min(100%, 520px);
  min-height: 56px;
}

.hero-proof-set {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  will-change: opacity, transform;
}

.hero-proof-set-a {
  animation: heroProofSetA 7s ease-in-out infinite;
}

.hero-proof-set-b {
  opacity: 0;
  transform: translateY(10px);
  animation: heroProofSetB 7s ease-in-out infinite;
}

.hero-proof:hover .hero-proof-set {
  animation-play-state: paused;
}

.trust-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--trust-accent, var(--blue)) 20%, rgba(255, 255, 255, 0.72));
  border-radius: 999px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--trust-accent, var(--blue)) 22%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--trust-accent, var(--blue)) 12%, #fff), rgba(255, 255, 255, 0.74));
  box-shadow:
    0 14px 34px color-mix(in srgb, var(--trust-accent, var(--blue)) 10%, rgba(21, 19, 15, 0.04)),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-family: "Plus Jakarta Sans", Inter, Graphik, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.trust-logo-card:nth-child(1) { --trust-accent: #f0b323; }
.trust-logo-card:nth-child(2) { --trust-accent: #ff5a24; }
.trust-logo-card:nth-child(3) { --trust-accent: #ff5a24; }

@keyframes heroProofSetA {
  0%, 40% {
    opacity: 1;
    transform: translateY(0);
  }

  50%, 90% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroProofSetB {
  0%, 40% {
    opacity: 0;
    transform: translateY(10px);
  }

  50%, 90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-proof-set {
    animation: none;
  }

  .hero-proof-set-b {
    display: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action {
  min-height: 52px;
  font-size: 14px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 800;
  transition:
    background var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard),
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard);
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.12);
}

.home-page .secondary-action {
  border-color: rgba(21, 19, 15, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.home-page .secondary-action:hover {
  border-color: rgba(21, 19, 15, 0.3);
  background: #fff;
}

.ops-card {
  position: absolute;
  z-index: 2;
  top: 172px;
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  width: min(360px, 28vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(7, 30, 51, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.home-ops-card {
  top: 420px;
  right: max(24px, calc((100vw - var(--max)) / 2 + 58px));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 90px rgba(21, 19, 15, 0.12);
}

.hero-card-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  width: min(580px, 100%);
  max-width: 580px;
  min-width: 400px;
  padding: 0;
  margin-top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: none;
  align-self: center;
  justify-self: end;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  border-radius: 28px;
  filter: drop-shadow(0 28px 48px color-mix(in srgb, var(--active-card-accent, var(--orange)) 34%, transparent));
  transition: filter 0.34s ease;
}

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

  .home-hero .hero-card-panel {
    justify-self: stretch;
    margin-top: 40px;
  }
}

.hero-card-frame {
  perspective: 1100px;
}

.hero-card-inner {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 62vh, 720px);
  transform-style: preserve-3d;
  transition: transform 0.68s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
}

.hero-card-inner.is-flipped-next {
  transform: rotateY(180deg);
}

.hero-card-inner.is-flipped-prev {
  transform: rotateY(-180deg);
}

.hero-card-face {
  --hero-card-accent: var(--orange);
  --hero-card-zoom: 1.28;
  --hero-card-hover-zoom: 1.34;
  --hero-card-position: center center;
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--hero-card-accent) 22%, rgba(21, 19, 15, 0.08));
  box-shadow:
    0 34px 90px color-mix(in srgb, var(--hero-card-accent) 42%, rgba(21, 19, 15, 0.14)),
    0 0 0 9px color-mix(in srgb, var(--hero-card-accent) 13%, transparent);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  display: grid;
  gap: 20px;
}

.hero-card-face::after {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--hero-card-accent) 30%, transparent), transparent 34%),
    radial-gradient(circle at 82% 76%, color-mix(in srgb, var(--hero-card-accent) 24%, transparent), transparent 36%);
  opacity: 0.68;
  pointer-events: none;
}

.hero-card-face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.96;
  pointer-events: none;
}

.hero-card-back {
  transform: rotateY(180deg);
}

.hero-card-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: inherit;
}

.hero-card-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: var(--hero-card-position);
  transform: scale(var(--hero-card-zoom));
  transition: transform 0.38s ease;
}

.hero-card-link:hover .hero-card-image {
  transform: scale(var(--hero-card-hover-zoom));
}

.hero-card-overlay {
  position: absolute;
  left: auto;
  right: 18px;
  top: 18px;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 18, 28, 0.54);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    0 0 24px color-mix(in srgb, var(--hero-card-accent) 32%, transparent);
  backdrop-filter: blur(16px);
}

.hero-card-overlay strong,
.hero-card-overlay em {
  font-family: "Plus Jakarta Sans", Inter, Graphik, "Segoe UI", system-ui, sans-serif;
  line-height: 1;
}

.hero-card-overlay strong {
  font-size: 12px;
  font-weight: 850;
}

.hero-card-overlay em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.card-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-dark);
  background: rgba(15, 110, 169, 0.08);
}

.hero-card-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.hero-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-card-meta {
  display: grid;
  gap: 10px;
}

.hero-card-meta span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.hero-card-meta strong,
.hero-card-meta em {
  font-weight: 700;
}

.hero-card-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 12px;
}

.hero-card-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 110, 169, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-card-button:hover {
  background: rgba(15, 110, 169, 0.12);
  border-color: rgba(15, 110, 169, 0.28);
  box-shadow: 0 12px 24px rgba(15, 110, 169, 0.08);
  transform: translateY(-1px);
}

.hero-card-button:active {
  transform: translateY(0) scale(0.96);
}

.hero-card-pagination {
  min-width: 72px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.home-ops-card .ops-top span,
.home-ops-card .ops-row b {
  color: var(--blue-dark);
}

.home-ops-card .ops-row span {
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.ops-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ops-top span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #d9f7ff;
  font-size: 12px;
  font-weight: 900;
}

.ops-row {
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
}

.ops-row span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110, 212, 242, 0.9), rgba(255, 255, 255, 0.4));
}

.ops-row b {
  color: #6ed4f2;
  font-size: 13px;
  text-align: right;
}

.ops-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.ops-tabs span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.section,
.trust-band {
  background: #ffffff;
}

.home-page .section,
.home-page .trust-band {
  background: #ffffff;
}

.section.pale,
.trust-band {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.home-page .section.pale,
.home-page .trust-band {
  background: #ffffff;
}

.section.pale .section-inner.featured-products-panel {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 38px;
  box-shadow: 0 36px 110px rgba(21, 19, 15, 0.08);
  backdrop-filter: blur(18px);
  padding: var(--space-section, 92px) 46px;
}

.section.dark {
  color: #fff;
  background: var(--navy);
}

.home-page .section.dark {
  background: var(--charcoal);
}

.section-inner {
  width: min(var(--max), calc(100% - 2 * var(--page-gutter)));
  max-width: none;
  margin: 0 auto;
  padding: var(--space-section, clamp(120px, 12vw, 180px)) var(--page-gutter);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
  align-items: center;
}

.trust-grid p,
.trust-grid span {
  margin: 0;
}

.trust-grid p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.home-page .trust-grid span {
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 42px rgba(21, 19, 15, 0.06);
}

.split-intro,
.ecosystem-layout,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: var(--space-split, clamp(56px, 6vw, 88px));
  align-items: center;
}

.split-intro > p,
.muted {
  margin: 0;
  color: var(--color-muted-text);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading {
  max-width: var(--max-heading, min(40ch, 100%));
  margin-bottom: 34px;
}

.section .section-heading h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.12;
}

.section .section-heading h3 {
  font-size: 24px;
  line-height: 1.2;
}

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

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

/* Enterprise Software Suite */
.suite-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.suite-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-auto-rows: minmax(0, auto);
  gap: 24px;
  margin-top: 40px;
}

.suite-card {
  --card-accent: var(--blue);
  --card-accent-2: var(--cyan);
  --card-deep: var(--navy);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.07);
  opacity: 0;
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard),
    filter var(--motion-normal) var(--ease-standard);
}

.suite-card.is-revealed {
  opacity: 1;
  animation: suiteCardIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.suite-grid .suite-card.is-revealed:nth-child(1) { animation-delay: 0.05s; }
.suite-grid .suite-card.is-revealed:nth-child(2) { animation-delay: 0.16s; }
.suite-grid .suite-card.is-revealed:nth-child(3) { animation-delay: 0.27s; }

@keyframes suiteCardIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.suite-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-2));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.suite-card:hover,
.suite-card:focus-within {
  border-color: color-mix(in srgb, var(--card-accent) 34%, rgba(16, 24, 32, 0.1));
  box-shadow: 0 34px 80px color-mix(in srgb, var(--card-accent) 18%, rgba(16, 24, 32, 0.16));
  transform: translateY(-8px) scale(1.015);
}

.suite-card:hover::after,
.suite-card:focus-within::after {
  opacity: 1;
}

.suite-card[data-suite="flow"] {
  --card-accent: #d62828;
  --card-accent-2: #ffb3ab;
  --card-deep: #7a1515;
}

.suite-card[data-suite="mara"] {
  --card-accent: #3c9f73;
  --card-accent-2: #87d8aa;
  --card-deep: #123927;
}

.suite-card[data-suite="frontline"] {
  --card-accent: #ff5a24;
  --card-accent-2: #ffb089;
  --card-deep: #7a2808;
}

.suite-card-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}

.suite-card-visual {
  flex-shrink: 0;
}

.suite-card .card-dashboard {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
}

.suite-card .card-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.suite-card .card-toolbar strong {
  font-size: 14px;
}

.suite-card .dash-line {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 10px;
}

.suite-card .dash-line span {
  display: block;
}

.suite-card .dash-line:nth-child(2) span { width: 88%; }
.suite-card .dash-line:nth-child(3) span { width: 64%; }
.suite-card .dash-line:nth-child(4) span { width: 42%; }

.suite-card .metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.suite-visual-mini {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, color-mix(in srgb, var(--card-accent-2) 36%, transparent), transparent 34%),
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--card-accent) 34%, transparent), transparent 30%),
    linear-gradient(135deg, var(--card-deep), color-mix(in srgb, var(--card-accent) 62%, var(--card-deep)));
}

.suite-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.suite-mini-head strong {
  font-size: 14px;
}

.suite-mini-head span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 900;
}

.suite-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.suite-mini-stats > div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.suite-mini-stats strong {
  font-size: 16px;
}

.suite-mini-stats span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.suite-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  padding: 22px;
}

.suite-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.suite-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 24, 32, 0.08);
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.suite-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.suite-card:hover .suite-icon,
.suite-card:focus-within .suite-icon {
  transform: translateX(3px);
}

.suite-card-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.suite-card-featured .suite-card-head h3 {
  font-size: 24px;
}

.suite-kicker {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.suite-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.suite-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-capabilities li {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  font-size: 11.5px;
  font-weight: 800;
}

.suite-industries {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.suite-industries strong {
  color: var(--ink);
}

.suite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.suite-demo,
.suite-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
}

.suite-demo:not(.btn-liquid) {
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-hot), var(--demo-cta));
}

.suite-demo:not(.btn-liquid):hover,
.suite-demo:not(.btn-liquid):focus-visible {
  background: linear-gradient(135deg, var(--demo-cta), var(--demo-cta-hover));
}

.suite-learn {
  padding: 0 18px;
  border: 1.5px solid var(--demo-cta, #ff5a24);
  color: var(--demo-cta, #ff5a24);
  background: transparent;
}

.suite-learn:hover,
.suite-learn:focus-visible {
  border-color: var(--demo-cta, #ff5a24);
  background: rgba(255, 90, 36, 0.08);
  color: var(--demo-cta, #ff5a24);
}

.suite-cta-arrow {
  display: inline-block;
  transition: transform 0.15s ease-out;
}

.suite-demo:hover .suite-cta-arrow,
.suite-demo:focus-visible .suite-cta-arrow,
.suite-learn:hover .suite-cta-arrow,
.suite-learn:focus-visible .suite-cta-arrow {
  transform: translateX(4px);
}

/* Liquid-fill CTA — colored outline, bottom-to-top fill on hover */
@property --p {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

.suite-demo.btn-liquid,
.demo-button.btn-liquid,
.primary-action.btn-liquid,
.footer-cta.btn-liquid,
button.suite-demo.btn-liquid {
  --p: 0%;
  --t: 0s;
  --liquid: var(--demo-cta, #ff5a24);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  overflow: hidden;
  color: var(--liquid);
  background-color: #fff;
  background-image: linear-gradient(var(--liquid) 0 0);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% var(--p);
  border: 2px solid var(--liquid);
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    --p 0.4s ease,
    color 0.4s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.demo-button.btn-liquid,
.primary-action.btn-liquid {
  gap: 10px;
  padding: 4px 5px 4px 18px;
  border-radius: 999px;
}

.suite-demo.btn-liquid,
button.suite-demo.btn-liquid {
  padding: 0 20px;
  border-radius: 999px;
}

.footer-cta.btn-liquid {
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.primary-action.btn-liquid {
  min-height: 52px;
  font-size: 14px;
}

.suite-demo.btn-liquid:hover,
.suite-demo.btn-liquid:focus-visible,
.demo-button.btn-liquid:hover,
.demo-button.btn-liquid:focus-visible,
.primary-action.btn-liquid:hover,
.primary-action.btn-liquid:focus-visible,
.footer-cta.btn-liquid:hover,
.footer-cta.btn-liquid:focus-visible,
button.suite-demo.btn-liquid:hover,
button.suite-demo.btn-liquid:focus-visible {
  --p: 100%;
  --t: 0s;
  color: #fff;
  box-shadow: 0 14px 36px rgba(255, 90, 36, 0.32);
  /* Keep longhands stable — only --p should change (drives background-size) */
  background-color: #fff;
  background-image: linear-gradient(var(--liquid) 0 0);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% var(--p);
  transform: translateY(-2px) scale(1.02);
}

.home-page .demo-button.btn-liquid {
  color: var(--demo-cta, #ff5a24);
  background-color: #fff;
  background-image: linear-gradient(var(--demo-cta, #ff5a24) 0 0);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% var(--p, 0%);
  border: 2px solid var(--demo-cta, #ff5a24);
  box-shadow: none;
  transition:
    --p 0.3s var(--t, 0s),
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .demo-button.btn-liquid:hover,
.home-page .demo-button.btn-liquid:focus-visible {
  color: #fff;
  background-color: #fff;
  background-image: linear-gradient(var(--demo-cta, #ff5a24) 0 0);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% var(--p);
  box-shadow: 0 14px 36px rgba(255, 90, 36, 0.32);
}

/* Header nav pill — liquid fill must override glass pill + transform-only transitions */
.site-header .demo-button.btn-liquid {
  flex-shrink: 0;
  white-space: nowrap;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    --p 0.3s var(--t, 0s),
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header .demo-button.btn-liquid > span {
  white-space: nowrap;
}

.site-header .demo-button.btn-liquid:hover,
.site-header .demo-button.btn-liquid:focus-visible {
  transform: translateX(var(--home-cta-shift, 0px)) translateY(-2px) scale(calc(var(--home-pill-scale, 1) * 1.02));
}

.btn-liquid > span,
button.suite-demo.btn-liquid > * {
  position: relative;
  z-index: 1;
}

.btn-liquid > span {
  display: inline-flex;
  align-items: center;
  gap: inherit;
}

.demo-button.btn-liquid svg,
.primary-action.btn-liquid svg,
.footer-cta.btn-liquid svg {
  position: relative;
  z-index: 1;
  background: rgba(255, 90, 36, 0.12);
}

.demo-button.btn-liquid:hover svg,
.demo-button.btn-liquid:focus-visible svg,
.primary-action.btn-liquid:hover svg,
.primary-action.btn-liquid:focus-visible svg,
.footer-cta.btn-liquid:hover svg,
.footer-cta.btn-liquid:focus-visible svg {
  background: rgba(255, 255, 255, 0.22);
}

/* Purple liquid variant — Solution Builder CTA only */
.suite-demo.btn-liquid.btn-liquid--purple {
  --liquid: #9333ea;
}

.suite-demo.btn-liquid.btn-liquid--purple:hover,
.suite-demo.btn-liquid.btn-liquid--purple:focus-visible {
  box-shadow: 0 14px 36px rgba(147, 51, 234, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .btn-liquid,
  .suite-demo.btn-liquid,
  .demo-button.btn-liquid,
  .primary-action.btn-liquid,
  .footer-cta.btn-liquid {
    transition: color 0.2s ease, --p 0.2s ease, box-shadow 0.2s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suite-card {
    opacity: 1;
    transition: none;
  }

  .suite-card.is-revealed {
    animation: none;
  }
}

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

  .suite-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .suite-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .suite-card .card-dashboard {
    min-height: 220px;
  }

  .suite-actions .suite-demo,
  .suite-actions .suite-learn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Product Ecosystem Explorer */
.eco-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.eco-software-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid rgba(15, 110, 169, 0.16);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(230, 243, 251, 0.9), rgba(255, 255, 255, 0.9));
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.06);
}

.eco-software-copy strong {
  display: block;
  font-size: 17px;
}

.eco-software-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.eco-software-products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eco-software-products a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-dark);
  box-shadow: 0 6px 16px rgba(16, 24, 32, 0.06);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.eco-software-products a:hover,
.eco-software-products a:focus-visible {
  border-color: rgba(15, 110, 169, 0.4);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.1);
  transform: translateY(-2px);
}

.eco-software-products img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.eco-relationship-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.eco-relationship-node {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 110, 169, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.06);
}

.eco-relationship-node small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eco-relationship-node strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.42;
}

.eco-relationship-arrow {
  position: relative;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(15, 110, 169, 0.35), rgba(33, 169, 211, 0.7));
}

.eco-relationship-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(33, 169, 211, 0.86);
  border-right: 2px solid rgba(33, 169, 211, 0.86);
  transform: translateY(-50%) rotate(45deg);
}

.eco-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.eco-trust-signals li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 110, 169, 0.16);
  background: rgba(15, 110, 169, 0.07);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.eco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
  opacity: 0;
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard);
}

.eco-card.is-revealed {
  opacity: 1;
  animation: suiteCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.eco-grid .eco-card.is-revealed:nth-child(1) { animation-delay: 0.04s; }
.eco-grid .eco-card.is-revealed:nth-child(2) { animation-delay: 0.12s; }
.eco-grid .eco-card.is-revealed:nth-child(3) { animation-delay: 0.2s; }
.eco-grid .eco-card.is-revealed:nth-child(4) { animation-delay: 0.28s; }
.eco-grid .eco-card.is-revealed:nth-child(5) { animation-delay: 0.36s; }
.eco-grid .eco-card.is-revealed:nth-child(6) { animation-delay: 0.44s; }

.eco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg, var(--blue), var(--cyan), var(--teal), var(--blue));
  background-size: 280% 280%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.eco-card:hover,
.eco-card:focus-within {
  box-shadow: 0 34px 80px rgba(16, 24, 32, 0.16);
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(15, 110, 169, 0.28);
}

.eco-card:hover::before,
.eco-card:focus-within::before {
  opacity: 1;
  animation: ecoBorderPan 3.2s linear infinite;
}

@keyframes ecoBorderPan {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.eco-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.eco-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--motion-normal) var(--ease-smooth), opacity var(--motion-normal) var(--ease-standard);
}

.eco-card:hover .eco-icon,
.eco-card:focus-within .eco-icon {
  transform: translateX(3px);
}

.eco-card h3 {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.25;
}

.eco-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.eco-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.eco-chips li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform var(--motion-fast) var(--ease-smooth),
    background var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.eco-chips li:hover {
  transform: translateY(-2px);
  background: rgba(15, 110, 169, 0.13);
  box-shadow: 0 8px 18px rgba(15, 110, 169, 0.16);
}

.eco-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
}

.eco-arrow {
  display: inline-block;
  transition: transform 0.15s ease-out;
}

.eco-cta:hover .eco-arrow,
.eco-cta:focus-visible .eco-arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .eco-card {
    opacity: 1;
    transition: none;
  }

  .eco-card.is-revealed,
  .eco-card:hover::before,
  .eco-card:focus-within::before {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .eco-relationship-lane {
    grid-template-columns: 1fr;
  }

  .eco-relationship-arrow {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(15, 110, 169, 0.35), rgba(33, 169, 211, 0.7));
  }

  .eco-relationship-arrow::after {
    top: auto;
    bottom: -1px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }

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

  .eco-software-summary {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .eco-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .eco-relationship-node {
    min-height: auto;
  }

  .eco-software-summary {
    padding: 18px;
  }

  .eco-software-products {
    width: 100%;
  }

  .eco-software-products a {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Product Explorer */
.explorer-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.explorer-filters {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding: 8px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.03);
  width: fit-content;
  max-width: 100%;
}

.explorer-indicator {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 110, 169, 0.32);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), width 0.32s cubic-bezier(0.22, 1, 0.36, 1), height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.explorer-filter {
  position: relative;
  z-index: 1;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.25s ease;
}

.explorer-filter:hover {
  color: var(--ink);
}

.explorer-filter:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.explorer-filter.is-active {
  color: #fff;
}

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 32px;
  align-items: start;
  transition: opacity 0.18s ease;
}

.explorer-grid.is-switching {
  opacity: 0;
}

.explorer-card {
  --card-accent: var(--blue);
  --card-accent-2: var(--cyan);
  --card-deep: var(--navy);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
  animation: suiteCardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.explorer-card:nth-child(3n + 2) { animation-delay: 0.08s; }
.explorer-card:nth-child(3n) { animation-delay: 0.16s; }

.explorer-card.is-hidden {
  display: none;
}

.explorer-card:hover,
.explorer-card:focus-within {
  border-color: color-mix(in srgb, var(--card-accent) 32%, rgba(16, 24, 32, 0.1));
  box-shadow: 0 34px 80px color-mix(in srgb, var(--card-accent) 18%, rgba(16, 24, 32, 0.16));
  transform: translateY(-8px) scale(1.015);
}

.explorer-card[data-accent="flow"] { --card-accent: #d62828; --card-accent-2: #ffb3ab; --card-deep: #7a1515; }
.explorer-card[data-accent="mara"] { --card-accent: #3c9f73; --card-accent-2: #87d8aa; --card-deep: #123927; }
.explorer-card[data-accent="frontline"] { --card-accent: #ff5a24; --card-accent-2: #ffb089; --card-deep: #7a2808; }
.explorer-card[data-accent="steel"] { --card-accent: #60748a; --card-accent-2: #21a9d3; --card-deep: #172533; }
.explorer-card[data-accent="rfid"] { --card-accent: #5b6ee1; --card-accent-2: #21a9d3; --card-deep: #18224c; }
.explorer-card[data-accent="sap"] { --card-accent: #ef7a23; --card-accent-2: #0f6ea9; --card-deep: #152f46; }
.explorer-card[data-accent="mdm"] { --card-accent: #c9173f; --card-accent-2: #8f5cff; --card-deep: #351629; }

.explorer-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--card-accent-2) 34%, transparent), transparent 42%),
    linear-gradient(135deg, var(--card-deep), color-mix(in srgb, var(--card-accent) 58%, var(--card-deep)));
}

.explorer-visual-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.explorer-visual-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.explorer-visual-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--card-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.explorer-card:hover .explorer-visual-icon,
.explorer-card:focus-within .explorer-visual-icon {
  transform: translateX(3px);
}

.explorer-visual-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.explorer-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.explorer-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.explorer-body .suite-kicker {
  margin-top: -8px;
}

.explorer-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.explorer-tag-row {
  display: grid;
  gap: 6px;
}

.explorer-tag-label {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.explorer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.explorer-chips li {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform var(--motion-fast) var(--ease-smooth),
    background var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.explorer-chips li:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--card-accent, var(--blue)) 22%, #fff);
  border-color: color-mix(in srgb, var(--card-accent, var(--blue)) 46%, rgba(16, 24, 32, 0.12));
}

.explorer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.explorer-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 999px;
  background: transparent;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease-out, border-color 0.15s ease-out;
}

.explorer-learn:hover,
.explorer-learn:focus-visible {
  border-color: rgba(15, 110, 169, 0.45);
  background: rgba(15, 110, 169, 0.06);
}

.explorer-chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.explorer-card.is-open .explorer-chev {
  transform: rotate(225deg) translateY(-2px);
}

.explorer-more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.explorer-more-inner {
  overflow: hidden;
  display: grid;
  gap: 16px;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.08s;
}

.explorer-card.is-open .explorer-more {
  grid-template-rows: 1fr;
}

.explorer-card.is-open .explorer-more-inner {
  opacity: 1;
}

.explorer-more-inner > :first-child {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 32, 0.09);
}

.explorer-more-block h4 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.explorer-more-block p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.explorer-more-block ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.explorer-more-inner > .suite-demo {
  width: fit-content;
}

@media (prefers-reduced-motion: reduce) {
  .explorer-card {
    animation: none;
  }

  .explorer-indicator,
  .explorer-more,
  .explorer-more-inner,
  .explorer-grid {
    transition: none;
  }
}

/* Book a Demo experience */
.demo-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}

.demo-step-list {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-step-list::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 39px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(255, 255, 255, 0.18));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.demo-steps.is-revealed .demo-step-list::before {
  transform: scaleY(1);
}

.demo-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.demo-step.is-revealed {
  opacity: 1;
  animation: suiteCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.demo-step-list .demo-step.is-revealed:nth-child(1) { animation-delay: 0.05s; }
.demo-step-list .demo-step.is-revealed:nth-child(2) { animation-delay: 0.18s; }
.demo-step-list .demo-step.is-revealed:nth-child(3) { animation-delay: 0.31s; }

.demo-step:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.demo-step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--blue-dark);
  transition: transform 0.2s ease-out;
}

.demo-step:hover .demo-step-icon {
  transform: scale(1.08);
}

.demo-step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-step h3 {
  margin: 2px 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

.demo-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.58;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.demo-trust {
  margin-top: 22px;
}

.demo-visual {
  max-width: 470px;
  justify-self: end;
  width: 100%;
}

.demo-visual-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-visual-notes span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 30, 51, 0.07);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .demo-step {
    opacity: 1;
    transition: none;
  }

  .demo-step.is-revealed {
    animation: none;
  }

  .demo-step-list::before {
    transform: scaleY(1);
    transition: none;
  }
}

@media (max-width: 1100px) {
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-visual {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .demo-step-list::before {
    display: none;
  }

  .demo-actions .primary-action,
  .demo-actions .secondary-action {
    flex: 1 1 100%;
    justify-content: center;
  }

  .demo-visual {
    max-width: none;
  }
}

/* FAQ */
.faq-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.05);
  opacity: 0;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.faq-item.is-revealed {
  opacity: 1;
  animation: suiteCardIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.faq-list .faq-item.is-revealed:nth-child(1) { animation-delay: 0.03s; }
.faq-list .faq-item.is-revealed:nth-child(2) { animation-delay: 0.09s; }
.faq-list .faq-item.is-revealed:nth-child(3) { animation-delay: 0.15s; }
.faq-list .faq-item.is-revealed:nth-child(4) { animation-delay: 0.21s; }
.faq-list .faq-item.is-revealed:nth-child(5) { animation-delay: 0.27s; }
.faq-list .faq-item.is-revealed:nth-child(6) { animation-delay: 0.33s; }

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(15, 110, 169, 0.32);
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.09);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
  border-radius: 18px;
}

.faq-chev {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 2px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-chev {
  transform: rotate(225deg) translateY(-2px);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.28s ease 0.06s;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer-inner {
  opacity: 1;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item {
    opacity: 1;
  }

  .faq-item.is-revealed {
    animation: none;
  }

  .faq-answer,
  .faq-answer-inner,
  .faq-chev {
    transition: none;
  }
}

@media (max-width: 760px) {
  .faq-list {
    gap: 10px;
  }

  .faq-question {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 14.5px;
  }

  .faq-answer-inner p {
    padding: 0 16px 16px;
  }
}

/* Compatibility & Integrations */
.integ-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.integ-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.integ-card {
  --card-accent: var(--blue);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
  opacity: 0;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.integ-card[data-accent="flow"] { --card-accent: #d62828; }
.integ-card[data-accent="mara"] { --card-accent: #3c9f73; }
.integ-card[data-accent="frontline"] { --card-accent: #ff5a24; }

.integ-card.is-revealed {
  opacity: 1;
  animation: suiteCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.integ-grid .integ-card.is-revealed:nth-child(1) { animation-delay: 0.05s; }
.integ-grid .integ-card.is-revealed:nth-child(2) { animation-delay: 0.16s; }
.integ-grid .integ-card.is-revealed:nth-child(3) { animation-delay: 0.27s; }

.integ-card:hover,
.integ-card:focus-within {
  border-color: color-mix(in srgb, var(--card-accent) 32%, rgba(16, 24, 32, 0.1));
  box-shadow: 0 24px 56px color-mix(in srgb, var(--card-accent) 12%, rgba(16, 24, 32, 0.12));
  transform: translateY(-5px);
}

.integ-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.integ-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.integ-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.integ-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.integ-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 7px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.02);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out;
}

.integ-chips li:hover {
  border-color: rgba(15, 110, 169, 0.4);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.integ-ico {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  transition: transform 0.2s ease-out;
}

.integ-chips li:hover .integ-ico {
  transform: scale(1.12) rotate(-4deg);
}

.integ-ico svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integ-brand {
  font-size: 11px;
  font-weight: 900;
}

.integ-card .suite-demo {
  width: fit-content;
  margin-top: auto;
}

@media (prefers-reduced-motion: reduce) {
  .integ-card {
    opacity: 1;
    transition: none;
  }

  .integ-card.is-revealed {
    animation: none;
  }
}

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

@media (max-width: 760px) {
  .integ-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .integ-card .suite-demo {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .explorer-filters {
    border-radius: 22px;
    width: 100%;
  }

  .explorer-indicator {
    border-radius: 999px;
  }

  .explorer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .explorer-actions .explorer-learn,
  .explorer-actions .suite-demo {
    flex: 1 1 auto;
    justify-content: center;
  }
}

.product-card {
  --card-accent: #d62828;
  --card-accent-2: #ffb3ab;
  --card-deep: #7a1515;
  --card-soft: rgba(255, 236, 236, 0.94);
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(21, 19, 15, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--card-soft));
  box-shadow: 0 20px 44px rgba(21, 19, 15, 0.08);
  transform-origin: center bottom;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    filter 0.34s ease,
    opacity 0.34s ease;
  will-change: transform, filter, opacity;
}

.product-card:hover {
  z-index: 10;
  border-color: color-mix(in srgb, var(--card-accent) 48%, rgba(15, 110, 169, 0.28));
  box-shadow: 0 48px 140px color-mix(in srgb, var(--card-accent) 18%, rgba(16, 24, 32, 0.18));
  transform: translateY(-12px) scale(1.06);
}

.home-page .product-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 44%, rgba(21, 19, 15, 0.12));
  box-shadow: 0 34px 96px color-mix(in srgb, var(--card-accent) 16%, rgba(21, 19, 15, 0.12));
}

@media (hover: hover) and (pointer: fine) {
  .product-focus-panel {
    transition: transform 0.26s ease;
  }

  .product-focus-panel:hover {
    transform: translateY(-4px);
  }
}

.product-card .card-copy {
  display: grid;
  gap: 10px;
  padding: 18px 18px 90px;
}

.product-card .card-copy h3 {
  font-size: 18px;
  line-height: 1.22;
  color: var(--ink);
}

.product-card .card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.product-card .card-copy .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.product-card .card-copy .card-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.product-card .card-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  font-weight: 850;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.3s ease;
}

.product-card:hover .card-cta {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.product-card .card-cta::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.home-page .product-card {
  border-color: rgba(21, 19, 15, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--card-soft));
  box-shadow: 0 22px 62px rgba(21, 19, 15, 0.08);
}

.product-card:hover {
  z-index: 10;
  border-color: color-mix(in srgb, var(--card-accent) 48%, rgba(15, 110, 169, 0.28));
  box-shadow: 0 48px 140px color-mix(in srgb, var(--card-accent) 18%, rgba(16, 24, 32, 0.18));
  transform: translateY(-12px) scale(1.1);
}

.home-page .product-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 44%, rgba(21, 19, 15, 0.12));
  box-shadow: 0 34px 96px color-mix(in srgb, var(--card-accent) 16%, rgba(21, 19, 15, 0.12));
}

.home-page .featured-products-section .product-grid {
  align-items: start;
  gap: 14px;
  overflow: visible;
}

.home-page .featured-products-section .product-card {
  width: 100%;
  min-height: 0;
  height: 176px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(21, 19, 15, 0.055);
  transition:
    width 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    filter 0.34s ease,
    opacity 0.34s ease;
}

.home-page .featured-products-section .product-card .card-copy {
  position: relative;
  z-index: 2;
  padding: 12px 14px 58px;
  transition:
    opacity 0.24s ease,
    transform 0.34s ease;
}

.home-page .featured-products-section .product-card .card-copy h3 {
  font-size: 16px;
}

.home-page .featured-products-section .product-card .card-copy p {
  display: none;
  font-size: 12px;
  line-height: 1.4;
}

.home-page .featured-products-section .product-card .card-cta {
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 34px;
  border-radius: 9px;
  font-size: 12px;
}

.home-page .featured-products-section .product-card .card-cta::after {
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.home-page .featured-products-section .product-card:hover {
  transform: translateY(-8px) scale(1.04);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .featured-products-section .product-card:has(.card-display):hover {
    width: min(620px, calc(200% + 14px));
    height: 349px;
    transform: translateY(-14px);
  }

  .home-page .featured-products-section .product-card:has(.card-display):nth-child(3n + 1):hover {
    justify-self: start;
  }

  .home-page .featured-products-section .product-card:has(.card-display):nth-child(3n + 2):hover {
    justify-self: center;
  }

  .home-page .featured-products-section .product-card:has(.card-display):nth-child(3n):hover {
    justify-self: end;
  }

  .featured-products-section .section-heading {
    transition:
      filter 0.34s ease,
      opacity 0.34s ease,
      transform 0.34s ease;
  }

  .featured-products-section:has(.product-card:hover) .section-heading {
    filter: blur(2px);
    opacity: 0.46;
    transform: translateY(-3px);
  }

  .featured-products-section:has(.product-card:hover) .product-card:not(:hover) {
    filter: blur(3px) saturate(0.78);
    opacity: 0.5;
    transform: scale(0.97);
  }

  .featured-products-section:has(.product-card:hover) .product-card:hover {
    filter: none;
    opacity: 1;
  }
}

.card-dashboard {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 14px 16px 16px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, color-mix(in srgb, var(--card-accent-2) 36%, transparent), transparent 34%),
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--card-accent) 34%, transparent), transparent 30%),
    linear-gradient(135deg, var(--card-deep), color-mix(in srgb, var(--card-accent) 62%, var(--card-deep)));
}

.card-dashboard::before {
  content: "";
  position: absolute;
  inset: auto -30px -52px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent-2) 30%, transparent);
  opacity: 0.8;
  pointer-events: none;
}

.operations-layer-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.operations-layer {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.operations-layer-copy h2 {
  max-width: 640px;
}

.operations-layer-copy .muted {
  max-width: 590px;
  margin-top: 18px;
}

.operations-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.operations-tab {
  --tab-accent: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(21, 19, 15, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 32px rgba(21, 19, 15, 0.06);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 0.26s ease,
    color 0.26s ease,
    border-color 0.26s ease,
    transform 0.26s ease,
    box-shadow 0.26s ease;
}

.operations-tab::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--tab-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tab-accent) 13%, transparent);
  transition:
    background 0.26s ease,
    box-shadow 0.26s ease;
}

.operations-tab[data-layer-tab="warehouse"] { --tab-accent: #0f6ea9; }
.operations-tab[data-layer-tab="delivery"] { --tab-accent: #ff5a24; }
.operations-tab[data-layer-tab="sales"] { --tab-accent: #ff5a24; }
.operations-tab[data-layer-tab="assets"] { --tab-accent: #3c9f73; }
.operations-tab[data-layer-tab="erp"] { --tab-accent: #ef7a23; }
.operations-tab[data-layer-tab="devices"] { --tab-accent: #60748a; }

.operations-tab:hover,
.operations-tab.is-active {
  border-color: color-mix(in srgb, var(--tab-accent) 52%, rgba(255, 255, 255, 0.28));
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--tab-accent) 40%, var(--charcoal)), var(--charcoal));
  box-shadow: 0 18px 44px color-mix(in srgb, var(--tab-accent) 18%, rgba(21, 19, 15, 0.12));
  transform: translateY(-2px);
}

.operations-tab:hover::before,
.operations-tab.is-active::before {
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tab-accent) 30%, transparent);
}

.operations-visual {
  --layer-accent: var(--blue);
  --layer-accent-2: var(--cyan);
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, color-mix(in srgb, var(--layer-accent-2) 36%, transparent), transparent 27%),
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--layer-accent) 28%, transparent), transparent 28%),
    linear-gradient(135deg, #071e33, #102332 54%, #191714);
  box-shadow: 0 34px 100px rgba(16, 24, 32, 0.2);
  transition:
    background 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease;
}

.operations-visual[data-layer="delivery"] {
  --layer-accent: #ff5a24;
  --layer-accent-2: #21a9d3;
}

.operations-visual[data-layer="sales"] {
  --layer-accent: #ff5a24;
  --layer-accent-2: #21a9d3;
}

.operations-visual[data-layer="assets"] {
  --layer-accent: #3c9f73;
  --layer-accent-2: #21a9d3;
}

.operations-visual[data-layer="erp"] {
  --layer-accent: #ff5a24;
  --layer-accent-2: #0f6ea9;
}

.operations-visual[data-layer="devices"] {
  --layer-accent: #60748a;
  --layer-accent-2: #21a9d3;
}

.operations-visual::before,
.operations-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.operations-visual::before {
  inset: 48px -40px auto auto;
  width: 320px;
  height: 320px;
  border: 2px solid color-mix(in srgb, var(--layer-accent) 74%, transparent);
  border-radius: 50%;
  transform: rotate(-18deg);
  opacity: 0.42;
}

.operations-visual::after {
  right: 34px;
  bottom: 30px;
  width: 190px;
  height: 190px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--layer-accent-2) 54%, transparent), transparent),
    rgba(255, 255, 255, 0.06);
  transform: rotate(8deg);
  opacity: 0.48;
}

.operations-visual.is-changing {
  transform: translateY(-3px);
}

.operations-visual > * {
  position: relative;
  z-index: 1;
}

.operations-visual-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.operations-product,
.operations-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.operations-product {
  color: #fff;
  background: var(--layer-accent);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--layer-accent) 34%, transparent);
}

.operations-status {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
}

.operations-visual h3 {
  max-width: 560px;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.06;
}

.operations-visual p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.operations-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: 26px;
  align-items: center;
}

.operations-showcase > div {
  min-width: 0;
}

.operations-image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--layer-accent) 28%, rgba(255, 255, 255, 0.16));
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    color-mix(in srgb, var(--layer-accent) 14%, rgba(255, 255, 255, 0.08));
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.operations-image-frame::before {
  content: "";
  position: absolute;
  inset: auto -24px -42px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--layer-accent) 42%, transparent);
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
}

.operations-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 250px;
  object-fit: contain;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.operations-image-frame figcaption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.operations-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.operations-flow span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.operations-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.operations-metrics span {
  display: grid;
  align-content: center;
  min-height: 86px;
  padding: 14px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.operations-metrics strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.product-card[data-product="flow"] {
  --card-accent: #d62828;
  --card-accent-2: #ffb3ab;
  --card-deep: #7a1515;
  --card-soft: rgba(255, 236, 236, 0.95);
}

.product-card[data-product="pack"] {
  --card-accent: #ff5a24;
  --card-accent-2: #21a9d3;
  --card-deep: #083a48;
  --card-soft: rgba(255, 241, 232, 0.95);
}

.product-card[data-product="frontline"] {
  --card-accent: #ff5a24;
  --card-accent-2: #ffb089;
  --card-deep: #7a2808;
  --card-soft: rgba(255, 241, 232, 0.95);
}

.product-card[data-product="mara"] {
  --card-accent: #3c9f73;
  --card-accent-2: #87d8aa;
  --card-deep: #123927;
  --card-soft: rgba(237, 250, 243, 0.95);
}

.product-card[data-product="sap"] {
  --card-accent: #ef7a23;
  --card-accent-2: #0f6ea9;
  --card-deep: #152f46;
  --card-soft: rgba(255, 244, 233, 0.95);
}

.product-card[data-product="hardware"] {
  --card-accent: #60748a;
  --card-accent-2: #21a9d3;
  --card-deep: #172533;
  --card-soft: rgba(238, 243, 247, 0.95);
}

.product-card[data-product="rfid"] {
  --card-accent: #5b6ee1;
  --card-accent-2: #21a9d3;
  --card-deep: #18224c;
  --card-soft: rgba(240, 243, 255, 0.95);
}

.product-card[data-product="mdm"] {
  --card-accent: #c9173f;
  --card-accent-2: #8f5cff;
  --card-deep: #351629;
  --card-soft: rgba(255, 240, 244, 0.95);
}

.card-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.card-toolbar span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 900;
}

.card-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: 0 0 12px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.52), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    color-mix(in srgb, var(--card-accent) 20%, rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.12);
}

.card-product-media::before {
  content: "";
  position: absolute;
  inset: auto -28px -42px auto;
  width: 126px;
  height: 126px;
  border-radius: 38px;
  background: color-mix(in srgb, var(--card-accent-2) 38%, transparent);
  transform: rotate(10deg);
  opacity: 0.72;
  pointer-events: none;
}

.card-product-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 218px;
  height: 132px;
  object-fit: contain;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.13);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease;
}

.product-card:hover .card-product-media img {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.card-visual {
  position: absolute;
  inset: 44px 10px 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.82), transparent 38%),
    color-mix(in srgb, var(--card-accent) 12%, #fff);
  box-shadow: 0 12px 28px rgba(7, 30, 51, 0.08);
  transition:
    inset 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.4s ease,
    box-shadow 0.45s ease;
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.42), transparent 46%);
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.card-logo-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 12px;
  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-logo {
  display: block;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.card-logo-wide {
  max-width: 172px;
  max-height: 54px;
}

.card-logo-tall {
  max-width: 82px;
  max-height: 72px;
}

.card-logo-text {
  color: var(--card-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.card-display {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.08);
  transition:
    opacity 0.34s ease,
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.42s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-page .featured-products-section .product-card:has(.card-display):hover .card-visual {
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 24px 70px rgba(7, 30, 51, 0.2);
  }

  .home-page .featured-products-section .product-card:has(.card-display):hover .card-visual::after {
    opacity: 0.32;
  }

  .home-page .featured-products-section .product-card:has(.card-display):hover .card-logo-stage {
    opacity: 0;
    transform: scale(0.9);
  }

  .home-page .featured-products-section .product-card:has(.card-display):hover .card-copy {
    opacity: 0;
    transform: translateY(-6px);
  }

  .home-page .featured-products-section .product-card:has(.card-display):hover .card-display {
    opacity: 1;
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1);
  }

  .home-page .featured-products-section .product-card:has(.card-display):hover .card-cta {
    right: auto;
    width: 118px;
    background: rgba(255, 255, 255, 0.88);
  }
}

.product-card:hover .dash-line:nth-child(3) {
  transform: translateX(8px);
}

.dash-line span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), color-mix(in srgb, var(--card-accent-2) 76%, #fff));
}

.dash-line b {
  color: color-mix(in srgb, var(--card-accent-2) 72%, #fff);
  font-size: 12px;
  text-align: right;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 800;
}

.metric-row span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.card-copy {
  padding: 18px 18px 90px;
}

.card-copy h3 {
  font-size: 18px;
  line-height: 1.22;
  color: var(--ink);
}

.card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.card-copy p {
  margin: 0;
  opacity: 0;
  max-height: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  transition: opacity 0.32s ease, max-height 0.32s ease, margin 0.32s ease;
}

.product-card:hover .card-copy p {
  margin: 10px 0 0;
  opacity: 1;
  max-height: 240px;
}

.card-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px);
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.card-cta::after {
  content: "->";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #fff;
}

.product-card:hover .card-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.workflow-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.workflow-diagram div {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(21, 19, 15, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(16, 24, 32, 0.07);
}

.home-page .workflow-diagram div {
  background: #fffaf3;
}

.workflow-diagram span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.workflow-diagram strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.product-focus-section {
  padding-top: 0;
}

.products-page main > .section .section-inner {
  padding-top: 56px;
  padding-bottom: 56px;
}

.products-page .platform-section,
.products-page .integrations-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 251, 0.55));
}

.product-focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(15, 110, 169, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 251, 0.94));
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.08);
}

.product-focus-copy h2 {
  max-width: 700px;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.2;
}

.product-focus-copy p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.68;
}

.product-focus-stats {
  display: grid;
  gap: 12px;
}

.stat-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 110, 169, 0.1);
}

.stat-card strong {
  color: var(--blue-dark);
  font-size: 20px;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.hero-module-grid span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-flow-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-flow-chain span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-capability-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
}

.hero-capability-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fe2b8;
}

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

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

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

.info-tile {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.info-tile:hover {
  border-color: rgba(15, 110, 169, 0.42);
  box-shadow: 0 26px 64px rgba(16, 24, 32, 0.12);
  transform: translateY(-4px) scale(1.01);
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
}

.tile-icon.logo {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    color-mix(in srgb, var(--logo-accent, var(--blue)) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--logo-accent, var(--blue)) 18%, rgba(21, 19, 15, 0.08));
  box-shadow:
    0 12px 26px color-mix(in srgb, var(--logo-accent, var(--blue)) 12%, rgba(16, 24, 32, 0.06)),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.tile-icon.logo img {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
  transform: scale(var(--logo-scale, 1));
}

.tile-icon.teal { background: var(--teal); }
.tile-icon.cyan { background: var(--cyan); }
.tile-icon.green { background: var(--green); }
.tile-icon.sky { background: #178fc5; }
.tile-icon.navy { background: var(--navy); }
.tile-icon.steel { background: #60748a; }

.info-tile h3 {
  font-size: 25px;
}

.info-tile p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.52;
}

.info-tile a {
  width: fit-content;
  margin-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.info-tile a:hover {
  color: var(--blue-dark);
}

.process-lane {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-lane div {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.process-lane div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 2px;
  background: rgba(110, 212, 242, 0.72);
}

.process-lane div:last-child::after {
  display: none;
}

.process-lane span {
  color: #6ed4f2;
  font-size: 13px;
  font-weight: 900;
}

.process-lane strong {
  display: block;
  margin: 16px 0 8px;
  color: #fff;
  font-size: 20px;
}

.process-lane p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.cta-panel {
  padding-top: var(--space-section, 92px);
  padding-bottom: var(--space-section, 92px);
}

.cta-panel > .primary-action {
  justify-self: end;
  align-self: center;
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.cta-panel.light {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 18%, rgba(33, 169, 211, 0.18), transparent 30%),
    #fff;
  box-shadow: 0 22px 58px rgba(16, 24, 32, 0.08);
}

.cta-panel.light p:not(.eyebrow) {
  color: var(--muted);
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: start;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.step-grid div {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.step-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 28px;
}

.step-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 169, 211, 0.16), transparent 34%),
    var(--surface);
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.1);
}

.demo-form label {
  display: grid;
  gap: 7px;
}

.demo-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 110, 169, 0.12);
}

.demo-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.demo-form button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.legal-content {
  width: min(var(--max-narrow), 100%);
  max-width: none;
}

.legal-content h2 {
  font-size: clamp(32px, 3.2vw, 42px);
}

.legal-content h3 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.site-footer {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 40% at 12% 0%, rgba(15, 110, 169, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 8%, rgba(58, 95, 191, 0.06), transparent 50%),
    linear-gradient(180deg, #f4f8ff 0%, #eef5ff 55%, #e8f2ff 100%);
  border-top: 1px solid rgba(15, 110, 169, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(920px, 86%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(15, 110, 169, 0.22) 20%,
    rgba(15, 110, 169, 0.22) 80%,
    transparent 100%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-shell {
  display: grid;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 36px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: start;
}

.footer-identity,
.footer-contact-card {
  position: relative;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-identity {
  display: grid;
  gap: 22px;
  padding: 0;
}

.footer-identity::after {
  display: none;
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.footer-brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  box-shadow: 0 12px 28px rgba(15, 110, 169, 0.22);
}

.footer-identity p {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.footer-action-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cta,
.footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.footer-cta:not(.btn-liquid) {
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-hot), var(--demo-cta));
  box-shadow: 0 14px 30px rgba(255, 90, 36, 0.28);
}

.footer-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s ease;
}

.footer-cta:hover,
.footer-secondary:hover {
  transform: translateY(-2px);
}

.footer-cta:hover svg {
  transform: translateX(3px);
}

.footer-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 110, 169, 0.16);
}

.footer-secondary:hover {
  background: #fff;
  border-color: rgba(15, 110, 169, 0.28);
  box-shadow: 0 10px 24px rgba(15, 110, 169, 0.08);
}

.footer-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  padding-top: 4px;
}

.footer-proof-grid span {
  display: grid;
  gap: 4px;
  min-height: 0;
  padding: 0 0 0 14px;
  border: none;
  border-left: 2px solid rgba(15, 110, 169, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.footer-proof-grid b {
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 800;
}

.footer-contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0;
}

.footer-kicker {
  margin: 0;
  color: var(--color-section-eyebrow, var(--blue));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-link {
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.12;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--blue);
  transform: translateX(2px);
}

.footer-mini-status {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 4px;
  padding: 14px 0 0;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(15, 110, 169, 0.12);
}

.footer-mini-status span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #31c27c;
  box-shadow: 0 0 0 5px rgba(49, 194, 124, 0.12);
}

.footer-mini-status p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 1fr 0.85fr 0.85fr;
  gap: 28px 32px;
  padding: 8px 0 8px;
}

.footer-links-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.footer-links-grid a {
  width: fit-content;
  color: var(--color-body-text);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-grid a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 110, 169, 0.12);
  color: var(--color-secondary-text);
  font-size: 13.5px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom-links a {
  color: var(--color-secondary-text);
}

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

@media (max-width: 1100px) {
  .nav-shell { display: none; }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
  }

  .mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .mobile-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 110px 24px 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--nav-label);
    background: #fff;
    font-size: 24px;
    font-weight: 780;
    transition:
      color var(--nav-motion),
      background var(--nav-motion),
      border-color var(--nav-motion);
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--nav-hover);
    border-color: rgba(15, 110, 169, 0.28);
    background: var(--nav-hover-bg);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .ops-card { display: none; }

  .hero-3d {
    inset: auto 0 16px auto;
    width: 100%;
    min-height: 280px;
    opacity: 0.72;
  }
}

@media (max-width: 980px) {
  .operations-layer {
    grid-template-columns: 1fr;
  }

  .operations-layer-copy h2,
  .operations-layer-copy .muted {
    max-width: none;
  }

  .operations-visual {
    min-height: auto;
  }

  .operations-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    padding: 0 16px;
  }

  .brand {
    width: 44px;
    min-width: 44px;
    padding: 4px;
  }

  .brand.brand--wordmark {
    width: auto;
    min-width: 0;
    max-width: min(200px, 52vw);
    height: 38px;
    padding: 3px 9px;
  }

  .brand.brand--wordmark img {
    height: 30px;
    max-width: 100%;
  }

  .brand span { display: none; }

  .demo-button {
    min-height: 40px;
    padding-left: 14px;
  }

  .demo-button span {
    font-size: 0;
  }

  .demo-button span::after {
    content: "Demo";
    font-size: 13px;
  }

  .demo-button svg {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 0;
  }

  .home-hero {
    min-height: 0;
    padding-top: 96px;
  }

  .hero-content {
    padding: 120px 16px 48px;
  }

  .home-page .hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-3d {
    min-height: 260px;
  }

  .hero-3d-fallback {
    grid-template-columns: repeat(3, 48px);
    gap: 12px;
  }

  .hero-3d-fallback span {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-proof-label {
    width: 100%;
  }

  .hero-proof-rail {
    width: 100%;
  }

  .trust-logo-card {
    min-width: 142px;
    min-height: 48px;
    padding: 0 16px;
  }

  .primary-action,
  .secondary-action {
    justify-content: center;
  }

  .section-inner {
    padding: 56px 16px;
  }

  .trust-grid,
  .split-intro,
  .ecosystem-layout,
  .operations-layer,
  .capability-layout,
  .cta-panel,
  .contact-layout,
  .product-grid,
  .product-grid.four,
  .workflow-diagram,
  .tile-grid,
  .tile-grid.solutions,
  .tile-grid.values,
  .process-lane,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    gap: 36px;
    padding-top: 64px;
    padding-bottom: 28px;
  }

  .footer-identity,
  .footer-contact-card {
    border-radius: 0;
    padding: 0;
  }

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

  .footer-proof-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card {
    min-height: 520px;
  }

  .home-page .featured-products-section .product-card {
    min-height: 190px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero .section-inner {
    padding-top: 108px;
    padding-bottom: 48px;
  }

  .process-lane div::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 24px;
    width: 2px;
    height: 16px;
  }

  .cta-panel.light {
    padding: 22px;
  }

  .team-call-pill {
    justify-content: center;
  }

  .capability-tab {
    min-height: 62px;
    padding: 0 16px;
  }

  .capability-tab::after {
    width: 36px;
    height: 36px;
  }

  .operations-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .operations-tab {
    justify-content: center;
    min-height: 46px;
    padding: 0 12px;
  }

  .operations-visual {
    padding: 24px;
    border-radius: 22px;
  }

  .operations-visual::before {
    width: 220px;
    height: 220px;
  }

  .operations-visual::after {
    right: 20px;
    bottom: 24px;
    width: 126px;
    height: 126px;
    border-radius: 24px;
  }

  .operations-visual-top {
    margin-bottom: 30px;
  }

  .operations-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .operations-image-frame {
    padding: 12px;
    border-radius: 18px;
  }

  .operations-image {
    max-height: 220px;
    border-radius: 14px;
  }

  .operations-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .operations-flow span {
    min-height: 62px;
  }

  .operations-metrics {
    grid-template-columns: 1fr;
  }

  .operations-metrics span {
    min-height: 74px;
  }
}

@media (min-width: 1101px) {
  .site-header {
    top: var(--home-header-top, 16px);
    transition: padding 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header .header-inner {
    width: min(var(--home-header-width), calc(100% - 2 * var(--page-gutter)));
    max-width: none;
    display: grid;
    grid-template-columns:
      var(--home-header-side-start, var(--home-header-side, minmax(130px, 1fr)))
      var(--home-header-nav, auto)
      var(--home-header-side-end, var(--home-header-side, minmax(130px, 1fr)));
    align-items: center;
    justify-content: stretch;
    gap: var(--home-header-gap, 18px);
    padding: var(--home-header-padding, 0px);
    transition:
      box-shadow 0.4s ease,
      background 0.4s ease;
  }

  .site-header .header-inner::before {
    inset: var(--home-rail-inset, -7px);
    opacity: var(--home-rail-opacity, 0.18);
    transform: scaleX(var(--home-rail-scale, 0.98));
    pointer-events: none;
    animation: none;
    transition:
      background 0.4s ease,
      box-shadow 0.4s ease;
  }

  .home-page .header-inner:hover .nav-shell,
  .home-page .header-inner.is-pointer-active .nav-shell {
    transform: translateY(var(--home-nav-lift, -1px)) scale(var(--home-nav-scale, 1.01));
  }

  .home-page .header-inner.is-pointer-active .nav-shell {
    transform: translateY(calc(var(--home-nav-lift, -1px) + var(--header-y, 0px) * 0.1))
      scale(var(--home-nav-scale, 1.01));
  }

  .site-header .brand,
  .site-header .brand.brand--wordmark {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
    position: relative;
    z-index: 3;
    transform: translateX(var(--home-brand-shift, 0px)) scale(var(--home-pill-scale, 1));
    transform-origin: right center;
    /* Scroll condense is JS-driven — no transform transition (avoids tick) */
    transition: none;
  }

  .site-header .nav-shell {
    position: static;
    grid-column: 2;
    justify-self: center;
    left: auto;
    z-index: 2;
    transform: translateY(var(--home-nav-lift, 0px)) scale(var(--home-nav-scale, 1));
    transition: none;
  }

  .site-header .demo-button,
  .site-header .demo-button.btn-liquid {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    width: max-content;
    max-width: none;
    white-space: nowrap;
    transform: translateX(var(--home-cta-shift, 0px)) scale(var(--home-pill-scale, 1));
    transform-origin: left center;
    transition:
      --p 0.3s var(--t, 0s),
      color 0.3s ease,
      box-shadow 0.3s ease;
  }

  .site-header .demo-button > span {
    white-space: nowrap;
  }

  .site-header .header-inner:hover .brand,
  .site-header .header-inner:hover .brand.brand--wordmark,
  .home-page .header-inner.is-pointer-active .brand,
  .home-page .header-inner.is-pointer-active .brand.brand--wordmark {
    transform: translateX(calc(var(--home-brand-shift, 0px) + 4px)) translateY(-1px) scale(0.75);
    transform-origin: right center;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header .header-inner:hover .nav-shell {
    transform: translateY(-1px) scale(1.01);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header .header-inner:hover .demo-button,
  .site-header .header-inner:hover .demo-button.btn-liquid,
  .home-page .header-inner.is-pointer-active .demo-button,
  .home-page .header-inner.is-pointer-active .demo-button.btn-liquid {
    transform: translateX(calc(var(--home-cta-shift, 0px) - 4px)) translateY(-1px) scale(0.75);
    transform-origin: left center;
    transition:
      --p 0.3s var(--t, 0s),
      color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header .header-inner:hover .demo-button.btn-liquid:hover,
  .site-header .header-inner:hover .demo-button.btn-liquid:focus-visible,
  .home-page .header-inner.is-pointer-active .demo-button.btn-liquid:hover,
  .home-page .header-inner.is-pointer-active .demo-button.btn-liquid:focus-visible {
    transform: translateX(calc(var(--home-cta-shift, 0px) - 4px)) translateY(-2px) scale(0.765);
  }
}

.team-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 6px 18px 6px 8px;
  border: 1px solid rgba(21, 19, 15, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 42px rgba(21, 19, 15, 0.08);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.team-call-pill:hover {
  border-color: rgba(255, 90, 36, 0.34);
  background: #fff;
  transform: translateY(-2px);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.avatar-stack i:first-child {
  margin-left: 0;
}

.avatar-stack i:nth-child(2) {
  background: var(--orange);
}

.avatar-stack i:nth-child(3) {
  background: var(--charcoal);
}

.home-capability-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(248, 244, 236, 0.92), rgba(232, 244, 251, 0.96));
}

.home-capability-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 30%), radial-gradient(circle at bottom right, rgba(15, 110, 169, 0.08), transparent 24%);
  pointer-events: none;
}

.capability-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
}

.capability-provides {
  display: grid;
  gap: 16px;
}

.capability-feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-feature-list li {
  margin: 0;
}

.capability-feature-item {
  --capability-accent: var(--blue);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 60px 18px 24px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--capability-accent) 12%, rgba(255, 255, 255, 0.78));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    color-mix(in srgb, var(--capability-accent) 3%, transparent);
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(21, 19, 15, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px) saturate(1.28);
}

.capability-feature-item::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 14px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--capability-accent) 82%, #fff), var(--capability-accent));
  box-shadow: 0 0 20px color-mix(in srgb, var(--capability-accent) 42%, transparent);
  opacity: 0.42;
  transform: scaleY(0.32);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.capability-feature-item::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 18px;
  transition: transform 0.22s ease, color 0.22s ease;
}

.capability-feature-item::after {
  content: "->";
}

.capability-feature-item[data-capability="warehouse"] { --capability-accent: #ff3b6b; }
.capability-feature-item[data-capability="delivery"] { --capability-accent: #0877d8; }
.capability-feature-item[data-capability="sales"] { --capability-accent: #ff5a24; }
.capability-feature-item[data-capability="assets"] { --capability-accent: #46bd22; }
.capability-feature-item[data-capability="erp"] { --capability-accent: #7c4dff; }

.capability-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: color-mix(in srgb, var(--capability-accent) 82%, #111);
  background:
    radial-gradient(circle at 35% 20%, color-mix(in srgb, var(--capability-accent) 26%, #fff), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.46);
  border: 1px solid color-mix(in srgb, var(--capability-accent) 32%, rgba(255, 255, 255, 0.68));
  box-shadow:
    0 10px 24px color-mix(in srgb, var(--capability-accent) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -8px 16px rgba(255, 255, 255, 0.3);
  font-family: "Plus Jakarta Sans", Inter, Graphik, "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.capability-feature-item:hover,
.capability-feature-item:focus-visible,
.capability-feature-item.is-active {
  background:
    radial-gradient(circle at 10% 50%, color-mix(in srgb, var(--capability-accent) 24%, transparent), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  border-color: color-mix(in srgb, var(--capability-accent) 38%, rgba(255, 255, 255, 0.64));
  transform: translateY(-1px);
  box-shadow:
    0 24px 54px color-mix(in srgb, var(--capability-accent) 18%, rgba(21, 19, 15, 0.08)),
    0 0 0 5px color-mix(in srgb, var(--capability-accent) 9%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.42);
}

.capability-feature-item:hover::before,
.capability-feature-item:focus-visible::before,
.capability-feature-item.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.capability-feature-item:hover::after,
.capability-feature-item:focus-visible::after,
.capability-feature-item.is-active::after {
  transform: translateY(-50%) translateX(4px);
  color: var(--capability-accent);
}

.capability-copy {
  --capability-panel-accent: #ff3b6b;
  display: grid;
  gap: 24px;
}

.capability-copy-head {
  display: grid;
  gap: 10px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.capability-copy.is-switching .capability-copy-head,
.capability-copy.is-switching .capability-insight-card {
  opacity: 0.35;
  transform: translateY(4px);
}

.capability-kicker {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--capability-panel-accent) 78%, #101820);
  background: color-mix(in srgb, var(--capability-panel-accent) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--capability-panel-accent) 18%, rgba(21, 19, 15, 0.08));
  font-family: "Plus Jakarta Sans", Inter, Graphik, "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.capability-copy h2 {
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.18;
  margin: 0;
  max-width: 560px;
  color: var(--color-section-heading);
}

.capability-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.capability-insight-card {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 620px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--capability-panel-accent) 18%, rgba(21, 19, 15, 0.1));
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--capability-panel-accent) 18%, transparent), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
  box-shadow:
    0 26px 70px color-mix(in srgb, var(--capability-panel-accent) 13%, rgba(21, 19, 15, 0.08)),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.capability-insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--capability-panel-accent) 34%, transparent), transparent 36%),
    repeating-linear-gradient(90deg, rgba(21, 19, 15, 0.035) 0 1px, transparent 1px 74px);
  opacity: 0.36;
  pointer-events: none;
}

.capability-insight-top,
.capability-flow,
.capability-progress,
.capability-metrics {
  position: relative;
  z-index: 1;
}

.capability-insight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.capability-insight-top span {
  color: color-mix(in srgb, var(--capability-panel-accent) 62%, var(--ink));
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-insight-top strong {
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.capability-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.capability-flow span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 19, 15, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.capability-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(21, 19, 15, 0.08);
  overflow: hidden;
}

.capability-progress span {
  display: block;
  width: var(--capability-progress, 76%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--capability-panel-accent), color-mix(in srgb, var(--capability-panel-accent) 52%, #fff));
  box-shadow: 0 0 18px color-mix(in srgb, var(--capability-panel-accent) 40%, transparent);
  transition: width 0.32s ease;
}

.capability-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.capability-metrics span {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 19, 15, 0.08);
}

.capability-metrics strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.capability-metrics em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.capability-copy .capability-list {
  margin: 24px 0 0;
  padding-left: 20px;
  list-style: disc;
  color: var(--ink);
}

.home-capability-section .capability-provides,
.home-capability-section .capability-copy {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-capability-section .capability-feature-list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-capability-section.is-revealed .capability-provides,
.home-capability-section.is-revealed .capability-copy {
  opacity: 1;
  transform: translateY(0);
}

.home-capability-section.is-revealed .capability-feature-list li:nth-child(1) {
  transition-delay: 0.08s;
}

.home-capability-section.is-revealed .capability-feature-list li:nth-child(2) {
  transition-delay: 0.16s;
}

.home-capability-section.is-revealed .capability-feature-list li:nth-child(3) {
  transition-delay: 0.24s;
}

.home-capability-section.is-revealed .capability-feature-list li:nth-child(4) {
  transition-delay: 0.32s;
}

.home-capability-section.is-revealed .capability-feature-list li:nth-child(5) {
  transition-delay: 0.4s;
}

.home-capability-section.is-revealed .capability-feature-list li {
  opacity: 1;
  transform: translateY(0);
}

.capability-feature-list li:hover {
  transform: translateY(-2px);
}

.capability-copy .capability-list li {
  margin-bottom: 12px;
  max-width: 580px;
  line-height: 1.7;
  font-size: 15px;
}

.capability-copy .capability-list strong {
  font-weight: 700;
}

@media (hover: none), (max-width: 760px) {
  .card-cta {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0 18px 18px;
  }

  .product-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .capability-tabs {
    order: 2;
  }

  .capability-copy {
    order: 1;
  }

  .capability-feature-item {
    min-height: 74px;
    padding-right: 46px;
  }

  .capability-insight-card {
    padding: 18px;
  }

  .capability-flow,
  .capability-metrics {
    grid-template-columns: 1fr;
  }

  .capability-tab {
    min-height: 62px;
    padding: 0 16px;
    font-size: clamp(24px, 9vw, 34px);
  }

  .capability-tab::after {
    width: 36px;
    height: 36px;
  }

  .cta-panel > .primary-action {
    justify-self: stretch;
  }
}

/* —— Products Page Advanced Phase 1 —— */
.industry-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.industry-filter-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-filter {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.industry-filter:hover {
  border-color: rgba(15, 110, 169, 0.35);
  color: var(--blue-dark);
}

.industry-filter.is-active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 110, 169, 0.28);
}

/* Dashboard previews */
.dash-preview {
  --dash-deep: #7a1515;
  --dash-accent: #d62828;
  --dash-accent-2: #ffb3ab;
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 240px;
  padding: 16px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--dash-accent-2) 34%, transparent), transparent 42%),
    linear-gradient(135deg, var(--dash-deep), color-mix(in srgb, var(--dash-accent) 58%, var(--dash-deep)));
}

.dash-preview-flow { --dash-deep: #7a1515; --dash-accent: #d62828; --dash-accent-2: #ffb3ab; }
.dash-preview-mara { --dash-deep: #123927; --dash-accent: #3c9f73; --dash-accent-2: #87d8aa; }
.dash-preview-frontline { --dash-deep: #7a2808; --dash-accent: #ff5a24; --dash-accent-2: #ffb089; }

.dash-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-preview-head strong { font-size: 14px; }

.dash-preview-head span,
.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dash-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.dash-preview-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dash-preview-modules span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 800;
}

.dash-preview-modules span.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--dash-deep);
}

.dash-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dash-preview-metrics > div {
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.dash-preview-metrics span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}

.dash-preview-metrics strong { font-size: 15px; }

.dash-preview-capability-grid > div {
  min-height: 58px;
}

.dash-preview-capability-grid strong {
  font-size: 12px;
  line-height: 1.35;
}

.dash-preview-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 6px;
  height: 52px;
}

.dash-preview-bars i {
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--dash-accent-2), var(--dash-accent));
  transform-origin: bottom center;
  animation: dashBarRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.dash-preview-bars i:nth-child(2) { animation-delay: 0.05s; }
.dash-preview-bars i:nth-child(3) { animation-delay: 0.1s; }
.dash-preview-bars i:nth-child(4) { animation-delay: 0.15s; }
.dash-preview-bars i:nth-child(5) { animation-delay: 0.2s; }
.dash-preview-bars i:nth-child(6) { animation-delay: 0.25s; }
.dash-preview-bars i:nth-child(7) { animation-delay: 0.3s; }

@keyframes dashBarRise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.dash-preview-donut {
  position: relative;
  width: 56px;
  height: 56px;
  color: var(--dash-accent-2);
}

.dash-preview-donut b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.dash-preview-sparkline {
  height: 40px;
  color: var(--dash-accent-2);
}

.dash-preview-sparkline svg {
  width: 100%;
  height: 100%;
}

.dash-preview-hover {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 30, 51, 0.88));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dash-preview-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.dash-preview-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dash-preview-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.dash-preview-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dash-accent-2), #fff);
  transform-origin: left center;
  animation: dashTrackFill 0.7s ease backwards;
}

@keyframes dashTrackFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.suite-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dash-deep);
  font-size: 11px;
  font-weight: 900;
}

/* Suite spotlight hover */
.suite-spotlight {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.suite-spotlight:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 72px color-mix(in srgb, var(--card-accent) 16%, rgba(16, 24, 32, 0.14));
}

.suite-spotlight:hover .dash-preview-hover {
  opacity: 1;
  transform: translateY(0);
}

.suite-spotlight:hover .suite-demo {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 18%, transparent);
}

/* Hero → Flow scroll transition */
#hero-flow-dashboard {
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(calc(1 - var(--hero-scroll, 0) * 0.06));
  opacity: calc(1 - var(--hero-scroll, 0) * 0.45);
}

#flow {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

body.flow-in-focus #flow {
  box-shadow: 0 0 0 2px color-mix(in srgb, #d62828 40%, transparent), 0 36px 80px color-mix(in srgb, #d62828 18%, rgba(16, 24, 32, 0.14));
  transform: translateY(calc(var(--flow-focus, 0) * -4px));
}

/* Industry filter states */
.industry-dim {
  opacity: 0.38;
  filter: saturate(0.7);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.industry-match {
  opacity: 1;
  filter: none;
}

.integ-card.industry-highlight {
  border-color: color-mix(in srgb, var(--card-accent) 40%, rgba(16, 24, 32, 0.1));
  box-shadow: 0 24px 56px color-mix(in srgb, var(--card-accent) 14%, rgba(16, 24, 32, 0.12));
}

/* Inside the Platform */
.platform-intro,
.workflow-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.platform-tab {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color var(--motion-normal) var(--ease-standard),
    color var(--motion-normal) var(--ease-standard),
    background var(--motion-normal) var(--ease-standard),
    box-shadow var(--motion-normal) var(--ease-standard),
    transform var(--motion-normal) var(--ease-smooth);
}

.platform-tab.is-active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(15, 110, 169, 0.28);
  transform: translateY(-1px);
}

.platform-panels {
  position: relative;
  transition: height var(--motion-premium) var(--ease-smooth);
}

.platform-panel {
  display: none;
  margin-top: 28px;
  animation: suiteCardIn 0.5s ease backwards;
  transition:
    opacity var(--motion-normal) var(--ease-standard),
    transform var(--motion-normal) var(--ease-smooth);
}

.platform-panel.is-active { display: block; }

.platform-panel.is-transitioning {
  will-change: transform, opacity;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(230, 243, 251, 0.5), #fff);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.07);
}

.platform-dash { min-height: 280px; border-radius: 18px; }

.platform-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.platform-copy > p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.platform-features,
.platform-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.platform-features li,
.platform-benefits li {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  font-size: 11.5px;
  font-weight: 800;
}

.platform-workflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.platform-workflow span:not(.platform-wf-arrow) {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(16, 24, 32, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.platform-wf-arrow {
  width: 18px;
  height: 2px;
  background: var(--blue);
  position: relative;
}

.platform-wf-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--blue);
}

.platform-hardware {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.platform-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.platform-section.is-revealed { opacity: 1; transform: translateY(0); }

/* Workflow visualization */
.workflow-viz {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding: 32px 20px;
}

.workflow-node {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 120px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
  opacity: 0;
  transform: translateY(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workflow-viz.is-revealed .workflow-node {
  animation: suiteCardIn 0.55s ease backwards;
}

.workflow-viz.is-revealed .workflow-node[data-step="1"] { animation-delay: 0.05s; }
.workflow-viz.is-revealed .workflow-node[data-step="2"] { animation-delay: 0.2s; }
.workflow-viz.is-revealed .workflow-node[data-step="3"] { animation-delay: 0.35s; }
.workflow-viz.is-revealed .workflow-node[data-step="4"] { animation-delay: 0.5s; }

.workflow-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.1);
}

.workflow-node-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.workflow-node strong { font-size: 14px; }
.workflow-node small { color: var(--muted); font-size: 11px; font-weight: 700; }

.workflow-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease 0.3s;
}

.workflow-viz.is-revealed .workflow-connector {
  transform: scaleX(1);
}

/* Partner badges */
.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.partner-badges.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 110, 169, 0.35);
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.1);
}

.partner-badge-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.partner-badge:hover .partner-badge-icon {
  transform: scale(1.08);
}

.partner-badge-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.partner-badge strong {
  font-size: 12px;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .dash-preview-bars i,
  .dash-preview-track i,
  .workflow-connector,
  #hero-flow-dashboard,
  #flow {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}

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

  .workflow-viz {
    flex-direction: column;
    gap: 8px;
  }

  .workflow-connector {
    width: 2px;
    height: 32px;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .workflow-viz.is-revealed .workflow-connector {
    transform: scaleY(1);
  }
}

@media (max-width: 760px) {
  .industry-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-badges {
    justify-content: center;
  }
}

/* —— Interactive Solution Builder —— */
.builder-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.builder-panel {
  display: grid;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.07);
}

.solution-builder-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-builder-section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.builder-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.3;
}

.builder-step-num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.builder-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-needs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-industry {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.builder-industry:hover {
  border-color: rgba(15, 110, 169, 0.4);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.builder-industry:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.builder-industry.is-active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(15, 110, 169, 0.28);
}

.builder-need {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color var(--motion-normal) var(--ease-standard), color var(--motion-normal) var(--ease-standard), background var(--motion-normal) var(--ease-standard);
}

.builder-need:hover,
.builder-need:focus-visible {
  border-color: rgba(15, 110, 169, 0.35);
  color: var(--blue-dark);
}

.builder-need.is-active {
  border-color: var(--blue);
  background: rgba(15, 110, 169, 0.1);
  color: var(--blue-dark);
}

.builder-software-grid {
  display: grid;
  gap: 12px;
}

.builder-software-grid.is-updating .builder-soft-card {
  animation: builderFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.builder-software-grid.is-updating .builder-soft-card:nth-child(2) {
  animation-delay: 0.08s;
}

@keyframes builderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.builder-soft-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.05);
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard);
}

.builder-soft-card[data-product="flow"] {
  border-color: color-mix(in srgb, #d62828 28%, rgba(16, 24, 32, 0.09));
}

.builder-soft-card[data-product="mara"] {
  border-color: color-mix(in srgb, #3c9f73 28%, rgba(16, 24, 32, 0.09));
}

.builder-soft-card[data-product="frontline"] {
  border-color: color-mix(in srgb, #ff5a24 28%, rgba(16, 24, 32, 0.09));
}

.builder-soft-card .suite-icon {
  width: 52px;
  height: 52px;
  border: 0;
  box-shadow: none;
  border-radius: 12px;
  padding: 6px;
  overflow: hidden;
}

.builder-soft-card .suite-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 54%;
  transform: scale(1.15);
}

.builder-soft-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(15, 110, 169, 0.32);
  box-shadow: 0 24px 56px rgba(16, 24, 32, 0.14);
}

.builder-soft-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.builder-soft-head h4 {
  margin: 4px 0 0;
  font-size: 16px;
}

.builder-soft-head .suite-kicker {
  margin-top: 2px;
}

.builder-soft-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.builder-enterprise-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.builder-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
}

.builder-learn:hover .suite-cta-arrow,
.builder-learn:focus-visible .suite-cta-arrow {
  transform: translateX(4px);
}

.builder-hardware-list,
.builder-integrations-list,
.builder-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.builder-step-hardware.is-updating .builder-hardware-list li,
.builder-step-integrations.is-updating .builder-integrations-list li,
.builder-step-benefits.is-updating .builder-benefits-list li {
  animation: builderFadeIn 0.4s ease backwards;
}

.builder-step-hardware.is-updating .builder-hardware-list li:nth-child(2),
.builder-step-integrations.is-updating .builder-integrations-list li:nth-child(2),
.builder-step-benefits.is-updating .builder-benefits-list li:nth-child(2) { animation-delay: 0.06s; }
.builder-step-hardware.is-updating .builder-hardware-list li:nth-child(3),
.builder-step-integrations.is-updating .builder-integrations-list li:nth-child(3),
.builder-step-benefits.is-updating .builder-benefits-list li:nth-child(3) { animation-delay: 0.12s; }
.builder-step-hardware.is-updating .builder-hardware-list li:nth-child(4),
.builder-step-integrations.is-updating .builder-integrations-list li:nth-child(4),
.builder-step-benefits.is-updating .builder-benefits-list li:nth-child(4) { animation-delay: 0.18s; }
.builder-step-hardware.is-updating .builder-hardware-list li:nth-child(5),
.builder-step-integrations.is-updating .builder-integrations-list li:nth-child(5),
.builder-step-benefits.is-updating .builder-benefits-list li:nth-child(5) { animation-delay: 0.24s; }

.builder-hardware-list li,
.builder-integrations-list li,
.builder-benefits-list li {
  padding: 8px 12px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.builder-benefits-list li {
  background: linear-gradient(135deg, rgba(230, 243, 251, 0.7), rgba(255, 255, 255, 0.9));
}

.builder-hardware-list li:hover,
.builder-integrations-list li:hover,
.builder-benefits-list li:hover {
  border-color: rgba(15, 110, 169, 0.35);
  background: var(--blue-soft);
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.builder-ecosystem {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 110, 169, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(33, 169, 211, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(230, 243, 251, 0.65));
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.08);
}

.builder-eco-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.builder-eco-viz {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 72px;
  padding: 16px 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.builder-eco-viz.is-updating .builder-eco-node {
  animation: builderFadeIn 0.4s ease backwards;
  animation-delay: calc(var(--i) * 0.07s);
}

.builder-eco-node {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 108px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.06);
  font-size: 12px;
  font-weight: 850;
  color: var(--ink);
  text-align: center;
}

.builder-eco-connector {
  flex: 0 0 16px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left center;
  animation: builderConnector 0.35s ease backwards;
  animation-delay: calc(var(--i, 0) * 0.07s + 0.05s);
}

@keyframes builderConnector {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.builder-eco-foot {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.builder-eco-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.builder-eco-stat strong {
  font-size: 24px;
  color: var(--blue-dark);
}

.builder-eco-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.builder-eco-caption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.relationship-map {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.relationship-map article {
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  background: #fff;
}

.relationship-map h3,
.relationship-map h4 {
  margin: 0 0 8px;
}

.relationship-map p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.capability-preview {
  margin: 16px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 243, 251, 0.45), #fff);
}

.capability-preview-label {
  margin: 0 0 6px;
  color: var(--color-section-eyebrow);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.capability-preview strong {
  display: block;
  font-size: 16px;
}

.capability-preview p {
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.capability-preview ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-preview li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.08);
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-dark);
}

.integration-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 20px 0 18px;
}

.integration-flow span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.integration-flow i {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.deployment-journey {
  margin-top: 16px;
}

.deployment-journey ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.deployment-journey li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.deployment-journey button {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  text-align: left;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.deployment-journey p {
  max-height: 0;
  margin: 0;
  padding: 0 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  line-height: 1.5;
  transition: max-height var(--motion-normal) var(--ease-smooth), padding var(--motion-normal) var(--ease-smooth);
}

.deployment-journey li:hover p,
.deployment-journey li:focus-within p {
  max-height: 84px;
  padding: 0 14px 12px;
}

.suite-card.is-current {
  outline: 2px solid color-mix(in srgb, var(--blue) 26%, transparent);
  outline-offset: 2px;
}

.platform-tab.is-product-current:not(.is-active) {
  border-color: color-mix(in srgb, var(--active-accent, var(--blue)) 44%, rgba(16, 24, 32, 0.14));
}

.eco-relationship-node {
  transition: box-shadow var(--motion-premium) var(--ease-smooth), border-color var(--motion-premium) var(--ease-smooth), transform var(--motion-premium) var(--ease-smooth);
}

.eco-relationship-node.is-lit {
  transform: translateY(-2px);
  border-color: rgba(15, 110, 169, 0.34);
  box-shadow: 0 14px 34px rgba(15, 110, 169, 0.14);
}

.products-page main > .section .section-inner {
  position: relative;
}

.products-page main > .section .section-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.45) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, 0.38) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 100%);
}

.products-page[data-active-product="flow"] { --active-accent: #d62828; }
.products-page[data-active-product="mara"] { --active-accent: #3c9f73; }
.products-page[data-active-product="frontline"] { --active-accent: #ff5a24; }

@media (max-width: 1100px) {
  .relationship-map {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .integration-flow i {
    display: none;
  }
}

.has-spotlight {
  position: relative;
  overflow: hidden;
}

.card-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--motion-normal) var(--ease-standard);
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 62%);
  will-change: opacity, transform;
}

.has-spotlight:hover .card-spotlight,
.has-spotlight:focus-within .card-spotlight {
  opacity: 1;
}

.products-page main > .section {
  transform: translateY(var(--section-depth, 0px));
  transition: transform var(--motion-premium) var(--ease-smooth);
}

.page-main {
  opacity: 0;
  transform: translateY(var(--motion-distance-sm, 10px));
  transition:
    opacity var(--motion-page-enter, 420ms) var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--motion-page-enter, 420ms) var(--ease-smooth, cubic-bezier(0.16, 1, 0.3, 1));
  will-change: opacity, transform;
}

body.page-enter-ready .page-main {
  opacity: 1;
  transform: translateY(0);
}

body.page-leaving .page-main {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--motion-page-leave, 220ms) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--motion-page-leave, 220ms) cubic-bezier(0.4, 0, 0.2, 1);
}

html.page-restore-instant .page-main,
html.page-restore-instant .evo-hero-sequence > *,
html.page-restore-instant .evo-hero-visual {
  transition: none !important;
}

.motion-reveal-item {
  opacity: 0;
  transform: translateY(var(--motion-distance, 24px));
  filter: blur(6px);
  transition:
    opacity var(--motion-reveal, 560ms) var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--motion-reveal, 560ms) var(--ease-smooth, cubic-bezier(0.16, 1, 0.3, 1)),
    filter var(--motion-reveal, 560ms) var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.workflow-node-icon {
  transition: transform var(--motion-normal) var(--ease-smooth), opacity var(--motion-normal) var(--ease-standard);
}

.workflow-node-icon.pulse-once {
  animation: workflowIconPulse var(--motion-premium) var(--ease-smooth) 1;
}

@keyframes workflowIconPulse {
  0% { transform: scale(1); opacity: 0.9; }
  45% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.eco-icon svg.tilt-once {
  animation: hardwareTilt var(--motion-normal) var(--ease-smooth) 1;
}

@keyframes hardwareTilt {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .page-main {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .solution-builder-section,
  .builder-software-grid.is-updating .builder-soft-card,
  .builder-eco-viz.is-updating .builder-eco-node,
  .builder-eco-connector,
  .builder-step-hardware.is-updating .builder-hardware-list li,
  .builder-step-benefits.is-updating .builder-benefits-list li,
  .products-page main > .section,
  .suite-card,
  .explorer-card,
  .eco-card,
  .builder-soft-card,
  .primary-action,
  .secondary-action,
  .platform-tab,
  .platform-panel,
  .motion-reveal-item,
  .evo-reveal,
  .solx-reveal,
  .demo-reveal,
  .evo-hero-sequence > *,
  .evo-hero-visual,
  .deployment-journey p,
  .integration-flow i,
  .eco-relationship-node {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .card-spotlight {
    display: none;
  }
}

@media (max-width: 1100px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-ecosystem {
    position: static;
  }
}

@media (max-width: 760px) {
  .builder-panel {
    padding: 18px;
  }

  .builder-actions .suite-demo,
  .builder-actions .suite-learn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .builder-eco-node {
    min-width: 96px;
    font-size: 11px;
  }
}

/* —— Solutions Page (Phase 1.5) —— */
.solutions-page .solutions-hero .sol-hero-grid-bg,
.solutions-page .solutions-hero .sol-hero-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.solutions-page .solutions-hero .section-inner {
  position: relative;
  z-index: 2;
}

.solutions-page .solutions-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 56px;
}

.solutions-page .solutions-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
}

.solutions-page .solutions-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.65;
}

.solutions-page .sol-hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: solGridDrift 24s linear infinite;
}

@keyframes solGridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(42px); }
}

.solutions-page .sol-hero-nodes span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(33, 169, 211, 0.55);
  box-shadow: 0 0 18px rgba(33, 169, 211, 0.45);
  animation: solNodeFloat 6s ease-in-out infinite;
}

.solutions-page .sol-hero-nodes span:nth-child(1) { top: 18%; left: 12%; }
.solutions-page .sol-hero-nodes span:nth-child(2) { top: 34%; right: 16%; animation-delay: 1.2s; }
.solutions-page .sol-hero-nodes span:nth-child(3) { bottom: 22%; left: 24%; animation-delay: 2.1s; }
.solutions-page .sol-hero-nodes span:nth-child(4) { bottom: 30%; right: 28%; animation-delay: 0.8s; }

@keyframes solNodeFloat {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-8px); opacity: 1; }
}

.solutions-page .sol-hero-flow-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(7, 30, 51, 0.24);
}

.solutions-page .sol-hero-flow-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solutions-page .sol-hero-flow-chain {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solutions-page .sol-hero-flow-chain span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.solutions-page .sol-hero-flow-chain i {
  display: block;
  width: 2px;
  height: 14px;
  margin-left: 18px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: solFlowPulse 2.4s ease-in-out infinite;
}

.solutions-page .sol-hero-flow-pulse {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 169, 211, 0.35), transparent 70%);
  animation: solFlowPulse 3s ease-in-out infinite;
}

@keyframes solFlowPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

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

.solutions-page .sol-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.solutions-page .sol-trust-card {
  padding: 18px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.05);
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-trust-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(15, 110, 169, 0.28);
  box-shadow: 0 20px 48px rgba(16, 24, 32, 0.1);
}

.solutions-page .sol-trust-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 110, 169, 0.1);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.solutions-page .sol-trust-card strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.solutions-page .sol-trust-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.solutions-page .sol-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  perspective: 1200px;
}

.solutions-page .sol-flip-card {
  min-height: 220px;
  outline: none;
}

.solutions-page .sol-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  transform-style: preserve-3d;
  transition: transform var(--motion-premium) var(--ease-smooth);
}

.solutions-page .sol-flip-card:hover .sol-flip-inner,
.solutions-page .sol-flip-card:focus .sol-flip-inner,
.solutions-page .sol-flip-card.is-flipped .sol-flip-inner {
  transform: rotateY(180deg);
}

.solutions-page .sol-flip-front,
.solutions-page .sol-flip-back {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 20px;
  background: #fff;
  backface-visibility: hidden;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.07);
}

.solutions-page .sol-flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, rgba(230, 243, 251, 0.9), #fff);
}

.solutions-page .sol-flip-back ul {
  margin: 0;
  padding-left: 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.solutions-page .sol-flip-hint {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.solutions-page .sol-enterprise-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.solutions-page .sol-enterprise-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 24, 32, 0.07);
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-enterprise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(16, 24, 32, 0.11);
}

.solutions-page .sol-enterprise-visual {
  min-height: 200px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 16%, rgba(33, 169, 211, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(7, 30, 51, 0.92), rgba(15, 110, 169, 0.72));
}

.solutions-page .sol-visual-warehouse { background: linear-gradient(145deg, #0f2a45, #1f7fb8); }
.solutions-page .sol-visual-assets { background: linear-gradient(145deg, #123927, #3c9f73); }
.solutions-page .sol-visual-sales { background: linear-gradient(145deg, #7a2808, #ff5a24); }
.solutions-page .sol-visual-rfid { background: linear-gradient(145deg, #18224c, #5b6ee1); }
.solutions-page .sol-visual-mobility { background: linear-gradient(145deg, #172533, #60748a); }
.solutions-page .sol-visual-collab { background: linear-gradient(145deg, #102b45, #26b6d2); }

.solutions-page .sol-enterprise-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.solutions-page .sol-enterprise-body > p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.solutions-page .sol-enterprise-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.solutions-page .sol-enterprise-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.solutions-page .sol-enterprise-meta ul {
  margin: 0;
  padding-left: 16px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.solutions-page .sol-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.solutions-page .sol-industry-card {
  padding: 18px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 18px;
  background: #fff;
  transition:
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-industry-card h3 {
  margin: 0;
  font-size: 18px;
}

.solutions-page .sol-industry-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--motion-premium) var(--ease-smooth),
    opacity var(--motion-normal) var(--ease-standard),
    margin-top var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-industry-card:hover,
.solutions-page .sol-industry-card:focus,
.solutions-page .sol-industry-card:focus-within {
  border-color: rgba(15, 110, 169, 0.28);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.09);
}

.solutions-page .sol-industry-card:hover .sol-industry-detail,
.solutions-page .sol-industry-card:focus .sol-industry-detail,
.solutions-page .sol-industry-card:focus-within .sol-industry-detail {
  max-height: 280px;
  margin-top: 12px;
  opacity: 1;
}

.solutions-page .sol-industry-detail p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.solutions-page .sol-process-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 8px;
  overflow-x: auto;
}

.solutions-page .sol-process-step {
  flex: 0 0 auto;
  min-width: 148px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.45;
  transition:
    opacity var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard),
    box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-process-step.is-lit {
  opacity: 1;
  border-color: rgba(33, 169, 211, 0.55);
  box-shadow: 0 0 24px rgba(33, 169, 211, 0.2);
}

.solutions-page .sol-process-step span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.solutions-page .sol-process-step strong {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #fff;
}

.solutions-page .sol-process-arrow {
  flex: 0 0 18px;
  align-self: center;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: background var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-process-arrow.is-lit {
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.4));
}

.solutions-page .sol-why-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.solutions-page .sol-why-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 22px;
  background: #fff;
}

.solutions-page .sol-why-row.is-reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.85fr);
}

.solutions-page .sol-why-row.is-reverse .sol-why-visual {
  order: 2;
}

.solutions-page .sol-why-visual {
  min-height: 160px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 169, 211, 0.3), transparent 45%),
    linear-gradient(135deg, rgba(7, 30, 51, 0.9), rgba(15, 110, 169, 0.65));
}

.solutions-page .sol-why-row h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.solutions-page .sol-why-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.solutions-page .sol-journey {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.solutions-page .sol-journey li {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color var(--motion-normal) var(--ease-standard), box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-journey li.is-open {
  border-color: rgba(15, 110, 169, 0.3);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.solutions-page .sol-journey button {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue-dark);
}

.solutions-page .sol-journey p {
  max-height: 0;
  margin: 0;
  padding: 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  transition: max-height var(--motion-normal) var(--ease-smooth), padding var(--motion-normal) var(--ease-smooth);
}

.solutions-page .sol-journey li.is-open p {
  max-height: 120px;
  padding: 0 12px 12px;
}

.solutions-page .sol-final-cta {
  position: relative;
  overflow: hidden;
}

.solutions-page .sol-cta-network {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 20% 30%, rgba(33, 169, 211, 0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(15, 110, 169, 0.3), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
}

.solutions-page .sol-cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.solutions-page .sol-cta-actions {
  display: grid;
  gap: 10px;
}

.solutions-page main > .section .motion-reveal-item {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--motion-premium) var(--ease-standard),
    transform var(--motion-premium) var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.solutions-page main > .section .motion-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .solutions-page .solutions-hero-layout,
  .solutions-page .sol-enterprise-card,
  .solutions-page .sol-why-row,
  .solutions-page .sol-why-row.is-reverse,
  .solutions-page .sol-cta-panel {
    grid-template-columns: 1fr;
  }

  .solutions-page .sol-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-page .sol-flip-grid,
  .solutions-page .sol-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-page .sol-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solutions-page .solutions-hero-layout {
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .solutions-page .sol-trust-grid,
  .solutions-page .sol-flip-grid,
  .solutions-page .sol-industry-grid,
  .solutions-page .sol-journey {
    grid-template-columns: 1fr;
  }

  .solutions-page .sol-enterprise-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-page .sol-hero-grid-bg,
  .solutions-page .sol-hero-nodes span,
  .solutions-page .sol-hero-flow-pulse,
  .solutions-page .sol-hero-flow-chain i,
  .solutions-page main > .section .motion-reveal-item {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .solutions-page .sol-flip-card:hover .sol-flip-inner,
  .solutions-page .sol-flip-card:focus .sol-flip-inner,
  .solutions-page .sol-flip-card.is-flipped .sol-flip-inner {
    transform: none;
  }

  .solutions-page .sol-flip-back {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .solutions-page .sol-flip-inner {
    display: grid;
    gap: 10px;
  }

  .solutions-page .sol-industry-detail,
  .solutions-page .sol-journey p {
    max-height: none;
    opacity: 1;
    padding: 0 12px 12px;
  }
}

/* —— Solutions Page Phase 1.75 Polish —— */
.solutions-page .solutions-hero::before {
  opacity: 0.42;
}

.solutions-page .sol-hero-flow-viz {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0;
  min-height: 260px;
}

.solutions-page .sol-flow-lines {
  width: 28px;
  height: 100%;
  min-height: 260px;
  overflow: visible;
}

.solutions-page .sol-flow-line {
  stroke: rgba(33, 169, 211, 0.45);
  stroke-width: 2;
}

.solutions-page .sol-flow-pulse {
  fill: var(--orange);
  filter: drop-shadow(0 0 6px rgba(245, 158, 66, 0.8));
}

.solutions-page .sol-hero-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions-page .sol-hero-flow-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: background var(--motion-normal) var(--ease-standard), transform var(--motion-normal) var(--ease-smooth);
}

.solutions-page .sol-hero-flow-steps li:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.solutions-page .sol-flow-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(33, 169, 211, 0.6);
  flex-shrink: 0;
}

.solutions-page .sol-flow-node.is-end {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(245, 158, 66, 0.55);
}

.solutions-page .sol-trust-card {
  position: relative;
  overflow: hidden;
}

.solutions-page .sol-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(15, 110, 169, 0.35), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-trust-card:hover::before {
  opacity: 1;
}

.solutions-page .sol-trust-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(15, 110, 169, 0.35);
  box-shadow: 0 22px 52px rgba(15, 110, 169, 0.14), 0 0 0 1px rgba(33, 169, 211, 0.12);
}

.solutions-page .sol-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  transition: transform var(--motion-normal) var(--ease-smooth), background var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-trust-icon svg {
  width: 20px;
  height: 20px;
}

.solutions-page .sol-trust-card:hover .sol-trust-icon {
  transform: scale(1.08) rotate(-2deg);
  background: rgba(15, 110, 169, 0.14);
}

.solutions-page .sol-trust-card:hover .sol-trust-badge {
  transform: scale(1.06);
}

.solutions-page .sol-trust-badge {
  transition: transform var(--motion-normal) var(--ease-smooth);
}

.solutions-page .sol-flip-card {
  min-height: 240px;
}

.solutions-page .sol-flip-inner {
  min-height: 240px;
}

.solutions-page .sol-flip-front,
.solutions-page .sol-flip-back {
  transition: opacity var(--motion-premium) var(--ease-smooth);
}

.solutions-page .sol-flip-back {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 20px;
}

.solutions-page .sol-flip-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: gap var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
}

.solutions-page .sol-flip-cta:hover {
  gap: 10px;
  color: var(--blue-dark);
}

.solutions-page .sol-enterprise-visual {
  position: relative;
  min-height: 200px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(7, 30, 51, 0.06), rgba(15, 110, 169, 0.08));
}

.solutions-page .sol-illust {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.solutions-page .sol-illust-why {
  min-height: 120px;
}

.solutions-page .sol-enterprise-card:hover .sol-illust {
  transform: scale(1.02);
  transition: transform var(--motion-premium) var(--ease-smooth);
}

.solutions-page .sol-industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(15, 110, 169, 0.08);
  color: var(--blue-dark);
  transition: transform var(--motion-normal) var(--ease-smooth), background var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-industry-icon svg {
  width: 22px;
  height: 22px;
}

.solutions-page .sol-industry-card:hover .sol-industry-icon {
  transform: scale(1.06) rotate(-2deg);
  background: rgba(15, 110, 169, 0.14);
}

.solutions-page .sol-industry-card {
  transform: translateY(0);
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-industry-card:hover {
  transform: translateY(-4px);
}

.solutions-page .sol-process-viz {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  margin-top: 32px;
  align-items: start;
}

.solutions-page .sol-process-rail {
  position: relative;
  width: 4px;
  min-height: 100%;
  margin-left: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

.solutions-page .sol-process-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: var(--progress, 0%);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--cyan), rgba(33, 169, 211, 0.4));
  transition: height var(--motion-normal) var(--ease-smooth);
}

.solutions-page .sol-process-indicator {
  position: absolute;
  left: 50%;
  top: var(--progress, 0%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(245, 158, 66, 0.7);
  transform: translate(-50%, -50%);
  transition: top var(--motion-normal) var(--ease-smooth);
}

.solutions-page .sol-process-steps {
  display: grid;
  gap: 12px;
}

.solutions-page .sol-process-step {
  position: relative;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0.4;
  transform: translateX(0);
  transition:
    opacity var(--motion-normal) var(--ease-standard),
    border-color var(--motion-normal) var(--ease-standard),
    box-shadow var(--motion-normal) var(--ease-standard),
    transform var(--motion-normal) var(--ease-smooth),
    background var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-process-step.is-lit {
  opacity: 1;
  border-color: rgba(33, 169, 211, 0.45);
}

.solutions-page .sol-process-step.is-current {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 28px rgba(33, 169, 211, 0.18);
  border-color: rgba(33, 169, 211, 0.6);
}

.solutions-page .sol-why-list {
  gap: 12px;
}

.solutions-page .sol-why-row {
  padding: 16px 20px;
  gap: 20px;
  transition: transform var(--motion-normal) var(--ease-smooth), box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-why-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.08);
}

.solutions-page .sol-why-row.is-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr);
}

.solutions-page .sol-why-row:not(.is-reverse) {
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.2fr);
}

.solutions-page .sol-why-visual {
  min-height: 120px;
  overflow: hidden;
  background: transparent;
}

.solutions-page .sol-why-row h3 {
  font-size: clamp(22px, 2.2vw, 28px);
}

.solutions-page .sol-why-row p {
  font-size: 15px;
}

.solutions-page .sol-journey-wrap {
  position: relative;
  margin-top: 28px;
}

.solutions-page .sol-journey-rail {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.08);
  z-index: 0;
}

.solutions-page .sol-journey-progress {
  height: 100%;
  width: var(--journey-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width var(--motion-premium) var(--ease-smooth);
}

.solutions-page .sol-journey {
  position: relative;
  z-index: 1;
}

.solutions-page .sol-journey li {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--motion-premium) var(--ease-standard),
    transform var(--motion-premium) var(--ease-smooth),
    border-color var(--motion-normal) var(--ease-standard),
    box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-journey li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.solutions-page .sol-journey-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: middle;
  transition: transform var(--motion-normal) var(--ease-smooth), box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-journey li.is-open .sol-journey-dot {
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(15, 110, 169, 0.4);
  background: var(--cyan);
}

.solutions-page .sol-journey li.is-open {
  transform: translateY(-4px) scale(1.02);
}

.solutions-page .sol-cta-network {
  opacity: 0.28;
  animation: solGridDrift 30s linear infinite;
}

.solutions-page .sol-cta-node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(33, 169, 211, 0.5);
  box-shadow: 0 0 14px rgba(33, 169, 211, 0.4);
  animation: solNodeFloat 7s ease-in-out infinite;
}

.solutions-page .sol-cta-node:nth-child(1) { top: 22%; left: 14%; }
.solutions-page .sol-cta-node:nth-child(2) { top: 58%; right: 18%; animation-delay: 1.5s; }
.solutions-page .sol-cta-node:nth-child(3) { bottom: 24%; left: 42%; animation-delay: 0.7s; }

.solutions-page .sol-cta-btn {
  transition:
    transform var(--motion-normal) var(--ease-smooth),
    box-shadow var(--motion-normal) var(--ease-standard);
}

.solutions-page .sol-cta-btn:not(.btn-liquid):hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(33, 169, 211, 0.35);
}

.solutions-page .sol-cta-btn svg {
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.solutions-page .sol-cta-btn:hover svg {
  transform: translateX(4px);
}

.solutions-page .sol-cta-btn-secondary {
  transition:
    border-color var(--motion-normal) var(--ease-standard),
    background var(--motion-normal) var(--ease-standard),
    transform var(--motion-normal) var(--ease-smooth);
}

.solutions-page .sol-cta-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .solutions-page .sol-process-viz {
    grid-template-columns: 1fr;
  }

  .solutions-page .sol-process-rail {
    display: none;
  }

  .solutions-page .sol-why-row.is-reverse,
  .solutions-page .sol-why-row:not(.is-reverse) {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-page .sol-cta-network,
  .solutions-page .sol-cta-node,
  .solutions-page .sol-flow-pulse {
    animation: none;
  }

  .solutions-page .sol-journey li {
    opacity: 1;
    transform: none;
  }
}



/* ===== Premium media edge fade (shared) ===== */
.evo-media-fade,
.hw-card-media,
.device-gallery-main {
  position: relative;
  overflow: hidden;
}

.evo-media-fade > img,
.hw-card-media > img,
.device-gallery-main > img {
  -webkit-mask-image:
    radial-gradient(ellipse 96% 94% at 50% 50%, #000 52%, rgba(0, 0, 0, 0.6) 74%, transparent 100%),
    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:
    radial-gradient(ellipse 96% 94% at 50% 50%, #000 52%, rgba(0, 0, 0, 0.6) 74%, transparent 100%),
    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, source-in;
  mask-composite: intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.evo-media-fade::after,
.hw-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 75% at 50% 50%, transparent 58%, rgba(255, 255, 255, 0.55) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.65) 0%, transparent 10%, transparent 90%, rgba(255, 255, 255, 0.65) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.65) 0%, transparent 10%, transparent 90%, rgba(255, 255, 255, 0.65) 100%);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.35);
  opacity: 0.7;
}

