:root {
  --logo-blue: #176fb7;
  --blue-900: #063560;
  --blue-800: #0a477d;
  --blue-100: #e7f3ff;
  --court-green: #22a56f;
  --ink: #0a1624;
  --muted: #5e6c7b;
  --paper: #f6f9fc;
  --panel: #ffffff;
  --line: rgba(10, 71, 125, .16);
  --shadow: 0 24px 70px rgba(6, 53, 96, .16);
  --max: 1180px;
  --font-body: "Inter", "Avenir Next", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --font-heading: "Source Han Serif SC", "Noto Serif CJK SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
  --font-ui: "Avenir Next", "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.22, .61, .36, 1);
  --nav-configurator-width: 142px;
}

html[lang="en"] {
  --nav-configurator-width: 184px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.responsive-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.site-icon {
  display: inline-block;
  flex: none;
  width: var(--icon-size, 20px);
  height: var(--icon-size, 20px);
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

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

::selection {
  background: rgba(23, 111, 183, .2);
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(1220px, calc(100% - 32px));
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  background: rgba(246, 249, 252, .84);
  box-shadow: 0 14px 40px rgba(6, 53, 96, .12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    top .45s var(--ease-out),
    padding .45s var(--ease-out),
    background .45s var(--ease-out),
    box-shadow .45s var(--ease-out),
    border-color .45s var(--ease-out);
}

.site-header.scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(6, 53, 96, .16);
}

.brand img {
  width: 128px;
}

.brand {
  flex: 0 0 auto;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  position: relative;
  gap: 6px;
  min-width: 0;
  min-height: 48px;
  overflow: hidden;
  margin: -6px 0;
  padding: 6px calc(var(--nav-configurator-width) + 6px) 6px 0;
  white-space: nowrap;
}

.nav a,
.nav-cta,
.button {
  font-family: var(--font-ui);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 680;
}

.nav a {
  padding: 10px 13px;
  color: #25435c;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}

.nav a:hover {
  background: rgba(23, 111, 183, .09);
  color: var(--blue-900);
  transform: translateY(-1px);
}

.nav a.active {
  background: var(--blue-100);
  color: var(--blue-900);
}

.nav a[href$="/configurator/"] {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: var(--nav-configurator-width);
  margin-left: 0;
  padding: 12px 16px;
  border: 0;
  background: var(--blue-900);
  color: #fff;
  box-shadow: none;
  transform: translateY(-50%);
}

.nav a[href$="/configurator/"]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("../icons/tabler/plus.svg") center / contain no-repeat;
  mask: url("../icons/tabler/plus.svg") center / contain no-repeat;
}

.nav a[href$="/configurator/"]:hover {
  background: var(--blue-800);
  color: #fff;
  box-shadow: none;
  transform: translateY(calc(-50% - 2px));
}

.language-details {
  position: relative;
  color: #25435c;
}

.language-details summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 6px;
  color: #25435c;
  font-size: 14px;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

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

.language-details summary::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("../icons/tabler/chevron-down.svg") center / contain no-repeat;
  mask: url("../icons/tabler/chevron-down.svg") center / contain no-repeat;
}

.language-details[open] summary,
.language-details summary:hover {
  background: var(--blue-100);
  color: var(--blue-900);
}

.language-details-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 4px;
  width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.language-details-menu button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 10px 11px;
  font: inherit;
  font-size: 13px;
  font-weight: 680;
  text-align: left;
  cursor: pointer;
}

.language-details-menu button:hover,
.language-details-menu button.active {
  background: var(--blue-100);
  color: var(--blue-900);
}

.nav-cta {
  padding: 12px 16px;
  background: var(--blue-900);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 86px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-900);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  animation: hero-drift 18s var(--ease-smooth) infinite alternate;
  transform-origin: 70% 42%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 45, .94) 0%, rgba(4, 33, 62, .78) 45%, rgba(4, 33, 62, .34) 100%),
    linear-gradient(180deg, rgba(4, 24, 45, .24), rgba(4, 24, 45, .78));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 58px;
}

.hero-copy {
  max-width: 850px;
  animation: hero-copy-in .9s var(--ease-out) .08s both;
}

.kicker,
.card-label {
  margin: 0 0 16px;
  color: var(--logo-blue);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: .01em;
  text-transform: none;
}

.hero .kicker {
  color: #b9ddff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.display,
.article-title {
  font-family: var(--font-heading);
  font-weight: 600;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.24;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  color: #d3e8fa;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.68;
  animation: hero-copy-in .9s var(--ease-out) .18s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: hero-copy-in .9s var(--ease-out) .28s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 18px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), border-color .35s var(--ease-out);
  will-change: transform;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.button::after,
.cta::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 2px;
  background: currentColor;
  -webkit-mask: url("../icons/tabler/arrow-right.svg") center / contain no-repeat;
  mask: url("../icons/tabler/arrow-right.svg") center / contain no-repeat;
  transition: transform .3s var(--ease-out);
}

.button:hover::after,
.cta:hover::after {
  transform: translateX(4px);
}

.button.primary {
  background: var(--logo-blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(23, 111, 183, .28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  margin-bottom: 4px;
  color: #9ccbf2;
  font-size: 12px;
  font-weight: 680;
}

dd {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 680;
}

.section {
  padding: 104px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(300px, .45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro.compact {
  display: block;
  max-width: 780px;
}

h2 {
  margin-bottom: 0;
  color: var(--blue-900);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.28;
  letter-spacing: 0;
}

.section-intro p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.court-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.court-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(6, 53, 96, .08);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}

.court-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .75s var(--ease-out), filter .75s var(--ease-out);
}

.court-card:hover {
  border-color: rgba(23, 111, 183, .26);
  box-shadow: 0 28px 70px rgba(6, 53, 96, .14);
  transform: translateY(-8px);
}

.court-card:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.055);
}

.court-card div {
  padding: 24px;
}

.court-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}

.court-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.product-line-section {
  --product-zoom: 1.01;
  overflow: hidden;
}

.product-showcase-shell {
  position: relative;
  width: 100%;
  padding: 22px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  min-height: clamp(430px, 38vw, 570px);
}

.product-panel {
  position: relative;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  background: var(--blue-900);
  box-shadow: 0 14px 36px rgba(6, 53, 96, .08);
  isolation: isolate;
  transform: scale(1);
  transform-origin: center;
  transition: transform .42s var(--ease-out), border-color .42s var(--ease-out), box-shadow .42s var(--ease-out);
}

.product-panel img,
.product-panel-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-panel img {
  object-fit: cover;
  filter: saturate(.82) contrast(1.02);
  transform: scale(var(--product-zoom));
  transition: transform .48s var(--ease-out), filter .48s var(--ease-out);
}

.product-panel-shade {
  background: linear-gradient(180deg, rgba(4, 24, 42, .05) 28%, rgba(4, 24, 42, .86) 100%);
}

.product-panel-copy {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 22px;
  left: 16px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.product-panel-copy small,
.product-panel-copy strong,
.product-panel-copy em {
  display: block;
}

.product-panel-copy small {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
}

.product-panel-copy strong {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.35vw, 22px);
  font-style: normal;
  line-height: 1.25;
}

.product-panel-copy em {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-ui);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(7px);
  transition: max-height .42s var(--ease-out), margin-top .42s var(--ease-out), opacity .34s ease, transform .42s var(--ease-out);
}

.product-panel:hover,
.product-panel:focus-visible {
  z-index: 2;
  border-color: rgba(132, 203, 255, .92);
  box-shadow: 0 28px 64px rgba(6, 53, 96, .3);
  outline: none;
  transform: scale(1.04);
}

.product-panel:hover img,
.product-panel:focus-visible img {
  filter: saturate(1.04) contrast(1.05);
  transform: scale(calc(var(--product-zoom) + .08));
}

.product-panel:hover .product-panel-copy em,
.product-panel:focus-visible .product-panel-copy em {
  max-height: 40px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(0);
}

.product-zoom-control {
  position: absolute;
  z-index: 5;
  top: 38px;
  right: 38px;
  display: grid;
  width: 48px;
  justify-items: center;
  gap: 7px;
  padding: 10px 7px 9px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 24px;
  color: #fff;
  background: rgba(4, 32, 56, .78);
  box-shadow: 0 12px 30px rgba(4, 24, 42, .22);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  isolation: isolate;
}

.product-zoom-value {
  color: rgba(255, 255, 255, .84);
  font-family: var(--font-ui);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  letter-spacing: .02em;
  line-height: 1;
}

.product-zoom-step {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 520;
  line-height: 1;
  transition: color .2s ease, background .2s ease, transform .28s var(--ease-out);
}

.product-zoom-step:hover {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.product-zoom-step:active {
  transform: scale(.9);
}

.product-zoom-step:focus-visible,
.product-zoom-slider:focus-visible {
  outline: 2px solid #8ed1ff;
  outline-offset: 2px;
}

.product-zoom-slider {
  position: relative;
  width: 32px;
  height: 92px;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.product-zoom-slider:active {
  cursor: grabbing;
}

.product-zoom-track {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 6px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
  transform: translateX(-50%);
  transition: width .24s var(--ease-out);
}

.product-zoom-slider.is-dragging .product-zoom-track {
  width: 10px;
}

.product-zoom-range {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--zoom-progress, 8.333%);
  border-radius: inherit;
  background: linear-gradient(180deg, #a7dbff, #65baf4);
}

.product-zoom-thumb {
  position: absolute;
  bottom: var(--zoom-progress, 8.333%);
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  background: #1677b7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .28);
  transform: translate(-50%, 50%);
  transition: width .24s var(--ease-out), height .24s var(--ease-out);
}

.product-zoom-slider.is-dragging .product-zoom-thumb {
  width: 17px;
  height: 17px;
}

.delivery {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 77, 130, .88), rgba(6, 53, 96, .96)),
    var(--blue-900);
}

.delivery h2,
.delivery .kicker {
  color: #fff;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}

.delivery-copy {
  max-width: 560px;
  animation: hero-copy-in .45s var(--ease-out) both;
}

.delivery .kicker {
  margin-bottom: 18px;
}

.delivery h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0;
  text-wrap: balance;
}

.title-nowrap {
  white-space: nowrap;
}

.delivery .section-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: #c9def0;
  font-size: 17px;
  line-height: 1.76;
}

.delivery .configurator-cta {
  gap: 10px;
  margin-top: 32px;
}

.delivery .configurator-cta::after {
  content: none;
}

.configurator-cta .site-icon {
  transition: transform .3s var(--ease-out);
}

.configurator-cta:hover .site-icon,
.configurator-cta:focus-visible .site-icon {
  transform: translateX(4px);
}

.delivery-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 0;
  color: #9ccbf2;
  font-family: var(--font-ui);
  font-size: 12px;
}

.site-card {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(222, 241, 255, .28);
  border-radius: 8px;
  background: rgba(5, 39, 70, .72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  animation: hero-card-in .45s var(--ease-out) .06s both;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}

.site-card:hover {
  border-color: rgba(222, 241, 255, .4);
  box-shadow: 0 30px 74px rgba(0, 0, 0, .26);
  transform: translateY(-3px);
}

.capability-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.site-card .card-label {
  display: block;
  margin-bottom: 6px;
  color: #9ccbf2;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.capability-head h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.32;
}

.live-badge {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: #c9def0;
  font-size: 11px;
  font-weight: 650;
}

.capability-list {
  display: grid;
  margin: 0;
  padding: 5px 0 0;
  list-style: none;
}

.capability-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: padding .3s var(--ease-out), background .3s var(--ease-out);
}

.capability-list li:last-child {
  border-bottom: 0;
}

.capability-list li:hover {
  padding-right: 8px;
  padding-left: 8px;
  background: rgba(255, 255, 255, .04);
}

.capability-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  color: #9ccbf2;
}

.capability-icon .site-icon {
  --icon-size: 20px;
}

.capability-list strong,
.capability-list small {
  display: block;
}

.capability-list strong {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.capability-list small {
  margin-top: 2px;
  color: #9fbed5;
  font-size: 12px;
  line-height: 1.45;
}

.capability-list em {
  color: #7fa9c7;
  font-family: var(--font-ui);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .1em;
}

.capability-preview .capability-icon {
  border-color: rgba(34, 165, 111, .28);
  background: rgba(34, 165, 111, .12);
  color: #8ed6bb;
}

.delivery-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  display: grid;
  grid-template-columns: 58px 160px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.delivery-list span {
  color: #93cdfd;
  font-weight: 680;
}

.delivery-list strong {
  font-size: 19px;
}

.delivery-list p {
  margin: 0;
  color: #c9def0;
  line-height: 1.65;
}

.project-strip {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 16px;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-900);
}

figure img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .9s var(--ease-out);
}

figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(4, 24, 45, .78));
}

figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

figcaption strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
}

figcaption span {
  color: #cfe4f6;
}

figure:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.contact {
  padding: 72px 0 86px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 14px;
}

.contact-panel p:not(.kicker) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  padding: 138px 0 74px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 24, 45, .94), rgba(6, 53, 96, .84)),
    var(--blue-900);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background:
    linear-gradient(rgba(149, 206, 255, .24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 206, 255, .24) 1px, transparent 1px);
  background-size: 54px 54px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.crumb {
  margin-bottom: 22px;
  color: #b9ddff;
  font-size: 14px;
  font-weight: 650;
}

.crumb a {
  color: #fff;
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-hero .lead {
  color: #d3e8fa;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

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

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

.model-preview-link {
  position: relative;
  display: block;
  isolation: isolate;
  color: #fff;
}

.model-preview-link::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 22, 40, .76));
}

.model-preview-link img {
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: cover;
  transition: transform .55s var(--ease-out), filter .55s var(--ease-out);
}

.model-preview-cta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 7px 15px 7px 7px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: rgba(4, 35, 62, .78);
  box-shadow: 0 14px 30px rgba(3, 22, 40, .24);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .01em;
}

.model-preview-code {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 850;
}

.model-preview-link:hover img,
.model-preview-link:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.model-preview-link:focus-visible {
  outline: 3px solid var(--sky-400);
  outline-offset: 4px;
}

.panel-pad {
  padding: 30px;
}

.section-copy,
.card p,
.rich-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-title {
  margin-bottom: 18px;
}

.spec-grid,
.cards,
.case-grid {
  display: grid;
  gap: 18px;
}

.spec-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.spec,
.card,
.time-item,
.side-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 53, 96, .08);
  transition: transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
}

.card:hover,
.time-item:hover,
.side-block:hover,
.spec:hover {
  border-color: rgba(23, 111, 183, .24);
  box-shadow: 0 24px 64px rgba(6, 53, 96, .13);
  transform: translateY(-6px);
}

.spec {
  padding: 18px;
}

.spec b {
  display: block;
  color: var(--blue-900);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
}

.spec span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

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

.card {
  padding: 24px;
}

.card h3,
.card h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  background: none;
  color: var(--logo-blue);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 650;
}

.dark-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 77, 130, .9), rgba(6, 53, 96, .98)),
    var(--blue-900);
}

.dark-section h2,
.dark-section h3,
.dark-section .kicker,
.dark-section .section-title {
  color: #fff;
}

.dark-section .section-copy,
.dark-section .card p,
.dark-section .step p {
  color: #c9def0;
}

.dark-section .card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.dark-section .icon {
  color: #6ee0bc;
}

.dark-section .card h3,
.dark-section .card h2 {
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .45fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.step h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.34;
}

.timeline {
  display: grid;
  gap: 12px;
}

.time-item {
  padding: 22px;
}

.time-item h3,
.time-item h2 {
  margin-bottom: 8px;
  color: var(--blue-900);
}

.product-link,
.learn {
  display: inline-flex;
  margin-top: 12px;
  color: var(--logo-blue);
  font-family: var(--font-ui);
  font-weight: 680;
}

.product-link::after,
.learn::after {
  content: "";
  width: 17px;
  height: 17px;
  margin-left: 5px;
  background: currentColor;
  -webkit-mask: url("../icons/tabler/arrow-right.svg") center / contain no-repeat;
  mask: url("../icons/tabler/arrow-right.svg") center / contain no-repeat;
}

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

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

.case-card .case-img,
.news-img {
  overflow: hidden;
  background: var(--blue-900);
}

.case-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.case-card h3,
.case-card p,
.case-card .learn {
  margin-left: 22px;
  margin-right: 22px;
}

.case-card h3 {
  margin-top: 22px;
}

.case-card .learn {
  margin-bottom: 22px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-900);
  padding: 10px 14px;
  font-weight: 680;
}

.filter.active {
  background: var(--blue-900);
  color: #fff;
}

.quote-band {
  padding: 44px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 77, 130, .92), rgba(4, 24, 45, .94)),
    var(--blue-900);
}

.quote-band h2 {
  margin-bottom: 12px;
  color: #fff;
}

.quote-band p {
  max-width: 820px;
  margin-bottom: 0;
  color: #d3e8fa;
  font-size: 18px;
  line-height: 1.7;
}

.footer {
  padding: 58px 0 30px;
  color: #d3e8fa;
  background: #04182d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .55fr);
  gap: 30px;
}

.footer img {
  width: 140px;
  margin-bottom: 18px;
}

.footer h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.34;
}

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

.footer-col b {
  color: #fff;
  font-weight: 680;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
}

.icp-registration {
  text-decoration: underline;
  text-decoration-color: rgba(211, 232, 250, .45);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.icp-registration:hover,
.icp-registration:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 32px;
}

.article-title {
  color: var(--blue-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: 0;
}

.article-cover {
  overflow: hidden;
  margin: 24px 0;
  border-radius: 8px;
}

.article-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.side-block {
  padding: 22px;
}

.side-title {
  margin-bottom: 8px;
  font-size: 22px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-line b {
  display: block;
}

.contact-line span {
  color: var(--muted);
}

.form {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  isolation: isolate;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: #25435c;
  font-size: 13px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(23, 111, 183, .18);
  border-color: var(--logo-blue);
}

.form-feedback {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--logo-blue);
  font-size: 14px;
}

.form-success {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  padding: clamp(28px, 6vw, 64px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(238, 247, 252, .7);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  animation: form-success-in .38s var(--ease-out) both;
}

.form-success[hidden] {
  display: none;
}

.form-success-content {
  display: grid;
  width: min(100%, 420px);
  justify-items: center;
  text-align: center;
}

.form-success-check {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #24a66a;
  box-shadow: 0 14px 34px rgba(25, 126, 82, .24), inset 0 1px 0 rgba(255, 255, 255, .32);
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  animation: form-success-check-in .46s var(--ease-out) .08s both;
}

.form-success-message {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.form .form-success-edit {
  width: auto;
  min-height: 0;
  margin-top: 22px;
  border: 0;
  border-bottom: 1px solid rgba(37, 67, 92, .35);
  border-radius: 0;
  background: transparent;
  padding: 2px 0 4px;
  color: #48677f;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.form-success-edit:hover {
  border-color: var(--logo-blue);
  color: var(--logo-blue);
}

.form-success-edit:focus-visible {
  outline: 3px solid rgba(23, 111, 183, .2);
  outline-offset: 6px;
}

@keyframes form-success-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes form-success-check-in {
  from { opacity: 0; transform: scale(.72); }
  to { opacity: 1; transform: scale(1); }
}

.mobile-panel,
.search-overlay,
.toast {
  display: none;
}

.menu-button {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  gap: 8px;
}

.language-switch {
  position: relative;
  z-index: 24;
}

.lang-toggle {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  color: #25435c;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
}

.lang-toggle:hover,
.lang-toggle[aria-expanded="true"] {
  border-color: rgba(23, 111, 183, .28);
  background: var(--blue-100);
  color: var(--blue-900);
}

.lang-globe,
.chev {
  line-height: 1;
}

.lang-globe {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 680;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: 240px;
  max-height: 460px;
  max-height: min(460px, calc(100vh - 110px));
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.lang-menu.open,
.language-switch:focus-within .lang-menu {
  display: grid;
  gap: 4px;
}

.lang-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 10px 11px;
  text-align: left;
  cursor: pointer;
}

.lang-option:hover,
.lang-option.active {
  background: var(--blue-100);
  color: var(--blue-900);
}

.lang-option small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.lang-globe .site-icon,
.chev .site-icon {
  display: block;
}

.display {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.24;
  letter-spacing: 0;
}

.grad {
  color: #b9ddff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--logo-blue);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
  text-transform: none;
}

.dark .eyebrow,
.dark-section .eyebrow,
.eyebrow.dark {
  color: #b9ddff;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--blue-900);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 680;
}

.cta.green,
.cta.light {
  background: var(--logo-blue);
  color: #fff;
}

.cta.outline,
.cta.ghost {
  border-color: rgba(23, 111, 183, .22);
  background: rgba(255, 255, 255, .12);
  color: var(--blue-900);
}

.dark-section .cta.outline,
.dark-section .cta.ghost,
.dark .cta.ghost {
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}

.page-hero .display,
.hero .display {
  color: #fff;
}

.page-hero {
  margin-top: 0;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.device-frame {
  position: absolute;
  inset: 20px 0 auto auto;
  width: min(560px, 100%);
  height: 600px;
  overflow: hidden;
  border: 1px solid rgba(222, 241, 255, .34);
  border-radius: 8px;
  background: var(--blue-900);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .24);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b9ddff, transparent);
}

.hud {
  position: absolute;
  z-index: 3;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(222, 241, 255, .3);
  border-radius: 8px;
  background: rgba(5, 39, 70, .74);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hud h4 {
  margin: 0 0 6px;
  font-size: 14px;
}

.hud p {
  margin: 0;
  color: #cfe4f6;
  font-size: 12px;
}

.hud.one { left: 0; top: 70px; }
.hud.two { right: 0; top: 330px; }
.hud.three { left: 42px; bottom: 18px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.product-media {
  height: 230px;
  overflow: hidden;
  background: var(--blue-900);
}

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

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

.product-body h3 {
  margin: 0;
}

.learn {
  margin-top: auto;
}

.configurator-section {
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 77, 130, .9), rgba(6, 53, 96, .98)),
    var(--blue-900);
  color: #fff;
}

.configurator-entry {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 100px 0;
}

.configurator-section .section-title,
.configurator-section .section-copy {
  color: #fff;
}

.configurator-section .section-copy {
  color: #cfe4f6;
}

.configurator-preview {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.model-preview-canvas {
  width: 100%;
  height: 520px;
}

.rail {
  overflow: hidden;
}

.rail-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.mini-case {
  flex: 0 0 290px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.mini-case img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.mini-case h3,
.mini-case p,
.mini-case b {
  margin-left: 16px;
  margin-right: 16px;
}

.mini-case h3 {
  margin-top: 16px;
}

.mini-case p {
  color: #cfe4f6;
}

.mini-case b {
  display: block;
  margin-bottom: 16px;
  color: #b9ddff;
}

.configurator {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 18px;
}

.config-tabs {
  display: grid;
  gap: 10px;
}

.config-tab {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 650;
}

.config-tab.active {
  background: #fff;
  color: var(--blue-900);
}

.config-stage {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #04182d;
}

.config-stage img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.feature-panel.dark-card {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.filter-row button {
  cursor: pointer;
}

.article-shell,
.admin-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 140px 0 76px;
}

.article-paper {
  min-width: 0;
}

.article-kicker,
.preview-kicker,
.side-sub {
  margin-bottom: 12px;
  color: var(--logo-blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
  text-transform: none;
}

.article-meta,
.preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.article-summary,
.preview-summary {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.article-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.spec-strip div {
  padding: 16px;
  background: #fff;
}

.spec-strip b {
  display: block;
  color: var(--blue-900);
}

.quote-block {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--logo-blue);
  background: var(--blue-100);
  color: #25435c;
  line-height: 1.9;
}

.article-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.admin-top,
.news-top,
.service-bar {
  display: none;
}

.admin-card,
.preview-card,
.project-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 53, 96, .08);
}

.admin-hero,
.admin-panel {
  padding: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 18px;
  align-items: start;
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-form .full {
  grid-column: 1 / -1;
}

.file-drop {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px dashed rgba(23, 111, 183, .34);
  border-radius: 8px;
  background: #f9fcff;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  padding: 20px;
}

.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.editor-wrap {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f6f9fc;
}

.tool-btn {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue-900);
  min-width: 36px;
  height: 34px;
  padding: 0 10px;
  font-weight: 650;
}

.doc-editor {
  min-height: 320px;
  padding: 20px;
  outline: none;
  line-height: 1.9;
}

.project-list {
  display: grid;
  gap: 12px;
}

.project-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.project-gallery img {
  width: 100%;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.danger-btn {
  border: 1px solid rgba(180, 35, 24, .2);
  border-radius: 999px;
  background: rgba(180, 35, 24, .08);
  color: #b42318;
  padding: 9px 12px;
  font-weight: 650;
}

.playcanvas-status,
.real-model-load,
.real-model-viewer span {
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--blue-900);
  padding: 10px 14px;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  transition:
    opacity .76s var(--ease-out),
    transform .76s var(--ease-out);
  transition-delay: calc(var(--motion-order, 0) * 70ms);
  will-change: opacity, transform;
}

.motion-reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-group > * {
  transition-delay: calc(var(--motion-order, 0) * 80ms);
}

.page-transitioning main,
.page-transitioning .footer {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.8%, 1.4%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section,
  .container,
  .site-header,
  .site-header > *,
  [class*="grid"],
  [class*="panel"] {
    min-width: 0;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, .78);
    color: var(--blue-900);
    cursor: pointer;
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  .mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility .3s, opacity .3s ease;
  }

  .mobile-panel.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(4, 24, 45, .48);
    backdrop-filter: blur(4px);
  }

  .mobile-panel-sheet {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(88vw, 380px);
    height: 100%;
    height: 100dvh;
    padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
    background: rgba(246, 249, 252, .98);
    box-shadow: -20px 0 60px rgba(4, 24, 45, .2);
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
  }

  .mobile-panel.open .mobile-panel-sheet {
    transform: translateX(0);
  }

  .mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 2px 0 16px;
    border-bottom: 1px solid var(--line);
    color: var(--blue-900);
    font-weight: 680;
  }

  .mobile-menu-close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--blue-900);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav {
    display: grid;
    gap: 6px;
    overflow-y: auto;
    padding: 16px 0;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px;
    border-radius: 6px;
    color: #25435c;
    font-weight: 680;
  }

  .mobile-nav a.active {
    background: var(--blue-100);
    color: var(--blue-900);
  }

  .mobile-nav a[href="configurator/"],
  .mobile-nav .nav-cta {
    justify-content: center;
    margin-top: 8px;
    background: var(--blue-900);
    color: #fff;
  }

  .hero-grid,
  .section-intro,
  .delivery-grid,
  .contact-panel,
  .split,
  .section-head,
  .article-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .configurator-entry,
  .configurator,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

  .site-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .delivery {
    padding: 76px 0;
  }

  .delivery-grid {
    gap: 48px;
  }

  .delivery-copy {
    max-width: 720px;
  }

  .delivery h2 {
    max-width: 700px;
    font-size: clamp(32px, 5.5vw, 42px);
  }

  .court-grid,
  .project-strip,
  .cards,
  .case-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .product-panel {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 8px;
    padding: 8px 9px 8px 12px;
  }

  .brand img {
    width: clamp(92px, 26vw, 104px);
  }

  .nav-cta {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .lang-toggle {
    min-height: 44px;
    padding: 8px 9px;
  }

  .lang-toggle .chev {
    display: none;
  }

  .lang-menu {
    position: fixed;
    top: 70px;
    right: 10px;
    width: min(280px, calc(100vw - 20px));
    max-height: calc(100dvh - 82px);
  }

  .hero {
    padding: 122px 0 58px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  h2 { font-size: clamp(25px, 7vw, 32px); }
  h3, p, li, a, span { overflow-wrap: anywhere; }

  .section {
    padding: clamp(56px, 15vw, 72px) 0;
  }

  .product-line-section .section-intro {
    margin-bottom: 18px;
  }

  .product-showcase-shell {
    padding: 12px 14px;
  }

  .product-zoom-control {
    top: 26px;
    right: 26px;
  }

  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-panel { min-height: clamp(360px, 112vw, 460px); }

  .product-panel img {
    object-position: calc(47% + 3px) center;
  }

  .product-panel-copy strong {
    font-size: 22px;
  }

  .delivery-list li {
    grid-template-columns: 44px 1fr;
    gap: 10px 14px;
  }

  .delivery-list p {
    grid-column: 2;
  }

  .delivery {
    padding: 68px 0;
  }

  .delivery .kicker {
    margin-bottom: 18px;
  }

  .delivery h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 34px);
    line-height: 1.24;
    text-wrap: pretty;
  }

  .delivery .section-copy {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.72;
  }

  .delivery .configurator-cta {
    width: 100%;
    margin-top: 30px;
  }

  .delivery-note {
    justify-content: center;
  }

  .site-card {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    animation: hero-card-in .45s var(--ease-out) .06s both;
  }

  .capability-head {
    align-items: center;
    padding-bottom: 18px;
  }

  .live-badge {
    padding: 6px 8px;
  }

  .capability-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 4px;
  }

  .capability-list em {
    display: none;
  }

  .contact-panel {
    padding: 24px;
  }

  .spec-grid,
  .spec-strip,
  .form,
  .admin-form,
  .article-gallery,
  .product-grid,
  .project-row {
    grid-template-columns: 1fr;
  }

  .project-row { align-items: stretch; }
  .project-gallery img { height: clamp(120px, 42vw, 180px); }

  .feature-panel img,
  .config-stage img {
    min-height: clamp(260px, 72vw, 360px);
  }

  .quote-band,
  .admin-hero,
  .admin-panel,
  .side-block,
  .card,
  .panel-pad {
    padding: 20px;
  }

  .hero-actions,
  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .filter,
  .form .button,
  .form button,
  .admin-form button {
    width: 100%;
    min-height: 48px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .article-shell,
  .admin-shell {
    width: min(100% - 28px, 1180px);
    padding: 112px 0 56px;
  }

  .article-content ul,
  .article-content ol {
    padding-left: 22px;
  }

  .rail-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .mini-case { width: 100%; }

  .configurator-entry { padding: 64px 0; }
  .configurator-preview,
  .model-preview-canvas { min-height: 320px; height: 320px; }
  .config-stage,
  .config-stage img { min-height: 300px; }

  .footer-bottom {
    display: grid;
  }
}
