@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-600.ttf") format("truetype");
}

:root {
  --ink: #06121d;
  --ink-soft: #102231;
  --paper: #f3f5f6;
  --white: #ffffff;
  --blue: #007c9f;
  --blue-bright: #00a7d1;
  --cyan: #8dd9e8;
  --lime: #00a7d1;
  --line: rgba(6, 18, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --muted: #566572;
  --shell: min(1520px, calc(100vw - 64px));
  --radius: 6px;
  --shadow: 0 30px 90px rgba(4, 20, 33, 0.12);
  --brand-petrol: #064f63;
  --color-bg-page: var(--paper);
  --color-bg-surface: var(--white);
  --color-bg-inverse: var(--ink);
  --color-bg-brand: var(--blue);
  --color-bg-accent: var(--blue-bright);
  --color-text-primary: var(--ink);
  --color-text-secondary: var(--muted);
  --color-text-inverse: var(--white);
  --color-text-brand: var(--brand-petrol);
  --color-border-default: var(--line);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --radius-none: 0;
  --radius-control: 2px;
  --radius-card: 6px;
  --radius-full: 999px;
  --font-sans: "Instrument Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 15%, rgba(0, 111, 255, 0.07), transparent 24rem),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.topline {
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.topline .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.topline p {
  margin: 0;
}

.topline a {
  color: var(--cyan);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 250, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 188px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 30px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button span,
.nav-cta span {
  font-size: 20px;
  line-height: 1;
}

.nav-cta,
.button--blue {
  color: var(--white);
  background: var(--blue);
}

.nav-cta:hover,
.button--blue:hover {
  background: #005bd3;
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--ghost {
  border-color: currentColor;
  background: transparent;
}

.button--lime {
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle i,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--ink);
  transition: 180ms ease;
}

.menu-open .menu-toggle i {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(0, 167, 209, 0.15);
}

.hero {
  position: relative;
  min-height: calc(100svh - 126px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 32%, rgba(23, 168, 255, 0.3), transparent 25rem),
    linear-gradient(130deg, #05111b 0%, #0a2135 62%, #09395b 100%);
}

.hero::before,
.dark-grid::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(var(--line-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  min-height: calc(100svh - 126px);
  gap: clamp(32px, 4vw, 80px);
  padding: 72px 0 94px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  max-width: 1100px;
  margin: 28px 0 30px;
  font-size: clamp(62px, 8vw, 148px);
  line-height: 0.87;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero-lead,
.page-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.hero-product {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.hero-product::before {
  position: absolute;
  width: min(40vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(82, 227, 255, 0.35);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(82, 227, 255, 0.03),
    0 0 110px rgba(23, 168, 255, 0.2);
}

.hero-product img {
  position: relative;
  z-index: 1;
  width: min(52vw, 760px);
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 44px 55px rgba(0, 0, 0, 0.35));
}

.hero-product .product-tag {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 15%;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background: rgba(4, 20, 33, 0.64);
  backdrop-filter: blur(18px);
}

.product-tag strong,
.product-tag span {
  display: block;
}

.product-tag strong {
  font-size: 17px;
}

.product-tag span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-rail {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line-light);
  background: rgba(4, 15, 25, 0.56);
  backdrop-filter: blur(12px);
}

.hero-rail .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rail-item {
  position: relative;
  min-height: 86px;
  padding: 18px clamp(16px, 2vw, 32px) 18px clamp(58px, 4vw, 78px);
  border-left: 1px solid var(--line-light);
}

.rail-item:last-child {
  border-right: 1px solid var(--line-light);
}

.rail-item strong,
.rail-item span {
  display: block;
}

.rail-item strong {
  font-size: 19px;
}

.rail-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rail-item .rail-icon {
  position: absolute;
  top: 50%;
  left: clamp(16px, 2vw, 28px);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(82, 227, 255, 0.32);
  border-radius: 10px;
  background: rgba(82, 227, 255, 0.08);
  transform: translateY(-50%);
}

.rail-item .rail-icon img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.section {
  padding: clamp(96px, 11vw, 180px) 0;
}

.section--tight {
  padding: clamp(76px, 8vw, 120px) 0;
}

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

.section--dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section--blue {
  color: var(--white);
  background: var(--blue);
}

.section-intro {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  margin-bottom: clamp(56px, 7vw, 104px);
}

.section-intro--center {
  display: block;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.statement h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(50px, 7vw, 118px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-intro h2 em,
.statement h2 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section--dark .section-intro h2 em {
  color: var(--cyan);
}

.section-copy {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.5vw, 24px);
}

.section--dark .section-copy,
.section--blue .section-copy {
  color: rgba(255, 255, 255, 0.67);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label::before {
  width: 36px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-intro > * {
  min-width: 0;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.ecosystem-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 570px;
  padding: clamp(28px, 3vw, 48px);
  border-radius: var(--radius);
  background: #e9edf1;
  flex-direction: column;
}

.ecosystem-card:nth-child(1),
.ecosystem-card:nth-child(4) {
  grid-column: span 7;
}

.ecosystem-card:nth-child(2),
.ecosystem-card:nth-child(3) {
  grid-column: span 5;
}

.ecosystem-card--dark {
  color: var(--white);
  background: #071b2c;
}

.ecosystem-card--blue {
  color: var(--white);
  background: var(--blue);
}

.ecosystem-card--ice {
  background: #dff7ff;
}

.card-number {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: auto 0 12px;
  font-size: clamp(38px, 4vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.ecosystem-card p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: rgba(6, 18, 29, 0.64);
}

.ecosystem-card--dark p,
.ecosystem-card--blue p {
  color: rgba(255, 255, 255, 0.67);
}

.ecosystem-card img {
  position: absolute;
  top: 5%;
  right: -3%;
  width: 64%;
  height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.16));
  transition: transform 280ms ease;
}

.ecosystem-card .ecosystem-icon {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 106px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ecosystem-card .ecosystem-icon img {
  position: static;
  width: 23px;
  height: 23px;
  filter: none;
  transform: none;
}

.ecosystem-card--dark .ecosystem-icon img,
.ecosystem-card--blue .ecosystem-icon img {
  filter: brightness(0) invert(1);
}

.ecosystem-card:hover > img {
  transform: translateY(-8px) scale(1.03);
}

.card-link {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 38px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
}

.spec-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-ribbon > div {
  padding: clamp(26px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.spec-ribbon > div:last-child {
  border-right: 1px solid var(--line);
}

.spec-ribbon strong,
.spec-ribbon span {
  display: block;
}

.spec-ribbon strong {
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.spec-ribbon span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.platform-stage {
  position: relative;
  display: grid;
  color: var(--white);
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  min-height: 730px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 50%, rgba(23, 168, 255, 0.16), transparent 27rem),
    #071827;
}

.platform-copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: clamp(40px, 5vw, 80px);
  flex-direction: column;
  justify-content: flex-end;
}

.platform-copy h2 {
  margin: 24px 0;
  font-size: clamp(48px, 5.4vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.platform-copy p {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 20px;
}

.platform-visual {
  position: relative;
  min-height: 620px;
}

.platform-visual img {
  position: absolute;
  inset: 5% 2% 2% 0;
  width: 98%;
  height: 93%;
  object-fit: contain;
  filter: drop-shadow(0 40px 35px rgba(0, 0, 0, 0.32));
}

.pulse {
  position: absolute;
  top: 38%;
  left: 42%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow:
    0 0 0 16px rgba(0, 167, 209, 0.1),
    0 0 0 38px rgba(0, 167, 209, 0.04);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.15);
    box-shadow:
      0 0 0 24px rgba(0, 167, 209, 0.06),
      0 0 0 56px rgba(0, 167, 209, 0.02);
  }
}

.video-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-radius: var(--radius);
  background: #091b2a;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  background: #071827;
}

.video-credit {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  padding: 11px 15px;
  gap: 9px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 18, 29, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.video-credit img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.video-side {
  display: grid;
  gap: 22px;
}

.video-teaser {
  display: flex;
  color: var(--ink);
  min-height: 314px;
  padding: 36px;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.video-teaser--blue {
  color: var(--white);
  background: var(--blue);
}

.video-teaser strong {
  font-size: clamp(32px, 3vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.video-teaser a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.statement {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.statement p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.55fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cert-main,
.cert-item {
  min-height: 280px;
  padding: clamp(26px, 3vw, 48px);
}

.cert-main {
  display: flex;
  color: var(--white);
  border-radius: calc(var(--radius) - 1px) 0 0 calc(var(--radius) - 1px);
  background: var(--blue);
  flex-direction: column;
  justify-content: space-between;
}

.cert-main strong {
  max-width: 650px;
  font-size: clamp(42px, 4vw, 70px);
  line-height: 0.95;
  letter-spacing: 0;
}

.cert-item {
  display: flex;
  border-left: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
}

.cert-item span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.cert-item img {
  width: 30px;
  height: 30px;
  margin-block: 22px;
}

.cert-item strong {
  font-size: 21px;
  line-height: 1.2;
}

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

.process-card {
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.process-card .step {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.process-card .process-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 54px;
  place-items: center;
  border: 1px solid rgba(0, 111, 255, 0.2);
  border-radius: 17px;
  background: rgba(0, 111, 255, 0.06);
}

.process-card .process-icon img {
  width: 24px;
  height: 24px;
}

.process-card h3 {
  margin: 32px 0 18px;
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 45%, rgba(23, 168, 255, 0.28), transparent 28rem),
    var(--ink);
}

.page-hero .shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 810px;
  gap: 50px;
  padding-block: 76px;
}

.page-hero h1 {
  margin-block: 30px;
  font-size: clamp(62px, 7.3vw, 128px);
}

.page-hero h1 em {
  color: var(--cyan);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.page-hero-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.page-hero-visual::before {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border: 1px solid rgba(82, 227, 255, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 90px rgba(23, 168, 255, 0.14);
}

.page-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 40px 44px rgba(0, 0, 0, 0.38));
}

.breadcrumb {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--white);
}

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

.feature-card {
  min-height: 390px;
  padding: clamp(30px, 3vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card--dark {
  color: var(--white);
  border-color: transparent;
  background: var(--ink-soft);
}

.feature-card--blue {
  color: var(--white);
  border-color: transparent;
  background: var(--blue);
}

.feature-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 84px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.feature-icon img {
  width: 25px;
  height: 25px;
}

.feature-card--dark .feature-icon img,
.feature-card--blue .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card--dark p,
.feature-card--blue p {
  color: rgba(255, 255, 255, 0.64);
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  min-height: 680px;
  border-radius: 38px;
  background: #e7ebef;
}

.product-showcase--dark {
  color: var(--white);
  background: var(--ink);
}

.showcase-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.showcase-visual::before {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(0, 111, 255, 0.2), transparent 70%);
}

.showcase-visual img {
  position: relative;
  z-index: 1;
  width: 82%;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.25));
}

.showcase-copy {
  display: flex;
  padding: clamp(44px, 6vw, 96px);
  flex-direction: column;
  justify-content: center;
}

.showcase-copy h2 {
  margin: 24px 0;
  font-size: clamp(50px, 5.7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.showcase-copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 20px;
}

.product-showcase--dark .showcase-copy > p {
  color: rgba(255, 255, 255, 0.65);
}

.showcase-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.showcase-specs div {
  padding: 20px;
  background: #e7ebef;
}

.product-showcase--dark .showcase-specs div {
  background: var(--ink);
}

.showcase-specs strong,
.showcase-specs span {
  display: block;
}

.showcase-specs strong {
  font-size: 24px;
}

.showcase-specs span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-showcase--dark .showcase-specs span {
  color: rgba(255, 255, 255, 0.48);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comparison th:not(:first-child),
.comparison td:not(:first-child) {
  border-left: 1px solid var(--line);
}

.comparison td:first-child {
  color: var(--muted);
}

.comparison td:not(:first-child) {
  font-weight: 700;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

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

.usecase {
  position: relative;
  color: var(--ink);
  min-height: 330px;
  padding: 34px;
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.usecase-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(0, 111, 255, 0.24);
  border-radius: 15px;
  background: rgba(0, 111, 255, 0.06);
}

.usecase-icon img {
  width: 21px;
  height: 21px;
}

.usecase span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.usecase h3 {
  margin: 90px 0 16px;
  font-size: 34px;
  letter-spacing: 0;
}

.usecase p {
  margin: 0;
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.media-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e6ebef;
}

.media-panel > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  padding: 6%;
}

.media-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}

.media-panel video {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  background: #071827;
}

.media-panel-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(6, 18, 29, 0.78);
  backdrop-filter: blur(14px);
  font-size: 14px;
}

.technical-panel {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: #073846;
  grid-template-rows: auto minmax(260px, 1fr) auto;
}

.technical-panel__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.technical-panel > *,
.technical-panel__header > div {
  min-width: 0;
}

.technical-panel__header span,
.technical-panel__header strong {
  display: block;
}

.technical-panel__header span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.technical-panel__header strong {
  max-width: 520px;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.technical-panel__icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  place-items: center;
}

.technical-panel__icon img {
  width: 24px;
  height: 24px;
  min-height: 0;
  padding: 0;
  filter: brightness(0) invert(1);
}

.technical-panel__visual {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
}

.technical-panel__visual::before {
  position: absolute;
  width: min(70%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 184, 226, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 46px rgba(0, 184, 226, 0.035),
    0 0 0 92px rgba(0, 184, 226, 0.025);
}

.technical-panel__visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 640px);
  height: 330px;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.28));
}

.technical-panel__specs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.technical-panel__specs div {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(1, 28, 36, 0.56);
}

.technical-panel__specs strong,
.technical-panel__specs span {
  display: block;
}

.technical-panel__specs strong {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.05;
}

.technical-panel__specs span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.faq-list {
  max-width: 1180px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 34px 76px 34px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 25px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 850px;
  margin: -8px 0 34px;
  color: var(--muted);
  font-size: 19px;
}

.cta-section {
  padding: 24px 0;
  background: var(--ink);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(48px, 7vw, 110px);
  gap: 60px;
  color: var(--white);
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 30%, rgba(82, 227, 255, 0.32), transparent 22rem),
    var(--blue);
}

.cta-panel::after {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
}

.cta-info {
  position: relative;
  z-index: 1;
}

.cta-info > p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.cta-contact {
  display: grid;
  margin-top: 26px;
  gap: 8px;
}

.cta-contact a {
  width: fit-content;
  font-size: 19px;
  font-weight: 700;
}

.site-footer {
  padding: 80px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.6fr);
  gap: 50px;
  padding-bottom: 70px;
}

.footer-brand .brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column strong {
  display: block;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  width: fit-content;
  margin: 9px 0;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1520px);
  }

  .nav-wrap {
    grid-template-columns: 200px 1fr auto;
  }

  .brand img {
    width: 164px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.78fr;
  }

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

  .cert-grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }
}

@media (max-width: 980px) {
  .topline {
    display: block;
  }

  .topline p,
  .topline__email {
    display: none;
  }

  .topline .shell {
    justify-content: center;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    inset: 76px 0 0;
    display: flex;
    padding: 44px 28px;
    color: var(--white);
    background: var(--ink);
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

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

  .mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .mobile-menu .button {
    margin-top: 28px;
    border-bottom: 0;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .page-hero .shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 86px 120px;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-product,
  .page-hero-visual {
    min-height: 520px;
  }

  .hero-product img {
    width: min(88vw, 720px);
  }

  .hero-product::before {
    width: min(72vw, 620px);
  }

  .hero-rail {
    position: relative;
  }

  .section-intro,
  .statement {
    grid-template-columns: 1fr;
  }

  .section-copy {
    margin-left: auto;
  }

  .ecosystem-card:nth-child(n) {
    grid-column: span 6;
  }

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

  .platform-copy {
    padding-bottom: 0;
  }

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

  .video-side {
    grid-template-columns: 1fr 1fr;
  }

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

  .cert-main {
    grid-column: 1 / -1;
    min-height: 260px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

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

  .feature-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 330px;
  }

  .feature-icon {
    margin-bottom: 60px;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 22px;
  }

  body {
    font-size: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(54px, 17vw, 88px);
    letter-spacing: 0;
  }

  .hero-lead,
  .page-lead {
    font-size: 20px;
  }

  .hero-inner {
    padding-top: 64px;
  }

  .hero-product,
  .page-hero-visual {
    min-height: 380px;
  }

  .hero-product .product-tag {
    right: 0;
    bottom: 4%;
  }

  .hero-rail .shell,
  .spec-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .rail-item {
    border-top: 1px solid var(--line-light);
  }

  .section {
    padding: 86px 0;
  }

  .section-intro h2,
  .statement h2,
  .cta-panel h2 {
    font-size: clamp(46px, 15vw, 76px);
  }

  .ecosystem-grid {
    display: block;
  }

  .ecosystem-card {
    min-height: 510px;
    margin-bottom: 16px;
  }

  .ecosystem-card img {
    top: 7%;
    right: 0;
    width: 76%;
    height: 56%;
  }

  .platform-stage {
    border-radius: 26px;
  }

  .platform-copy {
    padding: 34px;
  }

  .platform-visual {
    min-height: 420px;
  }

  .video-card,
  .video-card iframe,
  .video-card video {
    min-height: 300px;
  }

  .video-side {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    display: block;
  }

  .cert-item {
    min-height: 210px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .process-card h3 {
    margin-top: 28px;
  }

  .showcase-visual {
    min-height: 400px;
  }

  .showcase-copy {
    padding: 36px 26px;
  }

  .media-panel,
  .media-panel img,
  .media-panel iframe,
  .media-panel video {
    min-height: 360px;
  }

  .cta-section {
    padding: 14px 0;
  }

  .cta-panel {
    min-height: 680px;
    padding: 38px 26px;
    border-radius: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

/* novoSYS brand direction — quiet typography, cinematic media, no neon UI */
body {
  background: var(--paper);
  font-family: var(--font-sans);
}

/* Figma v6 product system — technical, restrained and reusable */
.product-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 6vw, 82px);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-card);
  background: var(--color-bg-surface);
  flex-direction: column;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--color-bg-accent);
}

.product-card:hover {
  border-color: rgba(0, 124, 159, 0.45);
  box-shadow: 0 22px 60px rgba(4, 20, 33, 0.09);
  transform: translateY(-3px);
}

.ecosystem-card:focus-visible,
.product-card:focus-visible,
.related-product-card:focus-visible {
  outline: 3px solid var(--brand-cyan);
  outline-offset: 3px;
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--color-border-default);
  background: #e9eef0;
}

.product-card__media::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(6, 18, 29, 0.68);
  content: attr(data-model);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card__media img {
  width: 86%;
  height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(4, 20, 33, 0.16));
  transition: transform 240ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__body {
  display: flex;
  min-height: 310px;
  padding: 26px 26px 24px;
  flex: 1;
  flex-direction: column;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-text-brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card__category img {
  width: 17px;
  height: 17px;
  filter: invert(23%) sepia(37%) saturate(1464%) hue-rotate(145deg) brightness(88%);
}

.product-card h3 {
  margin: 25px 0 14px;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.product-card p {
  margin: 0 0 25px;
  color: var(--color-text-secondary);
  font-size: 17px;
  line-height: 1.55;
}

.product-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  border-top: 1px solid var(--color-border-default);
  border-left: 1px solid var(--color-border-default);
}

.product-card__specs span {
  min-width: 0;
  padding: 14px 12px;
  border-right: 1px solid var(--color-border-default);
  border-bottom: 1px solid var(--color-border-default);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  color: var(--color-text-brand);
  font-size: 15px;
  font-weight: 600;
}

.product-card__link span {
  font-size: 20px;
  line-height: 1;
}

.product-catalog-note {
  display: flex;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px 0 0;
  gap: 12px;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border-default);
  font-size: 13px;
}

.product-catalog-note img {
  width: 18px;
  height: 18px;
}

.product-index {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: 38px;
}

.product-index__number {
  display: block;
  margin-bottom: 22px;
  color: var(--color-bg-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-index h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.product-index p {
  max-width: 640px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(18px, 1.6vw, 24px);
}

.home-products .product-card__media {
  min-height: 240px;
}

.home-products .product-card__media img {
  height: 210px;
}

.home-products .product-card__body {
  min-height: 285px;
}

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

  .product-index {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .product-card__media,
  .home-products .product-card__media {
    min-height: 250px;
  }

  .product-card__media img,
  .home-products .product-card__media img {
    height: 220px;
  }

  .product-card__body,
  .home-products .product-card__body {
    min-height: auto;
    padding: 24px 22px;
  }
}

::selection {
  color: var(--white);
  background: var(--blue-bright);
}

.topline {
  background: var(--blue-bright);
  letter-spacing: 0;
  text-transform: none;
}

.topline a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  border-bottom-color: rgba(0, 74, 94, 0.13);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 94px;
}

.brand img {
  width: 214px;
}

.main-nav {
  color: #064f63;
  font-size: 15px;
}

.main-nav a::after {
  bottom: 24px;
  background: var(--blue-bright);
}

.nav-cta,
.button {
  min-height: 56px;
  border-radius: 2px;
  font-weight: 700;
}

.nav-cta,
.button--blue,
.button--lime {
  color: var(--white);
  background: var(--blue);
}

.nav-cta:hover,
.button--blue:hover,
.button--lime:hover {
  color: var(--white);
  background: #005e78;
  transform: none;
}

.button--light {
  color: #064f63;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.66);
}

.button--ghost:hover {
  color: #064f63;
  background: var(--white);
}

.eyebrow {
  letter-spacing: 0;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  border-radius: 0;
  background: var(--blue-bright);
  box-shadow: none;
}

.hero,
.page-hero {
  isolation: isolate;
  background: #042b36;
}

.hero::before,
.dark-grid::before {
  display: none;
}

.hero-background {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 23, 30, 0.38) 0%, rgba(0, 31, 40, 0.58) 55%, rgba(0, 21, 28, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 27, 35, 0.48), rgba(0, 27, 35, 0.08) 52%, rgba(0, 27, 35, 0.32));
}

.hero {
  min-height: calc(100svh - 132px);
}

.hero-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: calc(100svh - 132px);
  padding: 82px 0 150px;
  text-align: center;
}

.hero-copy {
  width: min(1060px, 100%);
}

.hero h1,
.page-hero h1 {
  margin: 22px auto 28px;
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--white);
}

.hero-lead,
.page-lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.45;
}

.hero-actions {
  justify-content: center;
  margin-top: 38px;
}

.hero-product {
  display: none;
}

.hero-rail {
  background: rgba(0, 36, 47, 0.78);
  backdrop-filter: blur(12px);
}

.rail-item .rail-icon {
  border-color: rgba(141, 217, 232, 0.36);
  border-radius: 2px;
  background: rgba(0, 167, 209, 0.14);
}

.motion-toggle {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 106px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 2px;
  background: rgba(0, 31, 40, 0.58);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.page-hero .motion-toggle {
  bottom: 22px;
}

.section-intro h2,
.statement h2,
.cta-panel h2 {
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: 1;
  letter-spacing: 0;
}

.section-intro h2 em,
.statement h2 em,
.page-hero h1 em,
.section--dark .section-intro h2 em {
  color: var(--blue);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.section--dark .section-intro h2 em,
.page-hero h1 em {
  color: var(--cyan);
}

.section--dark,
.product-showcase--dark,
.platform-stage {
  background: #042f3c;
}

.section--blue,
.ecosystem-card--blue,
.feature-card--blue,
.cert-main,
.video-teaser--blue {
  background: var(--blue);
}

.ecosystem-card {
  border: 1px solid rgba(0, 76, 98, 0.12);
  border-radius: 6px;
  background: #e7ecee;
}

.ecosystem-card--dark {
  background: #073844;
}

.ecosystem-card--ice {
  background: #e6f2f4;
}

.ecosystem-card .ecosystem-icon,
.card-link {
  border-radius: 2px;
}

.platform-stage,
.cert-grid,
.process-card,
.feature-card,
.usecase,
.video-card,
.video-teaser,
.media-panel,
.product-showcase,
.cta-panel {
  border-radius: 6px;
}

.pulse {
  background: var(--blue-bright);
  box-shadow:
    0 0 0 16px rgba(0, 167, 209, 0.1),
    0 0 0 38px rgba(0, 167, 209, 0.04);
}

.feature-icon,
.process-card .process-icon,
.usecase-icon {
  border-radius: 3px;
  background: rgba(0, 124, 159, 0.08);
}

.page-hero .shell {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  min-height: 720px;
  text-align: center;
}

.page-hero .shell > div:first-child {
  position: relative;
  z-index: 2;
}

.page-hero-visual {
  display: none;
}

.page-hero .breadcrumb {
  justify-content: center;
}

.page-hero .hero-actions {
  justify-content: center;
}

.cta-panel {
  background: #00647f;
}

.site-footer {
  background: #032a35;
}

@media (max-width: 1120px) {
  .brand img {
    width: 188px;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }
}

@media (max-width: 720px) {
  .topline .shell {
    min-height: 34px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 168px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    padding: 70px 0 250px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-lead,
  .page-lead {
    font-size: 19px;
  }

  .motion-toggle {
    right: 16px;
    bottom: 206px;
  }

  .page-hero .motion-toggle {
    bottom: 16px;
  }

  .page-hero .shell {
    min-height: 650px;
    padding-block: 70px;
  }

  .section-intro h2,
  .statement h2,
  .cta-panel h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .cta-panel {
    border-radius: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background {
    display: none;
  }
}

.reference-section {
  border-top: 1px solid rgba(0, 76, 98, 0.12);
  border-bottom: 1px solid rgba(0, 76, 98, 0.12);
  background: #e9eef0;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 76, 98, 0.15);
  border-radius: 6px;
  background: rgba(0, 76, 98, 0.15);
  gap: 1px;
}

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

.reference-grid--all {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reference-grid--all .reference-card {
  min-height: 218px;
  padding: 28px;
}

.reference-card {
  display: grid;
  min-height: 260px;
  padding: 38px;
  background: var(--white);
  place-items: center;
  grid-template-rows: 1fr auto;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.reference-card:hover {
  color: var(--white);
  background: var(--blue);
}

.reference-card img {
  width: auto;
  max-width: min(82%, 360px);
  max-height: 118px;
  object-fit: contain;
}

.reference-card--dark-logo img {
  max-width: 92%;
  padding: 15px;
  border-radius: 4px;
  background: #102733;
}

.reference-card span {
  justify-self: start;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reference-card:hover span {
  color: rgba(255, 255, 255, 0.82);
}

.reference-source {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.reference-source:hover {
  color: #005e78;
}

.reference-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
}

@media (max-width: 1180px) {
  .reference-grid--all {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .reference-grid,
  .reference-grid--two {
    grid-template-columns: 1fr;
  }

  .reference-card {
    min-height: 220px;
    padding: 30px;
  }
}

/* v7 readability corrections: reserve a clear header lane and avoid narrow two-column cards. */
.card-number {
  width: calc(100% - 150px);
  justify-content: flex-start;
  gap: 20px;
}

.card-number span:last-child {
  color: currentColor;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .ecosystem-grid {
    display: block;
  }

  .ecosystem-card {
    min-height: 560px;
    margin-bottom: 18px;
  }

  .ecosystem-card:last-child {
    margin-bottom: 0;
  }

  .card-number span:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .product-card__media,
  .home-products .product-card__media {
    min-height: 310px;
  }

  .product-card__media img,
  .home-products .product-card__media img {
    height: 280px;
  }

  .technical-panel {
    min-height: 580px;
  }
}

@media (max-width: 560px) {
  .page-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .ecosystem-card {
    min-height: 520px;
    padding: 26px 22px;
  }

  .ecosystem-card .ecosystem-icon {
    top: 24px;
    right: 88px;
    width: 48px;
    height: 48px;
  }

  .card-link {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .card-number {
    width: calc(100% - 130px);
    font-size: 11px;
  }

  .technical-panel {
    min-height: 540px;
    padding: 28px 22px;
  }

  .technical-panel__header strong {
    font-size: 32px;
  }

  .technical-panel__visual img {
    height: 250px;
  }

  .technical-panel__specs {
    grid-template-columns: 1fr;
  }

  .technical-panel__specs div {
    padding: 15px 16px;
  }

  .product-card__specs span {
    font-size: 12px;
  }
}

/* v8 — stronger partner positioning, denser rhythm and clearer decision content */
.section {
  padding: clamp(68px, 7vw, 112px) 0;
}

.section--tight {
  padding: clamp(58px, 5.5vw, 84px) 0;
}

.section-intro {
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: clamp(38px, 4.5vw, 64px);
}

.section-label {
  margin-bottom: 20px;
}

.section-copy--wide {
  max-width: 820px;
  margin-top: 24px;
}

.partner-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.4fr) auto;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px 24px;
  gap: 24px;
  color: var(--white);
  border-radius: 6px;
  background: #043846;
}

.partner-band__mark {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
}

.partner-band__mark img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.partner-band__mark b {
  color: var(--cyan);
}

.partner-band > div:nth-child(2) strong,
.partner-band > div:nth-child(2) span {
  display: block;
}

.partner-band > div:nth-child(2) strong {
  font-size: 18px;
}

.partner-band > div:nth-child(2) span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.partner-band > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 218px;
  padding: 13px 15px;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}

.partner-band > a:hover {
  color: #043846;
  background: var(--white);
}

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

.why-card {
  position: relative;
  min-height: 278px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafb;
}

.why-card > img {
  width: 30px;
  height: 30px;
  margin-bottom: 40px;
}

.why-card h3 {
  max-width: 320px;
  margin: 0 0 12px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.02;
  letter-spacing: 0;
}

.why-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.why-novosys .spec-ribbon {
  margin-top: 18px;
}

.cert-grid--spaced {
  margin-top: clamp(38px, 4vw, 56px);
}

.process-card {
  min-height: 360px;
}

.process-card .process-icon {
  margin-top: 40px;
}

.faq-list summary {
  padding-block: 26px;
}

.faq-list details p {
  margin-bottom: 26px;
}

@media (max-width: 1080px) {
  .partner-band {
    grid-template-columns: 1fr auto;
  }

  .partner-band > div:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

@media (max-width: 680px) {
  .section {
    padding: 62px 0;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .hero-partner-proof {
    width: 100%;
    max-width: 460px;
  }

  .partner-band {
    display: flex;
    align-items: stretch;
    padding: 22px;
    flex-direction: column;
    gap: 16px;
  }

  .partner-band > a {
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .why-card > img {
    margin-bottom: 30px;
  }

  .why-novosys .spec-ribbon {
    margin-top: 12px;
  }
}

/* v9 — reusable SEO product detail pages */
.product-detail-hero .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  justify-content: initial;
  min-height: 760px;
  padding-block: 74px;
  gap: clamp(40px, 6vw, 100px);
  text-align: left;
}

.product-detail-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.product-detail-hero .breadcrumb,
.product-detail-hero .hero-actions {
  justify-content: flex-start;
}

.product-detail-hero h1 {
  max-width: 940px;
  margin-inline: 0;
  font-size: clamp(52px, 5.8vw, 92px);
  overflow-wrap: anywhere;
}

.product-detail-hero .page-lead {
  max-width: 820px;
  margin-inline: 0;
}

.product-detail-visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  min-height: 560px;
  place-items: center;
}

.product-detail-visual::before {
  position: absolute;
  width: min(88%, 590px);
  aspect-ratio: 1;
  border: 1px solid rgba(141, 217, 232, 0.3);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 62px rgba(141, 217, 232, 0.035),
    0 0 100px rgba(0, 167, 209, 0.16);
}

.product-detail-visual > span {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 0;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 35, 46, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-detail-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 42px 38px rgba(0, 0, 0, 0.34));
}

.product-source-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: clamp(36px, 4vw, 58px);
  padding: 18px 20px;
  gap: 15px;
  border: 1px solid rgba(0, 124, 159, 0.2);
  border-radius: 5px;
  background: rgba(0, 124, 159, 0.05);
}

.product-source-note > img {
  width: 26px;
  height: 26px;
}

.product-source-note span,
.product-source-note strong {
  display: block;
}

.product-source-note strong {
  margin-bottom: 2px;
  font-size: 16px;
}

.product-source-note span {
  color: var(--muted);
  font-size: 14px;
}

.product-source-note a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.product-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
  gap: 1px;
}

.product-fact-grid > div {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
}

.product-fact-grid span,
.product-fact-grid strong {
  display: block;
}

.product-fact-grid span {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-fact-grid strong {
  font-size: clamp(25px, 2.4vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

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

.product-use-grid article {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.product-use-grid article > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-use-grid article > img {
  width: 32px;
  height: 32px;
  margin-bottom: 74px;
}

.product-use-grid h3 {
  max-width: 410px;
  margin: 0 0 14px;
  font-size: clamp(28px, 2.7vw, 46px);
  line-height: 1;
  letter-spacing: 0;
}

.product-use-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.product-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: clamp(46px, 8vw, 130px);
}

.product-service-layout > div:first-child h2 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}

.product-service-layout > div:first-child p {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.product-planning-card {
  padding: clamp(30px, 4vw, 48px);
  color: var(--ink);
  border-radius: 6px;
  background: var(--white);
}

.product-planning-card > strong {
  display: block;
  margin: 26px 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.product-planning-card ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.product-planning-card li {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.product-planning-card li img {
  width: 20px;
  height: 20px;
}

.product-planning-card > small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

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

.related-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 460px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f4f7f8;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-product-card:hover {
  border-color: rgba(0, 124, 159, 0.5);
  transform: translateY(-4px);
}

.related-product-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.related-product-card > img {
  width: 100%;
  height: 250px;
  margin: 16px 0;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(6, 18, 29, 0.14));
}

.related-product-card > strong {
  margin-top: auto;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}

.related-product-card > small {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.related-product-card > small b {
  color: var(--blue);
}

@media (max-width: 1080px) {
  .product-detail-hero .shell,
  .product-service-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-hero .shell {
    padding-block: 70px;
  }

  .product-detail-visual {
    min-height: 430px;
  }

  .product-detail-visual img {
    height: 430px;
  }

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

@media (max-width: 760px) {
  .product-detail-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .product-detail-hero .hero-actions {
    display: grid;
  }

  .product-source-note {
    grid-template-columns: auto 1fr;
  }

  .product-source-note a {
    grid-column: 2;
  }

  .product-use-grid,
  .related-product-grid {
    grid-template-columns: 1fr;
  }

  .product-use-grid article {
    min-height: 0;
  }

  .product-use-grid article > img {
    margin-bottom: 50px;
  }

  .related-product-card {
    min-height: 410px;
  }
}

@media (max-width: 520px) {
  .product-detail-hero .shell {
    padding-block: 58px;
  }

  .product-detail-visual,
  .product-detail-visual img {
    min-height: 0;
    height: 310px;
  }

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

  .product-fact-grid > div {
    padding: 24px 22px;
  }

  .product-service-layout {
    gap: 36px;
  }
}

/* v10 — permanent readability, aligned product actions and Network as a Service */
[data-reveal],
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.ecosystem-card {
  isolation: isolate;
}

.ecosystem-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(231, 236, 238, 0.14) 56%, rgba(231, 236, 238, 0.98) 77%);
  pointer-events: none;
}

.ecosystem-card--ice::after {
  background: linear-gradient(180deg, transparent 45%, rgba(230, 242, 244, 0.14) 56%, rgba(230, 242, 244, 0.98) 77%);
}

.ecosystem-card--dark::after {
  background: linear-gradient(180deg, transparent 43%, rgba(7, 56, 68, 0.18) 54%, rgba(7, 56, 68, 0.98) 76%);
}

.ecosystem-card--blue {
  background: #006782;
}

.ecosystem-card--blue::after {
  background: linear-gradient(180deg, transparent 43%, rgba(0, 75, 95, 0.16) 54%, rgba(0, 75, 95, 0.98) 76%);
}

.ecosystem-card > img {
  z-index: 0;
}

.ecosystem-card--dark p,
.ecosystem-card--blue p {
  color: rgba(255, 255, 255, 0.9);
}

.ecosystem-card .ecosystem-icon,
.card-link {
  top: 30px;
  width: 58px;
  height: 58px;
}

.ecosystem-card .ecosystem-icon {
  right: 102px;
}

.card-link {
  right: 30px;
}

.partner-band {
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.4fr) auto;
  min-height: 122px;
}

.partner-band__mark {
  min-width: 0;
}

.partner-band__mark .partner-band__badge {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border-radius: 4px;
  object-fit: cover;
  filter: none;
}

.cert-main {
  gap: 28px;
}

.cert-main__partner {
  width: 108px;
  height: 108px;
  border-radius: 5px;
  object-fit: cover;
}

.cert-main > div,
.cert-main > div strong {
  display: block;
}

.cert-item {
  justify-content: space-between;
}

.cert-item > img {
  margin: 0;
}

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

.naas-card {
  display: flex;
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafb;
  flex-direction: column;
}

.naas-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  margin-bottom: 48px;
  color: var(--blue);
  border: 1px solid rgba(0, 103, 130, 0.24);
  border-radius: 3px;
  background: rgba(0, 124, 159, 0.08);
  place-items: center;
}

.naas-card__icon img {
  width: 25px;
  height: 25px;
}

.naas-card h3 {
  min-height: 2.05em;
  margin: 0 0 14px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.02;
  letter-spacing: 0;
}

.naas-card p {
  margin: 0;
  color: #3f505d;
  font-size: 17px;
  line-height: 1.55;
}

.naas-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 24px 26px;
  gap: 28px;
  color: var(--white);
  border-radius: 6px;
  background: #043846;
}

.naas-cta strong,
.naas-cta span {
  display: block;
}

.naas-cta strong {
  font-size: 20px;
}

.naas-cta span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

@media (max-width: 680px) {
  .ecosystem-card .ecosystem-icon,
  .card-link {
    top: 22px;
    width: 50px;
    height: 50px;
  }

  .ecosystem-card .ecosystem-icon {
    right: 82px;
  }

  .card-link {
    right: 22px;
  }

  .partner-band__mark .partner-band__badge {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .naas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .naas-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .naas-card__icon {
    margin-bottom: 34px;
  }

  .naas-card h3 {
    min-height: 0;
  }

  .naas-cta {
    align-items: stretch;
    padding: 22px;
    flex-direction: column;
  }
}

/* v12 — interactive 3D depth for the novoSYS value cards */
.why-grid {
  perspective: 1400px;
}

.why-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f2f7f9 100%);
  box-shadow: 0 12px 28px rgba(4, 56, 70, 0.06);
  transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition:
    transform 160ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.why-card::before {
  position: absolute;
  z-index: 0;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(0, 167, 209, 0.24), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.why-card::after {
  position: absolute;
  z-index: 0;
  right: 12%;
  bottom: -48px;
  left: 12%;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 124, 159, 0.2);
  content: "";
  filter: blur(24px);
  opacity: 0;
  transform: translateZ(-35px);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.why-card > img,
.why-card h3,
.why-card p {
  position: relative;
  z-index: 2;
  transform: translateZ(34px);
  transition: transform 220ms ease;
}

.why-card > img {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  padding: 14px;
  border: 1px solid rgba(0, 124, 159, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 10px 18px rgba(4, 56, 70, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-card.is-tilting {
  border-color: rgba(0, 124, 159, 0.35);
  box-shadow:
    0 28px 52px rgba(4, 56, 70, 0.16),
    0 8px 18px rgba(4, 56, 70, 0.08);
}

.why-card.is-tilting::before,
.why-card.is-tilting::after {
  opacity: 1;
}

.why-card.is-tilting > img {
  transform: translateZ(68px) translateY(-4px) rotate(-2deg);
}

.why-card.is-tilting h3 {
  transform: translateZ(52px);
}

.why-card.is-tilting p {
  transform: translateZ(40px);
}

@media (hover: none), (pointer: coarse) {
  .why-card {
    transform: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-card > img,
  .why-card h3,
  .why-card p {
    transform: none !important;
    transition: none !important;
  }

  .why-card::before,
  .why-card::after {
    display: none;
  }
}

/* v13 — friendlier global colour system and collision-proof solution rail */
:root {
  --ink: #173740;
  --ink-soft: #28515c;
  --paper: #f6fafb;
  --blue: #3f93a8;
  --blue-bright: #58b8ca;
  --cyan: #c6edf2;
  --line: rgba(23, 55, 64, 0.13);
  --line-light: rgba(255, 255, 255, 0.24);
  --muted: #5c747c;
  --brand-petrol: #34798a;
  --color-bg-page: var(--paper);
  --color-bg-inverse: var(--ink-soft);
  --color-bg-brand: var(--blue);
  --color-bg-accent: var(--blue-bright);
  --color-text-brand: var(--brand-petrol);
}

body {
  background:
    radial-gradient(circle at 90% 15%, rgba(88, 184, 202, 0.12), transparent 25rem),
    var(--paper);
}

.topline {
  background: #58aebf;
}

.hero,
.page-hero {
  background: #315e69;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(29, 72, 82, 0.26) 0%, rgba(32, 77, 87, 0.48) 56%, rgba(27, 63, 72, 0.72) 100%),
    linear-gradient(90deg, rgba(31, 76, 87, 0.42), rgba(62, 131, 145, 0.08) 54%, rgba(31, 76, 87, 0.28));
}

.hero-rail {
  color: #173740;
  border-top-color: rgba(38, 103, 117, 0.16);
  background: rgba(244, 250, 251, 0.95);
  box-shadow: 0 -12px 34px rgba(22, 67, 78, 0.08);
  backdrop-filter: blur(16px);
}

.rail-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  min-height: 102px;
  padding: 18px clamp(18px, 2vw, 30px);
  column-gap: 15px;
  border-color: rgba(38, 103, 117, 0.15);
}

.rail-item:last-child {
  border-right-color: rgba(38, 103, 117, 0.15);
}

.rail-item strong {
  grid-column: 2;
  min-width: 0;
  color: #173740;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.15;
  overflow-wrap: normal;
}

.rail-item > span:not(.rail-icon) {
  grid-column: 2;
  color: #607b83;
  font-size: 11px;
  line-height: 1.3;
}

.rail-item .rail-icon {
  position: static;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  color: #246f80;
  border-color: rgba(63, 147, 168, 0.32);
  border-radius: 8px;
  background: #e1f3f6;
  transform: none;
}

.rail-item .rail-icon img {
  width: 20px;
  height: 20px;
  filter: none;
  opacity: 0.78;
}

.section--dark,
.product-showcase--dark,
.platform-stage {
  background: #315e69;
}

.site-footer {
  background: #294f59;
}

.partner-band,
.naas-cta {
  background: #347386;
}

.cta-panel {
  background: #438fa3;
}

.ecosystem-card--dark {
  background: #3b7180;
}

.ecosystem-card--dark::after {
  background: linear-gradient(180deg, transparent 43%, rgba(59, 113, 128, 0.18) 54%, rgba(59, 113, 128, 0.98) 76%);
}

.ecosystem-card--blue {
  background: #4b9cb1;
}

.ecosystem-card--blue::after {
  background: linear-gradient(180deg, transparent 43%, rgba(65, 139, 157, 0.16) 54%, rgba(65, 139, 157, 0.98) 76%);
}

.ecosystem-card,
.process-card,
.feature-card,
.usecase,
.naas-card,
.product-card,
.related-product-card {
  border-color: rgba(38, 103, 117, 0.14);
}

.reference-section {
  background: #edf5f6;
}

.nav-cta:hover,
.button--blue:hover,
.button--lime:hover {
  background: #347f92;
}

@media (max-width: 900px) {
  .hero-rail .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-item {
    border-top: 1px solid rgba(38, 103, 117, 0.15);
  }
}

@media (max-width: 520px) {
  .hero-rail .shell {
    grid-template-columns: 1fr;
  }

  .rail-item {
    min-height: 82px;
    padding: 15px 18px;
  }
}

/* v14 — clean WiFi film presentation and correctly scoped media icons */
.technical-panel {
  background: #3b7180;
}

.technical-panel__icon {
  width: 50px;
  height: 50px;
  border-color: rgba(198, 237, 242, 0.5);
  border-radius: 8px;
  background: rgba(225, 243, 246, 0.14);
}

.technical-panel__icon img {
  width: 21px;
  height: 21px;
}

.media-panel--wifi-video {
  border: 1px solid rgba(38, 103, 117, 0.16);
  background: #edf5f6;
}

.media-panel--wifi-video video {
  object-fit: contain;
  background: linear-gradient(145deg, #f8fbfc 0%, #e6f1f3 100%);
}

.media-panel--wifi-video .video-credit {
  right: auto;
  bottom: 18px;
  left: 18px;
  color: #173740;
  border-color: rgba(38, 103, 117, 0.18);
  background: rgba(248, 252, 253, 0.9);
  box-shadow: 0 8px 24px rgba(23, 55, 64, 0.08);
  letter-spacing: 0;
}

.media-panel .video-credit img {
  width: 15px;
  height: 15px;
  min-height: 0;
  padding: 0;
}

/* v15 — shared 3D interaction for cards and structured lists on every page */
.depth-card:not(.why-card) {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  --depth-lift: 0px;
  position: relative;
  isolation: isolate;
  transform: perspective(1050px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--depth-lift), 0);
  transform-style: preserve-3d;
  transition:
    transform 170ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.depth-card:not(.why-card)::before {
  position: absolute;
  z-index: 8;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(198, 237, 242, 0.36), transparent 30%),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.depth-card:not(.why-card).is-tilting {
  --depth-lift: -8px;
  border-color: rgba(63, 147, 168, 0.36);
  box-shadow:
    0 30px 58px rgba(23, 55, 64, 0.16),
    0 10px 22px rgba(23, 55, 64, 0.08);
}

.depth-card:not(.why-card).is-tilting::before {
  opacity: 0.9;
}

.depth-card .feature-icon,
.depth-card .process-icon,
.depth-card .usecase-icon,
.depth-card .naas-card__icon,
.depth-card .step,
.depth-card .product-card__media,
.depth-card.reference-card > img {
  transform: translateZ(28px);
  transition: transform 220ms ease;
}

.depth-card.is-tilting .feature-icon,
.depth-card.is-tilting .process-icon,
.depth-card.is-tilting .usecase-icon,
.depth-card.is-tilting .naas-card__icon,
.depth-card.is-tilting .step,
.depth-card.is-tilting .product-card__media,
.depth-card.is-tilting.reference-card > img {
  transform: translateZ(52px) translateY(-3px);
}

@media (hover: none), (pointer: coarse) {
  .depth-card:not(.why-card) {
    transform: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-card:not(.why-card),
  .depth-card .feature-icon,
  .depth-card .process-icon,
  .depth-card .usecase-icon,
  .depth-card .naas-card__icon,
  .depth-card .step,
  .depth-card .product-card__media,
  .depth-card.reference-card > img {
    transform: none !important;
    transition: none !important;
  }

  .depth-card:not(.why-card)::before {
    display: none;
  }
}

/* v17 — official novoSYS palette and persistent navigation */
:root {
  --ink: #003b50;
  --ink-soft: #00506c;
  --paper: #f4f8fa;
  --blue: #00506c;
  --blue-bright: #00abe6;
  --cyan: #9ce4f7;
  --lime: #00abe6;
  --muted: #626b70;
  --brand-petrol: #00506c;
  --brand-cyan: #00abe6;
  --brand-grey: #77787b;
  --line: rgba(0, 80, 108, 0.15);
  --line-light: rgba(255, 255, 255, 0.24);
  --color-bg-inverse: var(--brand-petrol);
  --color-bg-brand: var(--brand-petrol);
  --color-bg-accent: var(--brand-cyan);
  --color-text-brand: var(--brand-petrol);
}

html {
  scroll-padding-top: 104px;
}

body {
  background:
    radial-gradient(circle at 90% 15%, rgba(0, 171, 230, 0.12), transparent 25rem),
    var(--paper);
}

.topline {
  background: var(--brand-cyan);
}

.topline,
.topline a {
  color: var(--ink);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom-color: rgba(0, 80, 108, 0.15);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(0, 80, 108, 0.04);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 38px rgba(0, 59, 80, 0.13);
}

.nav-wrap,
.brand img,
.main-nav a,
.main-nav a::after {
  transition:
    min-height 180ms ease,
    width 180ms ease,
    padding 180ms ease,
    bottom 180ms ease;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 76px;
}

.site-header.is-scrolled .brand img {
  width: 188px;
}

.site-header.is-scrolled .main-nav a {
  padding-block: 22px;
}

.site-header.is-scrolled .main-nav a::after {
  bottom: 14px;
}

.main-nav {
  color: var(--brand-petrol);
}

.main-nav a::after {
  background: var(--brand-cyan);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #003b50;
}

.nav-cta,
.button--blue,
.button--lime {
  color: var(--white);
  background: var(--brand-petrol);
}

.nav-cta:hover,
.button--blue:hover,
.button--lime:hover {
  color: var(--ink);
  background: var(--brand-cyan);
}

.hero,
.page-hero,
.section--dark,
.product-showcase--dark,
.platform-stage,
.partner-band,
.naas-cta {
  background-color: var(--brand-petrol);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 80, 108, 0.24) 0%, rgba(0, 63, 84, 0.5) 56%, rgba(0, 45, 61, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 61, 82, 0.5), rgba(0, 171, 230, 0.08) 54%, rgba(0, 61, 82, 0.34));
}

.site-footer {
  background: #003b50;
}

.cta-panel,
.technical-panel,
.ecosystem-card--dark {
  background: #006889;
}

.ecosystem-card--blue {
  background: #007fa8;
}

.reference-section {
  background: #eef7fa;
}

.rail-item .rail-icon,
.feature-icon,
.process-icon,
.usecase-icon,
.naas-card__icon {
  color: var(--brand-petrol);
  border-color: rgba(0, 171, 230, 0.32);
  background: rgba(0, 171, 230, 0.11);
}

@media (min-width: 981px) {
  .hero-rail {
    position: sticky;
    z-index: 900;
    top: 76px;
    box-shadow:
      0 -1px 0 rgba(0, 80, 108, 0.1),
      0 18px 36px rgba(0, 59, 80, 0.1);
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: 76px;
  }

  .site-header.is-scrolled .brand img {
    width: 164px;
  }

  .mobile-menu {
    top: var(--menu-top, 76px);
    overflow-y: auto;
    color: var(--white);
    background:
      linear-gradient(145deg, rgba(0, 171, 230, 0.12), transparent 42%),
      var(--brand-petrol);
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--cyan);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav-wrap,
  .brand img,
  .main-nav a,
  .main-nav a::after {
    transition: none;
  }
}


/* v20 — sticky, page-specific anchor navigation */
html {
  scroll-padding-top: 166px;
}

.solution-subnav {
  position: sticky;
  z-index: 950;
  top: 76px;
  border-bottom: 1px solid rgba(0, 80, 108, 0.15);
  background: rgba(247, 251, 252, 0.96);
  box-shadow: 0 12px 30px rgba(0, 59, 80, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
}

.solution-subnav__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.solution-subnav a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 76px;
  padding: 13px clamp(14px, 1.5vw, 24px);
  border-left: 1px solid rgba(0, 80, 108, 0.11);
  flex-direction: column;
  justify-content: center;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.solution-subnav a:last-child {
  border-right: 1px solid rgba(0, 80, 108, 0.11);
}

.solution-subnav a::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 3px;
  content: "";
  background: var(--brand-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.solution-subnav strong {
  color: var(--brand-petrol);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.2;
}

.solution-subnav small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
}

.solution-subnav a:hover,
.solution-subnav a[aria-current="location"] {
  background: rgba(0, 171, 230, 0.08);
}

.solution-subnav a:hover::after,
.solution-subnav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.solution-subnav a[aria-current="location"] strong {
  color: var(--brand-cyan);
}

.comparison-product {
  display: grid;
  min-width: 124px;
  gap: 10px;
  align-items: end;
  color: var(--brand-petrol);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.comparison-product img {
  display: block;
  width: clamp(92px, 9vw, 138px);
  height: 104px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0, 59, 80, 0.14));
  transition: transform 220ms ease;
}

.comparison th:hover .comparison-product img {
  transform: translateY(-4px) scale(1.04);
}

@media (min-width: 981px) {
  .hero-rail {
    position: relative;
    z-index: auto;
    top: auto;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 166px;
  }

  .solution-subnav__track {
    display: flex;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .solution-subnav a {
    min-width: 194px;
    min-height: 72px;
    padding-inline: 18px;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-subnav a,
  .solution-subnav a::after,
  .comparison-product img {
    transition: none;
  }
}

/* v23 — prominent, reusable Ubiquiti Enterprise Partner lockup */
.partner-lockup {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 9px 22px 9px 9px;
  gap: 17px;
  color: var(--brand-petrol);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 60px rgba(0, 31, 43, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: left;
  vertical-align: middle;
  backdrop-filter: blur(16px);
}

.partner-lockup::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, #00abe6, #63d2e5);
}

.partner-lockup__logo {
  display: block;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 91, 211, 0.2);
}

.partner-lockup__copy,
.partner-lockup__copy strong,
.partner-lockup__copy small {
  display: block;
}

.partner-lockup__copy {
  min-width: 0;
}

.partner-lockup__copy strong {
  color: var(--brand-petrol);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.15;
  letter-spacing: 0;
}

.partner-lockup__copy small {
  margin-top: 6px;
  color: #49656e;
  font-size: 13px;
  line-height: 1.35;
}

.partner-lockup--hero {
  margin-top: 30px;
}

.partner-lockup--compact {
  padding: 7px 19px 7px 7px;
  gap: 14px;
}

.partner-lockup--compact .partner-lockup__logo {
  width: 68px;
  height: 68px;
  flex-basis: 68px;
}

.partner-lockup--compact .partner-lockup__copy strong {
  font-size: 17px;
}

.partner-lockup--compact .partner-lockup__copy small {
  margin-top: 4px;
  font-size: 12px;
}

.partner-lockup + .hero-actions {
  margin-top: 28px;
}

.page-hero:not(.product-detail-hero) .partner-lockup {
  margin-inline: auto;
}

@media (max-width: 600px) {
  .partner-lockup,
  .partner-lockup--compact {
    width: 100%;
    padding-right: 18px;
    gap: 13px;
  }

  .partner-lockup__logo,
  .partner-lockup--compact .partner-lockup__logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .partner-lockup__copy strong,
  .partner-lockup--compact .partner-lockup__copy strong {
    font-size: 16px;
  }
}

/* v25 — multilingual top navigation */
.topline__actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.topline__actions {
  gap: clamp(12px, 2vw, 28px);
}

.language-switcher {
  overflow: hidden;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(0, 80, 108, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.topline .language-switcher a {
  display: grid;
  min-width: 32px;
  height: 24px;
  padding-inline: 7px;
  color: var(--brand-petrol);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  place-items: center;
}

.topline .language-switcher a:hover,
.topline .language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--brand-petrol);
}

/* High-contrast contact strip */
.topline {
  color: var(--white);
  background: var(--brand-petrol);
}

.topline a,
.topline .language-switcher a {
  color: var(--white);
}

.language-switcher {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.topline .language-switcher a:hover,
.topline .language-switcher a[aria-current="page"] {
  color: var(--ink);
  background: var(--brand-cyan);
}

.topline__email,
.topline__phone {
  font-weight: 700;
  white-space: nowrap;
}

.button--call {
  gap: 12px;
  color: var(--ink);
  border-color: var(--brand-cyan);
  background: var(--brand-cyan);
  box-shadow: 0 14px 30px rgba(0, 80, 108, 0.18);
}

.button--call:hover {
  color: var(--white);
  border-color: var(--brand-petrol);
  background: var(--brand-petrol);
  transform: translateY(-2px);
}

.call-button__icon {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 720px) {
  .topline p {
    display: none;
  }

  .topline .shell {
    justify-content: flex-end;
  }

  .topline__actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 16px;
    row-gap: 6px;
    padding-block: 7px;
  }

  .topline .language-switcher a {
    min-width: 38px;
    height: 34px;
    letter-spacing: 0;
  }

  .topline__phone {
    font-size: 12px;
    letter-spacing: 0;
  }
}

/* v31: shared contrast and readable type across all three languages. */
.showcase-copy,
.product-service-layout > * {
  min-width: 0;
}

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

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

.product-fact-grid strong {
  font-size: 26px;
  line-height: 1.2;
}

.product-planning-card > strong {
  font-size: 32px;
  line-height: 1.2;
}

.product-showcase--dark .showcase-copy > p {
  color: #e0edf2;
}

.ecosystem-card--blue::after,
.ecosystem-card--dark::after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 80, 108, 0.25) 48%, #00506c 65%);
}

.depth-card:not(.why-card)::before,
.why-card::before {
  display: none;
}

.platform-stage {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: 510px;
}

.platform-copy {
  min-width: 0;
  padding: 48px;
  justify-content: center;
  align-items: flex-start;
}

.platform-copy h2 {
  font-size: 48px;
  line-height: 1.12;
}

.platform-copy p {
  color: #e0edf2;
  line-height: 1.6;
}

.platform-visual {
  min-width: 0;
  min-height: 400px;
}

.platform-visual .pulse {
  display: none;
}

.solution-subnav a[aria-current] strong,
.solution-subnav a.is-active strong,
.product-index__number {
  color: var(--ink-soft);
}

.rail-item > span:not(.rail-icon) {
  color: #49616b;
}

.cta-info > p,
.technical-panel__header span {
  color: #e0edf2;
}

.footer-brand p,
.footer-bottom,
.product-showcase--dark .showcase-specs span {
  color: #c5d9e2;
}

.breadcrumb {
  color: #e0edf2;
}

.hero-shade {
  background: rgba(0, 39, 53, 0.72);
}

.hero-lead,
.page-lead,
.ecosystem-card--blue p,
.ecosystem-card--dark p {
  color: #fff;
}

.hero h1,
.page-hero h1,
.product-detail-hero h1 {
  font-size: 72px;
  line-height: 1.08;
}

.section-intro h2,
.statement h2,
.cta-panel h2,
.product-index h2,
.showcase-copy h2,
.product-service-layout > div:first-child h2 {
  font-size: 52px;
  line-height: 1.12;
}

.ecosystem-card h3 {
  font-size: 44px;
  line-height: 1.12;
}

.usecase h3,
.process-card h3,
.product-use-grid h3,
.product-card h3 {
  font-size: 28px;
  line-height: 1.2;
}

.video-teaser strong,
.cert-main strong {
  font-size: 36px;
  line-height: 1.18;
}

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

  .product-use-grid h3 {
    font-size: 26px;
  }

  .hero h1,
  .page-hero h1,
  .product-detail-hero h1 {
    font-size: 56px;
  }

  .platform-copy {
    padding: 32px;
  }

  .platform-copy h2,
  .section-intro h2,
  .statement h2,
  .cta-panel h2,
  .product-index h2,
  .showcase-copy h2,
  .product-service-layout > div:first-child h2 {
    font-size: 40px;
  }
}

@media (max-width: 980px) {
  .platform-stage {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .platform-copy {
    padding-bottom: 0;
  }

  .platform-visual {
    min-height: 310px;
  }
}

@media (max-width: 600px) {
  .showcase-visual {
    min-height: 0;
    aspect-ratio: 1;
  }

  .showcase-visual img {
    width: 90%;
    height: 90%;
    max-height: none;
  }

  .technical-panel__header {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .technical-panel__header strong {
    font-size: 26px;
    line-height: 1.2;
  }

  .product-planning-card > strong {
    font-size: 28px;
  }

  .showcase-specs > div {
    padding: 16px 12px;
  }

  .showcase-specs strong {
    font-size: 20px;
  }

  .hero h1,
  .page-hero h1,
  .product-detail-hero h1 {
    font-size: 36px;
  }

  .platform-copy {
    padding: 28px 24px 0;
  }

  .platform-copy h2,
  .section-intro h2,
  .statement h2,
  .cta-panel h2,
  .product-index h2,
  .showcase-copy h2,
  .product-service-layout > div:first-child h2,
  .ecosystem-card h3,
  .video-teaser strong,
  .cert-main strong {
    font-size: 32px;
  }

  .platform-copy p {
    font-size: 18px;
  }

  .platform-visual {
    min-height: 250px;
  }
}

@media (max-width: 720px) {
  .product-use-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 681px) and (max-width: 1120px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .showcase-specs {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1,
  .page-hero h1,
  .product-detail-hero h1,
  .cta-panel h2,
  .cert-main strong {
    font-size: 30px;
  }

  .usecase {
    padding-inline: 26px;
  }

  .product-use-grid h3 {
    font-size: 24px;
  }
}
