:root {
  --ink: #08131f;
  --ink-soft: #25384d;
  --muted: #65758b;
  --line: #dce5ee;
  --paper: #f7fafc;
  --white: #ffffff;
  --navy: #0c2e4f;
  --cyan: #12b7d8;
  --teal: #17a39a;
  --coral: #e56f55;
  --bronze: #b9864b;
  --shadow: 0 24px 70px rgba(10, 35, 60, 0.14);
  --soft-shadow: 0 14px 38px rgba(10, 35, 60, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--teal);
}

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

.social-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(247, 250, 252, 0.98) 760px),
    var(--paper);
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 8px 8px 8px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(7, 24, 39, 0.38);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(4, 18, 32, 0.16);
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.topbar.is-scrolled {
  color: var(--ink);
  border-color: rgba(11, 48, 77, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(15, 45, 68, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #0b365d, #12b7d8 62%, #f3f8fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 0.72rem;
  line-height: 1.1;
  opacity: 0.74;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: currentColor;
  font-size: 0.88rem;
}

.nav-links a {
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta,
.primary-btn,
.ghost-btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
}

.topbar:not(.is-scrolled) .nav-cta {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.nav-cta svg,
.primary-btn svg,
.ghost-btn svg,
.contact-form button svg,
.cred-item svg,
.image-caption svg,
.process-list svg,
.segment svg,
.solution-tab svg,
.trust-card svg,
.form-assurance svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.85;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  gap: 48px;
  align-items: center;
  min-height: 84svh;
  padding: 126px 7vw 70px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(18, 183, 216, 0.34), transparent 24%),
    radial-gradient(circle at 55% 86%, rgba(23, 163, 154, 0.2), transparent 26%),
    linear-gradient(135deg, #06121f 0%, #0a2740 48%, #102f45 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 28, 0.7), rgba(5, 27, 48, 0.38) 48%, rgba(3, 20, 36, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(6, 16, 26, 0.24));
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

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

.hero-product-stage::before {
  content: "";
  position: absolute;
  inset: 18% 6% 7%;
  border: 1px solid rgba(156, 231, 242, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 58%);
  filter: blur(0.2px);
}

.hero-product-stage::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 7%;
  left: 8%;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 70%);
}

.hero-product-orbit {
  position: absolute;
  width: min(88%, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 183, 216, 0.32);
  border-radius: 50%;
  transform: rotate(-14deg);
  animation: orbitDrift 8s ease-in-out infinite;
}

.hero-product-orbit::before,
.hero-product-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-product-orbit::before {
  inset: 13%;
}

.hero-product-orbit::after {
  inset: 27%;
}

.hero-product {
  position: absolute;
  z-index: 3;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.38));
}

.hero-product-main {
  width: min(56%, 360px);
  height: 470px;
  animation: productFloat 5.2s ease-in-out infinite;
}

.hero-product-side {
  z-index: 2;
  width: min(33%, 220px);
  height: 360px;
  opacity: 0.84;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.28));
}

.hero-product-left {
  left: 0;
  bottom: 14%;
  transform: translateX(2%) scale(0.94);
}

.hero-product-right {
  right: 0;
  top: 16%;
  transform: translateX(-2%) scale(0.9);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.4;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  color: #d8fbff;
  border: 1px solid rgba(132, 227, 241, 0.34);
  border-radius: var(--radius);
  background: rgba(18, 183, 216, 0.12);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.65rem;
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.72;
}

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

.primary-btn {
  min-width: 192px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.ghost-btn {
  min-width: 168px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.ghost-btn:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
}

.hero-dashboard {
  position: absolute;
  right: 7vw;
  bottom: 40px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(520px, calc(100% - 14vw));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 23, 36, 0.58);
  backdrop-filter: blur(18px);
}

.hero-dashboard div {
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-dashboard div:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 760;
}

.hero-dashboard small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -28px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 4;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 20px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.cred-item svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.cred-item span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.35;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 16px;
  scroll-margin-top: 82px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 680;
  border: 1px solid #cfdbe6;
  border-radius: var(--radius);
  background: #eef6f9;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 42px;
}

.section-head h2,
.split-section h2,
.engineering h2,
.contact-section h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 740;
  letter-spacing: 0;
}

.section-head p,
.solution-panel > p,
.engineering-copy > p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.system-card {
  min-width: 0;
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.system-card:hover {
  box-shadow: none;
}

.system-card[role="link"] {
  cursor: pointer;
}

.system-card[role="link"]:focus-visible,
.product-tile:focus-visible,
.related-card:focus-visible {
  outline: 3px solid rgba(18, 183, 216, 0.34);
  outline-offset: 3px;
}

.system-card-inner {
  position: relative;
  width: 100%;
  min-height: 430px;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.system-card:hover .system-card-inner,
.system-card:focus-visible .system-card-inner {
  transform: rotateY(180deg);
}

.system-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 24%, rgba(18, 183, 216, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(5, 20, 33, 0.94), rgba(10, 42, 61, 0.88));
  box-shadow: 0 22px 44px rgba(8, 28, 47, 0.18);
  backface-visibility: hidden;
}

.system-card-back {
  align-content: center;
  gap: 12px;
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 183, 216, 0.28), transparent 32%),
    linear-gradient(145deg, #071827, #0c2e4f 62%, #123f54);
  transform: rotateY(180deg);
}

.system-card-back small {
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  color: #d8fbff;
  border: 1px solid rgba(216, 251, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.system-card-back h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.16;
}

.system-card-back p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.system-card-back span {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  margin-top: 6px;
  padding: 0 12px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 760;
}

.product-stage {
  position: relative;
  display: grid;
  height: 260px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(18, 183, 216, 0.24), transparent 44%),
    repeating-linear-gradient(90deg, rgba(18, 183, 216, 0.12) 0 1px, transparent 1px 42px),
    linear-gradient(145deg, rgba(2, 12, 21, 0.36), rgba(255, 255, 255, 0.03));
}

.product-stage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.product-card-img {
  position: relative;
  z-index: 2;
  width: min(78%, 220px);
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.28));
  transform: translateZ(28px);
  animation: transparentFloat 5.2s ease-in-out infinite;
}

.product-stage.bronze {
  background:
    radial-gradient(circle at 50% 45%, rgba(185, 134, 75, 0.26), transparent 44%),
    repeating-linear-gradient(90deg, rgba(185, 134, 75, 0.13) 0 1px, transparent 1px 42px),
    linear-gradient(145deg, rgba(2, 12, 21, 0.36), rgba(255, 255, 255, 0.03));
}

.product-stage.aqua {
  background:
    radial-gradient(circle at 50% 45%, rgba(23, 163, 154, 0.26), transparent 44%),
    repeating-linear-gradient(90deg, rgba(23, 163, 154, 0.13) 0 1px, transparent 1px 42px),
    linear-gradient(145deg, rgba(2, 12, 21, 0.36), rgba(255, 255, 255, 0.03));
}

.product-stage.coral {
  background:
    radial-gradient(circle at 50% 45%, rgba(229, 111, 85, 0.26), transparent 44%),
    repeating-linear-gradient(90deg, rgba(229, 111, 85, 0.13) 0 1px, transparent 1px 42px),
    linear-gradient(145deg, rgba(2, 12, 21, 0.36), rgba(255, 255, 255, 0.03));
}

.stage-lines {
  position: absolute;
  inset: 34px 28px;
  border: 1px solid rgba(151, 232, 243, 0.14);
  border-radius: var(--radius);
  transform: skewX(-12deg);
  animation: scanLine 3.8s ease-in-out infinite;
}

.system-meta {
  padding: 22px;
  background: rgba(2, 12, 21, 0.38);
  backdrop-filter: blur(10px);
}

.system-meta p {
  margin-bottom: 8px;
  color: rgba(151, 232, 243, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.system-meta h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.2;
}

.system-meta span {
  display: block;
  color: rgba(226, 239, 244, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-lineup {
  padding-top: 46px;
}

.lineup-console {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-bottom: 18px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 26% 40%, rgba(18, 183, 216, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(5, 20, 33, 0.96), rgba(10, 42, 61, 0.9));
  box-shadow: 0 28px 58px rgba(8, 28, 47, 0.2);
}

.lineup-feature {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(18, 183, 216, 0.26), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(2, 12, 21, 0.2));
}

.lineup-feature::before,
.lineup-feature::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(18, 183, 216, 0.2);
  border-radius: 50%;
}

.lineup-feature::before {
  width: 310px;
  height: 310px;
}

.lineup-feature::after {
  width: 460px;
  height: 460px;
  opacity: 0.45;
}

.lineup-feature img {
  position: relative;
  z-index: 2;
  width: min(82%, 430px);
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(0, 0, 0, 0.3));
  animation: transparentFloat 5.8s ease-in-out infinite;
  transition:
    opacity 180ms ease,
    transform 260ms ease;
}

.lineup-feature img.is-swapping {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}

.lineup-detail {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 28px 18px 28px 8px;
}

.lineup-detail small {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 4px 10px;
  color: rgba(216, 251, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 760;
  border: 1px solid rgba(216, 251, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lineup-detail h3 {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1.1;
}

.lineup-detail p {
  max-width: 650px;
  margin-bottom: 22px;
  color: rgba(226, 239, 244, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.lineup-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.lineup-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  color: rgba(226, 239, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.lineup-stats strong {
  margin-right: 5px;
  color: #97e8f3;
}

.lineup-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lineup-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  margin-bottom: 18px;
  padding: 0 16px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--navy), #126a8d 58%, var(--teal));
  box-shadow: 0 14px 28px rgba(12, 46, 79, 0.14);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.lineup-detail-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(12, 46, 79, 0.18);
}

.lineup-detail-btn svg {
  width: 18px;
  height: 18px;
}

.lineup-filter {
  min-height: 36px;
  padding: 0 11px;
  color: rgba(226, 239, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.lineup-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(151, 232, 243, 0.38);
}

.lineup-filter.active {
  color: var(--white);
  border-color: rgba(151, 232, 243, 0.52);
  background: rgba(18, 183, 216, 0.2);
}

.product-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.product-tile {
  display: block;
  min-width: 0;
  min-height: 258px;
  padding: 0;
  text-align: left;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  perspective: 1000px;
  cursor: pointer;
  transition:
    transform 160ms ease;
}

.product-tile:hover,
.product-tile.active {
  transform: translateY(-2px);
}

.product-tile-inner {
  position: relative;
  width: 100%;
  min-height: 258px;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-tile:hover .product-tile-inner,
.product-tile:focus-visible .product-tile-inner {
  transform: rotateY(180deg);
}

.product-tile-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 26%, rgba(18, 183, 216, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(5, 20, 33, 0.92), rgba(10, 42, 61, 0.86));
  box-shadow: 0 18px 36px rgba(8, 28, 47, 0.18);
  backface-visibility: hidden;
}

.product-tile-back {
  align-content: center;
  gap: 9px;
  padding: 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(18, 183, 216, 0.27), transparent 38%),
    linear-gradient(145deg, #071827, #0c2e4f 62%, #123f54);
  transform: rotateY(180deg);
}

.product-tile-img {
  display: grid;
  height: 132px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(18, 183, 216, 0.2), transparent 48%);
}

.product-tile img {
  width: 92%;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(12, 46, 79, 0.18));
  animation: transparentFloat 5.6s ease-in-out infinite;
}

.product-tile-copy {
  display: grid;
  align-content: start;
  min-width: 0;
}

.product-tile small {
  margin-bottom: 6px;
  color: rgba(151, 232, 243, 0.9);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}

.product-tile strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.22;
}

.product-tile span {
  display: block;
  margin-top: 7px;
  color: rgba(226, 239, 244, 0.76);
  font-size: 0.76rem;
  line-height: 1.35;
}

.product-tile-back small,
.product-tile-back strong,
.product-tile-back p,
.product-tile-back span {
  margin: 0;
}

.product-tile-back small {
  color: #d8fbff;
}

.product-tile-back strong {
  color: var(--white);
  font-size: 1rem;
}

.product-tile-back p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.46;
}

.product-tile-back span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-top: 4px;
  padding: 0 9px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 760;
}

.compare-section {
  padding-top: 34px;
}

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

.compare-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.compare-card:hover {
  border-color: rgba(18, 183, 216, 0.28);
  box-shadow: 0 24px 54px rgba(10, 35, 60, 0.14);
}

.compare-card.featured {
  background:
    linear-gradient(180deg, rgba(245, 252, 254, 0.96), #ffffff);
}

.compare-card-media {
  display: grid;
  height: 190px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(11, 48, 77, 0.08);
  background:
    radial-gradient(circle at 50% 45%, rgba(18, 183, 216, 0.18), transparent 42%),
    linear-gradient(180deg, #ffffff, #eef8fb);
}

.compare-card-media img {
  width: 88%;
  height: 162px;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(12, 46, 79, 0.16));
  animation: transparentFloat 5.8s ease-in-out infinite;
}

.compare-card-copy {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.compare-card-copy small {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 820;
  line-height: 1.3;
}

.compare-card-copy h3 {
  min-height: 48px;
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.16;
}

.compare-card-copy dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.compare-card-copy div {
  display: grid;
  gap: 4px;
}

.compare-card-copy dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 780;
}

.compare-card-copy dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.global-audience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  margin: 0;
  padding: 104px max(16px, calc((100vw - 1180px) / 2 + 16px));
  scroll-margin-top: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(18, 183, 216, 0.24), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(229, 111, 85, 0.18), transparent 24%),
    linear-gradient(135deg, #06121f 0%, #0b2a43 50%, #071827 100%);
}

.global-audience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
  opacity: 0.4;
}

.global-audience .section-kicker {
  color: #d8fbff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.audience-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.audience-atmosphere span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(151, 232, 243, 0.58), transparent);
  animation: audienceLine 8s linear infinite;
  opacity: 0.72;
}

.audience-atmosphere span:nth-child(1) {
  top: 24%;
  left: -16%;
  width: 56%;
}

.audience-atmosphere span:nth-child(2) {
  top: 48%;
  right: -20%;
  width: 64%;
  animation-delay: -2.4s;
}

.audience-atmosphere span:nth-child(3) {
  bottom: 18%;
  left: 18%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(229, 111, 85, 0.48), transparent);
  animation-delay: -5s;
}

.audience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: auto auto;
  gap: 38px;
  align-items: start;
  min-width: 0;
}

.audience-copy {
  grid-column: 1;
  grid-row: 1;
}

.audience-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.6vw, 3.9rem);
  line-height: 1.04;
}

.audience-copy > p {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(226, 239, 244, 0.78);
  font-size: 1.06rem;
  line-height: 1.74;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.audience-pills span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 760;
}

.audience-pills span:nth-child(2) {
  border-color: rgba(229, 111, 85, 0.28);
  background: rgba(229, 111, 85, 0.12);
}

.audience-feature-list {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  gap: 12px;
  max-width: 700px;
}

.audience-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.audience-feature svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #97e8f3;
  stroke-width: 1.85;
}

.audience-feature strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  line-height: 1.24;
}

.audience-feature p {
  margin: 0;
  color: rgba(226, 239, 244, 0.72);
  font-size: 0.91rem;
  line-height: 1.55;
}

.audience-portraits {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-self: center;
  align-items: stretch;
  min-width: 0;
  min-height: 630px;
}

.audience-portraits::before {
  content: "";
  position: absolute;
  inset: 11% 16% 7%;
  border: 1px solid rgba(151, 232, 243, 0.2);
  border-radius: 50%;
  transform: rotate(-14deg);
  animation: orbitDrift 8.5s ease-in-out infinite;
  pointer-events: none;
}

.audience-portrait-card {
  position: relative;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #071827;
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.26);
  transform-style: preserve-3d;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.audience-portrait-card.secondary {
  min-height: 560px;
  margin-top: 52px;
}

.audience-portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 15, 28, 0.04), rgba(3, 15, 28, 0.18) 44%, rgba(3, 15, 28, 0.9)),
    linear-gradient(90deg, rgba(3, 15, 28, 0.4), transparent 42%);
}

.audience-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.2) 44%, transparent 52%);
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 180ms ease,
    transform 580ms ease;
  pointer-events: none;
}

.audience-portrait-card:hover,
.audience-portrait-card:focus-within {
  border-color: rgba(151, 232, 243, 0.36);
  box-shadow: 0 40px 88px rgba(0, 0, 0, 0.3);
}

.audience-portrait-card:hover::after,
.audience-portrait-card:focus-within::after {
  opacity: 0.55;
  transform: translateX(44%);
}

.audience-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.96) contrast(1.03);
  animation: portraitFloat 7.2s ease-in-out infinite;
  transition:
    filter 180ms ease,
    transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.audience-portrait-card.secondary img {
  object-position: 50% 34%;
  animation-delay: -2.4s;
}

.audience-portrait-card:hover img,
.audience-portrait-card:focus-within img {
  filter: saturate(1.02) contrast(1.07);
  transform: scale(1.045) translateY(-10px);
}

.audience-role {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 15, 28, 0.34);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
}

.audience-card-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.audience-card-copy small {
  color: rgba(151, 232, 243, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
}

.audience-card-copy h3 {
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-size: 1.42rem;
  line-height: 1.14;
}

.audience-card-copy p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(226, 239, 244, 0.78);
  font-size: 0.92rem;
  line-height: 1.56;
  opacity: 0;
  transition:
    max-height 360ms ease,
    opacity 220ms ease;
}

.audience-portrait-card:hover .audience-card-copy p,
.audience-portrait-card:focus-within .audience-card-copy p {
  max-height: 190px;
  opacity: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
}

.product-composition {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 32% 30%, rgba(18, 183, 216, 0.18), transparent 30%),
    radial-gradient(circle at 78% 76%, rgba(229, 111, 85, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #eef8fb);
  box-shadow: var(--shadow);
}

.product-composition::before {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(18, 183, 216, 0.18);
  border-radius: 50%;
}

.composition-product {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(18, 183, 216, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
  box-shadow: var(--soft-shadow);
}

.composition-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(12, 46, 79, 0.2));
  animation: transparentFloat 5.6s ease-in-out infinite;
}

.composition-product span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: block;
  padding: 8px 9px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 720;
  text-align: center;
  border: 1px solid rgba(11, 48, 77, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.composition-product.main {
  top: 64px;
  left: 50%;
  width: min(52%, 270px);
  height: 440px;
  transform: translateX(-50%);
}

.composition-product.accent {
  width: min(34%, 172px);
  height: 238px;
}

.composition-product.top {
  top: 28px;
  right: 26px;
}

.composition-product.bottom {
  bottom: 28px;
  left: 26px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.image-panel:hover img {
  transform: scale(1.035);
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  min-height: 44px;
  padding: 0 14px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(8, 19, 31, 0.14);
}

.image-caption svg {
  color: var(--cyan);
}

.solution-panel h2 {
  margin-bottom: 22px;
}

.solution-tabs,
.segment-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.solution-tab,
.segment {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.solution-tab:hover,
.segment:hover {
  transform: translateY(-1px);
  border-color: #b9c9d6;
}

.solution-tab.active,
.segment.active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.solution-output {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(318px, 1.18fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.solution-image-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 22% 18%, rgba(18, 183, 216, 0.14), transparent 34%),
    #eef7fa;
  box-shadow: 0 18px 38px rgba(10, 35, 60, 0.12);
}

.solution-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(3, 15, 28, 0.58)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 34%);
  pointer-events: none;
}

.solution-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 180ms ease,
    transform 520ms ease,
    filter 220ms ease;
}

.solution-image-card:hover img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(1.02);
}

.solution-image-card img.is-swapping {
  opacity: 0;
  transform: scale(1.025);
}

.solution-image-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 15, 28, 0.48);
  backdrop-filter: blur(10px);
  font-size: 0.74rem;
  font-weight: 760;
}

.solution-output small,
.partner-output small {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 750;
}

.solution-output h3,
.partner-output h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
}

.solution-output p,
.partner-output p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pulse-map {
  position: relative;
  width: 136px;
  height: 136px;
  border: 1px solid #cfe0ea;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(18, 183, 216, 0.24) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(18, 183, 216, 0.24) 50%, transparent 51%),
    #f3fbfd;
}

.pulse-map span {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(18, 183, 216, 0.42);
  border-radius: 50%;
  animation: pulseRing 2.6s ease-out infinite;
}

.pulse-map span:nth-child(2) {
  inset: 38px;
  animation-delay: 420ms;
  border-color: rgba(23, 163, 154, 0.5);
}

.pulse-map span:nth-child(3) {
  inset: 54px;
  animation-delay: 860ms;
  border-color: rgba(229, 111, 85, 0.46);
}

.engineering {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background:
    linear-gradient(180deg, #ffffff, #eef6fa);
}

.engineering > .section-kicker {
  margin-left: max(16px, calc((100vw - 1180px) / 2 + 16px));
}

.engineering-layout {
  display: grid;
  grid-template-columns: minmax(16px, 1fr) minmax(0, 535px) minmax(0, 645px) minmax(16px, 1fr);
  gap: 0;
  align-items: center;
}

.engineering-copy {
  grid-column: 2;
  padding-right: 54px;
}

.engineering-copy h2 {
  margin-bottom: 22px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.process-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.process-list svg {
  grid-row: span 2;
  color: var(--teal);
}

.process-list strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.process-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.engineering-media {
  grid-column: 3 / 5;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow);
}

.engineering-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.real-product-lab {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1.1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(11, 48, 77, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 250, 0.96));
}

.real-product-lab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(12, 46, 79, 0.16));
  animation: transparentFloat 5.8s ease-in-out infinite;
}

.lab-hero,
.lab-grid img {
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(18, 183, 216, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 24px rgba(10, 35, 60, 0.08);
}

.lab-hero {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 18px;
}

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

.lab-grid img {
  min-height: 0;
  padding: 14px;
  animation: transparentFloat 5.8s ease-in-out infinite;
}

.trust-section {
  max-width: none;
  padding-right: max(16px, calc((100vw - 1180px) / 2 + 16px));
  padding-left: max(16px, calc((100vw - 1180px) / 2 + 16px));
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(18, 183, 216, 0.22), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(229, 111, 85, 0.14), transparent 25%),
    linear-gradient(135deg, #06121f 0%, #0b2a43 50%, #071827 100%);
}

.trust-section .section-kicker {
  color: #d8fbff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.trust-section .section-head h2 {
  color: var(--white);
}

.trust-section .section-head p {
  color: rgba(226, 239, 244, 0.76);
}

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

.trust-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 16%, rgba(18, 183, 216, 0.15), transparent 36%),
    rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trust-card:hover {
  transform: translateY(-2px);
  border-color: rgba(151, 232, 243, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.trust-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 34px;
  color: #97e8f3;
}

.trust-card strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.22;
}

.trust-card p {
  margin: 0;
  color: rgba(226, 239, 244, 0.72);
  font-size: 0.88rem;
  line-height: 1.56;
}

.trust-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.trust-note svg {
  width: 21px;
  height: 21px;
  margin-top: 1px;
  color: var(--coral);
}

.trust-note p {
  margin: 0;
  color: rgba(226, 239, 244, 0.76);
  font-size: 0.9rem;
  line-height: 1.58;
}

.partners .section-head {
  align-items: start;
}

.partner-console {
  overflow: hidden;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-console .segment-control {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(238, 246, 249, 0.9), rgba(255, 255, 255, 0.94));
}

.partner-output {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 46px;
  padding: 36px;
}

.partner-output ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-output li {
  position: relative;
  min-height: 48px;
  padding: 13px 16px 13px 42px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.partner-output li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.market-section {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.market-marquee {
  display: flex;
  width: 100%;
  color: rgba(8, 19, 31, 0.26);
  border-top: 1px solid rgba(11, 48, 77, 0.1);
  border-bottom: 1px solid rgba(11, 48, 77, 0.1);
  background: #ffffff;
}

.market-marquee div {
  display: flex;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.market-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 116px;
  padding: 0 44px;
  font-size: 3rem;
  font-weight: 740;
  white-space: nowrap;
}

.quote-band {
  max-width: 960px;
  margin: 70px auto 0;
  padding: 0 16px;
  text-align: center;
}

.quote-band p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 1.16;
  font-weight: 720;
}

.quote-band span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 54px;
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 80px 16px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.social-channel-panel {
  margin-top: 34px;
}

.social-channel-head {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.social-channel-head > svg,
.social-channel-head > i {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--teal);
}

.social-channel-head strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}

.social-channel-head span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.social-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-platform-link {
  --social-accent: var(--teal);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 68px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(10, 35, 60, 0.07);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.social-platform-link:hover,
.social-platform-link:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--social-accent) 42%, rgba(11, 48, 77, 0.1));
  background: var(--white);
  box-shadow: 0 18px 34px rgba(10, 35, 60, 0.11);
  outline: 0;
}

.social-platform-link.instagram {
  --social-accent: #d62976;
}

.social-platform-link.x {
  --social-accent: #111827;
}

.social-platform-link.facebook {
  --social-accent: #1877f2;
}

.social-platform-link.whatsapp {
  --social-accent: #20b76f;
}

.social-platform-link.tiktok {
  --social-accent: #00a6b4;
}

.social-platform-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--social-accent);
  border: 1px solid color-mix(in srgb, var(--social-accent) 28%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--social-accent) 9%, #ffffff);
}

.social-platform-icon svg {
  width: 21px;
  height: 21px;
}

.social-platform-link strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.15;
}

.social-platform-link small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-form label:nth-child(7),
.form-assurance {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
  color: var(--ink);
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 13px;
}

.form-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.form-assurance span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink-soft);
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: #f4f9fb;
  font-size: 0.78rem;
  font-weight: 720;
  text-align: center;
}

.form-assurance svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 183, 216, 0.14);
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 52px;
  margin-top: 4px;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--navy), #126a8d 58%, var(--teal));
}

.contact-form button span {
  color: var(--white);
  font-weight: 720;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 16px 48px;
  color: var(--muted);
  border-top: 1px solid rgba(11, 48, 77, 0.1);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer .footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink-soft);
  border: 1px solid rgba(11, 48, 77, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.footer .footer-social a:hover {
  color: var(--teal);
  border-color: rgba(18, 183, 216, 0.34);
  transform: translateY(-1px);
}

.footer .footer-social svg {
  width: 18px;
  height: 18px;
}

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

.footer a {
  color: var(--navy);
  font-weight: 650;
}

.footer .footer-social a {
  color: var(--ink-soft);
}

.footer .footer-social a:hover {
  color: var(--teal);
}

.social-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}

.social-dock-toggle {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, var(--navy), #126a8d 58%, var(--teal));
  box-shadow: 0 18px 44px rgba(8, 19, 31, 0.22);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.social-dock-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(8, 19, 31, 0.26);
}

.social-dock-toggle svg {
  width: 22px;
  height: 22px;
}

.social-dock-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(330px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(11, 48, 77, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(8, 19, 31, 0.2);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.social-dock.is-open .social-dock-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.social-dock-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  padding: 2px 2px 0;
}

.social-dock-head strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.social-dock-head span {
  color: var(--muted);
  font-size: 0.8rem;
}

.social-dock-list {
  display: grid;
  gap: 8px;
}

.social-dock-list .social-platform-link {
  min-height: 58px;
  background: #fbfdfe;
  box-shadow: none;
}

.detail-shell {
  --detail-accent: #12b7d8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(247, 250, 252, 0.98) 840px),
    var(--paper);
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 46px;
  align-items: center;
  min-height: 88svh;
  padding: 128px 7vw 78px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 36%, color-mix(in srgb, var(--detail-accent) 32%, transparent), transparent 25%),
    radial-gradient(circle at 30% 84%, rgba(229, 111, 85, 0.18), transparent 28%),
    linear-gradient(135deg, #06121f 0%, #102a3c 52%, #08131f 100%);
}

.detail-canvas,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-canvas {
  opacity: 0.4;
  mix-blend-mode: screen;
}

.detail-hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 15, 28, 0.82), rgba(5, 27, 48, 0.36) 52%, rgba(3, 20, 36, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(6, 16, 26, 0.3));
}

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

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb strong {
  color: #d8fbff;
  font-weight: 680;
}

.detail-eyebrow,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-eyebrow {
  margin-bottom: 22px;
}

.detail-eyebrow span,
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.detail-eyebrow span:first-child {
  color: #08131f;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.88);
}

.detail-tagline {
  max-width: 780px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  line-height: 1.58;
}

.detail-summary {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.76;
}

.hero-badges {
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-badges span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-stage {
  display: grid;
  min-height: 590px;
  place-items: center;
}

.detail-orbit {
  position: absolute;
  width: min(92%, 590px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 46%, transparent);
  border-radius: 50%;
  animation: orbitDrift 8s ease-in-out infinite;
}

.detail-orbit::before,
.detail-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.detail-orbit::before {
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-orbit::after {
  inset: 29%;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 32%, transparent);
}

.detail-product-card {
  position: relative;
  width: min(86%, 520px);
  min-height: 560px;
  perspective: 1300px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.detail-product-card::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 40px;
  left: 14%;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(8, 19, 31, 0.22), transparent 70%);
  z-index: 0;
}

.detail-card-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-style: preserve-3d;
  transition: transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.detail-product-card:hover .detail-card-inner,
.detail-product-card:focus-within .detail-card-inner {
  transform: rotateY(180deg);
}

.detail-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--detail-accent) 22%, transparent), transparent 44%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 42px 76px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backface-visibility: hidden;
}

.detail-card-back {
  align-content: center;
  justify-items: start;
  place-items: initial;
  gap: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, color-mix(in srgb, var(--detail-accent) 32%, transparent), transparent 32%),
    linear-gradient(145deg, rgba(6, 18, 31, 0.96), rgba(12, 46, 79, 0.96));
  transform: rotateY(180deg);
}

.detail-card-back small {
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  color: #d8fbff;
  border: 1px solid rgba(216, 251, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.detail-card-back h2 {
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-size: 2.15rem;
  line-height: 1.08;
}

.detail-card-back p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

.detail-flip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-flip-badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.detail-product-card img {
  position: relative;
  z-index: 2;
  width: min(100%, 410px);
  height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 40px 30px rgba(0, 0, 0, 0.28));
  animation: transparentFloat 5.4s ease-in-out infinite;
}

.product-switcher {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 18, 30, 0.9);
  backdrop-filter: blur(18px);
}

.switcher-inner {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.switcher-inner label {
  display: grid;
  gap: 6px;
}

.switcher-inner label span {
  color: rgba(214, 234, 240, 0.72);
  font-size: 0.74rem;
  font-weight: 720;
}

.switcher-inner select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.product-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.product-rail a {
  display: grid;
  grid-template-columns: 54px minmax(92px, 1fr);
  gap: 9px;
  align-items: center;
  flex: 0 0 178px;
  min-height: 68px;
  padding: 8px;
  color: rgba(226, 239, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28px 50%, color-mix(in srgb, var(--detail-accent) 18%, transparent), transparent 46%),
    rgba(255, 255, 255, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-rail a:hover,
.product-rail a.active {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--detail-accent) 52%, rgba(255, 255, 255, 0.34));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.product-rail img {
  width: 54px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.22));
}

.product-rail span {
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
}

.detail-overview {
  padding-top: 86px;
}

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

.detail-spec {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 251, 0.94));
  box-shadow: 0 10px 24px rgba(10, 35, 60, 0.06);
}

.detail-spec small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
}

.detail-spec strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.3;
}

.source-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 26%, #dce5ee);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.source-note svg {
  width: 24px;
  height: 24px;
  color: var(--detail-accent);
}

.source-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.principle-technology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 32px;
}

.principle-panel,
.technology-panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.technology-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 250, 0.96));
}

.principle-panel h2,
.technology-panel h2,
.program-console h2,
.brand-philosophy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.principle-panel > p,
.technology-panel > p,
.program-console p,
.philosophy-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(11, 48, 77, 0.09);
  border-radius: var(--radius);
  background: rgba(247, 250, 252, 0.82);
}

.detail-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 760;
  border-radius: var(--radius);
  background: var(--detail-accent);
}

.detail-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.effects-section {
  padding-top: 48px;
}

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

.effect-card {
  min-height: 198px;
  padding: 22px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.effect-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.effect-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--detail-accent);
  stroke-width: 1.8;
}

.effect-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.effect-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.program-section {
  padding-top: 48px;
}

.program-console {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--detail-accent) 15%, transparent), transparent 26%),
    linear-gradient(135deg, #ffffff, #eef8fb);
  box-shadow: var(--shadow);
}

.application-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink-soft);
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.application-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--detail-accent);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: rgba(11, 48, 77, 0.1);
  box-shadow: var(--soft-shadow);
}

.workflow-strip div {
  min-height: 170px;
  padding: 22px;
  background: var(--white);
}

.workflow-strip span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--detail-accent);
  font-weight: 800;
}

.workflow-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.03rem;
}

.workflow-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.brand-philosophy {
  max-width: none;
  margin-top: 36px;
  padding: 86px 16px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 19, 31, 0.98), rgba(11, 48, 77, 0.96)),
    var(--ink);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.brand-philosophy .section-kicker {
  color: #d8fbff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.brand-philosophy h2 {
  color: var(--white);
  font-size: 3rem;
}

.philosophy-copy {
  display: grid;
  gap: 18px;
}

.philosophy-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.philosophy-copy span {
  color: #ffffff;
  font-weight: 740;
}

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

.related-card {
  display: block;
  min-width: 0;
  min-height: 314px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  perspective: 1000px;
  transition:
    transform 160ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
}

.related-card-inner {
  position: relative;
  width: 100%;
  min-height: 314px;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.related-card:hover .related-card-inner,
.related-card:focus-visible .related-card-inner {
  transform: rotateY(180deg);
}

.related-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 24%, color-mix(in srgb, var(--detail-accent) 18%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(5, 20, 33, 0.92), rgba(10, 42, 61, 0.86));
  box-shadow: 0 18px 36px rgba(8, 28, 47, 0.16);
  backface-visibility: hidden;
}

.related-card-back {
  align-content: center;
  gap: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--detail-accent) 28%, transparent), transparent 38%),
    linear-gradient(145deg, #071827, #0c2e4f 62%, #123f54);
  transform: rotateY(180deg);
}

.related-image {
  display: grid;
  height: 190px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--detail-accent) 22%, transparent), transparent 42%),
    transparent;
}

.related-card img {
  width: 92%;
  height: 162px;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.24));
  animation: transparentFloat 5.8s ease-in-out infinite;
}

.related-card small {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--detail-accent) 58%, #d8fbff);
  font-size: 0.76rem;
  font-weight: 760;
}

.related-card strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.related-card span {
  display: block;
  margin-top: 9px;
  color: rgba(226, 239, 244, 0.76);
  font-size: 0.86rem;
  line-height: 1.48;
}

.related-card-back small {
  color: #d8fbff;
}

.related-card-back strong {
  color: var(--white);
}

.related-card-back p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.detail-contact {
  align-items: stretch;
  margin-bottom: 46px;
}

.detail-contact-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(11, 48, 77, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-contact-card > svg {
  width: 36px;
  height: 36px;
  color: var(--detail-accent);
}

.detail-contact-card strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.detail-contact-card p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.66;
}

.detail-contact-card .primary-btn {
  width: fit-content;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--navy), #126a8d 58%, var(--teal));
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 660ms ease,
    transform 660ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-band.reveal,
.contact-section .reveal {
  opacity: 1;
  transform: none;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) translateZ(28px);
  }
  50% {
    transform: translateY(-8px) translateZ(28px);
  }
}

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

@keyframes portraitFloat {
  0%,
  100% {
    transform: scale(1.015) translateY(0);
  }
  50% {
    transform: scale(1.025) translateY(-8px);
  }
}

@keyframes audienceLine {
  0% {
    opacity: 0;
    transform: translateX(-18%) scaleX(0.72);
  }
  16%,
  76% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateX(34%) scaleX(1);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    transform: rotate(-14deg) scale(1);
  }
  50% {
    transform: rotate(-8deg) scale(1.03);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(0) skewX(-12deg);
  }
  50% {
    opacity: 0.68;
    transform: translateY(12px) skewX(-12deg);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.85;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-product-stage {
    min-height: 440px;
  }

  .hero-product-main {
    height: 380px;
  }

  .hero-product-side {
    height: 280px;
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .section-head,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .lineup-console {
    grid-template-columns: 1fr;
  }

  .lineup-detail {
    padding: 6px 6px 12px;
  }

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

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

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

  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-copy,
  .audience-portraits,
  .audience-feature-list {
    grid-column: auto;
    grid-row: auto;
  }

  .audience-copy h2,
  .audience-copy > p,
  .audience-feature-list {
    max-width: 860px;
  }

  .audience-portraits {
    min-height: 560px;
  }

  .audience-portrait-card {
    min-height: 520px;
  }

  .audience-portrait-card.secondary {
    min-height: 500px;
    margin-top: 34px;
  }

  .engineering-layout {
    grid-template-columns: 16px 1fr 16px;
    gap: 34px;
  }

  .engineering-copy,
  .engineering-media {
    grid-column: 2;
  }

  .engineering-copy {
    padding-right: 0;
  }

  .engineering-media {
    min-height: 420px;
    border-radius: var(--radius);
  }

  .engineering-media img {
    height: 420px;
  }

  .real-product-lab img {
    height: 100%;
    object-fit: contain;
  }

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

  .lab-hero {
    min-height: 360px;
  }

  .lab-grid img {
    height: 180px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-stage {
    min-height: 470px;
  }

  .detail-product-card {
    width: min(100%, 560px);
    min-height: 450px;
  }

  .detail-product-card img {
    height: 390px;
  }

  .detail-card-back h2 {
    font-size: 1.8rem;
  }

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

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

  .principle-technology,
  .program-console,
  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .effects-grid,
  .related-grid,
  .workflow-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .nav-cta svg {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 20px 46px;
    align-items: start;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 15, 28, 0.86), rgba(3, 18, 31, 0.42)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(6, 16, 26, 0.36));
  }

  h1 {
    max-width: 520px;
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-product-stage {
    width: 100%;
    min-height: 330px;
  }

  .hero-product-stage::before {
    inset: 12% 3% 6%;
  }

  .hero-product-main {
    width: min(54%, 230px);
    height: 285px;
  }

  .hero-product-side {
    width: min(30%, 120px);
    height: 210px;
  }

  .hero-product-left {
    left: 2%;
    bottom: 12%;
  }

  .hero-product-right {
    right: 2%;
    top: 14%;
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 26px;
  }

  .hero-dashboard div {
    padding: 13px 12px;
  }

  .metric-value {
    font-size: 1.4rem;
  }

  .hero-dashboard small {
    font-size: 0.72rem;
  }

  .cred-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-top: 18px;
  }

  .cred-item {
    min-height: 92px;
    padding: 16px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
    scroll-margin-top: 74px;
  }

  .section-head {
    gap: 20px;
  }

  .section-head h2,
  .split-section h2,
  .engineering h2,
  .contact-section h2 {
    font-size: 2.15rem;
    line-height: 1.1;
  }

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

  .product-stage {
    height: 230px;
  }

  .product-card-img {
    height: 184px;
  }

  .lineup-feature {
    min-height: 320px;
  }

  .lineup-feature img {
    height: 280px;
  }

  .lineup-detail h3 {
    font-size: 1.62rem;
  }

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

  .compare-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    display: grid;
    grid-template-columns: minmax(128px, 0.42fr) minmax(0, 0.58fr);
  }

  .compare-card-media {
    height: auto;
    min-height: 210px;
    border-right: 1px solid rgba(11, 48, 77, 0.08);
    border-bottom: 0;
  }

  .compare-card-media img {
    height: 170px;
  }

  .trust-card {
    min-height: auto;
  }

  .trust-card svg {
    margin-bottom: 22px;
  }

  .global-audience {
    padding-right: 20px;
    padding-left: 20px;
    scroll-margin-top: 0;
  }

  .audience-copy h2 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .audience-copy > p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .audience-feature {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .audience-portraits {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .audience-portraits::before {
    inset: 12% 0 4%;
  }

  .audience-portrait-card,
  .audience-portrait-card.secondary {
    min-height: 510px;
    margin-top: 0;
  }

  .audience-card-copy p {
    max-height: 190px;
    opacity: 1;
  }

  .product-tile {
    min-height: 220px;
  }

  .product-composition {
    min-height: 500px;
  }

  .composition-product.main {
    top: 58px;
    width: min(58%, 230px);
    height: 340px;
  }

  .composition-product.accent {
    width: min(36%, 140px);
    height: 190px;
  }

  .composition-product.top {
    top: 24px;
    right: 18px;
  }

  .composition-product.bottom {
    bottom: 24px;
    left: 18px;
  }

  .image-panel img {
    height: 430px;
  }

  .solution-output,
  .partner-output {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .pulse-map {
    width: 118px;
    height: 118px;
  }

  .market-marquee span {
    min-height: 84px;
    padding: 0 28px;
    font-size: 2rem;
  }

  .quote-band p {
    font-size: 1.7rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .social-platform-grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    display: grid;
    align-items: start;
  }

  .footer .footer-social {
    justify-content: start;
  }

  .social-dock {
    right: 16px;
    bottom: 16px;
  }

  .social-dock-toggle {
    width: 52px;
    height: 52px;
  }

  .detail-hero {
    min-height: auto;
    padding: 104px 20px 52px;
  }

  .detail-tagline {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .detail-summary {
    line-height: 1.62;
  }

  .detail-stage {
    min-height: 370px;
  }

  .detail-product-card {
    min-height: 350px;
    padding: 0;
  }

  .detail-card-face {
    padding: 20px;
  }

  .detail-product-card img {
    height: 300px;
  }

  .product-switcher {
    position: relative;
    top: auto;
  }

  .product-rail a {
    flex-basis: 162px;
  }

  .spec-grid,
  .effects-grid,
  .related-grid,
  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .principle-panel,
  .technology-panel,
  .program-console {
    padding: 22px;
  }

  .principle-panel h2,
  .technology-panel h2,
  .program-console h2,
  .brand-philosophy h2 {
    font-size: 2rem;
  }

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

  .brand-philosophy {
    padding: 68px 20px;
  }

  .philosophy-inner {
    gap: 28px;
  }
}

@media (max-width: 440px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .eyebrow span {
    width: 100%;
  }

  h1 {
    font-size: 2.24rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

  .hero-dashboard div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-dashboard div:last-child {
    border-bottom: 0;
  }

  .cred-strip {
    grid-template-columns: 1fr;
  }

  .hero-product-stage {
    min-height: 292px;
  }

  .hero-product-main {
    height: 248px;
  }

  .hero-product-side {
    height: 178px;
  }

  .product-composition {
    min-height: 450px;
  }

  .composition-product span {
    font-size: 0.68rem;
  }

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

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

  .product-tile {
    min-height: 238px;
  }

  .product-tile-inner {
    min-height: 238px;
  }

  .product-tile img {
    height: 118px;
  }

  .social-dock {
    right: 12px;
    bottom: 12px;
  }

  .social-dock-toggle {
    width: 48px;
    height: 48px;
  }

  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-card-media {
    height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 48, 77, 0.08);
  }

  .audience-pills {
    display: grid;
  }

  .audience-pills span {
    justify-content: center;
  }

  .audience-portrait-card,
  .audience-portrait-card.secondary {
    min-height: 470px;
  }

  .audience-role {
    top: 14px;
    left: 14px;
  }

  .audience-card-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .audience-card-copy h3 {
    font-size: 1.18rem;
  }

  .audience-card-copy p {
    font-size: 0.86rem;
  }

  .solution-tab,
  .segment {
    width: 100%;
  }

  .detail-actions {
    display: grid;
  }

  .detail-actions .primary-btn,
  .detail-actions .ghost-btn {
    width: 100%;
  }

  .detail-stage {
    min-height: 310px;
  }

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

  .detail-card-face {
    padding: 16px;
  }

  .detail-product-card img {
    height: 252px;
  }

  .detail-card-back h2 {
    font-size: 1.42rem;
  }

  .detail-card-back p {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .product-rail {
    display: none;
  }

  .detail-list li {
    grid-template-columns: 1fr;
  }

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

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