@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "Neulis Sans";
  src: url("https://framerusercontent.com/assets/qovsYcZ6qODQnQF4R5oIh4yRz1w.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Sans";
  src: url("https://framerusercontent.com/assets/8nR58a3zqzBwOD5ghsTkk7yjHt4.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #050607;
  --ink: #121518;
  --soft-black: #161a1f;
  --panel: #f7f8f9;
  --paper: #eef0f2;
  --white: #ffffff;
  --muted: #575f67;
  --muted-dark: #aab2ba;
  --line: rgba(14, 20, 27, 0.12);
  --line-dark: rgba(255, 255, 255, 0.18);
  --accent: #16a8d8;
  --accent-strong: #008cc5;
  --accent-text: #006fa3;
  --success: #0a7350;
  --logo: url("https://framerusercontent.com/images/JA1tkn066Jdvv8HYUZqUt9Ro5g.png?scale-down-to=512");
  --contact-image: url("https://framerusercontent.com/images/CW8ZcsE057Ij1LNjpDpsZrqe2Iw.jpg?scale-down-to=2048");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* fixed nav is top:24px + ~64px tall — keep focused elements visible (WCAG 2.4.11) */
}

body {
  margin: 0;
  background: #f5f6f8;
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.en {
  direction: ltr;
  font-family: "Neulis Sans", "Inter", Arial, sans-serif;
}

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

/* Gutenberg palette safeguards: these colors can be applied to arbitrary editor text. */
.has-accent-background-color,
.has-violet-background-color {
  color: var(--wp--preset--color--paper, #fff);
}

.has-accent-background-color a,
.has-violet-background-color a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

/* ── Skip navigation link (keyboard/screen-reader) ──────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  right: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--accent);
  color: #00131b;
  font-weight: 800;
  font-size: 16px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-nav:focus {
  top: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ── Focus ring (keyboard navigation) ──────────────────────────────────── */
/* --accent-strong (#008cc5) on white = 3.31:1 — meets WCAG 2.2 SC 2.4.11 ≥3:1 */
:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Explicit focus ring for form inputs — required for keyboard users */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
  border-radius: 4px;
}

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

video[data-hls],
video[data-hls-playlist] {
  -webkit-appearance: none;
}
video[data-hls]::-webkit-media-controls,
video[data-hls]::-webkit-media-controls-panel,
video[data-hls]::-webkit-media-controls-start-playback-button,
video[data-hls]::-webkit-media-controls-overlay-play-button,
video[data-hls]::-webkit-media-controls-play-button,
video[data-hls-playlist]::-webkit-media-controls,
video[data-hls-playlist]::-webkit-media-controls-panel,
video[data-hls-playlist]::-webkit-media-controls-start-playback-button,
video[data-hls-playlist]::-webkit-media-controls-overlay-play-button,
video[data-hls-playlist]::-webkit-media-controls-play-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
  pointer-events: none !important;
  visibility: hidden !important;
}

[hidden] {
  display: none !important;
}

#cleaning,
#delivery,
#hospitality,
#logistics {
  scroll-margin-top: 110px;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(22px, 0, 0);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.reveal-ready [data-reveal="fade"] {
  transform: none;
}

body.reveal-ready [data-reveal="scale"] {
  transform: scale(0.985);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

body.reveal-ready .hero-layout > div,
body.reveal-ready .hero-layout > p,
body.reveal-ready .hero-copy-card {
  animation: hero-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.reveal-ready .hero-layout > p,
body.reveal-ready .hero-copy-card {
  animation-delay: 130ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.latin,
.model-name,
.nav-logo-text,
.footer-card h2 {
  font-family: "Neulis Sans", "Heebo", Arial, sans-serif;
  letter-spacing: 0;
}

.site-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 50;
  width: min(1020px, calc(100vw - 32px));
  min-height: 64px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transform: translateX(-50%);
}

.nav-logo {
  width: 146px;
  height: 42px;
  flex: 0 0 auto;
  background-image: var(--logo);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 18px;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  color: #9de3ff;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(4, 8, 12, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 16px;
}

.site-nav.is-dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav-dropdown-shell {
  display: grid;
  gap: 14px;
}

.nav-dropdown-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 6px 0;
}

.nav-dropdown-title {
  display: grid;
  gap: 6px;
}

.nav-dropdown-title strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.nav-dropdown-title span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nav-dropdown-card {
  min-height: 246px;
  display: grid;
  grid-template-rows: 148px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-dropdown-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 168, 216, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-media {
  display: grid;
  place-items: center;
  padding: 16px 14px 10px;
  background: var(--nav-card-bg, linear-gradient(180deg, #f6f9fc 0%, #edf3f8 100%));
}

.nav-dropdown-media img {
  width: min(88%, 188px);
  max-height: 134px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
}

.nav-dropdown-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 16px 18px;
}

.nav-dropdown-kicker {
  color: #9de3ff;
  font-size: 12px;
  font-weight: 800;
}

.nav-dropdown-copy strong {
  color: #fff;
  font-size: 23px;
  line-height: 1.04;
  font-weight: 800;
}

.nav-dropdown-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.nav-action {
  min-width: 126px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-action:hover {
  transform: translateY(-1px);
  background: #eaf9ff;
}

.mobile-label {
  display: none;
}

.nav-hamburger {
  display: none;
  width: 20px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
}

.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 6px; }
.nav-hamburger span:nth-child(3) { top: 12px; }

[aria-expanded="true"] .nav-hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
[aria-expanded="true"] .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
[aria-expanded="true"] .nav-hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 49;
  width: min(360px, calc(100vw - 32px));
  padding: 26px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.mobile-panel a {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.85;
}

body.menu-open .mobile-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.page {
  background: var(--paper);
}

.hero-card,
.contact-band,
.footer-card,
.feature-band,
.media-card {
  position: relative;
  overflow: hidden;
  margin: 8px;
  border-radius: clamp(38px, 7vw, 112px);
}

.hero-card {
  min-height: clamp(640px, 82svh, 860px);
  color: #fff;
  background: #05090c;
}

.page-hero {
  min-height: clamp(520px, 68svh, 680px);
  background: #081017;
}

.hero-card::before,
.media-card::before,
.contact-band::before,
.image-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.hero-card::after,
.media-card::after,
.image-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.54)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.spline-hero {
  width: calc(100% - 16px);
  min-height: clamp(720px, calc(100svh - 16px), 960px);
  margin: 8px auto 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #020507 0%, #071018 56%, #020508 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.spline-hero::after {
  background:
    radial-gradient(circle at 50% 58%, rgba(7, 16, 24, 0) 0%, rgba(1, 4, 7, 0.24) 42%, rgba(1, 3, 6, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.42));
}

.hero-spline-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: auto;
}

.hero-spline-fallback {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 56%, rgba(20, 36, 45, 0.5), rgba(1, 4, 7, 0.88) 62%),
    linear-gradient(180deg, #020507 0%, #071018 56%, #020508 100%);
  opacity: 1;
  pointer-events: none;
  transform: none;
}

.hero-spline-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.38;
  filter: brightness(0.72) contrast(1.06) saturate(0.9);
}

.hero-spline-viewer {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: min(1280px, 90vw);
  height: min(1080px, 98vh);
  min-height: 620px;
  transform: translateX(-50%) scale(1.42);
  transform-origin: 50% 62%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
  padding: 132px clamp(28px, 6vw, 96px) 72px;
  pointer-events: none;
}

.hero-layout > * {
  pointer-events: auto;
}

.hero-copy-card {
  max-width: 560px;
  justify-self: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.05;
  font-weight: 800;
}

.spline-hero .hero-title {
  font-size: clamp(34px, 4.9vw, 64px);
}

.home-hero-title {
  max-width: 760px;
  font-size: clamp(32px, 4.15vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

.page-hero .hero-title {
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.05;
}

.hero-subtitle,
.page-subtitle {
  margin: 20px 0 0;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.25;
  font-weight: 800;
}

.hero-copy {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
  font-weight: 600;
}

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

.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #26313b;
}

.button.light {
  background: #fff;
  color: var(--black);
}

.button.outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.button.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.button.accent {
  background: var(--accent);
  color: #00131b;
}

.logo-marquee {
  margin: 8px;
  padding: clamp(26px, 4vw, 46px) 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.logo-marquee__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px) 22px;
}

.logo-marquee__header h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
}

.logo-marquee__viewport {
  direction: ltr;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-drift 36s linear infinite;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__set {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-inline-end: 12px;
}

.logo-chip {
  width: clamp(154px, 15vw, 218px);
  height: 78px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 20, 27, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 14, 20, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.logo-chip img {
  max-width: 132px;
  max-height: 46px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.logo-chip.wordmark span {
  color: #19212a;
  font-family: "Neulis Sans", "Heebo", Arial, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1;
}

.logo-chip[data-brand="keenon"] span {
  color: #07131b;
  letter-spacing: 0.16em;
}

.logo-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 168, 216, 0.34);
  box-shadow: 0 18px 42px rgba(8, 14, 20, 0.1);
}

.logo-chip:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

@keyframes logo-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-segment-nav {
  margin: 8px;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.home-segment-link {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 20, 27, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-segment-link:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 168, 216, 0.3);
  color: var(--accent-strong);
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 72px);
}

.section.narrow {
  max-width: 1100px;
  margin: 0 auto;
}

.section.dark {
  margin: 8px;
  border-radius: clamp(32px, 6vw, 86px);
  background: var(--black);
  color: #fff;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading:has(> :only-child) {
  grid-template-columns: 1fr;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2,
.footer-card h2,
.cms-intro h1,
.cms-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}

.section-heading p,
.split-copy p,
.cms-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.dark .section-heading p {
  color: var(--muted-dark);
}

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

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

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

.home-solutions-emphasized {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .home-solutions-emphasized > .solution-card {
    min-height: 420px;
  }
}

@media (max-width: 899px) {
  .home-solutions-emphasized {
    grid-template-columns: 1fr;
  }
}

.solution-card,
.product-card,
.story-card,
.benefit-card,
.light-card,
.share-card,
.routing-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.solution-card:hover,
.product-card:hover,
.story-card:hover,
.benefit-card:hover,
.light-card:hover,
.share-card.copy:hover,
.faq-item:hover,
.routing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 168, 216, 0.24);
  box-shadow: 0 24px 54px rgba(9, 16, 24, 0.1);
}

.solution-card {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: #fff;
  background: #111;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.8));
}

.solution-card:hover::before {
  transform: scale(1.04);
}

.solution-card.has-video::before {
  display: none;
}

.solution-media-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    var(--solution-robot, none) var(--solution-pos, center) / var(--solution-size, cover) no-repeat,
    var(--solution-gradient, #05090d);
}

.solution-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.96) brightness(0.68) contrast(1.04);
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 280ms ease;
}

/* Once HLS starts playing, fade the video in over the local render */
.solution-video.is-playing {
  opacity: 0.8;
}

.solution-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
}

.solution-body h3,
.product-card h3,
.story-card h3,
.benefit-card h3,
.routing-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
}

.solution-body p,
.product-card p,
.story-card p,
.benefit-card p,
.routing-card p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.solution-models {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Neulis Sans", "Heebo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent-text);
  font-weight: 800;
}

.split-section {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  padding: 28px clamp(18px, 3vw, 30px);
}

.image-surface {
  position: relative;
  min-height: clamp(430px, 36vw, 560px);
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.image-surface::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.split-copy {
  min-height: clamp(430px, 36vw, 560px);
  padding: clamp(34px, 4.6vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(14, 20, 27, 0.06);
  background: var(--white);
}

.split-copy.dark {
  background: var(--black);
  color: #fff;
}

.split-copy.dark p,
.split-copy.dark li {
  color: var(--muted-dark);
}

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

.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.solutions-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.solutions-catalog .catalog-lone {
  grid-column: auto;
}

.solutions-catalog.is-filtered-single .catalog-lone:not([hidden]) {
  grid-column: 2;
}

.product-media,
.story-media {
  min-height: 280px;
  position: relative;
  background: #d8dde1;
  overflow: hidden;
}

.product-media::before,
.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-media::before,
.story-card:hover .story-media::before {
  transform: scale(1.04);
}

.render-media {
  display: grid;
  place-items: center;
  background: var(--media-surface, linear-gradient(180deg, #f8fbfd 0%, #eef3f7 100%));
}

.render-media::before {
  display: none;
}

.render-media img {
  width: min(84%, 250px);
  height: 100%;
  padding: 24px 18px 12px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.16));
}

/* W3 render fills more of the artboard than other models; ease down to match siblings */
.render-media img[src*="w3-render"] {
  width: min(72%, 218px);
  height: auto;
  max-height: 228px;
  padding: 30px 20px 14px;
}

.nav-dropdown-media img[src*="w3-render"] {
  width: min(76%, 164px);
  max-height: 118px;
}

.recommended-card .render-media img[src*="w3-render"] {
  max-height: 206px;
}

.product-render[src*="w3-render"] {
  width: min(100%, 460px);
  max-height: 500px;
}

.product-media-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #26313b;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(9, 16, 24, 0.08);
}

.media-focus-right::before {
  background-position: 72% center;
}

.product-body,
.story-body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-body .text-link,
.story-body .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.catalog-card {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(9, 16, 24, 0.06), 0 2px 6px rgba(9, 16, 24, 0.04);
  cursor: pointer;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.catalog-card:hover {
  box-shadow: 0 20px 48px rgba(9, 16, 24, 0.12), 0 4px 12px rgba(9, 16, 24, 0.06);
  transform: translateY(-3px);
}

.catalog-card .product-media {
  min-height: 300px;
}

.catalog-card .product-body {
  gap: 8px;
  padding: 22px 24px 28px;
}

.product-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.catalog-card h3 {
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 0.96;
}

.catalog-card p {
  margin-top: 0;
}

.no-rec .recommended-robots {
  display: none;
}

.recommended-robots {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 22px;
  scroll-margin-top: 118px;
}

.recommended-robots .section-heading {
  margin-bottom: 24px;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.recommended-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.recommended-card .product-media {
  min-height: 244px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e9eef2;
  color: #26313b;
  font-size: 13px;
  font-weight: 800;
}

.tag.dark {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.tag.accent {
  background: #d9f5ff;
  color: #005d81;
}

.tag.soon {
  background: #fff2d8;
  color: #725000;
}

.keenon-section {
  max-width: 1380px;
  margin: clamp(18px, 3vw, 34px) auto clamp(42px, 6vw, 72px);
  padding: 0 clamp(18px, 3vw, 30px);
}

.keenon-section-heading {
  grid-template-columns: 1fr;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.keenon-strip {
  margin: 0;
  padding: clamp(30px, 4vw, 52px) clamp(26px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(26px, 4vw, 56px);
  background:
    linear-gradient(115deg, rgba(22, 168, 216, 0.24) 0%, rgba(22, 168, 216, 0.08) 32%, rgba(126, 110, 210, 0.12) 64%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(150deg, rgba(9, 20, 29, 0.9) 0%, rgba(7, 12, 18, 0.78) 52%, rgba(4, 8, 13, 0.92) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 26px 70px rgba(9, 16, 24, 0.16);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.keenon-strip::before,
.keenon-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.keenon-strip::before {
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.38;
}

.keenon-strip::after {
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(280deg, rgba(22, 168, 216, 0.16) 0%, rgba(22, 168, 216, 0) 38%);
  opacity: 0.72;
}

.keenon-strip > * {
  position: relative;
  z-index: 1;
}

.keenon-strip p {
  margin: 12px 0 0;
  max-width: 780px;
  color: rgba(226, 236, 244, 0.8);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.72;
  font-weight: 600;
}

.keenon-logo {
  min-width: 220px;
  min-height: 112px;
  padding: 22px 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(6, 12, 18, 0.34);
  color: #68d8ff;
  font-family: "Neulis Sans", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.dark-two {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 16px;
  padding: 16px;
}

.dark-panel {
  padding: clamp(34px, 5vw, 70px);
  border-radius: 8px;
  background: var(--black);
  color: #fff;
}

.dark-panel h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.service-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.check-list li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.45;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  inset-inline-start: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

.milestone {
  padding: 28px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.milestone strong {
  display: block;
  font-size: 48px;
  line-height: 1;
}

.milestone span {
  display: block;
  margin-top: 8px;
  color: var(--muted-dark);
  font-weight: 700;
}

.cms-intro {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px 42px;
  text-align: center;
}

.solutions-intro {
  padding-top: 118px;
  padding-bottom: 28px;
}

.cms-intro p {
  max-width: 760px;
  margin: 18px auto 0;
}

.home-solutions-strip {
  max-width: 1380px;
  margin: 0 auto;
}

.home-solutions-heading {
  margin-bottom: 32px;
}

.home-solutions-heading h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  margin: 6px 0 0;
}

/* ── Home solutions strip: robot-on-clean-bg default, video on hover ─────── */
.home-solutions-strip .solution-card {
  min-height: clamp(390px, 34vw, 500px);
  overflow: hidden;
}

.home-solutions-emphasized {
  grid-auto-rows: 1fr;
}

.home-solutions-emphasized > .solution-card {
  height: 100%;
}

.home-solutions-strip .solution-video,
.home-solutions-strip .solution-video.is-playing {
  opacity: 0;
}

.home-solutions-strip .solution-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.62) 100%);
  transition: opacity 380ms ease;
}

.home-solutions-strip .solution-card:hover::after {
  opacity: 0.18;
}

@media (hover: hover) and (pointer: fine) {
  .home-solutions-strip .solution-card:hover .solution-video.is-playing,
  .home-solutions-strip .solution-card:focus-within .solution-video.is-playing {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .home-solutions-strip .solution-video {
    opacity: 0;
  }
  .home-solutions-strip .solution-video.is-playing {
    opacity: 1;
  }
}

.home-solutions-strip .solution-body {
  padding: 20px 24px 24px;
  background: rgba(4, 8, 12, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-top: 1px solid rgba(255, 255, 255, 0);
  transform: translateY(0);
  transition:
    background 380ms ease,
    backdrop-filter 380ms ease,
    border-color 380ms ease,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions-strip .solution-card:hover .solution-body {
  background: rgba(4, 8, 12, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-top-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
}

.home-solutions-strip .solution-body h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.home-faq-section {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

.home-faq-heading {
  grid-column: 1;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  margin-bottom: 0;
}

.home-faq-heading h2 {
  max-width: 680px;
  text-wrap: balance;
}

.home-faq-heading > p {
  max-width: 42ch;
  padding-top: 0;
  font-size: 18px;
  line-height: 1.72;
}

.home-faq-section .faq-list {
  grid-column: 2;
  grid-row: 1;
  gap: 12px;
}

.home-faq-section .faq-item {
  overflow: hidden;
  border: 1px solid rgba(14, 20, 27, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(9, 16, 24, 0.045);
}

.home-faq-section .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(9, 16, 24, 0.08);
}

.home-faq-section .faq-item summary {
  padding: 21px 24px;
  font-size: clamp(17px, 1.45vw, 20px);
}

.home-faq-section .faq-item p {
  padding: 0 24px 24px;
  font-size: 16px;
}

.home-faq-section .section-actions {
  grid-column: 2;
  grid-row: 2;
  margin-top: 6px;
}

.home-solutions-strip .solution-body p,
.home-solutions-strip .solution-body .solution-models,
.home-solutions-strip .solution-body .text-link {
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 400ms ease, opacity 260ms ease, margin-top 320ms ease;
}

.home-solutions-strip .solution-card:hover .solution-body p,
.home-solutions-strip .solution-card:hover .solution-body .solution-models,
.home-solutions-strip .solution-card:hover .solution-body .text-link {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
  transition: max-height 420ms 60ms ease, opacity 320ms 100ms ease, margin-top 320ms 60ms ease;
}

.home-solutions-strip .solution-card:hover .solution-body .solution-models {
  margin-top: 14px;
}

.home-solutions-strip .solution-card:hover .solution-body .text-link {
  margin-top: 16px;
}

.solutions-stage {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 126px;
  padding-bottom: 64px;
}

.solutions-stage .solutions-intro {
  padding-top: 0;
  padding-bottom: 22px;
}

.solutions-stage .category-toolbar {
  padding-bottom: 26px;
}

.category-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 28px;
}

.category-toolbar.tight {
  padding-top: 8px;
}

.category-filter {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 180ms ease, box-shadow 220ms ease;
}

.category-filter:hover {
  transform: translateY(-1px);
}

.category-filter.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
  box-shadow: 0 2px 8px rgba(5, 6, 7, 0.18);
}

.robot-cms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px) 72px;
}

.robot-empty {
  display: none;
  margin: 0 0 80px;
  text-align: center;
  font-weight: 800;
}

.product-hero {
  min-height: 740px;
}

.product-hero::before {
  background-position: center bottom;
}

.product-hero.focus-right::before {
  background-position: 64% bottom;
}

.product-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.84)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.72));
}

.product-hero .hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.54fr);
}

.product-hero.render-hero {
  min-height: clamp(700px, 78svh, 860px);
  background:
    radial-gradient(circle at 74% 36%, rgba(121, 214, 255, 0.16) 0%, rgba(121, 214, 255, 0) 24%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 21%),
    linear-gradient(180deg, #04080c 0%, #09131c 56%, #05090d 100%);
}

.product-hero-video-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.product-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.98) brightness(0.7) contrast(1.08);
  transform: scale(1.04);
  pointer-events: none;
  background: #05090d;
  transition: opacity 420ms ease;
}

.product-hero-video.is-playing {
  opacity: 0.62;
}

.product-hero.render-hero::before {
  display: none;
}

.product-hero.render-hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1) 54%, rgba(0, 0, 0, 0.42));
  background-size: 38px 38px, 38px 38px, auto;
}

.product-hero.render-hero .hero-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: clamp(28px, 4vw, 72px);
}

.product-hero-copy {
  max-width: 640px;
  justify-self: start;
}

.product-availability {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-hero-copy .hero-subtitle {
  max-width: 22ch;
  line-height: 1.08;
}

.product-hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  font-weight: 600;
}

.product-hero-copy .hero-actions {
  margin-top: 26px;
}

.product-hero-stats {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-hero-stats li {
  min-height: 110px;
  padding: 18px 18px 16px;
  display: grid;
  align-content: start;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 280ms ease, background 280ms ease;
}

.product-hero-stats li:hover {
  border-color: rgba(22, 168, 216, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.product-hero-stats strong {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  font-weight: 800;
}

.product-hero-stats span {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.product-hero-stage {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.product-hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 10% 16%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 72%);
  filter: blur(8px);
}

.product-hero-stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 34px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0) 72%);
}

.product-render {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 40px 48px rgba(0, 0, 0, 0.34));
}

.product-hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: clamp(380px, 54svh, 580px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.55), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-summary {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.product-summary dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.product-summary div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.product-summary div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-summary dt {
  color: var(--muted-dark);
  font-weight: 700;
}

.product-summary dd {
  margin: 0;
  font-weight: 800;
}


.lead-text {
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.38;
  font-weight: 700;
  color: var(--ink);
}

.body-copy {
  display: grid;
  gap: 16px;
  color: #3a4149;
  font-size: 17px;
  line-height: 1.72;
}

.body-copy p {
  margin: 0;
}

main.page > .section.narrow > .body-copy {
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

main.page > .section.narrow > .body-copy > * {
  max-width: min(100%, 68ch);
  min-width: 0;
}

main.page > .section.narrow > .body-copy a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-feature-stack {
  display: grid;
  gap: 32px;
}

.product-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  overflow: hidden;
  background: #05090d;
  min-height: clamp(440px, 56vw, 660px);
  position: relative;
}

.product-feature-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 48px 44px 44px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.22) 66%,
    transparent 100%
  );
}

.product-feature-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.product-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.68;
  max-width: 66ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.product-media-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 21, 33, 0.88), rgba(2, 8, 14, 0.92)),
    #05090d;
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.product-feature-card .product-media-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  min-height: 0;
  aspect-ratio: unset;
  width: 100%;
  max-width: 100%;
}

.product-media-frame.video {
  box-shadow: 0 18px 42px rgba(3, 9, 14, 0.18);
  min-height: clamp(300px, 28vw, 430px);
}

.product-feature-card .product-media-frame.video {
  min-height: 0;
  box-shadow: none;
}

.product-media-frame img,
.product-media-frame video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-frame video {
  background: #05090d;
  pointer-events: none;
  transform: scale(1.01);
}

.product-feature-card .product-media-frame video {
  opacity: 0.72;
  filter: saturate(0.94) brightness(0.74) contrast(1.06);
  transform: scale(1.04);
  transition: opacity 420ms ease;
}

.product-feature-card .product-media-frame video.is-playing {
  opacity: 0.72;
}

@media (min-width: 901px) {
  .home-solutions-strip {
    padding-top: 32px;
  }

  .solutions-stage {
    padding-top: 126px;
  }
}

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

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

.product-specs-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: 18px;
  align-items: start;
}

.product-specs-media {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(9, 16, 24, 0.04);
}

.product-specs-media img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.benefit-card {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specs-table {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(9, 16, 24, 0.04);
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row dt {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.spec-row dd {
  margin: 0;
  font-weight: 800;
}

.coming-soon-band {
  padding: 32px;
  border: 1px solid rgba(114, 80, 0, 0.22);
  border-radius: 8px;
  background: #fff7e8;
}

.coming-soon-band h2 {
  margin: 0;
  font-size: 34px;
}

.coming-soon-band p {
  margin: 12px 0 0;
  color: #594d3b;
  font-size: 18px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 21px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6edf2;
  color: var(--black);
  font-size: 18px;
  line-height: 1;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.faq-item[open] summary::after {
  content: "+";
  background: rgba(22, 168, 216, 0.12);
  color: var(--accent-text);
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 26px;
  color: #303840;
  font-size: 18px;
  line-height: 1.65;
  animation: faqFadeIn 220ms ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.share-card.image {
  min-height: 420px;
  position: relative;
  background: #111;
}

.share-card.image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.share-card.copy {
  min-height: 420px;
  padding: clamp(32px, 5vw, 58px);
  display: flex;
  align-items: center;
}

.share-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.share-card-link:hover h2 {
  color: var(--accent-text);
  transition: color 0.2s;
}

.share-card img {
  max-height: 52px;
  width: auto;
  margin-bottom: 28px;
}

.share-card h2 {
  margin: 0;
  font-size: 38px;
}

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

.contact-band {
  color: #fff;
  background: #111;
}

.contact-band::before {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38)),
    var(--contact-image);
  background-size: cover;
  background-position: center;
}

.contact-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 50vw, 580px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(42px, 7vw, 96px);
}

.contact-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
}

.contact-form h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.1;
}

.product-contact-form {
  padding-top: 28px;
}

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

.field {
  display: grid;
  gap: 7px;
  color: #222;
  font-size: 14px;
  font-weight: 800;
}

.field.full {
  grid-column: 1 / -1;
}

.field-label-text {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.field[data-topic-guidance] {
  display: none;
}

.field[data-topic-guidance].active {
  display: grid;
}

.guidance-panel {
  padding: 14px 16px;
  border: 1px solid rgba(14, 20, 27, 0.08);
  border-radius: 8px;
  background: #f6f8fa;
}

.guidance-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #111820;
  font-size: 14px;
  font-weight: 800;
}

.guidance-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.field-optional {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.72;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

.field textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22, 168, 216, 0.15);
}

.submit {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.submit:hover {
  background: #28323c;
  transform: translateY(-1px);
}

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

.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.required-mark {
  display: inline;
  color: #c0392b;
  font-weight: 700;
}

.required-note {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.form-status {
  grid-column: 1 / -1;
  visibility: hidden;
  margin: 0;
  color: var(--success);
  font-weight: 800;
  min-height: 1.4em;
}

.form-status.visible {
  visibility: visible;
}

.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.85em;
  margin-top: 4px;
  min-height: 1.2em;
}

/* Eyebrow on dark backgrounds: --accent (#16a8d8) passes 7.71:1 on --black */
.hero-card .eyebrow,
.page-hero .eyebrow,
.contact-hero-dark .eyebrow,
.about-page-hero .eyebrow,
.about-vision-panel .eyebrow,
.keenon-section .eyebrow {
  color: var(--accent);
}

.footer-card .eyebrow {
  color: var(--accent);
}

/* text-link on dark backgrounds can use --accent */
.hero-card .text-link,
.page-hero .text-link {
  color: var(--accent);
}

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

.routing-card {
  padding: 24px;
}

.footer-wrap {
  padding: 0 0 8px;
}

.footer-card {
  background: var(--black);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 44px;
  padding: clamp(42px, 7vw, 90px);
}

.footer-card h2 {
  display: none;
  font-size: clamp(42px, 7vw, 88px);
}

.footer-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.6;
}

.footer-credit,
.copyright {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

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

.footer-links a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

/* Hide Accessibility Checker plugin promo text; it is not user-facing footer content. */
html body .edac-accessibility-statement {
  display: none !important;
}

.footer-logo {
  width: min(320px, calc(100% - 80px));
  height: clamp(34px, 4vw, 54px);
  margin: 0 auto 28px;
  background-image: var(--logo);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.copyright {
  padding: 0 clamp(42px, 7vw, 90px) 38px;
}

.legacy-redirect {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.legacy-redirect a {
  color: var(--accent-strong);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .cards-grid,
  .product-grid,
  .story-grid,
  .benefit-grid,
  .robot-cms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-nav {
    top: 16px;
    width: calc(100vw - 24px);
    min-height: 58px;
    padding: 8px 10px;
  }

  .nav-logo {
    width: 136px;
    height: 38px;
    margin-inline-start: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-dropdown {
    display: none;
  }

  .nav-action {
    min-width: unset;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    order: -1;
    margin-inline-start: 0;
  }

  .desktop-label,
  .mobile-label,
  .nav-action > span:last-child {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero-card,
  .contact-band,
  .footer-card,
  .feature-band,
  .media-card {
    border-radius: 38px;
  }

  .hero-card,
  .page-hero {
    min-height: min(760px, calc(100svh - 16px));
  }

  .spline-hero {
    min-height: 760px;
  }

  .hero-spline-viewer {
    bottom: -14%;
    width: 112vw;
    transform: translateX(-50%) scale(1.15);
  }

  .hero-layout,
  .product-hero .hero-layout {
    min-height: inherit;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 26px;
    padding: 112px 24px 42px;
  }

  .hero-copy-card,
  .product-summary {
    justify-self: stretch;
  }

  .product-hero.render-hero {
    min-height: min(980px, calc(100svh - 16px));
  }

  .product-hero.render-hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 96px;
    padding-bottom: 28px;
  }

  .product-hero.render-hero .product-hero-stage {
    order: -1;
    min-height: 250px;
  }

  .product-hero.render-hero .product-render {
    width: min(72vw, 420px);
    max-height: 300px;
  }

  .product-hero.render-hero .product-render[src*="w3-render"] {
    width: min(66vw, 380px);
    max-height: 270px;
  }

  .product-hero.render-hero .product-hero-photo {
    width: min(88vw, 440px);
    height: clamp(220px, 38svh, 340px);
  }

  .product-hero-stats,
  .product-specs-panel {
    grid-template-columns: 1fr;
  }

  .logo-marquee__header {
    align-items: start;
    flex-direction: column;
  }

  .logo-marquee__track {
    animation-duration: 42s;
  }

  .logo-chip {
    width: 150px;
    height: 70px;
  }

  .section-heading,
  .split-section,
  .dark-two,
  .keenon-strip,
  .contact-inner,
  .footer-top,
  .share-grid,
  .contact-details,
  .about-two-col {
    grid-template-columns: 1fr;
  }

  .about-two-col > :first-child,
  .about-two-col > :nth-child(2),
  .about-two-col > :nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .section {
    padding: 64px 20px;
  }

  .solutions-stage {
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .section.dark {
    border-radius: 32px;
  }

  .cards-grid,
  .cards-grid.three,
  .cards-grid.two,
  .product-grid,
  .story-grid,
  .benefit-grid,
  .robot-cms-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 340px;
  }

  .image-surface,
  .split-copy {
    min-height: 420px;
  }

  .product-media,
  .story-media {
    min-height: 250px;
  }

  .catalog-card .product-media {
    min-height: 244px;
  }

  .catalog-card h3 {
    font-size: 36px;
  }

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

  .product-specs-media {
    padding: 18px;
    border-radius: 24px;
  }

  .product-media-frame,
  .product-media-frame.video {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .product-feature-stack {
    gap: 36px;
  }

  .product-feature-copy {
    padding: 28px 28px 32px;
  }

  .product-feature-copy h3 {
    font-size: 26px;
  }

  .product-hero-stats li {
    min-height: 0;
    padding: 14px 16px;
  }

  .product-hero-stats strong {
    font-size: 22px;
  }

  .product-hero-stats span {
    font-size: 13px;
  }

  .keenon-strip {
    border-radius: 32px;
  }

  .keenon-logo {
    width: 100%;
  }

  .contact-inner {
    min-height: 0;
    padding: 54px 24px;
  }

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

  .footer-logo {
    width: min(260px, calc(100% - 40px));
    height: clamp(32px, 9vw, 48px);
  }

  .hero-logo-mark {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 38px;
  }

  .page-hero .hero-title {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .product-summary div,
  .spec-row {
    grid-template-columns: 1fr;
  }

  .product-hero-copy .hero-subtitle {
    max-width: none;
  }

  .product-hero-stats li {
    padding: 14px;
  }

  .contact-form {
    padding: 20px;
  }
}

/* ── Hero logo mark (replaces H1 text) ──────────────────────────────────── */
.hero-logo-mark {
  width: 220px;
  height: 60px;
  background-image: var(--logo);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

.hero-tagline {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ── Solutions strip subtitle ───────────────────────────────────────────── */
.solutions-subtitle {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  color: var(--muted);
}

/* ── KEENON tagline & link ───────────────────────────────────────────────── */
.keenon-tagline {
  margin: 18px 0 10px;
  font-style: italic;
  font-weight: 600;
  opacity: 0.72;
  font-size: clamp(15px, 1.1vw, 18px);
}

.keenon-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 15px;
}

/* ── Product category label (on image, top-right in RTL) ────────────────── */
.product-category-label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-height: 28px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(14, 143, 181, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

/* ── Product badge (Best Seller / featured, top-left in RTL) ────────────── */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  min-height: 28px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-badge.best-seller {
  background: #f59e0b;
  color: #1a1000;
}

.product-badge.coming-soon {
  background: #26313b;
  color: #fff;
}

.product-badge.featured {
  background: rgba(255, 255, 255, 0.92);
  color: #26313b;
  box-shadow: 0 2px 12px rgba(9, 16, 24, 0.1);
}

/* Secondary tag — appears below category label (e.g. "מיועד לחניונים" on C55) */
.product-tag-secondary {
  position: absolute;
  top: 52px;
  right: 14px;
  z-index: 1;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  color: #26313b;
  backdrop-filter: blur(4px);
}

/* ── Card button ─────────────────────────────────────────────────────────── */
.card-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 8px;
}

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

  body.reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .logo-marquee__track {
    animation: none !important;
  }

  /* Hide autoplay solution videos — JS also removes autoplay,
     but this ensures no flash of motion on slow connections. */
  .solution-video {
    display: none !important;
  }
}

/* ── Feature reasons list (T9) ──────────────────────────────────────────── */
.feature-reasons {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-reasons li {
  font-size: 0.95rem;
  color: inherit;
  padding-right: 22px;
  position: relative;
}

.feature-reasons li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: #4ade80;
  font-size: 0.85rem;
}

/* ── About: futuristic hero + sector strip + lifecycle ─────────────────── */
.about-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.about-who-body {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 500;
  max-width: none;
}

.about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 20px 48px;
  align-items: start;
}

.about-two-col > :first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.about-two-col > :nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.about-two-col > :nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.about-hero-future {
  position: relative;
  min-height: clamp(420px, 58vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px) clamp(24px, 5vw, 48px);
  color: #f4f7fb;
  background:
    radial-gradient(ellipse 100% 70% at 78% 12%, rgba(22, 168, 216, 0.38), transparent 52%),
    radial-gradient(ellipse 80% 55% at 8% 88%, rgba(99, 60, 200, 0.28), transparent 48%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.06), transparent 70%),
    linear-gradient(168deg, #04060a 0%, #0a1018 42%, #05070c 100%);
  overflow: hidden;
}

.about-hero-future::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 168, 216, 0.22) 0%, transparent 65%);
  filter: blur(40px);
  top: 8%;
  left: 50%;
  transform: translateX(-42%);
  pointer-events: none;
}

.about-hero-future-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.about-hero-eyebrow {
  color: rgba(180, 220, 240, 0.95);
  letter-spacing: 0.08em;
}

.about-hero-title {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-hero-lead {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(230, 238, 245, 0.82);
  font-weight: 500;
}

.about-heading-tight {
  margin-bottom: 20px;
}

.about-heading-tight h2 {
  margin-top: 6px;
}

.about-lead-wide {
  max-width: none;
  margin: 0;
}

.about-sectors-wrap {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.about-sectors-intro {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 600;
  max-width: 720px;
}

.about-sector-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

.about-sector-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 10px 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(9, 16, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-sector-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(9, 16, 24, 0.1);
}

.about-sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(22, 168, 216, 0.12), rgba(22, 168, 216, 0.04));
  color: var(--accent-strong);
}

.about-sector-label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

.about-sectors-footnote {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
  max-width: 720px;
}

.about-vision-panel {
  margin: 8px;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 56px);
  border-radius: clamp(32px, 6vw, 80px);
  background: linear-gradient(135deg, #0d1118 0%, #121a24 50%, #0a0e14 100%);
  color: #e8eef5;
}

.about-vision-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-vision-eyebrow {
  color: rgba(160, 200, 220, 0.9);
}

.about-vision-inner h2 {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}

.about-vision-subtitle {
  margin: 16px 0 0;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
  font-weight: 600;
  color: rgba(200, 220, 236, 0.85);
}

.about-vision-copy {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(220, 228, 236, 0.88);
  font-weight: 500;
}

.about-lifecycle-lead {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 800;
  color: var(--ink);
}

.about-lifecycle-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  counter-reset: lifecycle;
}

.about-lifecycle-steps li {
  min-height: 104px;
  margin: 0;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 16, 24, 0.05);
  counter-increment: lifecycle;
}

.about-lifecycle-steps li::before {
  content: counter(lifecycle, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-family: "Neulis Sans", "Heebo", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.about-lifecycle-steps strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.45;
}

.about-lifecycle {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.about-raas-block {
  background: var(--paper);
}

.about-raas-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px);
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(9, 16, 24, 0.06);
}

.about-raas-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 3vw, 32px);
}

.about-raas-card p:last-child {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 600;
}

.about-backbone-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 600;
}

.about-cta-strip {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 64px) 24px;
  text-align: center;
}

.about-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
}

.about-cta-inner p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

/* ── Contact page (minimal split) ─────────────────────────────────────── */
.contact-page-minimal {
  padding-bottom: clamp(48px, 8vw, 80px);
}

.contact-min-hero {
  padding: clamp(36px, 6vw, 56px) clamp(20px, 4vw, 40px) clamp(24px, 4vw, 36px);
  text-align: center;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.contact-min-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.15;
}

.contact-min-hero .hero-copy {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 600;
}

/* ── Contact dark hero override ─────────────────────────────────────────── */
.contact-hero-dark {
  position: relative;
  overflow: hidden;
  margin: 8px;
  border-radius: clamp(38px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: clamp(280px, 38svh, 400px);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 56px) clamp(32px, 4vw, 52px);
  text-align: start;
  background: #071017;
  color: #fff;
}

.contact-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.94), rgba(5, 8, 12, 0.58) 54%, rgba(5, 8, 12, 0.84)),
    var(--contact-image);
  background-size: cover;
  background-position: center;
}

.contact-hero-dark > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact-hero-dark h1 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
}

.contact-hero-dark .hero-copy {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.contact-min-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  max-width: 1180px;
  margin: clamp(32px, 5vw, 56px) auto clamp(16px, 3vw, 32px);
  padding: 0 clamp(20px, 4vw, 40px);
}

.contact-min-visual {
  border-radius: 16px;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(5, 8, 12, 0.12), rgba(5, 8, 12, 0.55)),
    url("../robots/t9-render.webp") center 42% / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(9, 16, 24, 0.12);
}

.contact-min-form-wrap .contact-form {
  height: 100%;
  min-height: 420px;
}

.contact-min-form-wrap .form-grid {
  align-content: start;
}

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

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

  .contact-min-split {
    grid-template-columns: 1fr;
  }

  .contact-min-visual {
    min-height: 280px;
    order: -1;
  }
}

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

  .about-lifecycle-steps {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ intro band ─────────────────────────────────────────────────────── */
.faq-intro-band {
  max-width: 800px;
  margin: 0 auto clamp(28px, 5vw, 40px);
  padding: clamp(22px, 4vw, 32px) clamp(20px, 4vw, 28px);
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  box-shadow: 0 8px 28px rgba(9, 16, 24, 0.05);
}

.faq-intro-band p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 600;
}

.faq-intro-band p:last-of-type {
  margin-bottom: 0;
}

.faq-intro-actions {
  margin-top: 18px;
}

.section.narrow .faq-intro-band + .faq-list {
  margin-top: clamp(20px, 3vw, 32px);
}

.contact-address-block {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 600;
}

.contact-address-block a {
  color: var(--accent-strong);
}

/* B6 — about page unified alignment + lifecycle/raas merge styling */
.about-who,
.about-sectors-wrap,
.about-vision-panel .about-vision-inner,
.about-lifecycle-raas,
.about-backbone {
  text-align: start;
}

.about-lifecycle-raas .about-lifecycle-lead,
.about-lifecycle-raas .about-lifecycle-steps {
  font-size: 1.05em;
}

.about-lifecycle-raas .about-raas-card {
  margin-top: 28px;
  padding: 28px;
  background: var(--surface-elevated, #fafafa);
  border-radius: 16px;
  font-size: 1.05em;
}

/* B7 — looping video shells for contact + FAQ */

.contact-min-video-loop {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(5, 8, 12, 0.28), rgba(5, 8, 12, 0.72)),
    url("../robots/t9-render.webp") center 42% / cover no-repeat,
    #0a1018;
}

.contact-min-video-loop .loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  filter: brightness(0.96);
  transition: opacity 420ms ease;
}

.contact-min-video-loop .loop-video.is-playing {
  opacity: 1;
}

.faq-hero-loop {
  position: relative;
  overflow: hidden;
}

.faq-hero-loop .faq-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq-hero-loop .faq-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.6) 0%, rgba(8, 12, 20, 0.78) 100%);
  pointer-events: none;
}

.faq-hero-loop .faq-hero-video .loop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.faq-hero-loop .faq-hero-video .loop-video.is-playing {
  opacity: 1;
}

.faq-hero-loop .hero-layout {
  position: relative;
  z-index: 1;
}

/* B10 — fix vertical alignment of geresh/hyphen in "ה־S300" so dash sits at
   ה x-height instead of S300 cap-height */
.he-prefix {
  display: inline-block;
  vertical-align: middle;
}

/* B11 — cohesive home FAQ + about page design pass */
.section.narrow.about-who,
.section.narrow.about-lifecycle-raas,
.section.narrow.about-backbone {
  max-width: 1280px;
}

.about-who {
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.about-who .section-heading {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.about-who .section-heading h2 {
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1;
}

.about-two-col {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(24px, 4vw, 64px);
  padding-top: clamp(20px, 2.6vw, 30px);
  border-top: 1px solid rgba(14, 20, 27, 0.1);
}

.about-lead-wide {
  max-width: 760px;
  font-size: clamp(23px, 2.25vw, 32px);
  line-height: 1.22;
  letter-spacing: 0;
}

.about-who-body {
  max-width: 66ch;
  color: #434c55;
  font-size: clamp(17px, 1.26vw, 19px);
  line-height: 1.8;
}

.about-sectors-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding-top: clamp(66px, 8vw, 106px);
  padding-bottom: clamp(66px, 8vw, 104px);
  background: transparent;
  border-block: 0;
}

.about-sectors-wrap .section-heading,
.about-sectors-intro,
.about-sector-strip,
.about-sectors-footnote {
  max-width: 1180px;
  margin-inline: auto;
}

.about-sectors-wrap .section-heading {
  margin-bottom: 12px;
}

.about-sectors-wrap .section-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
}

.about-sectors-intro {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
  font-weight: 800;
}

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

.about-sector-tile {
  min-height: 118px;
  flex-direction: row;
  justify-content: flex-start;
  text-align: start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(9, 16, 24, 0.055);
}

.about-sector-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.about-sector-label {
  font-size: 18px;
}

.about-sectors-footnote {
  margin-top: 22px;
  font-size: 17px;
}

.about-vision-panel {
  margin: clamp(8px, 2vw, 18px) 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(9, 16, 24, 0.14);
}

.about-vision-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: end;
}

.about-vision-inner h2 {
  grid-column: 1;
  grid-row: 1;
}

.about-vision-subtitle {
  grid-column: 1;
  grid-row: 2;
}

.about-vision-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  max-width: 70ch;
  font-size: clamp(17px, 1.28vw, 19px);
}

.section.narrow.about-lifecycle-raas {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 42px);
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

.about-lifecycle-raas .section-heading {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.about-lifecycle-raas .section-heading h2 {
  max-width: 52ch;
}

.about-lifecycle-raas .about-lifecycle-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-lifecycle-raas .about-raas-card {
  max-width: none;
  margin: 0;
  padding: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px clamp(26px, 4vw, 52px);
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.about-lifecycle-raas .about-raas-card .eyebrow,
.about-lifecycle-raas .about-raas-card h2 {
  grid-column: 1;
}

.about-lifecycle-raas .about-raas-card p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.section.narrow.about-backbone {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(52px, 6vw, 80px);
  padding-bottom: clamp(56px, 7vw, 92px);
  border-top: 1px solid rgba(14, 20, 27, 0.1);
}

.about-backbone .section-heading {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.about-backbone .section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  font-weight: 800;
}

.about-backbone-copy {
  max-width: 76ch;
  color: #3f4851;
  font-size: clamp(17px, 1.22vw, 18px);
}

.about-cta-strip {
  margin: 8px;
  padding: clamp(46px, 7vw, 76px) clamp(26px, 6vw, 88px);
  border-radius: clamp(32px, 6vw, 86px);
  background:
    radial-gradient(circle at 16% 50%, rgba(22, 168, 216, 0.18), rgba(22, 168, 216, 0) 32%),
    linear-gradient(145deg, #070d12 0%, #101922 58%, #060a0f 100%);
  text-align: start;
}

.about-cta-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px clamp(20px, 5vw, 72px);
  align-items: center;
}

.about-cta-inner h2 {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
}

.about-cta-inner p {
  margin: 0;
  font-size: 18px;
}

.about-cta-inner .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .home-faq-section {
    display: block;
    padding-top: clamp(54px, 10vw, 76px);
    padding-bottom: clamp(64px, 12vw, 88px);
  }

  .home-faq-heading {
    margin-bottom: 24px;
  }

  .home-faq-section .section-actions {
    margin-top: 20px;
  }

  .about-who .section-heading,
  .about-two-col,
  .about-vision-inner,
  .section.narrow.about-lifecycle-raas,
  .about-lifecycle-raas .about-raas-card,
  .section.narrow.about-backbone,
  .about-cta-inner {
    grid-template-columns: 1fr;
  }

  .about-two-col {
    gap: 18px;
  }

  .about-two-col > :first-child,
  .about-two-col > :nth-child(2),
  .about-two-col > :nth-child(3),
  .about-vision-inner h2,
  .about-vision-subtitle,
  .about-vision-copy,
  .about-lifecycle-raas .about-raas-card .eyebrow,
  .about-lifecycle-raas .about-raas-card h2,
  .about-lifecycle-raas .about-raas-card p:last-child,
  .about-backbone .section-heading,
  .about-backbone-copy,
  .about-cta-inner .button {
    grid-column: 1;
    grid-row: auto;
  }

  .about-lead-wide,
  .about-lifecycle-raas .about-lifecycle-lead {
    max-width: none;
  }

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

  .about-sector-tile {
    min-height: 112px;
    padding: 18px;
  }

  .about-vision-copy {
    margin-top: 4px;
  }

  .about-cta-inner .button {
    width: fit-content;
    margin-top: 16px;
  }

  .contact-hero-dark {
    min-height: min(560px, calc(100svh - 16px));
    padding-top: 112px;
  }
}

@media (max-width: 560px) {
  .about-sector-strip {
    grid-template-columns: 1fr;
  }

  .about-sector-tile {
    min-height: 0;
  }
}

/* B12 — launch-readiness about page visual polish */
.about-page-hero::after {
  background:
    radial-gradient(circle at 50% 44%, rgba(10, 20, 28, 0.06), rgba(0, 0, 0, 0.72) 68%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.82));
}

.about-page-hero .hero-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
}

.about-page-hero .hero-layout > div:first-child {
  justify-self: start;
  max-width: 780px;
}

.about-page-hero .hero-title {
  max-width: 17ch;
  font-size: clamp(40px, 4.8vw, 70px);
  text-wrap: balance;
}

.about-page-hero .hero-copy-card {
  max-width: 390px;
  justify-self: end;
  padding-top: 32vh;
}

.about-page-hero .hero-copy {
  font-size: clamp(17px, 1.35vw, 22px);
}

.about-page-hero .hero-spline-viewer {
  transform: translateX(-50%) scale(1.34);
}

.about-who {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  column-gap: clamp(28px, 5vw, 76px);
  row-gap: clamp(10px, 1.4vw, 18px);
  align-items: center;
  overflow: hidden;
}

.about-who::before {
  content: "";
  position: absolute;
  inset: clamp(34px, 5vw, 76px) auto auto 0;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(22, 168, 216, 0.12), rgba(22, 168, 216, 0) 62%),
    radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.about-who .section-heading,
.about-who .about-two-col {
  position: relative;
  z-index: 1;
  grid-column: 1;
}

.about-who .section-heading {
  grid-row: 1;
  margin-bottom: 0;
}

.about-who .about-two-col {
  grid-row: 2;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(18px, 2.4vw, 30px) clamp(22px, 3.2vw, 42px);
}

.about-who .about-two-col > :first-child {
  grid-column: 1 / -1;
  grid-row: 1;
}

.about-who .about-two-col > :nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.about-who .about-two-col > :nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.about-who-visual {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: clamp(390px, 36vw, 520px);
  border: 1px solid rgba(14, 20, 27, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(rgba(14, 20, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 20, 27, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 241, 245, 0.78));
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: 0 24px 70px rgba(9, 16, 24, 0.08);
  overflow: hidden;
}

.about-who-visual::before {
  content: "";
  position: absolute;
  inset: 10% 12% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 168, 216, 0.16), rgba(22, 168, 216, 0) 68%);
  filter: blur(8px);
}

.about-who-lineup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4% 4% 3%;
  gap: 3%;
}

.about-who-robot {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 82%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 22px rgba(9, 16, 24, 0.16));
}

.about-who-robot:nth-child(1) { height: 74%; }
.about-who-robot:nth-child(2) { height: 96%; }
.about-who-robot:nth-child(3) { height: 66%; }
.about-who-robot:nth-child(4) { height: 82%; }

.about-sectors-wrap {
  position: relative;
  max-width: none;
  margin: 0;
  padding-inline: clamp(24px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    #eef1f4;
}

.about-sectors-wrap::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 4vw, 52px) 8px;
  border-radius: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(14, 20, 27, 0.06);
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 168, 216, 0.12), rgba(22, 168, 216, 0) 26%),
    rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.about-sectors-wrap > * {
  position: relative;
  z-index: 1;
}

.about-sectors-wrap .section-heading,
.about-sectors-intro,
.about-sector-strip,
.about-sectors-footnote {
  max-width: 1280px;
}

.about-sector-strip {
  gap: 18px;
}

.about-sector-tile {
  position: relative;
  min-height: 136px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(14, 20, 27, 0.08);
  overflow: hidden;
}

.about-sector-tile::after {
  content: "";
  position: absolute;
  inset-inline-start: -26px;
  bottom: -36px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(22, 168, 216, 0.08);
}

.about-sector-icon {
  position: relative;
  z-index: 1;
  background: #eaf8fd;
}

.about-sector-label {
  position: relative;
  z-index: 1;
}

.about-vision-panel {
  padding-block: clamp(68px, 9vw, 118px);
  background:
    radial-gradient(circle at 18% 24%, rgba(22, 168, 216, 0.19), rgba(22, 168, 216, 0) 34%),
    linear-gradient(135deg, #071017 0%, #101923 54%, #05090d 100%);
}

.section.narrow.about-lifecycle-raas {
  max-width: 1320px;
  position: relative;
}

.section.narrow.about-lifecycle-raas::before {
  content: "";
  position: absolute;
  inset: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 44px);
  border-radius: 32px;
  background:
    linear-gradient(rgba(14, 20, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 20, 27, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.72;
  pointer-events: none;
}

.about-lifecycle-raas > * {
  position: relative;
  z-index: 1;
}

.about-lifecycle-steps {
  gap: 16px;
}

.about-lifecycle-steps li {
  min-height: 120px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(9, 16, 24, 0.055);
}

.about-lifecycle-steps li:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 96px;
}

.about-lifecycle-raas .about-raas-card {
  border-color: rgba(14, 20, 27, 0.08);
  box-shadow: 0 22px 60px rgba(9, 16, 24, 0.075);
}

.section.narrow.about-backbone {
  max-width: 1320px;
  margin-top: 0;
  padding-inline: clamp(24px, 5vw, 72px);
}

.about-backbone .section-heading {
  padding: 0;
}

.about-backbone-copy {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(14, 20, 27, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(9, 16, 24, 0.045);
}

.about-cta-strip {
  box-shadow: 0 24px 70px rgba(9, 16, 24, 0.16);
}

@media (max-width: 900px) {
  .about-page-hero .hero-layout {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .about-page-hero .hero-title {
    max-width: 12ch;
    font-size: clamp(38px, 11.2vw, 52px);
  }

  .about-page-hero .hero-copy-card {
    max-width: none;
    padding-top: 0;
    justify-self: stretch;
  }

  .about-who {
    display: block;
  }

  .about-who .about-two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-who .about-two-col > :first-child,
  .about-who .about-two-col > :nth-child(2),
  .about-who .about-two-col > :nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .about-who-visual {
    min-height: 280px;
    margin: 20px 0 0;
  }

  .about-sectors-wrap {
    padding-inline: 20px;
  }

  .about-sector-tile {
    min-height: 104px;
  }

  .about-lifecycle-steps li:nth-child(5) {
    grid-column: 1;
  }

  .about-backbone-copy {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

/* B13 - launch typography and cross-page alignment */
:root {
  --launch-h1: clamp(44px, 5vw, 68px);
  --launch-h1-compact: clamp(38px, 4.25vw, 58px);
  --launch-h2: clamp(32px, 3.55vw, 50px);
  --launch-h3: clamp(22px, 1.9vw, 30px);
  --launch-lead: clamp(19px, 1.45vw, 23px);
  --launch-body: 17px;
  --launch-small: 15px;
  --launch-text: #3f4a55;
}

.hero-title,
.page-hero .hero-title,
.product-hero-copy .hero-title,
.cms-intro h1 {
  font-size: var(--launch-h1);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero-title,
.spline-hero .hero-title,
.contact-hero-dark h1,
.solutions-stage .hero-title,
.about-page-hero .hero-title {
  font-size: var(--launch-h1-compact);
}

.section-heading h2,
.split-copy h2,
.contact-copy h2,
.footer-card h2,
.cms-intro h2,
.recommended-robots .section-heading h2,
.about-who .section-heading h2,
.about-sectors-wrap .section-heading h2,
.about-backbone .section-heading h2 {
  font-size: var(--launch-h2);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-vision-panel .section-heading h2 {
  font-size: clamp(42px, 4.8vw, 62px);
}

.about-vision-inner h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.06;
}

.about-vision-subtitle {
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.38;
}

.about-vision-copy {
  font-size: var(--launch-body);
  line-height: 1.72;
}

.solution-body h3,
.product-card h3,
.story-card h3,
.benefit-card h3,
.routing-card h3,
.share-card h2,
.about-raas-card h3 {
  font-size: var(--launch-h3);
  line-height: 1.12;
  text-wrap: balance;
}

.hero-subtitle,
.page-subtitle,
.product-hero-copy .hero-subtitle,
.lead-text,
.product-intro .lead-text {
  font-size: var(--launch-lead);
  line-height: 1.42;
  text-wrap: balance;
}

.hero-copy,
.section-heading p,
.split-copy p,
.cms-intro p,
.body-copy,
.body-copy p,
.product-hero-text,
.contact-hero-dark .hero-copy,
.about-two-col p,
.about-sector-intro,
.about-sectors-footnote,
.about-backbone-copy,
.contact-copy p {
  font-size: var(--launch-body);
  line-height: 1.72;
  color: var(--launch-text);
}

.dark .section-heading p,
.split-copy.dark p,
.split-copy.dark li,
.hero-card .hero-copy,
.page-hero .hero-copy,
.product-hero .hero-copy,
.product-hero-text,
.contact-hero-dark .hero-copy,
.about-page-hero .hero-copy,
.about-vision-panel .section-heading p,
.about-vision-panel .about-body-copy {
  color: rgba(255, 255, 255, 0.82);
}

.solution-body p,
.product-card p,
.story-card p,
.benefit-card p,
.routing-card p,
.share-card p,
.faq-item p,
.home-faq-section .faq-item p,
.nav-dropdown-copy p,
.nav-dropdown-title span,
.product-specs-panel,
.product-feature-copy p {
  font-size: var(--launch-small);
  line-height: 1.65;
}

.product-card p,
.story-card p,
.benefit-card p,
.routing-card p,
.share-card p,
.faq-item p,
.product-specs-panel,
.product-feature-copy p {
  color: #48535e;
}

.solution-body p,
.nav-dropdown-copy p,
.nav-dropdown-title span {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow,
.product-media-status,
.nav-dropdown-kicker {
  letter-spacing: 0.035em;
}

.section {
  padding-block: clamp(72px, 8vw, 112px);
}

.section-heading {
  gap: clamp(24px, 4vw, 46px);
  margin-bottom: clamp(34px, 4.4vw, 56px);
}

.product-body,
.story-body {
  padding: clamp(22px, 2.2vw, 30px);
}

.catalog-card .product-media,
.product-media,
.story-media {
  min-height: clamp(260px, 24vw, 340px);
}

.about-who .about-two-col .lead-text {
  max-width: 28ch;
}

.about-lead-wide {
  max-width: 30ch;
  font-size: var(--launch-lead);
  line-height: 1.36;
}

.about-who .about-two-col p:not(.lead-text),
.about-backbone-copy p,
.cms-intro p,
.body-copy p {
  max-width: 68ch;
}

.contact-hero-dark,
.section.dark,
.about-vision-panel,
.about-cta-strip {
  border-radius: clamp(28px, 4.8vw, 64px);
}

@media (max-width: 900px) {
  :root {
    --launch-h1: clamp(36px, 9.8vw, 48px);
    --launch-h1-compact: clamp(34px, 8.8vw, 44px);
    --launch-h2: clamp(30px, 8vw, 40px);
    --launch-h3: clamp(22px, 6vw, 28px);
    --launch-lead: 18px;
    --launch-body: 16px;
    --launch-small: 15px;
  }

  .hero-title,
  .page-hero .hero-title,
  .product-hero-copy .hero-title,
  .cms-intro h1,
  .home-hero-title,
  .spline-hero .hero-title,
  .contact-hero-dark h1,
  .solutions-stage .hero-title,
  .about-page-hero .hero-title {
    font-size: var(--launch-h1);
    line-height: 1.08;
  }

  .about-page-hero .hero-title {
    max-width: 13ch;
  }

  .about-vision-panel .section-heading h2 {
    font-size: var(--launch-h2);
  }

  .share-card h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 32px;
  }

  .product-body,
  .story-body {
    padding: 22px;
  }

  .catalog-card .product-media,
  .product-media,
  .story-media {
    min-height: 250px;
  }

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .product-grid.solutions-catalog {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .solutions-catalog .catalog-lone {
    grid-column: auto;
  }

  .solutions-catalog .product-card,
  .solutions-catalog .catalog-card {
    width: 100%;
    min-height: auto;
  }

  .solutions-catalog .product-body {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero-title,
  .page-hero .hero-title,
  .product-hero-copy .hero-title,
  .cms-intro h1 {
    font-size: var(--launch-h1);
  }

  .hero-copy,
  .section-heading p,
  .split-copy p,
  .cms-intro p,
  .body-copy,
  .body-copy p,
  .product-hero-text,
  .contact-hero-dark .hero-copy,
  .about-two-col p,
  .contact-copy p {
    line-height: 1.68;
  }
}

/* B14 - about page composition cleanup */
.about-page-hero::after {
  background:
    radial-gradient(circle at 48% 44%, rgba(8, 18, 26, 0.03), rgba(0, 0, 0, 0.76) 64%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.9));
}

.about-page-hero .hero-spline-viewer {
  transform: translateX(-50%) scale(1.16);
}

.about-page-hero .hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 640px);
  align-content: center;
  align-items: center;
  gap: 0;
  padding-inline: clamp(48px, 8vw, 132px);
}

.about-page-hero .hero-layout > div:first-child,
.about-page-hero .hero-copy-card {
  grid-column: 1;
  justify-self: stretch;
  max-width: 640px;
}

.about-page-hero .hero-title {
  max-width: 12ch;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.08;
}

.about-page-hero .hero-copy-card {
  margin-top: 22px;
  padding-top: 0;
}

.about-page-hero .hero-copy {
  max-width: 32ch;
  font-size: clamp(18px, 1.18vw, 21px);
  line-height: 1.65;
  font-weight: 700;
}

.section.narrow.about-who {
  max-width: 1280px;
}

.about-who {
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 0.78fr);
  column-gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.about-who::before {
  inset: auto auto 8% 4%;
  width: min(40vw, 520px);
  height: min(40vw, 520px);
}

.about-who .section-heading,
.about-who .about-two-col {
  grid-column: 1;
  max-width: 620px;
  justify-self: stretch;
}

.about-who .section-heading {
  align-items: start;
  align-self: end;
  padding: 0;
}

.about-who .about-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  align-self: start;
}

.about-who .about-two-col > :first-child,
.about-who .about-two-col > :nth-child(2),
.about-who .about-two-col > :nth-child(3) {
  grid-column: 1;
  grid-row: auto;
}

.about-who .about-two-col .lead-text,
.about-lead-wide,
.about-who .about-two-col p:not(.lead-text),
.about-who-body {
  max-width: 100%;
  text-align: right;
}

.about-lead-wide {
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.42;
}

.about-who-body {
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.82;
}

.about-who-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: clamp(430px, 38vw, 580px);
}

@media (max-width: 900px) {
  .about-page-hero .hero-spline-viewer {
    transform: translateX(-50%) scale(1.1);
  }

  .about-page-hero .hero-layout {
    grid-template-columns: 1fr;
    align-content: end;
    padding-inline: 24px;
  }

  .about-page-hero .hero-layout > div:first-child,
  .about-page-hero .hero-copy-card {
    grid-column: 1;
    max-width: none;
  }

  .about-page-hero .hero-title {
    max-width: 12ch;
    font-size: clamp(38px, 10vw, 48px);
  }

  .about-page-hero .hero-copy {
    max-width: 27ch;
  }

  .about-who .section-heading,
  .about-who .about-two-col {
    max-width: none;
  }

  .about-who .about-two-col {
    margin-top: 22px;
    padding-top: 24px;
  }

  .about-who-visual {
    min-height: 330px;
  }
}

/* B15 - about page strength pass */
.about-sectors-wrap {
  padding-top: clamp(76px, 8vw, 116px);
  padding-bottom: clamp(78px, 8vw, 120px);
}

.about-sectors-wrap .section-heading {
  margin-bottom: clamp(34px, 4vw, 52px);
}

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

.about-sector-tile {
  min-height: 146px;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(9, 16, 24, 0.055);
}

.about-sector-label {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
}

.about-sectors-footnote {
  max-width: 1120px;
  margin: clamp(26px, 4vw, 46px) auto 0;
  padding: clamp(22px, 3vw, 34px) clamp(28px, 5vw, 64px);
  border: 1px solid rgba(14, 20, 27, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(22, 168, 216, 0.11), rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.96)),
    #fff;
  color: #16202a;
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
  box-shadow: 0 24px 64px rgba(9, 16, 24, 0.08);
}

.about-vision-panel {
  margin: clamp(8px, 1vw, 14px);
  padding: clamp(78px, 9vw, 132px) clamp(28px, 7vw, 112px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 28%, rgba(22, 168, 216, 0.26), rgba(22, 168, 216, 0) 31%),
    radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #061018 0%, #0d1720 50%, #03070b 100%);
  box-shadow: 0 30px 90px rgba(5, 10, 15, 0.18);
}

.about-vision-inner {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
}

.about-vision-title-block {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.about-vision-inner h2 {
  position: relative;
  max-width: 9ch;
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: 0.94;
}

.about-vision-inner h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 6px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--accent);
}

.about-vision-subtitle {
  max-width: 20ch;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  text-wrap: balance;
}

.about-vision-copy {
  margin: 0;
  max-width: 54ch;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(232, 241, 247, 0.84);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.85;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-vision-lineup {
  max-width: 1280px;
  margin: clamp(42px, 6vw, 84px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: #05090d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.about-vision-lineup img {
  width: 100%;
  height: auto;
}

.about-lifecycle-raas .section-heading h2,
.about-backbone .section-heading h2 {
  font-size: var(--launch-h2);
}

.about-lifecycle-lead {
  max-width: 760px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.36;
}

.about-lifecycle-steps li {
  min-height: auto;
  border: 1px solid rgba(14, 20, 27, 0.08);
}

.about-raas-card {
  border-radius: 24px;
  box-shadow: 0 24px 68px rgba(9, 16, 24, 0.08);
}

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

  .about-sector-tile {
    min-height: 104px;
    padding: 20px;
  }

  .about-sectors-footnote {
    padding: 22px;
    font-size: clamp(21px, 6.2vw, 28px);
    text-align: right;
  }

  .about-vision-panel {
    padding: 64px 24px;
  }

  .about-vision-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-vision-inner h2 {
    max-width: none;
    font-size: clamp(44px, 13vw, 64px);
  }

  .about-vision-subtitle {
    max-width: none;
    font-size: clamp(24px, 7vw, 34px);
  }

  .about-vision-copy {
    padding: 22px;
  }

  .about-vision-lineup {
    margin-top: 32px;
    border-radius: 18px;
  }

  .about-vision-lineup img {
    min-height: 220px;
    object-fit: cover;
    object-position: center;
  }
}

/* B18 - product intro: text right (col 1), image left (col 2), side by side */
.product-intro {
  max-width: min(1320px, calc(100vw - clamp(32px, 5vw, 88px)));
  padding-top: clamp(78px, 8vw, 122px);
  padding-bottom: clamp(72px, 8vw, 118px);
  scroll-margin-top: 132px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  grid-template-rows: auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.product-intro-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 32px);
}

.product-intro-media,
.product-intro-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: clamp(320px, 44svh, 520px);
  padding: 0;
  border: 1px solid rgba(9, 16, 24, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(22, 168, 216, 0.15), transparent 32%),
    #081018;
  box-shadow: 0 28px 78px rgba(9, 16, 24, 0.14);
}

.product-intro-media {
  position: relative;
}

.product-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0) 48%);
}

.product-intro-video,
.product-intro-media img,
.product-intro-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-intro-video {
  background: #081018;
}

.product-intro .lead-text {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.product-intro .body-copy {
  margin: 0;
  max-width: 52ch;
}

.product-intro .body-copy p {
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .product-intro {
    max-width: calc(100vw - 28px);
    padding-top: 34px;
    padding-bottom: 58px;
    scroll-margin-top: 96px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
  }

  .product-intro-media,
  .product-intro-image {
    grid-column: 1;
    grid-row: 1;
    height: clamp(210px, 52svh, 340px);
    min-height: 210px;
    max-height: 340px;
    border-radius: 22px;
  }

  .product-intro-copy {
    grid-column: 1;
    grid-row: 2;
    gap: 16px;
  }

  .product-intro .lead-text {
    max-width: none;
    font-size: clamp(26px, 7vw, 34px);
  }

  .product-intro .body-copy {
    max-width: none;
  }
}

/* B19 - launch pass for product intro proportions */
.section.narrow.product-intro {
  max-width: min(1320px, calc(100vw - clamp(28px, 4vw, 64px)));
  padding-right: 0;
  padding-left: 0;
}

.section.narrow.product-intro .lead-text {
  max-width: 26ch;
  font-size: clamp(25px, 2.05vw, 34px);
  line-height: 1.22;
}

.section.narrow.product-intro .body-copy {
  max-width: 68ch;
}

.section.narrow.product-intro .body-copy p {
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.82;
}

.section.narrow.product-intro .lead-text.long-lead {
  max-width: 34ch;
  font-size: clamp(23px, 1.7vw, 30px);
  line-height: 1.28;
}

@media (max-width: 900px) {
  .section.narrow.product-intro {
    max-width: calc(100vw - 28px);
    padding-right: 0;
    padding-left: 0;
    gap: 22px;
  }

  .section.narrow.product-intro .product-intro-media,
  .section.narrow.product-intro .product-intro-image {
    height: clamp(190px, 52vw, 230px);
    min-height: 190px;
    max-height: 230px;
  }

  .section.narrow.product-intro .lead-text {
    font-size: clamp(24px, 6.2vw, 30px);
    line-height: 1.22;
  }

  .section.narrow.product-intro .lead-text.long-lead {
    font-size: clamp(21px, 5.3vw, 25px);
    line-height: 1.32;
  }
}

/* B33 - split robot intro copy across the desktop width: main right, details left */
@media (min-width: 901px) {
  body.single-newbotix_robot .section.narrow.product-intro {
    --nbx-product-intro-strip-space: clamp(64px, 6vw, 96px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
    padding-top: var(--nbx-product-intro-strip-space);
    row-gap: var(--nbx-product-intro-strip-space);
  }

  body.single-newbotix_robot .section.narrow.product-intro .product-intro-copy {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.78fr);
    gap: clamp(32px, 5vw, 92px);
    align-items: start;
    width: 100%;
    direction: ltr;
  }

  body.single-newbotix_robot .section.narrow.product-intro .product-intro-copy > .lead-text {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    direction: rtl;
    text-align: right;
  }

  body.single-newbotix_robot .section.narrow.product-intro .product-intro-copy > .body-copy {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    direction: rtl;
    text-align: right;
  }

  body.single-newbotix_robot .section.narrow.product-intro .product-intro-copy > .lead-text:only-child,
  body.single-newbotix_robot .section.narrow.product-intro .product-intro-copy > .body-copy:only-child {
    grid-column: 1 / -1;
    max-width: 68ch;
    justify-self: end;
  }

  body.single-newbotix_robot .section.narrow.product-intro .product-intro-media,
  body.single-newbotix_robot .section.narrow.product-intro .product-intro-image {
    grid-column: 1;
    grid-row: 2;
  }
}

/* B20 - keep product video card copy readable over dark media */
.product-feature-card .product-feature-copy {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.9) 34%,
      rgba(0, 0, 0, 0.54) 68%,
      rgba(0, 0, 0, 0) 100%
    );
}

.product-feature-card .product-feature-copy h3 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.84), 0 1px 2px rgba(0, 0, 0, 0.72);
}

.product-feature-card .product-feature-copy p {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.86), 0 1px 2px rgba(0, 0, 0, 0.72);
}

@media (max-width: 900px) {
  .product-feature-card .product-feature-copy {
    background: #05090d;
  }
}

/* B21 - keep bottom CTA support copy readable on dark image bands */
.contact-band .contact-copy h2 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58), 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-band .contact-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.66), 0 1px 2px rgba(0, 0, 0, 0.56);
}

/* M1 — mobile hero framing: keep the same rounded-card language as tablet/desktop
   while hiding the top paper gap behind the first fixed nav/hero area. */
@media (max-width: 600px) {
  .page {
    background:
      linear-gradient(180deg, #05090d 0, #05090d 128px, var(--paper) 128px, var(--paper) 100%);
  }

  .contact-band,
  .footer-card,
  .about-vision-panel,
  .about-cta-strip {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .hero-card,
  .contact-hero-dark,
  .section.dark {
    width: calc(100% - 16px);
    margin: 8px;
    border-radius: 32px;
  }

  .contact-band::before {
    border-radius: 0;
  }

  .hero-card::before,
  .hero-card::after,
  .contact-hero-dark::before,
  .contact-hero-dark::after {
    border-radius: inherit;
  }

  .about-sectors-wrap {
    margin-inline: 0;
    border-radius: 0;
  }
}

/* M2 — about page: single hero photo replaces robot lineup */
.about-who-photo {
  padding: 0;
  overflow: hidden;
  background: #05090d;
}

.about-who-photo::before,
.about-who-photo::after {
  display: none;
}

.about-who-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Tighten heading gap */
.about-who .section-heading {
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-who {
  row-gap: clamp(6px, 1vw, 12px);
}

/* M3 — about page: lifecycle steps grid — balanced 3+2 on desktop, 2-col on tablet, stack on mobile */
@media (max-width: 900px) {
  .about-lifecycle-raas .about-lifecycle-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-lifecycle-raas .about-raas-card {
    grid-template-columns: 1fr;
  }

  .about-lifecycle-raas .about-raas-card p:last-child {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .about-lifecycle-raas .about-lifecycle-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-lifecycle-steps li {
    padding: 18px 20px;
  }
}

/* M4 — about page: tighten section spacing */
.about-who {
  padding-bottom: clamp(32px, 4vw, 56px);
}

/* M5 — contact band mobile: form stacks full-width */
@media (max-width: 600px) {
  .contact-inner {
    grid-template-columns: 1fr;
    padding: clamp(32px, 6vw, 48px) clamp(20px, 5vw, 32px);
    min-height: auto;
  }

  .contact-band .contact-copy {
    text-align: center;
  }

  .contact-band .contact-copy h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
}

/* About: newpan link styling */
.about-two-col a[href*="newpan"] {
  color: #e02020;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: opacity 180ms ease;
}

.about-two-col a[href*="newpan"]:hover {
  opacity: 0.75;
}
