:root {
  --bg: #e8f0ff;
  --band: rgba(255, 255, 255, .42);
  --paper: rgba(255, 255, 255, .82);
  --ink: #333333;
  --muted: #666666;
  --line: rgba(51, 51, 51, .10);
  --brand: #5b8ff9;
  --brand-2: #8a70d6;
  --accent: #5b8ff9;
  --accent-2: #8a70d6;
  --warm: #f5f7fa;
  --mint: rgba(232, 240, 255, .72);
  --shadow: 0 8px 32px rgba(31, 38, 135, .10);
  --soft: 0 12px 32px rgba(91, 143, 249, .08);
  --radius: 16px;
  --glass-blur: blur(15px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.i18n-pending body {
  visibility: hidden;
}

html.i18n-ready body,
html.i18n-timeout body {
  visibility: visible;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.is-video-lightbox-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; }
[data-full-video] { cursor: pointer; }

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 100;
  transform: scaleX(var(--scroll, 0));
  transform-origin: left;
  background: linear-gradient(90deg, #6b9cff, #8a70d6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-logo {
  display: block;
  width: clamp(150px, 15vw, 198px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "▾";
  margin-left: 6px;
  font-size: 10px;
  line-height: 1;
  opacity: .62;
}

.nav-menu[open] summary::after {
  transform: rotate(180deg);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #4e4945;
  font-weight: 760;
  font-size: 14px;
  transition: color .18s ease, background .18s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
  background: #fff;
  box-shadow: var(--soft);
}

.nav-menu[open] > summary {
  color: var(--accent);
  background: #fff;
  box-shadow: var(--soft);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 1001;
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 16px;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(200, 210, 230, .88);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 90px rgba(31, 38, 135, .14);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.nav-panel-business {
  grid-template-columns: minmax(230px, 1fr);
  width: min(380px, calc(100vw - 32px));
}

.nav-panel-solutions {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  width: min(620px, calc(100vw - 32px));
}

.nav-panel div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.nav-panel strong {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-panel a {
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.nav-panel a:hover {
  background: rgba(91, 143, 249, .08);
  color: var(--accent);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #6b9cff, #8a70d6);
  box-shadow: 0 16px 34px rgba(91, 143, 249, .22);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(91, 143, 249, .26);
}

.site-header .nav-cta:not(.nav-try-cta) {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(91, 143, 249, .22);
  box-shadow: 0 14px 30px rgba(31, 38, 135, .08);
}

.site-header .nav-cta:not(.nav-try-cta):hover {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(31, 38, 135, .12);
}

.nav-try-cta {
  color: #fff;
  background: linear-gradient(135deg, #6b9cff, #8a70d6);
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: 0 18px 42px rgba(91, 143, 249, .3);
}

.nav-try-cta:hover {
  box-shadow: 0 20px 48px rgba(91, 143, 249, .34);
}

html[lang="de"] .site-header .nav-cta {
  padding: 0 16px;
  font-size: 13px;
}

.language-switch {
  position: relative;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(35, 33, 31, .1);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--soft);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.language-trigger-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.language-trigger strong {
  min-width: 52px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
}

.language-trigger::after {
  content: "\25BE";
  color: rgba(35, 33, 31, .62);
  font-size: 10px;
  line-height: 1;
  transform: translateY(1px);
}

.language-flag {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(35, 33, 31, .16);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(35, 33, 31, .12);
}

.language-flag::before,
.language-flag::after {
  content: "";
  position: absolute;
  display: block;
}

.language-flag-zh {
  background: #de2910;
}

.language-flag-zh::after {
  left: 4px;
  top: 4px;
  width: 6px;
  height: 6px;
  background: #ffde00;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.language-flag-en {
  background:
    linear-gradient(90deg, #3c3b6e 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #b22234 0 2px, #fff 2px 4px);
}

.language-flag-de {
  background: linear-gradient(180deg, #111 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666%);
}

.language-flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666%);
}

.language-flag-it {
  background: linear-gradient(90deg, #009246 0 33.333%, #fff 33.333% 66.666%, #ce2b37 66.666%);
}

.language-flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.language-flag-pt {
  background: linear-gradient(90deg, #006600 0 42%, #ff0000 42%);
}

.language-flag-pt::after {
  left: 6px;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffcc00;
}

.language-flag-ja {
  background: #fff;
}

.language-flag-ja::after {
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bc002d;
}

.language-flag-ko {
  background: #fff;
}

.language-flag-ko::after {
  left: 5px;
  top: 4px;
  width: 8px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #cd2e3a 0 50%, #0047a0 50%);
}

.language-flag-ru {
  background: linear-gradient(180deg, #fff 0 33.333%, #0039a6 33.333% 66.666%, #d52b1e 66.666%);
}

.language-switch.is-open .language-trigger {
  border-color: rgba(91, 143, 249, .36);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(35, 33, 31, .16);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1250;
  display: grid;
  gap: 4px;
  min-width: 176px;
  padding: 8px;
  border: 1px solid rgba(35, 33, 31, .1);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 70px rgba(35, 33, 31, .18);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 9px 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-option-text {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.language-option-text strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option-text em {
  color: rgba(35, 33, 31, .44);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: var(--accent);
  background: rgba(91, 143, 249, .08);
}

.language-menu button:hover .language-option-text em,
.language-menu button.is-active .language-option-text em {
  color: var(--accent);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.contact-widget {
  position: fixed;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(88px, 10vh, 128px);
  z-index: 1400;
  pointer-events: none;
}

.contact-float-btn {
  pointer-events: auto;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #6b9cff, #8a70d6);
  box-shadow: 0 22px 58px rgba(91, 143, 249, .34);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-float-btn:hover,
.contact-float-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(91, 143, 249, .4);
  outline: none;
}

.contact-modal {
  pointer-events: auto;
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 33, 31, .36);
  backdrop-filter: blur(10px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(320px, 1fr);
  gap: 28px;
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 34px 120px rgba(35, 33, 31, .28);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.contact-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

.contact-copy p {
  font-size: 16px;
  font-weight: 720;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-direct a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(91, 143, 249, .18);
  border-radius: 8px;
  background: rgba(232, 240, 255, .64);
}

.contact-direct b {
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.contact-direct span {
  color: var(--ink);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 33, 31, .14);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(91, 143, 249, .58);
  outline: 3px solid rgba(91, 143, 249, .12);
}

.contact-status {
  min-height: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

body.is-contact-modal-open {
  overflow: hidden;
}

.shell {
  width: 100%;
  margin: 0 auto;
}

.view { display: none; }
.view.is-active {
  display: block;
  animation: viewIn .36s ease;
}

@keyframes viewIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.view[data-view="pricing"] .container {
  width: min(1240px, calc(100% - 40px));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
}

.hero::before,
.soft-blob {
  display: none;
}

.hero::before {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 520px;
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 610px;
  margin-top: 18px;
  color: #4c4641;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-media {
  position: relative;
  min-height: 440px;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 30px;
  background: #f5f7fa;
  box-shadow: 0 36px 110px rgba(35,33,31,.16);
  transform: translateZ(0);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.42), transparent 36%, rgba(91, 143, 249,.05));
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.005);
  transition: transform .7s ease;
}

.hero-showcase:hover img {
  transform: scale(1.03);
}

.view[data-view="home"] > .hero {
  min-height: clamp(620px, calc(100vh - 68px), 820px);
  display: grid;
  align-items: center;
  padding: 0;
  background: #e8f0ff;
}

.home-vision-video,
.home-vision-scrim {
  position: absolute;
  inset: 0;
}

.home-vision-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #e8f0ff url("assets/hero-suite-clean.png") center right / cover no-repeat;
}

.home-vision-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(232, 240, 255, .98) 0%,
      rgba(232, 240, 255, .9) 30%,
      rgba(232, 240, 255, .58) 50%,
      rgba(232, 240, 255, .2) 72%,
      rgba(232, 240, 255, .08) 100%),
    linear-gradient(0deg, rgba(232, 240, 255, .24), rgba(232, 240, 255, .08));
}

.video-play-hotspot {
  --play-icon-size: 34px;
  --play-icon-center-x: 31px;
  --play-triangle-width: 10px;
  --play-triangle-height: 12px;
  --play-triangle-nudge: 1.5px;
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 4vw, 52px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  color: #fff;
  background: rgba(32, 28, 26, .48);
  box-shadow: 0 18px 46px rgba(33, 26, 22, .22);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  backdrop-filter: blur(18px);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.video-play-hotspot::before {
  content: "";
  width: var(--play-icon-size);
  height: var(--play-icon-size);
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}

.video-play-hotspot::after {
  content: "";
  position: absolute;
  left: var(--play-icon-center-x);
  top: 50%;
  width: var(--play-triangle-width);
  height: var(--play-triangle-height);
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
  transform: translate(calc(-50% + var(--play-triangle-nudge)), -50%);
}

.video-play-hotspot:hover,
.video-play-hotspot:focus-visible {
  transform: translateY(-2px);
  background: rgba(32, 28, 26, .62);
  box-shadow: 0 24px 58px rgba(33, 26, 22, .28);
  outline: none;
}

.home-hero-try-cta {
  position: absolute;
  top: 48%;
  right: clamp(180px, 24vw, 430px);
  z-index: 5;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: visible;
  min-width: 204px;
  min-height: 68px;
  padding: 0 26px 0 30px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #5b8ff9 0%, #756cf2 54%, #936fe4 100%);
  box-shadow:
    0 24px 68px rgba(91, 143, 249, .42),
    0 0 0 10px rgba(255, 255, 255, .12);
  font-size: 20px;
  font-weight: 1000;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-hero-try-cta::before,
.home-hero-try-cta::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: inherit;
  background: rgba(91, 143, 249, .16);
  box-shadow: 0 0 0 1px rgba(91, 143, 249, .16);
  opacity: 0;
  pointer-events: none;
  animation: homeHeroTryRipple 2.8s cubic-bezier(.18, .82, .28, 1) infinite;
}

.home-hero-try-cta::after {
  animation-delay: 1.4s;
}

.home-hero-try-cta:hover,
.home-hero-try-cta:focus-visible {
  background: linear-gradient(135deg, #4e84ff 0%, #6b62ec 52%, #8864dc 100%);
  box-shadow:
    0 30px 82px rgba(91, 143, 249, .5),
    0 0 0 12px rgba(255, 255, 255, .16);
  outline: none;
  transform: translateY(-53%) scale(1.02);
}

.home-hero-try-cta span,
.home-hero-try-cta-icon {
  position: relative;
  z-index: 1;
}

.home-hero-try-cta-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
}

.home-hero-try-cta-icon::before,
.home-hero-try-cta-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}

.home-hero-try-cta-icon::before {
  width: 12px;
  height: 2px;
  left: 10px;
  top: 16px;
}

.home-hero-try-cta-icon::after {
  width: 9px;
  height: 9px;
  right: 10px;
  top: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  background: transparent;
  transform: rotate(45deg);
}

@keyframes homeHeroTryRipple {
  0% {
    opacity: .72;
    transform: scale(1);
  }
  72% {
    opacity: .14;
  }
  100% {
    opacity: 0;
    transform: scale(1.26, 1.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-try-cta::before,
  .home-hero-try-cta::after {
    animation: none;
    opacity: .28;
    transform: scale(1.06);
  }
}

.view[data-view="home"] > .hero .hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1160px, calc(100% - 96px));
}

.view[data-view="home"] > .hero .hero-grid > [data-reveal]:first-child {
  max-width: 610px;
}

.home-mobile-vision {
  display: none;
  position: relative;
}

.home-mobile-vision video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #e8f0ff url("assets/hero-suite-clean.png") center / cover no-repeat;
}

.view[data-view="home"] > .hero h1 {
  max-width: 590px;
  margin-top: 18px;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: .95;
  letter-spacing: -0.02em;
}

.view[data-view="home"] > .hero .lead {
  max-width: 520px;
  margin-top: 24px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.7;
}

.view[data-view="home"] > .hero .actions {
  margin-top: 34px;
}

.view[data-view="home"] > .hero .hero-media {
  display: none;
}

.device-collage {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(150px, .75fr) minmax(150px, .75fr);
  gap: 14px;
  align-items: center;
  min-height: auto;
}

.screen {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.screen img,
.screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.screen.main {
  position: static;
  width: 100%;
}

.screen.phone {
  position: static;
  width: 100%;
  border: 7px solid #222;
  border-radius: 24px;
}

.screen.kiosk {
  position: static;
  width: 100%;
}

.screen.product {
  position: static;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 10px;
}

.screen.product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen.product.hero-campaign {
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: 24px;
}

.screen.product.hero-campaign img {
  object-fit: cover;
}

.phone-proof-wrap {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-proof {
  width: min(292px, 72vw);
  overflow: hidden;
  border: 10px solid #1f1f1f;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone-proof.tall {
  width: min(310px, 72vw);
}

.phone-proof img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.matrix-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
}

.matrix-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft);
}

.matrix-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
}

.matrix-card h3 {
  margin-bottom: 10px;
}

.matrix-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.matrix-card li {
  padding: 7px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.role-journeys {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.role-card {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, .72fr);
  gap: 26px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(200, 210, 230, .88);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--soft);
}

.role-card:nth-child(even) {
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
}

.role-card:nth-child(even) .role-copy {
  order: 2;
}

.role-copy span,
.cycle-head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.role-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.06;
}

.role-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 720;
}

.role-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.role-copy li {
  padding: 10px 12px;
  border: 1px solid rgba(200, 210, 230, .82);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.role-card figure {
  overflow: hidden;
  margin: 0;
  border: 10px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 38, 135, .1);
}

.role-card img,
.role-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.role-consumer figure,
.role-designer figure {
  justify-self: center;
  width: min(300px, 100%);
  border: 10px solid #fff;
  border-radius: 30px;
  background: #fff;
}

.role-consumer img,
.role-consumer video,
.role-designer img,
.role-designer video {
  aspect-ratio: 9 / 18;
}

.plain-cycle {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(200, 210, 230, .78);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(91, 143, 249, .08), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(245, 247, 250, .86));
  box-shadow: 0 28px 76px rgba(31, 38, 135, .08);
}

.cycle-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.cycle-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cycle-head h3 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.cycle-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.cycle-steps article {
  min-height: 190px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(200, 210, 230, .82);
  box-shadow: 0 16px 42px rgba(31, 38, 135, .06);
}

.cycle-steps b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(91, 143, 249, .1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
}

.cycle-steps h4 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.cycle-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 720;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  width: 100%;
  min-height: auto;
  margin-top: 32px;
  margin-left: 0;
  transform: none;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(245, 247, 250,.9)),
    linear-gradient(90deg, rgba(40,122,70,.08), transparent 28%, rgba(255,94,112,.08));
  box-shadow: var(--shadow);
}

.eco-panel,
.eco-core {
  position: relative;
  border: 1px solid rgba(35,33,31,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 26px 70px rgba(35,33,31,.08);
}

.eco-panel {
  padding: 24px;
}

.eco-core {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(25,76,47,.96), rgba(45,136,70,.96)),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.24), transparent 34%);
}

.eco-source .eco-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eco-panel > span,
.eco-core > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eco-core > span {
  color: rgba(255,255,255,.7);
}

.eco-panel h3,
.eco-core h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.12;
}

.eco-core h3 {
  font-size: 34px;
}

.eco-core p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.9);
  line-height: 1.72;
  font-weight: 760;
}

.eco-list {
  display: grid;
  gap: 12px;
}

.eco-list p {
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  color: var(--muted);
  background: #f8f6f3;
  line-height: 1.58;
  font-weight: 760;
}

.eco-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.eco-connector {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.eco-connector::before {
  content: "";
  flex: 1;
  height: 2px;
  min-height: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(91, 143, 249,.45), transparent);
}

.eco-connector::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(91, 143, 249,.45), transparent);
}

.eco-connector span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(232, 240, 255, .72);
  box-shadow: var(--soft);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.core-grid b {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: 14px;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.surface-grid article {
  display: flex;
  min-height: 196px;
  flex-direction: column;
  padding: 16px;
  border-radius: 18px;
  background: #f8f6f3;
  border: 1px solid rgba(35,33,31,.08);
}

.surface-grid strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 24px;
}

.surface-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-weight: 760;
}

.surface-grid em {
  margin-top: auto;
  padding-top: 14px;
  color: var(--accent);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.eco-return {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(35,33,31,.1);
  box-shadow: 0 20px 54px rgba(35,33,31,.07);
}

.eco-return b {
  color: var(--accent);
  font-size: 18px;
}

.eco-return span {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 760;
}

.architecture-lanes,
.loop-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.architecture-lanes article,
.loop-board article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft);
}

.architecture-lanes span,
.loop-board span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.architecture-lanes h3,
.loop-board h3 {
  margin-bottom: 10px;
}

.architecture-lanes p,
.loop-board p {
  color: var(--muted);
  line-height: 1.65;
}

.stats-band {
  padding: 30px 0;
  background: var(--band);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  text-align: center;
}

.stat b {
  display: block;
  color: var(--accent);
  font-size: 28px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.product-capability-home {
  background: #fff;
}

.home-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-capability-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(200, 210, 230, .88);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 143, 249, .28);
  box-shadow: 0 24px 70px rgba(31, 38, 135, .12);
}

.home-capability-card figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #f3eee9;
}

.home-capability-card img,
.home-capability-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-capability-card span,
.home-capability-card h3,
.home-capability-card p {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
}

.home-capability-card span {
  margin-top: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-capability-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-capability-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.65;
}

.home-scan-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(180, 221, 207, .32), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .72), #eef2f8);
}

.home-scan-panel {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(250,247,243,.74)),
    radial-gradient(circle at 100% 0%, rgba(91, 143, 249, .13), transparent 34%);
  box-shadow: var(--shadow);
}

.home-scan-media {
  width: min(320px, 100%);
  margin: 0 auto;
}

.home-scan-copy {
  max-width: 660px;
}

.home-scan-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
}

.home-scan-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.75;
}

.home-scan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.home-scan-steps article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(200, 210, 230, .82);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft);
}

.home-scan-steps b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
}

.home-scan-steps h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.home-scan-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.62;
}

.quality-showcase-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(132, 190, 178, .18), transparent 30%),
    linear-gradient(180deg, #fff, rgba(255, 255, 255, .72));
}

.quality-showcase-panel {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: 30px;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(200, 210, 230, .84);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245, 247, 250,.9)),
    radial-gradient(circle at 100% 0%, rgba(91, 143, 249, .1), transparent 34%);
  box-shadow: var(--soft);
}

.quality-showcase-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.quality-showcase-copy p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 740;
  line-height: 1.72;
}

.quality-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.quality-media-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 100%;
  padding: 18px 18px 22px;
  border: 1px solid rgba(200, 210, 230, .78);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 56px rgba(31, 38, 135, .1);
}

.quality-media-card .quality-phone {
  width: min(236px, 100%);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #f7f5f1);
  box-shadow:
    inset 0 0 0 1px rgba(35, 33, 31, .08),
    0 18px 46px rgba(31, 38, 135, .13);
  transform: none;
}

.quality-media-card .quality-phone::before {
  content: none;
  display: none;
}

.quality-media-card .quality-phone::after {
  top: 14px;
  width: 58px;
  height: 16px;
  background:
    radial-gradient(circle at 72% 50%, rgba(84, 91, 104, .72) 0 2px, transparent 3px),
    linear-gradient(180deg, #15171d, #06070a);
}

.quality-media-card .quality-phone video {
  border-radius: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(7, 9, 13, .24),
    0 0 0 1px rgba(7, 9, 13, .12);
}

.quality-media-card h3 {
  width: 100%;
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}

.quality-media-card p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.62;
}

.compact-home-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.home-product-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .56fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}

.home-product-head h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 4.1vw, 52px);
  line-height: 1.08;
}

@media (min-width: 961px) {
  .home-product-head h2 {
    white-space: nowrap;
  }
}

.home-product-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.78;
}

.home-product-board {
  overflow: hidden;
  border: 1px solid rgba(35, 33, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 80px rgba(35, 33, 31, .12);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border-right: 1px solid rgba(35, 33, 31, .12);
  background: #fff;
  color: var(--ink);
  transition: background .2s ease;
}

.home-product-card:last-child {
  border-right: 0;
}

.home-product-card:hover {
  background: #fffdfb;
}

.home-product-shot {
  position: relative;
  overflow: hidden;
  height: 330px;
  margin: 0;
  background: rgba(255, 255, 255, .45);
}

.home-product-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(35, 33, 31, .42));
}

.home-product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-product-card:hover .home-product-shot img {
  transform: scale(1.025);
}

.home-product-card.is-app .home-product-shot img {
  object-position: 52% 48%;
}

.home-product-card.is-web .home-product-shot img {
  object-position: 50% 50%;
}

.home-product-card.is-station .home-product-shot img {
  object-position: 50% 45%;
}

.home-product-shot figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff;
}

.home-product-shot b {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.home-product-shot span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.2;
}

.home-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.home-product-role {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.home-product-body > p:not(.home-product-role) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.68;
}

.home-product-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.home-product-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(35, 33, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: #413d39;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.home-product-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #8a70d6);
  box-shadow: 0 8px 18px rgba(91, 143, 249, .22);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.home-product-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid rgba(35, 33, 31, .12);
  background: rgba(255, 255, 255, .72);
}

.home-product-flow div {
  min-height: 78px;
  padding: 15px 16px;
  border: 1px solid rgba(35, 33, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--soft);
}

.home-product-flow b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.home-product-flow span:not(.home-product-arrow) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.5;
}

.home-product-arrow {
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.customer-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.customer-entry-grid a {
  display: block;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(200, 210, 230, .88);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--soft);
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.customer-entry-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 143, 249, .3);
  box-shadow: 0 24px 70px rgba(31, 38, 135, .12);
}

.customer-entry-grid span {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.customer-entry-grid h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  font-size: 22px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.customer-entry-grid p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.65;
}

.section {
  position: relative;
  padding: 74px 0;
}

.section.band {
  background: var(--band);
  backdrop-filter: var(--glass-blur);
}

.section-head {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head p {
  margin-top: 12px;
}

.problem-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.problem-board {
  display: grid;
  gap: 18px;
}

.problem-flow,
.pain-grid {
  display: grid;
  gap: 14px;
}

.problem-flow {
  grid-template-columns: repeat(4, 1fr);
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-flow article,
.pain-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--soft);
}

.problem-flow span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.problem-flow h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.problem-flow p,
.pain-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.pain-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 16px;
}

.solution-strip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(91, 143, 249, .18);
  border-radius: 14px;
  background: rgba(232, 240, 255, .82);
  line-height: 1.65;
}

.solution-strip b {
  flex: 0 0 auto;
  color: var(--accent);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 46px;
  align-items: center;
  margin: 46px 0;
}

.feature-row.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, .9fr);
}

.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-art { order: 1; }

.feature-copy .index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--accent);
  background: #fff;
  box-shadow: var(--soft);
  font-weight: 850;
}

.feature-copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.bullets {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.bullets span {
  position: relative;
  padding-left: 20px;
  color: #514b46;
  line-height: 1.6;
}

.bullets span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.grid.five { grid-template-columns: repeat(5, 1fr); }

.card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--soft);
  backdrop-filter: var(--glass-blur);
}

.card h3 {
  margin-bottom: 10px;
}

.card .tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(232, 240, 255, .72);
  font-size: 12px;
  font-weight: 850;
}

.case-list {
  max-width: 860px;
  margin: 0 auto;
}

.classification-note {
  max-width: 940px;
  margin: 0 auto 26px;
  padding: 20px 24px;
  border: 1px solid rgba(35,33,31,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--soft);
}

.classification-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 1000;
}

.classification-note span {
  display: block;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 760;
}

.case-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.case-item:nth-child(even) {
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
}

.case-item:nth-child(even) .case-copy { order: 2; }
.case-item:nth-child(even) .case-art { order: 1; }

.case-art {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, var(--mint));
}

.case-art img {
  max-height: 220px;
  object-fit: contain;
}

.learn-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-band {
  padding: 58px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #6b9cff, #8a70d6);
}

.quote-band p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.advantage-grid article {
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(35,33,31,.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f5f7fa);
  box-shadow: var(--soft);
}

.advantage-grid span,
.comparison-panel .panel-title span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(91, 143, 249, .08);
  font-size: 12px;
  font-weight: 950;
}

.advantage-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.75;
}

.comparison-panel {
  overflow: hidden;
  border: 1px solid rgba(35,33,31,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.comparison-panel .panel-title {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(91, 143, 249, .14);
  background: linear-gradient(135deg, rgba(247, 251, 255, .98), rgba(232, 240, 255, .9));
}

.comparison-table {
  display: grid;
}

.comparison-row {
  display: grid;
  grid-template-columns: 130px repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(35,33,31,.08);
}

.comparison-row > * {
  margin: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(35,33,31,.08);
  color: var(--muted);
  line-height: 1.65;
  font-weight: 720;
}

.comparison-row > *:last-child {
  border-right: 0;
}

.comparison-head {
  background: rgba(91, 143, 249, .07);
}

.comparison-head strong,
.comparison-row span {
  color: var(--ink);
  font-weight: 950;
}

.comparison-row p:nth-child(3),
.comparison-row p:nth-child(4) {
  color: var(--ink);
}

.comparison-row > *:last-child {
  color: var(--accent);
  background:
    linear-gradient(90deg, rgba(91, 143, 249, .16), rgba(91, 143, 249, .06));
  box-shadow: inset 4px 0 0 rgba(91, 143, 249, .48);
  font-weight: 900;
}

.comparison-head > *:last-child {
  color: var(--accent);
  background: rgba(91, 143, 249, .12);
  font-weight: 1000;
}

.comparison-row:not(.comparison-head) > p:last-child {
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft);
}

.step b {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 28px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-grid.refined {
  gap: 16px;
  align-items: stretch;
}

.price-card {
  min-height: 390px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f5f7fa);
  border: 1px solid var(--line);
  box-shadow: var(--soft);
}

.price-card.featured {
  border-color: rgba(91, 143, 249,.32);
  box-shadow: 0 24px 70px rgba(91, 143, 249, .16);
}

.plan-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(91, 143, 249, .08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  color: var(--accent);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
}

.price small,
.price span {
  font-size: 18px;
  font-weight: 800;
}

.price-card dl {
  margin: 18px 0 0;
}

.price-card dt,
.price-card dd {
  margin: 0;
}

.price-card dt {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #9a8f88;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card dd {
  padding: 5px 0 11px;
  color: #4f4944;
  line-height: 1.5;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 143, 249, .18);
  background: rgba(232, 240, 255, .86);
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}

.faq details[open] summary::before {
  content: "-";
}

.faq details p {
  padding: 0 20px 20px;
}

.video-frame {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: rgba(255, 255, 255, .72);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.video-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft);
}

.video-card h3 {
  margin: 12px 0 6px;
  font-size: 20px;
}

.app-hero-video-section {
  padding: 56px 0 72px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,242,239,.88)),
    radial-gradient(circle at 18% 0%, rgba(91, 143, 249,.12), transparent 32%);
}

.app-hero-video-section .container {
  width: min(100% - 40px, 1280px);
}

.app-hero-video-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(20px, 3.2vw, 40px);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,247,244,.86)),
    radial-gradient(circle at 100% 0%, rgba(91, 143, 249,.13), transparent 34%);
  box-shadow: var(--soft);
}

.app-hero-video-copy {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(360px, .72fr);
  gap: 32px;
  align-items: end;
}

.app-hero-video-copy h2 {
  margin: 12px 0 16px;
  max-width: 760px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .98;
}

.app-hero-video-copy p {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.8;
}

.app-hero-video-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 14px solid rgba(255,255,255,.88);
  border-radius: 34px;
  background: #f5efe9;
  box-shadow: 0 38px 110px rgba(63,49,44,.2);
}

.app-hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 10, .72);
  backdrop-filter: blur(14px);
}

.video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 96vw);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #0b0b0c;
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
}

.video-lightbox__video {
  width: 100%;
  max-height: 82vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 20px;
  background: #050505;
}

.video-lightbox__close {
  position: absolute;
  right: 0;
  top: -50px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.video-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.demo-showcase {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.demo-story {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,242,239,.82));
  box-shadow: var(--soft);
}

.demo-story.primary {
  grid-template-columns: minmax(280px, .9fr) minmax(260px, .72fr);
  min-height: 650px;
}

.demo-story.wide {
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  min-height: auto;
}

.demo-story.compact {
  grid-template-columns: minmax(320px, 1fr) minmax(260px, .78fr);
  background: #fff;
}

.demo-story.compact.wide {
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
}

.station-story {
  grid-template-columns: minmax(260px, .58fr) minmax(560px, 1.42fr);
  justify-content: center;
}

.station-story .demo-copy {
  order: 1;
}

.station-story .demo-visual {
  order: 2;
}

.demo-copy {
  max-width: 520px;
}

.demo-copy > .tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.demo-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
}

.demo-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.demo-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.demo-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(200, 210, 230, .82);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  cursor: pointer;
}

.demo-points b {
  color: var(--accent);
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
}

html[lang="de"] .demo-points li {
  grid-template-columns: 36px 1fr;
}

.chapter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chapter-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(91, 143, 249, .16);
  border-radius: 999px;
  background: rgba(91, 143, 249, .08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.demo-story.evidence {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(245, 247, 250, .86)),
    radial-gradient(circle at 88% 0%, rgba(91, 143, 249, .1), transparent 30%);
}

.demo-story.evidence .demo-visual {
  align-self: center;
}

.demo-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.demo-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video::-webkit-media-controls {
  display: none !important;
}

.phone-video {
  --phone-yaw: -6.8deg;
  --phone-shell: linear-gradient(90deg, #747a80 0%, #333841 5%, #08090d 16%, #11141a 48%, #2f343c 88%, #a3a8ad 100%);
  --phone-highlight: inset 3px 0 0 rgba(255, 255, 255, .18);
  --phone-shade: inset -5px 0 0 rgba(0, 0, 0, .58);
  --phone-button-left: auto;
  --phone-button-right: -2px;
  --phone-button-radius: 0 5px 5px 0;
  position: relative;
  display: grid;
  width: min(330px, 76vw);
  justify-self: center;
  overflow: visible;
  aspect-ratio: 9 / 19.5;
  padding: 10px 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 46px;
  background: var(--phone-shell);
  box-shadow:
    var(--phone-highlight),
    var(--phone-shade),
    inset 0 0 0 2px rgba(255, 255, 255, .06),
    0 34px 90px rgba(31, 38, 135, .18),
    0 16px 34px rgba(10, 12, 16, .22);
  transform: perspective(1250px) rotateY(var(--phone-yaw)) rotateX(.45deg);
  transform-origin: center;
}

.home-scan-panel > .phone-video,
.demo-story.evidence > .phone-video:first-child {
  --phone-yaw: 6.8deg;
  --phone-shell: linear-gradient(270deg, #747a80 0%, #333841 5%, #08090d 16%, #11141a 48%, #2f343c 88%, #a3a8ad 100%);
  --phone-highlight: inset -3px 0 0 rgba(255, 255, 255, .18);
  --phone-shade: inset 5px 0 0 rgba(0, 0, 0, .58);
  --phone-button-left: -2px;
  --phone-button-right: auto;
  --phone-button-radius: 5px 0 0 5px;
}

.phone-video::before,
.phone-video::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.phone-video::before {
  top: 92px;
  left: var(--phone-button-left);
  right: var(--phone-button-right);
  z-index: 2;
  width: 3px;
  height: 34px;
  border-radius: var(--phone-button-radius);
  background: linear-gradient(180deg, #1f242b, #838a93 48%, #2a3038);
  box-shadow:
    0 50px 0 #4a5058,
    0 96px 0 #4a5058;
}

.phone-video::after {
  top: 17px;
  left: 50%;
  z-index: 3;
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(88, 96, 112, .8) 0 3px, transparent 4px),
    linear-gradient(180deg, #111319, #030405);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .1),
    0 1px 2px rgba(255, 255, 255, .16);
  transform: translateX(-50%);
}

.phone-video video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  border-radius: 34px;
  background: #07090d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .16),
    0 0 0 1px rgba(0, 0, 0, .42);
}

.wide-video {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 12px solid #fff;
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 80px rgba(31, 38, 135, .15);
}

.station-video {
  width: min(760px, 100%);
  justify-self: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 10px solid #fff;
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 34px 90px rgba(31, 38, 135, .18);
}

.hardware-split {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(380px, 1.12fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 34px;
}

.hardware-photo,
.hardware-spec-sheet {
  overflow: hidden;
  margin: 0;
  border: 12px solid #fff;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--soft);
}

.hardware-photo img,
.hardware-spec-sheet img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hardware-brief {
  display: grid;
  gap: 14px;
}

.hardware-brief article,
.deployment-board article {
  padding: 22px;
  border: 1px solid rgba(200, 210, 230, .88);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 50px rgba(31, 38, 135, .06);
}

.hardware-brief span,
.deployment-board b {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(91, 143, 249, .1);
  color: var(--accent);
  font-weight: 900;
}

.hardware-brief h3,
.deployment-board h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.hardware-brief p,
.deployment-board p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.05fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 34px;
}

.spec-cards {
  display: grid;
  gap: 16px;
}

.hardware-product-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.hardware-product-row {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(320px, .82fr);
  gap: 26px;
  align-items: stretch;
}

.spec-card {
  min-height: 268px;
  padding: 24px;
  border: 1px solid rgba(200, 210, 230, .88);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--soft);
}

.spec-card.featured-spec {
  border-color: rgba(91, 143, 249, .28);
  box-shadow: 0 24px 70px rgba(91, 143, 249, .10);
}

.spec-card h3 {
  margin: 12px 0 16px;
  font-size: 28px;
}

.spec-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-card div,
.spec-card dt,
.spec-card dd {
  margin: 0;
}

.spec-card dt {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.spec-card dd {
  color: var(--muted);
  line-height: 1.65;
}

.hardware-spec-sheet {
  min-height: 0;
  background: #f5f7fa;
}

.hardware-spec-sheet img {
  object-fit: contain;
  background: #f5f7fa;
}

.hardware-tool-portrait {
  display: flex;
  width: min(100%, 430px);
  aspect-ratio: 3 / 4;
  min-height: 100%;
  justify-self: center;
  background: #f5f7fa;
}

.hardware-tool-portrait img {
  flex: 1;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
  background: #f5f7fa;
}

.hardware-lineup-visual img {
  object-fit: cover;
}

.hardware-machine-stack {
  display: grid;
  grid-template-columns: minmax(160px, .88fr) minmax(220px, 1.12fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
  height: 100%;
}

.machine-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 268px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(91, 143, 249, .10), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(245, 247, 250, .82));
  box-shadow: var(--soft);
  backdrop-filter: var(--glass-blur);
}

.machine-card.is-featured {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 0;
}

.machine-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 180px;
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.machine-card.is-featured img {
  min-height: 0;
  padding: 0;
}

.machine-card figcaption {
  display: grid;
  gap: 4px;
  align-self: center;
  padding: 0 20px 20px;
}

.machine-card figcaption span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.machine-card figcaption b {
  color: var(--ink);
  font-size: 20px;
}

.view[data-view="hardware"] {
  background: transparent;
  color: var(--ink);
}

.view[data-view="hardware"] .hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 98px 0;
}

.hero-visual {
  min-height: clamp(620px, calc(100vh - 68px), 820px);
  display: grid;
  align-items: center;
  padding: 0;
  background-color: rgba(255, 255, 255, .72);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero-visual .hero-grid {
  display: block;
}

.hero-visual h1 {
  max-width: 560px;
}

.hero-visual .lead {
  max-width: 560px;
}

.hero-app {
  background-image:
    linear-gradient(90deg,
      rgba(232, 240, 255, .99) 0%,
      rgba(232, 240, 255, .94) 32%,
      rgba(232, 240, 255, .58) 52%,
      rgba(232, 240, 255, .12) 74%),
    url("assets/hero-app-lifestyle.png");
}

.hero-web {
  position: relative;
  overflow: hidden;
  background: #e8f0ff;
}

.web-hero-video,
.web-hero-scrim {
  position: absolute;
  inset: 0;
}

.web-hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #e8f0ff url("assets/hero-web-workbench.png") center / cover no-repeat;
}

.web-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(232, 240, 255, .98) 0%,
      rgba(232, 240, 255, .9) 30%,
      rgba(232, 240, 255, .58) 50%,
      rgba(232, 240, 255, .2) 72%,
      rgba(232, 240, 255, .08) 100%),
    linear-gradient(0deg, rgba(232, 240, 255, .24), rgba(232, 240, 255, .08));
}

.web-hero-play {
  bottom: clamp(72px, 8vw, 116px);
}

.hero-web .web-hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1160px, calc(100% - 96px));
}

.hero-web .web-hero-grid > [data-reveal]:first-child {
  max-width: 610px;
}

.hero-hardware {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(91, 143, 249, .12), transparent 36%),
    linear-gradient(135deg, #f5f9ff 0%, #e8f0ff 48%, #eef2f8 100%);
}

.view[data-view="hardware"] .hero.hero-hardware-framed {
  min-height: 0;
  height: clamp(680px, 56.25vw, 820px);
  padding: 0;
}

.hero-hardware-framed.hero-visual h1 {
  max-width: 520px;
}

.hero-hardware-framed.hero-visual .lead {
  max-width: 520px;
}

.hero-hardware .hardware-hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1160px, calc(100% - 96px));
}

.hero-hardware .hardware-hero-grid > [data-reveal]:first-child {
  max-width: 610px;
}

.hardware-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  background: #e8f0ff url("assets/station-demo-scene.jpg") center / cover no-repeat;
  box-shadow: 0 34px 100px rgba(31, 38, 135, .12);
}

.hardware-hero-video,
.hardware-hero-scrim {
  position: absolute;
  inset: 0;
}

.hardware-hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #e8f0ff url("assets/station-demo-scene.jpg") center / cover no-repeat;
}

.hardware-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(232, 240, 255, .98) 0%,
      rgba(232, 240, 255, .9) 30%,
      rgba(232, 240, 255, .58) 50%,
      rgba(232, 240, 255, .2) 72%,
      rgba(232, 240, 255, .08) 100%),
    linear-gradient(0deg, rgba(232, 240, 255, .24), rgba(232, 240, 255, .08));
}

.hardware-hero-play {
  bottom: clamp(72px, 8vw, 116px);
}

.hero-hardware .hero-grid {
  position: relative;
  z-index: 2;
}

.hero-pricing {
  background-image:
    linear-gradient(90deg,
      rgba(232, 240, 255, .99) 0%,
      rgba(232, 240, 255, .94) 34%,
      rgba(232, 240, 255, .55) 55%,
      rgba(232, 240, 255, .08) 78%),
    url("assets/hero-pricing-consultation.png");
}

html[lang="en"] .hero-pricing,
html[lang="de"] .hero-pricing,
html[lang="fr"] .hero-pricing,
html[lang="it"] .hero-pricing,
html[lang="es"] .hero-pricing,
html[lang="pt"] .hero-pricing {
  background-image:
    linear-gradient(90deg,
      rgba(232, 240, 255, .99) 0%,
      rgba(232, 240, 255, .94) 34%,
      rgba(232, 240, 255, .52) 56%,
      rgba(232, 240, 255, .08) 80%),
    url("assets/hero-pricing-consultation-western.jpg");
}

html[lang="en"] .hero-app,
html[lang="de"] .hero-app,
html[lang="fr"] .hero-app,
html[lang="it"] .hero-app,
html[lang="es"] .hero-app,
html[lang="pt"] .hero-app {
  background-image:
    linear-gradient(90deg,
      rgba(232, 240, 255, .99) 0%,
      rgba(232, 240, 255, .94) 32%,
      rgba(232, 240, 255, .58) 54%,
      rgba(232, 240, 255, .1) 78%),
    url("assets/campaign-app-iphone-western.jpg");
}

html[lang="en"] .hero-web,
html[lang="de"] .hero-web,
html[lang="fr"] .hero-web,
html[lang="it"] .hero-web,
html[lang="es"] .hero-web,
html[lang="pt"] .hero-web {
  background-image:
    linear-gradient(90deg,
      rgba(232, 240, 255, .99) 0%,
      rgba(232, 240, 255, .96) 40%,
      rgba(232, 240, 255, .76) 64%,
      rgba(232, 240, 255, .42) 100%);
}

html[lang="en"] .hero-hardware,
html[lang="de"] .hero-hardware,
html[lang="fr"] .hero-hardware,
html[lang="it"] .hero-hardware,
html[lang="es"] .hero-hardware,
html[lang="pt"] .hero-hardware {
  background-image:
    linear-gradient(90deg,
      rgba(232, 240, 255, .99) 0%,
      rgba(232, 240, 255, .93) 32%,
      rgba(232, 240, 255, .5) 54%,
      rgba(232, 240, 255, .08) 76%),
    url("assets/campaign-station-showroom-western.jpg");
}

html .hero-hardware.hero-hardware-framed,
html[lang] .hero-hardware.hero-hardware-framed {
  background-image:
    radial-gradient(circle at 82% 22%, rgba(91, 143, 249, .12), transparent 36%),
    linear-gradient(135deg, #f5f9ff 0%, #e8f0ff 48%, #eef2f8 100%);
}

.deployment-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.pricing-panel {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(200, 210, 230, .95);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(31, 38, 135, .08);
}

.pricing-localized .section-head {
  margin-bottom: 28px;
}

.region-note,
.language-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  font-weight: 760;
  box-shadow: var(--soft);
}

.region-note b {
  color: var(--accent);
}

.language-hint {
  margin-top: 6px;
  border-radius: 14px;
}

.refined-panel {
  margin-top: 26px;
}

.panel-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f7fbff, #e8f0ff);
}

.panel-title span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-title h3 {
  margin: 0;
  font-size: 24px;
}

.pricing-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft);
}

.pricing-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.pricing-panel .pricing-table {
  min-width: 1180px;
}

.pricing-panel .pricing-table.compact {
  min-width: 620px;
}

.pricing-panel .brand-matrix {
  min-width: 1160px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  border-right: 0;
}

.pricing-table th {
  color: #365f96;
  background: #e8f0ff;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-table td {
  color: #4f4944;
  line-height: 1.55;
}

.pricing-table.merged thead tr:first-child th {
  color: var(--accent);
  background: #e8f0ff;
  text-align: center;
}

.pricing-table.merged thead tr:nth-child(2) th {
  text-align: center;
}

.pricing-table td strong {
  display: block;
  color: #171413;
  font-size: 17px;
}

.pricing-table td small {
  display: block;
  margin-top: 2px;
  color: #92877f;
  font-size: 12px;
}

.pricing-table em {
  color: #897d74;
  font-style: normal;
  font-size: 12px;
}

.pricing-table .stage {
  color: var(--accent);
  background: #eef5ff;
  font-weight: 900;
  vertical-align: middle;
}

.pricing-table .premium-row td {
  background: #f7fbff;
}

#pricing-scenarios .pricing-table th {
  background: #e4f3ff;
}

#pricing-scenarios .pricing-table .stage {
  background: #f0f8ff;
}

#pricing-workflows .pricing-table th {
  background: #e4f3ff;
}

#pricing-workflows .pricing-table .stage {
  background: #f0f8ff;
}

.station-pricing td:nth-child(3),
.station-pricing td:nth-child(4) {
  font-weight: 720;
}

.brand-matrix td:nth-child(3),
.brand-matrix td:nth-child(4),
.brand-matrix td:nth-child(5),
.brand-matrix td:nth-child(6) {
  white-space: nowrap;
  font-weight: 760;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.footer {
  padding: 44px 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(107, 156, 255, .92), rgba(138, 112, 214, .88));
}

.footer-inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .home-product-head,
  .home-product-grid,
  .home-product-flow {
    grid-template-columns: 1fr;
  }
  .home-product-head {
    gap: 18px;
  }
  .home-product-card {
    border-right: 0;
    border-bottom: 1px solid rgba(35, 33, 31, .12);
  }
  .home-product-card:last-child {
    border-bottom: 0;
  }
  .home-product-shot {
    height: 380px;
  }
  .home-product-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
  .view[data-view="home"] > .hero {
    min-height: 680px;
  }
  .home-vision-video { object-position: 58% center; }
  .view[data-view="home"] > .hero .hero-grid {
    width: min(100% - 40px, 1040px);
  }
  .view[data-view="home"] > .hero h1 {
    max-width: 560px;
    font-size: clamp(48px, 9vw, 76px);
  }
  .view[data-view="home"] > .hero .lead {
    max-width: 500px;
  }
  .hero-visual {
    min-height: 680px;
  }
  .view[data-view="hardware"] .hero.hero-hardware-framed {
    min-height: 620px;
    height: clamp(620px, 56.25vw, 760px);
    padding: 0;
  }
  .hero-hardware .hardware-hero-grid {
    display: block;
    width: min(100% - 40px, 1040px);
  }
  .hardware-hero-play {
    right: clamp(18px, 4vw, 52px);
    bottom: clamp(44px, 7vw, 80px);
  }
  .hero-app,
  .hero-web,
  .hero-pricing {
    background-position: 58% center;
  }
  .hero-hardware {
    background-position: 62% center;
  }
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }
  .nav-links {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    overflow: visible;
  }
  .nav-panel,
  .nav-panel-business,
  .nav-panel-solutions {
    position: fixed;
    top: 126px;
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
    width: auto;
    max-height: calc(100vh - 146px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: none;
  }
  .nav-menu {
    position: static;
  }
  .nav-cta {
    min-height: 40px;
  }
  .hero-grid,
  .feature-row,
  .feature-row.reverse,
  .demo-story,
  .demo-story.primary,
  .demo-story.compact,
  .demo-story.wide,
  .demo-story.compact.wide,
  .station-story,
  .hardware-split,
  .spec-layout,
  .role-card,
  .role-card:nth-child(even),
  .home-scan-panel,
  .quality-showcase-panel,
  .app-hero-video-panel,
  .app-hero-video-copy,
  .case-item,
  .case-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-art,
  .case-item:nth-child(even) .case-copy,
  .case-item:nth-child(even) .case-art,
  .role-card:nth-child(even) .role-copy {
    order: initial;
  }
  .demo-story.primary,
  .demo-story.compact {
    min-height: auto;
  }
  .stats,
  .grid.three,
  .grid.four,
  .grid.five,
  .steps,
  .architecture-lanes,
  .loop-board,
  .advantage-grid,
  .surface-grid,
  .price-grid,
  .pricing-split,
  .learn-strip,
  .matrix-flow,
  .video-grid,
  .deployment-board,
  .problem-flow,
  .pain-grid,
  .cycle-steps,
  .customer-entry-grid,
  .home-capability-grid,
  .home-scan-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-arrow { display: none; }
  .ecosystem-map {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin-left: 0;
    transform: none;
    padding: 22px;
  }
  .eco-core,
  .eco-panel,
  .eco-return {
    position: static;
    width: 100%;
    transform: none;
  }
  .eco-connector {
    display: none;
  }
  .eco-core {
    min-height: 220px;
    border-radius: 28px;
  }
  .eco-return {
    grid-template-columns: 1fr;
  }
  .eco-source .eco-list,
  .core-grid,
  .surface-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-media,
  .device-collage {
    min-height: 360px;
  }
  .phone-proof-wrap {
    min-height: auto;
    padding: 18px 0;
  }
  .cycle-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo-story {
    padding: 22px;
  }
  .home-scan-panel {
    gap: 30px;
  }
  .home-scan-copy h2 {
    font-size: clamp(36px, 7vw, 56px);
  }
  .demo-copy h3 {
    font-size: 30px;
  }
  .pricing-split {
    grid-template-columns: 1fr;
  }
  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .comparison-row {
    grid-template-columns: 110px repeat(3, minmax(0, 1fr));
  }
  .comparison-row > * {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .home-product-head h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .home-product-head p {
    font-size: 16px;
  }
  .home-product-shot {
    height: 300px;
  }
  .home-product-body,
  .home-product-flow {
    padding-right: 18px;
    padding-left: 18px;
  }
  .home-product-list li {
    min-height: auto;
  }
  .brand-logo {
    width: 132px;
  }

  .view[data-view="home"] > .hero {
    min-height: auto;
    padding: 42px 0 52px;
    align-items: start;
  }
  .home-vision-video,
  .home-vision-scrim {
    display: none;
  }
  .view[data-view="home"] > .hero .hero-grid {
    display: grid;
    gap: 24px;
    width: min(100% - 28px, 1040px);
  }
  .home-mobile-vision {
    display: block;
    margin: 2px 0 0;
    overflow: hidden;
    border: 1px solid rgba(232, 224, 217, .95);
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 52px rgba(66, 52, 44, .12);
  }
  .video-play-hotspot {
    --play-icon-size: 30px;
    --play-icon-center-x: 25px;
    --play-triangle-width: 8px;
    --play-triangle-height: 10px;
    --play-triangle-nudge: 1.3px;
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 14px 0 10px;
    font-size: 13px;
  }
  .video-play-hotspot::before {
    width: 30px;
    height: 30px;
  }
  .home-hero-try-cta {
    position: relative;
    top: auto;
    right: auto;
    width: min(100% - 28px, 420px);
    min-height: 58px;
    margin: 18px auto 0;
    padding: 0 22px 0 26px;
    font-size: 18px;
    transform: none;
  }
  .home-hero-try-cta:hover,
  .home-hero-try-cta:focus-visible {
    transform: translateY(-2px);
  }
  .video-lightbox {
    padding: 12px;
  }
  .video-lightbox__dialog {
    width: 100%;
    border-radius: 16px;
  }
  .video-lightbox__video {
    max-height: 78vh;
    border-radius: 15px;
  }
  .video-lightbox__close {
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,.42);
  }
  .home-vision-scrim {
    background:
      linear-gradient(180deg,
        rgba(232, 240, 255, .99) 0%,
        rgba(232, 240, 255, .94) 44%,
        rgba(232, 240, 255, .48) 72%,
        rgba(232, 240, 255, .16) 100%);
  }
  .view[data-view="home"] > .hero h1 {
    max-width: 390px;
    font-size: clamp(42px, 13vw, 58px);
  }
  .view[data-view="home"] > .hero .lead {
    max-width: 360px;
    font-size: 16px;
  }
  .hero-visual {
    min-height: 700px;
    padding: 64px 0;
    align-items: start;
    background-position: 62% bottom;
  }
  .hero-visual h1 {
    max-width: 390px;
    font-size: clamp(42px, 13vw, 58px);
  }
  .hero-visual .lead {
    max-width: 360px;
    font-size: 16px;
  }
  .hero-app,
  .hero-web,
  .hero-hardware,
  .hero-pricing {
    background-image:
      linear-gradient(180deg,
        rgba(232, 240, 255, .99) 0%,
        rgba(232, 240, 255, .94) 42%,
        rgba(232, 240, 255, .42) 70%,
        rgba(232, 240, 255, .08) 100%),
      var(--mobile-hero-image);
  }
  .hero-app { --mobile-hero-image: url("assets/hero-app-lifestyle.png"); }
  .hero-web { --mobile-hero-image: none; }
  .hero-hardware { --mobile-hero-image: url("assets/hero-hardware-showroom.png"); }
  .hero-pricing { --mobile-hero-image: url("assets/hero-pricing-consultation.png"); }
  html[lang="en"] .hero-app,
  html[lang="de"] .hero-app,
  html[lang="fr"] .hero-app,
  html[lang="it"] .hero-app,
  html[lang="es"] .hero-app,
  html[lang="pt"] .hero-app {
    --mobile-hero-image: url("assets/campaign-app-iphone-western.jpg");
  }
  html[lang="en"] .hero-web,
  html[lang="de"] .hero-web,
  html[lang="fr"] .hero-web,
  html[lang="it"] .hero-web,
  html[lang="es"] .hero-web,
html[lang="pt"] .hero-web {
    --mobile-hero-image: none;
  }
  html[lang="en"] .hero-hardware,
  html[lang="de"] .hero-hardware,
  html[lang="fr"] .hero-hardware,
  html[lang="it"] .hero-hardware,
  html[lang="es"] .hero-hardware,
  html[lang="pt"] .hero-hardware {
    --mobile-hero-image: url("assets/campaign-station-showroom-western.jpg");
  }
  html[lang="en"] .hero-pricing,
  html[lang="de"] .hero-pricing,
  html[lang="fr"] .hero-pricing,
  html[lang="it"] .hero-pricing,
  html[lang="es"] .hero-pricing,
  html[lang="pt"] .hero-pricing {
    --mobile-hero-image: url("assets/hero-pricing-consultation-western.jpg");
  }
  .container,
  .nav,
  .footer-inner {
    width: min(100% - 24px, 1040px);
  }
  .hero { padding: 46px 0; }
  .section { padding: 52px 0; }
  h1 { font-size: clamp(36px, 12vw, 54px); }
  .stats,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .steps,
  .architecture-lanes,
  .loop-board,
  .advantage-grid,
  .eco-source .eco-list,
  .core-grid,
  .surface-grid,
  .price-grid,
  .pricing-split,
  .learn-strip,
  .matrix-flow,
  .video-grid,
  .deployment-board,
  .problem-flow,
  .pain-grid,
  .cycle-steps,
  .customer-entry-grid,
  .home-capability-grid,
  .home-scan-steps,
  .quality-media-grid,
  .hardware-product-row,
  .hardware-machine-stack,
  .device-collage {
    grid-template-columns: 1fr;
  }
  .home-scan-panel {
    padding: 22px;
    border-radius: 26px;
  }
  .app-hero-video-section {
    padding: 34px 0 48px;
  }
  .app-hero-video-section .container {
    width: min(100% - 20px, 1040px);
  }
  .app-hero-video-panel {
    padding: 16px;
    gap: 20px;
    border-radius: 24px;
  }
  .app-hero-video-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .app-hero-video-copy p {
    font-size: 16px;
  }
  .app-hero-video-frame {
    border-width: 6px;
    border-radius: 20px;
  }
  .phone-video {
    --phone-yaw: -4.2deg;
    --phone-button-right: -1px;
    padding: 8px 7px 10px;
    border-radius: 40px;
  }
  .home-scan-panel > .phone-video,
  .demo-story.evidence > .phone-video:first-child {
    --phone-yaw: 4.2deg;
    --phone-button-left: -1px;
    --phone-button-right: auto;
  }
  .phone-video::before {
    top: 74px;
    width: 2px;
    height: 28px;
    box-shadow:
      0 42px 0 #4a5058,
      0 82px 0 #4a5058;
  }
  .phone-video::after {
    top: 14px;
    width: 64px;
    height: 17px;
  }
  .phone-video video {
    border-radius: 30px;
  }
  .home-scan-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .home-scan-copy p {
    font-size: 16px;
  }
  .home-scan-steps article {
    min-height: auto;
  }
  .quality-showcase-panel {
    gap: 22px;
    padding: 22px;
    border-radius: 26px;
  }
  .quality-showcase-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .quality-showcase-copy p {
    font-size: 16px;
  }
  .quality-media-card {
    padding: 16px;
    border-radius: 22px;
  }
  .quality-media-card .quality-phone {
    width: min(240px, 72vw);
  }
  .solution-strip {
    flex-direction: column;
  }
  .machine-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, auto) auto;
  }
  .machine-card.is-featured {
    grid-column: auto;
    grid-row: auto;
  }
  .machine-card figcaption {
    padding: 0 18px 18px;
  }
  .machine-card img,
  .machine-card.is-featured img {
    max-height: 300px;
    padding: 0;
  }
  .screen.main,
  .screen.phone,
  .screen.kiosk {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }
  .device-collage {
    min-height: auto;
  }
  .demo-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .comparison-panel {
    border-radius: 18px;
  }
  .comparison-row,
  .comparison-head {
    display: block;
  }
  .comparison-head {
    display: none;
  }
  .comparison-row {
    padding: 14px;
  }
  .comparison-row > * {
    display: block;
    padding: 8px 0;
    border-right: 0;
  }
  .comparison-row span {
    color: var(--accent);
  }
  .advantage-grid article {
    min-height: auto;
  }
  .nav-links {
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }
  .nav-panel,
  .nav-panel-business,
  .nav-panel-solutions {
    position: fixed;
    top: 118px;
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
    width: auto;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
}

@media (max-width: 520px) {
  .home-product-flow div {
    min-height: auto;
  }
  .home-product-shot b {
    font-size: 23px;
  }
  .home-product-shot span {
    font-size: 16px;
  }
  body {
    overflow-x: hidden;
  }

  .site-header {
    max-height: 46vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .container,
  .view[data-view="pricing"] .container,
  .nav,
  .footer-inner {
    width: min(100% - 20px, 1040px);
  }

  .nav {
    min-height: auto;
    gap: 10px;
    padding: 9px 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .brand-logo {
    width: 126px;
  }

  .brand {
    grid-column: 1 / -1;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links > a[href="#pricing"],
  .nav-links > a[href="index.html#pricing"] {
    display: none;
  }

  .nav-link,
  .nav-menu summary {
    width: auto;
    flex: 0 0 auto;
    min-height: 36px;
    justify-content: center;
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .nav-menu summary::after {
    margin-left: 4px;
  }

  .nav-cta,
  .language-switch {
    width: 100%;
  }

  .language-switch {
    grid-column: 1;
  }

  .nav-cta {
    grid-column: 2;
  }

  .nav-try-cta {
    grid-column: 1 / -1;
  }

  .language-trigger {
    width: 100%;
    justify-content: center;
    padding: 0 10px;
  }

  .language-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .nav-panel,
  .nav-panel-business,
  .nav-panel-solutions {
    top: 148px;
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 164px);
    padding: 12px;
    border-radius: 18px;
  }

  .nav-panel a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .hero,
  .section {
    padding: 42px 0;
  }

  .view[data-view="home"] > .hero {
    min-height: auto;
    padding: 32px 0 44px;
  }

  .view[data-view="home"] > .hero .hero-grid {
    width: min(100% - 22px, 1040px);
  }

  .view[data-view="home"] > .hero h1,
  .hero-visual h1,
  h1 {
    max-width: 100%;
    font-size: clamp(34px, 11.8vw, 48px);
    line-height: 1.03;
  }

  h2,
  .section-head h2,
  .home-scan-copy h2,
  .landing-hero-copy h1,
  .landing-copy h2 {
    font-size: clamp(28px, 9.2vw, 40px);
    line-height: 1.12;
  }

  h3,
  .role-copy h3,
  .demo-copy h3,
  .landing-card h3,
  .home-capability-card h3,
  .customer-entry-grid h3 {
    font-size: 21px;
    line-height: 1.2;
  }

  .lead,
  .view[data-view="home"] > .hero .lead,
  .hero-visual .lead,
  .landing-hero-copy .lead,
  .landing-copy p {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.66;
  }

  .actions,
  .solution-strip {
    gap: 10px;
  }

  .btn,
  .nav-cta {
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
  }

  .contact-widget {
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    left: 12px;
  }

  .contact-float-btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  .contact-modal {
    padding: 12px;
    place-items: end center;
  }

  .contact-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 22px;
  }

  .contact-copy h2 {
    padding-right: 40px;
    font-size: 30px;
  }

  .stats {
    gap: 0;
  }

  .stat {
    padding: 16px 6px;
  }

  .stat b {
    font-size: 26px;
  }

  .stat span {
    font-size: 12px;
    line-height: 1.35;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .card,
  .price-card,
  .home-capability-card,
  .customer-entry-grid a,
  .role-card,
  .plain-cycle,
  .comparison-panel,
  .home-scan-panel,
  .pricing-panel,
  .landing-card,
  .landing-kpi {
    border-radius: 8px;
  }

  .home-capability-card figure,
  .landing-card-media,
  .hub-card figure {
    aspect-ratio: 16 / 10;
  }

  .home-capability-card,
  .customer-entry-grid a,
  .landing-card-body {
    padding: 18px;
  }

  .role-card {
    padding: 18px;
    gap: 18px;
  }

  .role-card figure {
    min-height: 210px;
  }

  .role-copy ul {
    grid-template-columns: 1fr;
  }

  .plain-cycle {
    padding: 18px;
  }

  .cycle-head h3 {
    font-size: 26px;
  }

  .cycle-steps article,
  .home-scan-steps article,
  .deployment-board article,
  .pain-grid article {
    min-height: auto;
    padding: 16px;
  }

  .home-scan-media.phone-video {
    max-width: 300px;
    margin: 0 auto;
  }

  .comparison-row {
    border-bottom: 1px solid var(--line);
  }

  .comparison-row:last-child {
    border-bottom: 0;
  }

  .table-wrap,
  .pricing-panel {
    max-width: 100%;
  }

  .table-wrap {
    margin-top: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table,
  .pricing-panel .pricing-table,
  .pricing-panel .pricing-table.compact,
  .pricing-panel .brand-matrix {
    min-width: 680px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 12px;
    font-size: 13px;
  }

  .price-card {
    min-height: auto;
    padding: 20px;
  }

  .price-card .price {
    font-size: 44px;
  }

  .hardware-product-row,
  .hardware-split,
  .hardware-visual-row,
  .hardware-machine-stack {
    gap: 18px;
  }

  .hardware-product-row {
    padding: 16px;
  }

  .hardware-product-row figure,
  .hardware-lineup-visual,
  .hardware-spec-sheet {
    min-height: auto;
  }

  .hardware-product-row img,
  .hardware-spec-sheet img,
  .hardware-lineup-visual img {
    max-height: 320px;
  }

  .hardware-tool-portrait {
    width: min(100%, 360px);
    min-height: 0;
  }

  .hardware-tool-portrait img {
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .machine-card {
    min-height: auto;
  }

  .machine-card img,
  .machine-card.is-featured img {
    max-height: 260px;
  }

  .landing-hero {
    padding: 40px 0 34px;
  }

  .landing-hero-grid,
  .landing-hero .container,
  .landing-section {
    gap: 22px;
  }

  .landing-hero-media,
  .landing-media-card {
    border-radius: 8px;
    padding: 0;
  }

  .landing-hero-media img,
  .landing-hero-media video,
  .landing-media-card img,
  .landing-media-card video {
    border-radius: 8px;
  }

  .landing-kpis {
    gap: 10px;
  }

  .landing-band,
  .landing-cards,
  .landing-related {
    padding: 42px 0;
  }

  .hub-card,
  .landing-card {
    overflow: hidden;
  }

  .hub-card-body {
    padding: 16px;
  }

  .landing-flow {
    gap: 10px;
  }

  .landing-flow article {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header {
    position: static;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .view {
    display: none !important;
  }

  .view.is-active {
    display: block !important;
  }

  .screen,
  .video-frame,
  .card,
  .price-card,
  .table-wrap {
    break-inside: avoid;
  }
}

.landing-body {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 10%, rgba(91, 143, 249, .08), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(138, 112, 214, .10), transparent 24%),
    url("assets/background.jpg");
  background-size: auto, auto, cover;
  background-position: 12% 10%, 90% 18%, center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.landing-main { overflow: hidden; }

.landing-hero {
  padding: 76px 0 58px;
  position: relative;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 58%;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(232, 240, 255, .55));
  pointer-events: none;
}

.landing-hero-grid,
.landing-hero .container {
  position: relative;
  z-index: 1;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.landing-hero-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  max-width: 820px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.landing-hero-copy h1.landing-hero-title--long {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  max-width: 780px;
}

.landing-hero-copy .lead { max-width: 720px; }

.audience {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 900;
  font-size: 16px;
  max-width: 680px;
}

.landing-hero-media,
.landing-media-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.72);
  box-shadow: var(--soft);
}

.landing-hero-media {
  padding: 14px;
  transform: rotate(-1deg);
}

.landing-hero-media img,
.landing-hero-media video,
.landing-media-card img,
.landing-media-card video {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: contain;
  background: linear-gradient(135deg, #f5f9ff, #e8f0ff);
}

.landing-hero-media img,
.landing-hero-media video { aspect-ratio: 16 / 11; }

.landing-hero-media img[src*="campaign-"] {
  object-fit: cover;
}

.landing-media-card img,
.landing-media-card video { aspect-ratio: 16 / 10; }

.landing-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.landing-kpi {
  min-height: 96px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 48px rgba(35,33,31,.07);
}

.landing-kpi span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.landing-kpi b {
  font-size: 28px;
  line-height: 1.1;
}

.landing-sections { padding: 54px 0 42px; }

.landing-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 58px 0;
}

.landing-section.is-flipped { grid-template-columns: 1.1fr .9fr; }
.landing-section.is-flipped .landing-copy { order: 2; }

.landing-copy > .eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.landing-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
  max-width: 760px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.landing-copy h2.landing-title--long {
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
  max-width: 720px;
}

.landing-copy h2.landing-title--xlong {
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.14;
  max-width: 720px;
}

.landing-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 760;
}

.landing-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.landing-bullets span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.landing-band {
  padding: 76px 0;
  background: var(--band);
  backdrop-filter: var(--glass-blur);
}

.hub-block { margin-top: 36px; }
.hub-block h3 { margin: 0 0 18px; font-size: 24px; }

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hub-card {
  display: flex;
  min-height: 292px;
  overflow: hidden;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(51, 51, 51, .10);
  box-shadow: 0 22px 54px rgba(31, 38, 135, .07);
  backdrop-filter: var(--glass-blur);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 143, 249, .34);
  box-shadow: 0 30px 72px rgba(31, 38, 135, .12);
}

.hub-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f5f7fa;
}

.hub-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.hub-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hub-card h4 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.13;
}

.hub-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 760;
  line-height: 1.52;
}

.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 80px 0;
}

.landing-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--soft);
}

.landing-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f5f7fa;
}

.landing-card-body {
  padding: 24px;
}

.landing-card .tag {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 10px;
  font-size: 25px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.12;
}

.landing-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.55;
  font-weight: 760;
}

.landing-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.flow-step {
  min-height: 238px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.85);
}

.flow-step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 1000;
}

.flow-step h3 { margin: 22px 0 10px; font-size: 24px; }

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 760;
}

.landing-related {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
}

.landing-related h2 {
  margin: 8px 0 0;
  font-size: 42px;
}

.related-head p {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 760;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  display: block;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(35,33,31,.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(35,33,31,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.related-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 10px 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 14px;
  font-weight: 760;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 143, 249,.28);
  box-shadow: 0 24px 70px rgba(35,33,31,.12);
}

[data-customer-case-slot][hidden] {
  display: none;
}

.customer-case-section {
  padding: 68px 0 78px;
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 143, 249, .08), transparent 26rem),
    radial-gradient(circle at 86% 30%, rgba(138, 112, 214, .08), transparent 28rem),
    #e8f0ff;
  border-top: 1px solid rgba(35, 33, 31, .08);
}

.customer-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46%);
  gap: 28px;
  align-items: stretch;
  min-height: 510px;
  padding: 28px;
  border: 1px solid rgba(35, 33, 31, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 22px 60px rgba(44, 37, 31, .12);
}

.customer-case-card.is-stacked {
  grid-template-columns: 1fr;
  min-height: 0;
}

.customer-case-card.is-stacked .customer-case-copy {
  max-width: 980px;
}

.customer-case-card.is-stacked .customer-case-media {
  height: clamp(420px, 54vw, 680px);
  min-height: clamp(420px, 54vw, 680px);
}

.customer-case-card.is-stacked .customer-case-media video,
.customer-case-card.is-stacked .customer-case-media img,
.customer-case-card.is-stacked .customer-case-media-stack {
  min-height: clamp(420px, 54vw, 680px);
}

.customer-case-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.customer-case-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(91, 143, 249, .11);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.customer-case-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
}

.customer-case-copy p {
  margin: 18px 0 0;
  color: #3f3a35;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.85;
}

.customer-case-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.customer-case-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(35, 33, 31, .12);
  border-radius: 999px;
  color: #4f4944;
  background: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
}

.customer-case-media {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(35, 33, 31, .1);
  border-radius: 8px;
  background: #f1ece6;
}

.customer-case-media video,
.customer-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

@media (min-width: 961px) {
  .customer-case-card:not(.is-stacked) .customer-case-media {
    align-self: center;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .customer-case-card:not(.is-stacked) .customer-case-media video,
  .customer-case-card:not(.is-stacked) .customer-case-media img {
    height: 100%;
    min-height: 0;
  }
}

.customer-case-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff5b70 0%, #6b9cff 48%, #8a70d6 100%);
  box-shadow: 0 18px 42px rgba(91, 143, 249, .34);
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.customer-case-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(91, 143, 249, .42);
}

.customer-case-play:focus-visible {
  outline: 3px solid rgba(91, 143, 249, .32);
  outline-offset: 3px;
}

.customer-case-media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.12fr .88fr;
  gap: 10px;
  height: 100%;
  min-height: 290px;
  padding: 10px;
  background: #e8f0ff;
}

.customer-case-media-stack img,
.customer-case-media-stack video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(35, 33, 31, .12);
  border-radius: 6px;
  background: #111;
  object-fit: cover;
  object-position: center;
}

.customer-case-media-stack > :first-child {
  grid-column: 1 / -1;
}

.customer-case-card.is-stacked .customer-case-media .customer-case-media-stack img,
.customer-case-card.is-stacked .customer-case-media .customer-case-media-stack video {
  height: 100%;
  min-height: 0;
}

[data-client-logo-wall-slot] {
  display: block;
}

[data-scenario-case-wall-slot]:empty {
  display: none;
}

.scenario-case-wall {
  padding: 84px 0 72px;
  border-top: 1px solid rgba(35, 33, 31, .08);
  background:
    radial-gradient(circle at 12% 10%, rgba(91, 143, 249, .08), transparent 24rem),
    radial-gradient(circle at 88% 26%, rgba(138, 112, 214, .08), transparent 26rem),
    linear-gradient(180deg, #f7fbff 0%, #e8f0ff 100%);
  color: var(--ink);
}

.scenario-case-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.scenario-case-eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(91, 143, 249, .18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(91, 143, 249, .1);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.scenario-case-head h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 1000;
}

.scenario-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.scenario-case-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  min-height: 150px;
  padding: 10px;
  border: 1px solid rgba(35, 33, 31, .1);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 42px rgba(44, 37, 31, .08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.scenario-case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 143, 249, .24);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 60px rgba(44, 37, 31, .13);
}

.scenario-case-card:focus-visible {
  outline: 3px solid rgba(91, 143, 249, .32);
  outline-offset: 3px;
}

.scenario-case-thumb {
  position: relative;
  height: 130px;
  overflow: hidden;
  border-radius: 6px;
  background: #f1ece6;
}

.scenario-case-thumb video,
.scenario-case-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-case-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.scenario-case-copy span,
.view .scenario-case-copy span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  line-height: 1.3;
}

.scenario-case-copy h3,
.view .scenario-case-copy h3 {
  margin: 7px 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.22;
}

.scenario-case-copy p,
.view .scenario-case-copy p {
  margin: 0;
  color: #5d554f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

body[data-route="pricing"] [data-client-logo-wall-slot] {
  display: none;
}

.client-logo-wall {
  width: 100%;
  padding: 88px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 240, 255, 0) 0%, rgba(232, 240, 255, .74) 58%, rgba(216, 232, 255, .92) 100%);
}

.client-logo-title {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto 46px;
  text-align: center;
}

.client-logo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.client-logo-eyebrow::before,
.client-logo-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.client-logo-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 1000;
  letter-spacing: 0;
}

.client-logo-band {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(91, 143, 249, .16);
  border-bottom: 1px solid rgba(91, 143, 249, .14);
  background:
    radial-gradient(circle at 16% 0%, rgba(91, 143, 249, .2), transparent 34%),
    radial-gradient(circle at 84% 100%, rgba(120, 180, 255, .18), transparent 36%),
    linear-gradient(180deg, rgba(239, 246, 255, .74), rgba(219, 234, 255, .58));
  backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .62),
    inset 0 -1px 0 rgba(91, 143, 249, .08);
  padding: 34px 0 38px;
}

.client-logo-band::before,
.client-logo-band::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  width: clamp(42px, 10vw, 180px);
  height: 100%;
  pointer-events: none;
}

.client-logo-band::before {
  left: 0;
  background: linear-gradient(90deg, rgba(221, 236, 255, .96) 0%, rgba(221, 236, 255, .76) 26%, rgba(221, 236, 255, 0) 100%);
}

.client-logo-band::after {
  right: 0;
  background: linear-gradient(270deg, rgba(221, 236, 255, .96) 0%, rgba(221, 236, 255, .76) 26%, rgba(221, 236, 255, 0) 100%);
}

.client-logo-row {
  position: relative;
  width: 100%;
  overflow: visible;
}

.client-logo-row + .client-logo-row {
  margin-top: 30px;
}

.client-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: client-logo-slide-left 48s linear infinite;
  will-change: transform;
}

.client-logo-row.reverse .client-logo-track {
  animation-name: client-logo-slide-right;
  animation-duration: 54s;
  transform: translateX(-50%);
}

.client-logo-set {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4.8vw, 86px);
  padding: 0 clamp(15px, 2.4vw, 43px);
}

.client-logo-item {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--cell, 132px);
  height: 62px;
  flex: 0 0 auto;
  color: #547fc8;
  opacity: .84;
  transition: filter .16s ease, opacity .16s ease, transform .16s ease;
}

.client-logo-item:hover {
  z-index: 5;
  opacity: 1;
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-2px);
}

.client-logo-item img {
  display: block;
  width: var(--w, 118px);
  height: auto;
  max-width: 100%;
  max-height: var(--h, 54px);
  filter: grayscale(1) sepia(.18) saturate(1.55) hue-rotate(174deg) brightness(.92) opacity(.82);
  object-fit: contain;
}

.client-logo-fallback {
  display: none;
  max-width: 100%;
  color: #4f7cc8;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.client-logo-item.is-logo-missing img {
  display: none;
}

.client-logo-item.is-logo-missing .client-logo-fallback {
  display: block;
}

.client-logo-item::after {
  content: attr(data-name);
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: max-content;
  max-width: 180px;
  transform: translateX(-50%) translateY(4px);
  border: 1px solid rgba(91, 143, 249, .18);
  border-radius: 999px;
  background: rgba(240, 247, 255, .94);
  box-shadow: var(--soft);
  color: #3565b4;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  overflow: hidden;
  padding: 7px 10px;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity .16s ease, transform .16s ease;
}

.client-logo-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.client-logo-row:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-air {
  height: clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, rgba(219, 234, 255, .7) 0%, rgba(232, 240, 255, 0) 100%);
}

@keyframes client-logo-slide-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes client-logo-slide-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track,
  .client-logo-row.reverse .client-logo-track {
    animation: none;
    transform: none;
  }

  .client-logo-set + .client-logo-set {
    display: none;
  }

  .client-logo-set {
    flex-wrap: wrap;
    justify-content: center;
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .landing-hero-grid,
  .landing-section,
  .landing-section.is-flipped,
  .landing-related {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .customer-case-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .customer-case-media {
    min-height: 360px;
  }

  .customer-case-media video,
  .customer-case-media img,
  .customer-case-media-stack {
    min-height: 360px;
  }

  .scenario-case-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .scenario-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-section.is-flipped .landing-copy { order: 0; }

  .landing-kpis,
  .hub-grid,
  .landing-cards,
  .landing-flow {
    grid-template-columns: 1fr 1fr;
  }

  .related-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .landing-hero { padding: 46px 0 36px; }
  .landing-hero-copy h1 { font-size: 38px; line-height: 1.04; }
  .landing-hero-copy h1.landing-hero-title--long { font-size: 32px; line-height: 1.08; }
  .landing-copy h2 { font-size: 34px; }
  .landing-copy h2.landing-title--long { font-size: 28px; line-height: 1.12; }
  .landing-copy h2.landing-title--xlong { font-size: 24px; line-height: 1.16; }
  .landing-copy p { font-size: 17px; }

  .landing-hero-copy .lead {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .landing-hero-copy .audience {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .landing-hero-media,
  .landing-media-card {
    max-height: 292px;
  }

  .landing-hero-media img,
  .landing-hero-media video,
  .landing-media-card img,
  .landing-media-card video {
    max-height: 276px;
    object-fit: cover;
  }

  .landing-kpis,
  .hub-grid,
  .landing-cards,
  .landing-flow {
    grid-template-columns: 1fr;
  }

  .landing-section { padding: 38px 0; }

  .landing-band,
  .landing-cards,
  .landing-related {
    padding: 48px 0;
  }

  .customer-case-section {
    padding: 48px 0 54px;
  }

  .customer-case-card {
    padding: 18px;
    gap: 20px;
  }

  .customer-case-copy h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .customer-case-copy p {
    font-size: 15px;
    line-height: 1.72;
  }

  .customer-case-media {
    min-height: 280px;
  }

  .customer-case-media video,
  .customer-case-media img,
  .customer-case-media-stack {
    min-height: 280px;
  }

  .customer-case-card.is-stacked .customer-case-media,
  .customer-case-card.is-stacked .customer-case-media video,
  .customer-case-card.is-stacked .customer-case-media img,
  .customer-case-card.is-stacked .customer-case-media-stack {
    height: 340px;
    min-height: 340px;
  }

  .customer-case-play {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .scenario-case-wall {
    padding: 54px 0 48px;
  }

  .scenario-case-head {
    gap: 14px;
    margin-bottom: 22px;
  }

  .scenario-case-head h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .scenario-case-grid {
    grid-template-columns: 1fr;
  }

  .scenario-case-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 132px;
  }

  .scenario-case-thumb {
    height: 112px;
  }

  .scenario-case-copy h3 {
    font-size: 17px;
  }

  .scenario-case-copy p {
    font-size: 12px;
    line-height: 1.5;
  }

  .client-logo-wall {
    padding-top: 60px;
  }

  .client-logo-title {
    width: min(100% - 28px, 1180px);
    margin-bottom: 34px;
  }

  .client-logo-band {
    padding: 28px 0 32px;
  }

  .client-logo-row + .client-logo-row {
    margin-top: 24px;
  }

  .client-logo-set {
    gap: 36px;
    padding: 0 18px;
  }

  .client-logo-item {
    width: calc(var(--cell, 132px) * .88);
    height: 58px;
  }

  .client-logo-item img {
    width: min(var(--w, 118px), 126px);
  }

  .client-logo-item::after {
    display: none;
  }
}
