:root {
  --ink: #0c1430;
  --muted: #5a6a8f;
  --line: rgba(13, 31, 82, .1);
  --paper: #ffffff;
  --soft: #f5f9ff;
  --navy: #071846;
  --deep: #020b27;
  --blue: #2477d8;
  --blue-dark: #123f93;
  --cyan: #25bfd0;
  --mint: #35d2a4;
  --gold: #f0b72f;
  --shadow-lg: 0 24px 60px rgba(7, 24, 70, .14);
  --shadow-md: 0 14px 34px rgba(7, 24, 70, .1);
  --radius-sm: 6px;
  --radius: 8px;
  --max: 1600px;
  --nav-max: 1600px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(37, 191, 208, .95);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--soft);
}

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

.site-header-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 32px 18px;
  pointer-events: none;
  background: transparent;
  transition: padding .28s ease, background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.site-header-wrap.is-scrolled {
  padding-top: 0;
  background: rgba(4, 17, 48, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(2, 11, 39, .24);
}

.frontier-legacy-led .site-header-wrap:not(.is-scrolled) {
  background: rgba(4, 17, 48, .98);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(2, 11, 39, .18);
}

.site-header {
  pointer-events: auto;
  max-width: var(--nav-max);
  margin: 0 auto;
  color: rgba(255,255,255,.86);
}

.nav-topline {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 32px;
  gap: 18px;
  padding: 7px 0 6px;
  color: rgba(220,232,255,.74);
  font-size: 12px;
  font-weight: 650;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  white-space: nowrap;
}

.nav-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-meta a:hover { color: #fff; }

.nav-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 12px 0 14px;
}

.nav-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 16px 8px 0;
  border-radius: var(--radius);
}

.brand-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.nav-item { position: static; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 7px;
  color: rgba(255,255,255,.82);
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-item.is-open .nav-link,
.nav-item:hover .nav-link {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.nav-link i,
.nav-icon-btn i,
.lang-toggle i,
.mobile-search i,
.search-form i {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.nav-link i { width: 14px; height: 14px; opacity: .68; }

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0px);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  padding: 18px;
  background: rgba(247, 250, 255, .98);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(2,11,39,.22);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-intro {
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius);
  background: #13265c;
  color: #fff;
}

.mega-intro span,
.kicker {
  display: inline-flex;
  color: #37d9ee;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.mega-intro b {
  display: block;
  margin-top: 42px;
  font-size: 24px;
  line-height: 1.05;
}

.mega-intro p {
  margin: 14px 0 0;
  color: rgba(224,236,255,.78);
  font-size: 14px;
}

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

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

.mega-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 160px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mega-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36,119,216,.22);
  box-shadow: 0 18px 38px rgba(7,24,70,.11);
}

.mega-card i,
.feature-icon i,
.mini-icon i,
.download-icon i,
.spec-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.mega-card .mini-icon,
.enterprise-card .mini-icon,
.company-reach-card .mini-icon,
.contact-route-card .mini-icon,
.contact-direct .mini-icon,
.feature-icon,
.download-icon,
.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef5ff;
}

.mega-card b {
  font-size: 16px;
  line-height: 1.2;
}

.mega-card small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.nav-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .46) 68%, rgba(255, 255, 255, 0));
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .site-header {
  color: #13234d;
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .brand-logo {
  filter: none;
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-topline {
  color: rgba(19, 35, 77, .62);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-meta a:hover {
  color: var(--blue-dark);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-main::after {
  background: rgba(19, 35, 77, .12);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-links {
  background: rgba(255, 255, 255, .64);
  box-shadow: inset 0 0 0 1px rgba(19, 35, 77, .08), 0 14px 36px rgba(45, 79, 135, .08);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-link {
  color: rgba(19, 35, 77, .82);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-link:hover,
.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-item.is-open .nav-link,
.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-item:hover .nav-link {
  background: rgba(36, 119, 216, .09);
  color: #0b1736;
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-icon-btn,
.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .lang-toggle,
.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-toggle {
  color: #13234d;
  background: rgba(255, 255, 255, .72);
  border-color: rgba(19, 35, 77, .12);
  box-shadow: inset 0 0 0 1px rgba(19, 35, 77, .12);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-icon-btn:hover,
.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .lang-toggle:hover,
.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-toggle:hover {
  background: rgba(36, 119, 216, .09);
}

.frontier-product-ptt200 .site-header-wrap:not(.is-scrolled) .nav-toggle span {
  background: #13234d;
}

.nav-icon-btn,
.lang-toggle,
.nav-toggle,
.nav-close {
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-icon-btn,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.1);
}

.nav-icon-btn:hover,
.lang-toggle:hover {
  background: rgba(255,255,255,.13);
}

.lang-switch { position: relative; }
.lang-toggle { gap: 8px; padding: 0 13px; font-weight: 800; }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  min-width: 180px;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,31,82,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.lang-menu a:hover,
.lang-menu a.active {
  background: #eef5ff;
  color: var(--blue-dark);
}

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0px);
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(2,11,39,.2);
  border: 1px solid rgba(13,31,82,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.search-form i { color: var(--blue); }

.search-form input,
.mobile-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(13,31,82,.12);
  border-radius: var(--radius);
  padding: 0 14px;
  outline: none;
  color: var(--ink);
  background: #f8fbff;
}

.search-form input:focus-visible,
.mobile-search input:focus-visible,
.frontier-comment-form input:not([type="submit"]):not([type="checkbox"]):focus-visible,
.frontier-comment-form textarea:focus-visible {
  border-color: rgba(36, 119, 216, .55);
  box-shadow: 0 0 0 4px rgba(37, 191, 208, .16);
}

.content-search-form {
  width: min(720px, 100%);
  margin: 24px auto 0;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 12px 30px rgba(7,24,70,.06);
}

.search-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.search-quick a {
  padding: 8px 10px;
  border-radius: 7px;
  background: #eef5ff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn i { width: 17px; height: 17px; stroke-width: 2.4; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: var(--blue); box-shadow: 0 16px 38px rgba(36,119,216,.28); }
.btn.primary:hover { background: #196ccf; box-shadow: 0 20px 42px rgba(36,119,216,.34); }
.btn.ghost { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.btn.ghost:hover { background: rgba(255,255,255,.14); }
.btn.light { color: var(--ink); background: #fff; border-color: rgba(13,31,82,.08); }
.btn.light:hover { border-color: rgba(36,119,216,.24); box-shadow: var(--shadow-md); }
.btn.dark-outline { color: var(--blue-dark); background: transparent; border-color: rgba(36,119,216,.22); }
.btn.dark-outline:hover { background: #eef5ff; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,11,39,.55);
}

.mobile-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 92vw);
  padding: 22px;
  background: #fff;
  transform: translateX(100%);
  transition: transform .24s ease;
  overflow-y: auto;
}

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

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.mobile-drawer-head .brand-logo {
  width: 142px;
  filter: none;
}

.nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #eef5ff;
  font-size: 28px;
}

.mobile-utility {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-search {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.mobile-search i { color: var(--blue); }

.mobile-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f7faff;
  font-size: 13px;
  font-weight: 800;
}

.mobile-lang a {
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--blue-dark);
  background: #fff;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 14px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(13,31,82,.08);
  color: var(--ink);
  font-weight: 850;
}

.mobile-drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.product-hero,
.listing-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 164px 0 92px;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.product-hero::before,
.listing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 39, .9), rgba(5, 22, 66, .76) 48%, rgba(7, 24, 70, .56)),
    url("network-bg-v1.png") center / cover no-repeat;
  opacity: 1;
}

.product-hero::after,
.listing-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 66px;
  background: var(--soft);
  clip-path: ellipse(78% 70% at 50% 100%);
}

.hero-content,
.listing-hero-grid {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: rgba(232,241,255,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(232,241,255,.4);
}

.breadcrumbs a {
  color: rgba(232,241,255,.78);
  transition: color .18s ease;
}

.breadcrumbs a:hover,
.breadcrumbs span {
  color: #fff;
}

.frontier-product-ptt200 .product-hero .breadcrumbs,
.frontier-product-ptt200 .product-hero .breadcrumbs a {
  color: rgba(12, 24, 52, .62);
}

.frontier-product-ptt200 .product-hero .breadcrumbs a:hover,
.frontier-product-ptt200 .product-hero .breadcrumbs span {
  color: #0c1834;
}

.frontier-product-ptt200 .product-hero .breadcrumbs li + li::before {
  color: rgba(12, 24, 52, .28);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.listing-copy h1 {
  margin: 14px 0 18px;
  max-width: 780px;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  font-weight: 900;
}

.product-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  min-height: 56px;
  margin: 4px 0 18px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.product-mark img {
  max-width: 230px;
  max-height: 36px;
  object-fit: contain;
}

.hero-copy p,
.listing-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(232,241,255,.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-pill,
.product-chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: #d9e9ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.proof-pill i,
.product-chip i,
.tag i {
  width: 15px;
  height: 15px;
}

.device-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 52px 28px 44px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 28px 80px rgba(0,0,0,.24);
}

.hero-device {
  position: relative;
  z-index: 1;
  width: min(620px, 95%);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(0,0,0,.34));
}

.hero-device.is-logo {
  max-width: 360px;
  padding: 100px 40px;
}

.device-note {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 66px;
  max-width: 250px;
  padding: 16px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 54px rgba(0,0,0,.18);
}

.device-note b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.device-note small {
  color: rgba(234,242,255,.72);
  font-weight: 650;
}

.listing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.lineup-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1.25fr .8fr;
  align-items: end;
  gap: 14px;
}

.lineup-card {
  display: grid;
  align-items: end;
  min-height: 420px;
  padding: 26px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.lineup-card:nth-child(2) { min-height: 500px; }
.lineup-card img { max-height: 340px; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 30px 26px rgba(0,0,0,.28)); }
.lineup-card:nth-child(2) img { max-height: 420px; }
.lineup-card:first-child img { max-height: 180px; }

.lineup-card--empty {
  min-height: 220px;
  align-content: center;
}

.lineup-card span {
  display: block;
  margin-top: 18px;
  color: rgba(232,241,255,.78);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: 92px 0;
  background: var(--soft);
}

.section.white { background: #fff; }
.section.navy { background: var(--deep); color: #fff; }

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section.navy .section-head p { color: rgba(224,236,255,.72); }

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

.product-card {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36,119,216,.18);
  box-shadow: var(--shadow-lg);
}

.product-card-visual {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #071846;
}

.product-card-visual img {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.24));
}

.product-card-visual.logo img { max-height: 72px; }

.product-card-body {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.product-card-body h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.product-card-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags .tag {
  color: var(--blue-dark);
  background: #eef5ff;
  border-color: rgba(36,119,216,.12);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.quick-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.metric {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 12px 30px rgba(7,24,70,.06);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.detail-nav {
  position: sticky;
  top: 96px;
  z-index: 20;
  background: rgba(245,249,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,31,82,.08);
}

.detail-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
}

.detail-nav strong {
  font-size: 16px;
}

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

.detail-links a {
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.detail-links a:hover {
  color: var(--blue-dark);
  background: #fff;
}

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

.feature-card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 12px 28px rgba(7,24,70,.06);
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 19px;
  line-height: 1.15;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

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

.story-media figure {
  margin: 0;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 18px 44px rgba(7,24,70,.08);
  overflow: hidden;
}

.story-media figure.wide { grid-column: 1 / -1; }
.story-media img { width: 100%; max-height: 300px; object-fit: contain; }
.story-media figure.wide img { object-fit: cover; height: 100%; min-height: 270px; border-radius: 6px; }

.story-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
}

.story-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

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

.story-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 750;
}

.story-list i {
  width: 19px;
  height: 19px;
  color: var(--blue);
  margin-top: 3px;
}

.compare-wrap,
.spec-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(13,31,82,.08);
  background: #fff;
  box-shadow: 0 18px 44px rgba(7,24,70,.08);
}

.compare-table,
.spec-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td,
.spec-table th,
.spec-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(13,31,82,.08);
  vertical-align: top;
}

.compare-table th,
.spec-table th {
  color: var(--ink);
  background: #f7faff;
  font-size: 13px;
  text-transform: uppercase;
}

.compare-table td,
.spec-table td {
  color: var(--muted);
  font-weight: 650;
}

.compare-table tr:last-child td,
.spec-table tr:last-child td { border-bottom: 0; }

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

.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 12px 30px rgba(7,24,70,.06);
}

.download-card.is-disabled {
  cursor: default;
}

.download-card b { display: block; line-height: 1.2; }
.download-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.download-card .btn {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

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

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

.content-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 12px 30px rgba(7,24,70,.06);
}

.content-card h2,
.content-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.entry-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content img { border-radius: var(--radius); }
.entry-content a { color: var(--blue-dark); font-weight: 800; }

.page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(13,31,82,.1);
  font-weight: 800;
}

.page-links a,
.page-links .post-page-numbers,
.page-links .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(13,31,82,.1);
}

.page-links .current {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.woocommerce-page .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  max-width: 1080px;
}

.woocommerce-page .entry-content .woocommerce,
.woocommerce-cart .entry-content .woocommerce,
.woocommerce-checkout .entry-content .woocommerce,
.woocommerce-account .entry-content .woocommerce,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-checkout {
  display: grid;
  gap: 22px;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce-order,
.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
  overflow: hidden;
  border: 1px solid rgba(13,31,82,.09);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,24,70,.06);
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 15px 16px;
  border: 0;
  border-bottom: 1px solid rgba(13,31,82,.08);
  text-align: left;
  vertical-align: middle;
}

.woocommerce table.shop_table th {
  color: var(--ink);
  background: #f6f9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce table.shop_table tr:last-child td { border-bottom: 0; }

.woocommerce form .form-row {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
}

.woocommerce form .form-row label {
  color: var(--ink);
  font-weight: 850;
}

.woocommerce form .input-text,
.woocommerce-page form .input-text,
.woocommerce select,
.woocommerce textarea,
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(13,31,82,.13);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.woocommerce form .input-text:focus-visible,
.woocommerce-page form .input-text:focus-visible,
.woocommerce select:focus-visible,
.woocommerce textarea:focus-visible,
.wc-block-components-text-input input:focus-visible,
.wc-block-components-textarea:focus-visible {
  border-color: rgba(36,119,216,.55);
  box-shadow: 0 0 0 4px rgba(37,191,208,.16);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.wc-block-components-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(36,119,216,.22);
  font-weight: 850;
  cursor: pointer;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
  background: #196ccf;
}

.woocommerce .quantity .qty {
  width: 76px;
  min-height: 42px;
  border: 1px solid rgba(13,31,82,.13);
  border-radius: var(--radius-sm);
  text-align: center;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(36,119,216,.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: #eef5ff;
}

.woocommerce-error {
  border-color: rgba(198,54,61,.22);
  background: #fff3f4;
}

.woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  color: var(--blue-dark);
  background: #eef5ff;
}

.woocommerce-MyAccount-content,
.woocommerce-order,
.woocommerce-checkout-review-order,
.woocommerce-cart-form {
  padding: 22px;
}

.post-taxonomy {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(13,31,82,.1);
  color: var(--muted);
}

.post-taxonomy p {
  margin: 8px 0 0;
}

.post-navigation {
  max-width: 900px;
  margin: 36px auto 0;
}

.post-navigation .nav-links,
.comment-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next,
.comment-navigation .nav-previous,
.comment-navigation .nav-next {
  min-width: 0;
}

.post-navigation .nav-next,
.comment-navigation .nav-next {
  text-align: right;
}

.post-navigation a,
.comment-navigation a {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 12px 30px rgba(7,24,70,.06);
}

.post-navigation .nav-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.post-navigation .nav-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.comments-area {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: var(--shadow-md);
}

.comments-title,
.comment-reply-title {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.15;
}

.comment-list {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin: 18px 0 0 28px;
  padding: 0;
  list-style: none;
}

.comment-body {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid rgba(13,31,82,.08);
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.comment-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.comment-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.comment-content p {
  margin: 0 0 12px;
}

.reply {
  margin-top: 12px;
  font-weight: 900;
}

.frontier-comment-form {
  display: grid;
  gap: 14px;
}

.frontier-comment-form p {
  margin: 0;
}

.frontier-comment-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 850;
}

.frontier-comment-form input:not([type="submit"]):not([type="checkbox"]),
.frontier-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(13,31,82,.13);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
}

.frontier-comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.comment-form-cookies-consent input {
  margin-top: 4px;
}

.no-comments {
  color: var(--muted);
  font-weight: 750;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.form-note {
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background: #13265c;
}

.form-note h2,
.form-note h3 { margin-top: 0; }

.form-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: var(--shadow-md);
}

.form-warning {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #7a4100;
  background: #fff4d9;
  border: 1px solid #ffd47a;
  font-weight: 800;
}

.form-panel .wpforms-container {
  margin: 0;
}

.form-panel .wpforms-field {
  padding: 0 0 16px;
}

.form-panel .wpforms-field-label,
.form-panel .wpforms-field-sublabel {
  color: var(--ink);
  font-weight: 850;
}

.form-panel .wpforms-field-sublabel {
  color: var(--muted);
  font-size: 12px;
}

.form-panel .wpforms-field input[type="text"],
.form-panel .wpforms-field input[type="email"],
.form-panel .wpforms-field input[type="tel"],
.form-panel .wpforms-field input[type="url"],
.form-panel .wpforms-field input[type="number"],
.form-panel .wpforms-field select,
.form-panel .wpforms-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(13,31,82,.13);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.form-panel .wpforms-field textarea {
  min-height: 140px;
}

.form-panel .wpforms-field input:focus-visible,
.form-panel .wpforms-field select:focus-visible,
.form-panel .wpforms-field textarea:focus-visible {
  border-color: rgba(36,119,216,.55);
  box-shadow: 0 0 0 4px rgba(37,191,208,.16);
}

.form-panel .wpforms-error,
.form-panel label.wpforms-error {
  margin-top: 6px;
  color: #b4232b;
  font-size: 13px;
  font-weight: 800;
}

.form-panel .wpforms-submit,
.form-panel button.wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(36,119,216,.22);
  font-weight: 850;
  cursor: pointer;
}

.form-panel .wpforms-submit:hover,
.form-panel button.wpforms-submit:hover {
  background: #196ccf;
}

.form-panel .wpforms-confirmation-container-full {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(53,210,164,.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ecfbf5;
}

.enterprise-page {
  background: #fff;
}

.enterprise-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 164px 0 82px;
  color: #fff;
  overflow: hidden;
  background: #020b27 url("company-contact-dark-bg.png") center / cover no-repeat;
}

.enterprise-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 11, 39, .46);
}

.enterprise-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58px;
  background: #fff;
  clip-path: ellipse(82% 74% at 50% 100%);
}

.enterprise-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.enterprise-hero-copy h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 900;
  line-height: .98;
}

.enterprise-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(233, 242, 255, .82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.enterprise-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 800px;
  margin: 34px 0 0;
}

.enterprise-metrics div {
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
}

.enterprise-metrics dt {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.enterprise-metrics dd {
  margin: 0;
  color: rgba(227,239,255,.72);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.enterprise-hero-media {
  position: relative;
  min-height: 520px;
}

.company-building-card,
.contact-banner-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
}

.company-building-card img,
.contact-banner-card img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.company-building-card::after,
.contact-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 11, 39, .2);
}

.company-product-lineup {
  position: absolute;
  left: 7%;
  right: 4%;
  bottom: -34px;
  display: grid;
  grid-template-columns: .82fr 1.2fr .72fr;
  align-items: end;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(6, 23, 65, .78);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.company-product-lineup img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(0,0,0,.34));
}

.company-product-lineup img:nth-child(2) {
  max-height: 240px;
}

.contact-hero-media {
  position: relative;
  min-height: 510px;
}

.contact-banner-card {
  width: min(720px, 96%);
  margin-left: auto;
}

.contact-device-stack {
  position: absolute;
  left: 0;
  bottom: -36px;
  width: min(420px, 48%);
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(6, 23, 65, .8);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.contact-device-stack img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0,0,0,.34));
}

.contact-fast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-fast-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(235,244,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.contact-fast-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.14);
}

.contact-fast-links i {
  width: 15px;
  height: 15px;
}

.legacy-led-page {
  background: #fff;
}

.legacy-page-banner {
  position: relative;
  padding-top: 126px;
  background: #fff;
  overflow: hidden;
}

.legacy-page-banner figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #eef5fb;
}

.legacy-page-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-legacy-banner figure {
  height: clamp(390px, 33vw, 560px);
}

.contact-legacy-banner figure {
  height: clamp(360px, 30vw, 520px);
}

.company-legacy-banner img {
  object-position: center center;
}

.contact-legacy-banner img {
  object-position: center center;
}

.legacy-intro-section {
  position: relative;
  padding: 76px 0 72px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.legacy-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("company-contact-light-bg.png") center top / cover no-repeat;
  opacity: .48;
  pointer-events: none;
}

.legacy-intro-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -150px;
  width: min(940px, 84vw);
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(36,119,216,.11), rgba(36,119,216,0));
  transform: translateX(-50%);
  pointer-events: none;
}

.legacy-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.legacy-intro-inner .breadcrumbs {
  color: rgba(12,24,52,.54);
}

.legacy-intro-inner .breadcrumbs ol {
  justify-content: center;
}

.legacy-intro-inner .breadcrumbs a {
  color: rgba(12,24,52,.54);
}

.legacy-intro-inner .breadcrumbs a:hover,
.legacy-intro-inner .breadcrumbs span {
  color: var(--ink);
}

.legacy-intro-inner .breadcrumbs li + li::before {
  color: rgba(12,24,52,.28);
}

.legacy-intro-inner h1 {
  max-width: 940px;
  margin: 10px auto 20px;
  color: var(--ink);
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.04;
  font-weight: 900;
}

.contact-legacy-intro .legacy-intro-inner h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.legacy-intro-inner > p {
  max-width: 980px;
  margin: 0 auto;
  color: #21365f;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
  font-weight: 650;
}

.legacy-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 54px 0 0;
  padding: 0;
}

.legacy-stat-row div {
  min-width: 0;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 18px 48px rgba(7,24,70,.08);
}

.legacy-stat-row dt {
  margin: 0 0 8px;
  color: #1f6ed9;
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 900;
  line-height: .98;
}

.legacy-stat-row dd {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.legacy-intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.contact-legacy-form {
  padding-top: 34px;
}

.contact-legacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: start;
}

.contact-legacy-form .contact-form-panel {
  padding: 42px;
  box-shadow: 0 24px 70px rgba(7,24,70,.1);
}

.contact-legacy-form .contact-form-head {
  text-align: center;
}

.contact-legacy-form .contact-form-head h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-legacy-form .contact-form-head p,
.contact-legacy-form .contact-form-note {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-legacy-form .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 22px;
}

.contact-legacy-form #wpforms-173-field_4-container,
.contact-legacy-form #wpforms-173-field_5-container,
.contact-legacy-form #wpforms-173-field_6-container {
  grid-column: span 1;
}

.contact-legacy-form #wpforms-173-field_7-container {
  grid-column: 1 / -1;
}

.contact-legacy-form .contact-direct {
  gap: 16px;
}

.contact-legacy-form .contact-direct article {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
}

.contact-legacy-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-legacy-routes .contact-route-card {
  background: #fff;
  border-color: rgba(13,31,82,.08);
  box-shadow: 0 16px 42px rgba(7,24,70,.08);
}

.contact-legacy-routes .contact-route-card h3 {
  color: var(--ink);
}

.contact-legacy-routes .contact-route-card p {
  color: var(--muted);
}

.enterprise-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.company-ecosystem,
.contact-resource-section {
  background: #fff;
}

.company-profile-panel,
.contact-center-section,
.company-reach-section {
  background: #f7fbff url("company-contact-light-bg.png") center / cover no-repeat;
}

.company-story-section {
  color: #fff;
  background: #071846;
}

.enterprise-section-head {
  max-width: 880px;
  margin-bottom: 34px;
}

.enterprise-section-head h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.03;
  font-weight: 900;
}

.enterprise-section-head p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.company-story-section .enterprise-section-head h2 {
  color: #fff;
}

.company-story-section .enterprise-section-head p {
  color: rgba(224,236,255,.72);
}

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

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

.enterprise-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 244px;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 16px 42px rgba(7,24,70,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.enterprise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36,119,216,.24);
  box-shadow: 0 22px 54px rgba(7,24,70,.13);
}

.enterprise-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 900;
}

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

.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(440px, .95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.company-profile-media {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 14px;
}

.company-profile-media figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 18px 48px rgba(7,24,70,.1);
}

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

.company-photo-large {
  min-height: 520px;
}

.company-photo-stack {
  display: grid;
  gap: 14px;
}

.company-photo-stack figure {
  min-height: 253px;
}

.company-profile-copy h2,
.company-reach-copy h2,
.contact-routing h2,
.contact-form-head h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1.03;
}

.company-profile-copy p,
.company-reach-copy p,
.contact-routing > p,
.contact-form-head p,
.contact-form-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.company-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(13,31,82,.1);
}

.company-proof-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.45;
}

.company-proof-list i {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.company-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: start;
}

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

.company-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  grid-template-areas:
    "year title"
    "year text";
  gap: 22px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.company-timeline-item span {
  grid-area: year;
  color: #37d9ee;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.company-timeline-item h3 {
  grid-area: title;
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.16;
}

.company-timeline-item p {
  grid-area: text;
  margin: 0;
  color: rgba(224,236,255,.72);
  font-weight: 650;
  line-height: 1.62;
}

.company-reach-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.company-reach-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.company-reach-card,
.contact-route-card,
.contact-direct article {
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 16px 42px rgba(7,24,70,.08);
}

.company-reach-card {
  min-height: 220px;
  padding: 22px;
}

.company-reach-card h3,
.contact-route-card h3,
.contact-direct h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.company-reach-card p,
.contact-route-card p,
.contact-direct p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

.contact-center-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(460px, 1.15fr) minmax(250px, .55fr);
  gap: 20px;
  align-items: start;
}

.contact-routing,
.contact-form-panel,
.contact-direct {
  border-radius: var(--radius);
}

.contact-routing {
  padding: 30px;
  color: #fff;
  background: #13265c;
  box-shadow: 0 18px 48px rgba(7,24,70,.14);
}

.contact-routing h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
}

.contact-routing > p {
  color: rgba(224,236,255,.74);
}

.contact-route-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-route-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.contact-route-card h3 {
  margin-top: 0;
  color: #fff;
}

.contact-route-card p {
  color: rgba(224,236,255,.72);
}

.contact-form-panel {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
  box-shadow: 0 24px 70px rgba(7,24,70,.13);
}

.contact-form-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(13,31,82,.09);
}

.contact-form-head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.contact-form-panel .wpforms-container {
  margin: 0;
}

.contact-form-panel .wpforms-field {
  padding: 0 0 16px;
}

.contact-form-panel .wpforms-field-label,
.contact-form-panel .wpforms-field-sublabel {
  color: var(--ink);
  font-weight: 850;
}

.contact-form-panel .wpforms-field-sublabel {
  color: var(--muted);
  font-size: 12px;
}

.contact-form-panel .wpforms-field input[type="text"],
.contact-form-panel .wpforms-field input[type="email"],
.contact-form-panel .wpforms-field input[type="tel"],
.contact-form-panel .wpforms-field input[type="url"],
.contact-form-panel .wpforms-field input[type="number"],
.contact-form-panel .wpforms-field select,
.contact-form-panel .wpforms-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(13,31,82,.13);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
}

.contact-form-panel .wpforms-field textarea {
  min-height: 150px;
}

.contact-form-panel .wpforms-field input:focus-visible,
.contact-form-panel .wpforms-field select:focus-visible,
.contact-form-panel .wpforms-field textarea:focus-visible {
  border-color: rgba(36,119,216,.55);
  box-shadow: 0 0 0 4px rgba(37,191,208,.16);
}

.contact-form-panel .wpforms-error,
.contact-form-panel label.wpforms-error {
  margin-top: 6px;
  color: #b4232b;
  font-size: 13px;
  font-weight: 800;
}

.contact-form-panel .wpforms-submit,
.contact-form-panel button.wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(36,119,216,.22);
  font-weight: 850;
  cursor: pointer;
}

.contact-form-panel .wpforms-submit:hover,
.contact-form-panel button.wpforms-submit:hover {
  background: #196ccf;
}

.contact-direct {
  display: grid;
  gap: 14px;
}

.contact-direct article {
  padding: 20px;
}

.contact-direct a {
  color: var(--blue-dark);
  font-weight: 900;
  word-break: break-word;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.partner-tile {
  display: grid;
  place-items: center;
  min-height: 90px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13,31,82,.08);
}

.partner-tile img {
  max-height: 34px;
  object-fit: contain;
}

.partner-tile .text-logo {
  font-size: 24px;
  font-weight: 900;
  color: #1e376e;
}

.product-capabilities .section-head {
  margin-bottom: 34px;
}

.media-tile-grid,
.showcase-panel-grid,
.use-case-grid,
.why-card-grid,
.package-grid {
  display: grid;
  gap: 20px;
}

.media-tile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-tile,
.showcase-panel,
.use-case-card,
.why-card,
.package-card {
  overflow: hidden;
  border: 1px solid rgba(13,31,82,.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.media-tile figure,
.showcase-panel figure,
.use-case-card figure,
.why-card figure,
.package-card figure {
  margin: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.media-tile figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 18px;
}

.media-tile img {
  max-height: 180px;
  object-fit: contain;
}

.media-tile > div,
.why-card > div {
  padding: 20px;
}

.media-tile h3,
.showcase-panel h3,
.use-case-card h3,
.why-card h3,
.package-card h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.16;
}

.media-tile p,
.showcase-panel p,
.why-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.product-showcase-head {
  margin-top: 72px;
}

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

.showcase-panel {
  display: grid;
  grid-template-columns: minmax(210px, .92fr) minmax(0, 1fr);
  align-items: center;
}

.showcase-panel figure {
  height: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.showcase-panel img {
  max-height: 230px;
  object-fit: contain;
}

.showcase-panel > div {
  padding: 28px;
}

.product-use-cases {
  background:
    linear-gradient(180deg, rgba(245,249,255,.82), rgba(255,255,255,.96)),
    var(--soft);
}

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

.use-case-card figure {
  aspect-ratio: 16 / 10;
}

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

.use-case-card h3 {
  padding: 18px 20px 20px;
  font-size: 18px;
}

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

.why-card figure {
  aspect-ratio: 16 / 10;
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-package .section-head {
  margin-bottom: 34px;
}

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

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.package-card {
  text-align: center;
  box-shadow: 0 12px 26px rgba(7, 24, 70, .08);
}

.package-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 20px 14px 10px;
  background: #fff;
}

.package-card img {
  max-height: 96px;
  object-fit: contain;
}

.package-card h3 {
  padding: 0 12px 18px;
  font-size: 13px;
  color: var(--muted);
}

.cta-band {
  background: #071846;
  color: #fff;
  padding: 74px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-box h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
}

.cta-box p {
  margin: 0;
  max-width: 720px;
  color: rgba(224,236,255,.76);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 70px 0 32px;
  color: #fff;
  background: #020b27;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(3, minmax(160px, .6fr));
  gap: 54px;
}

.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  max-width: 360px;
  margin: 22px 0;
  color: rgba(224,236,255,.64);
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 15px;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  color: rgba(224,236,255,.64);
  font-weight: 650;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(224,236,255,.6);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

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

@media (max-width: 1180px) {
  .site-header-wrap { padding: 12px 24px 14px; }
  .brand-logo { width: 132px; }
  .nav-links { gap: 2px; padding: 0 8px; }
  .nav-link { padding: 0 8px; font-size: 13px; }
  .nav-actions .btn.light { display: none; }
  .mega-menu { grid-template-columns: 300px 1fr; }
  .hero-content,
  .listing-hero-grid { grid-template-columns: 1fr; }
  .device-stage,
  .lineup-stage { min-height: 430px; }
  .product-grid,
  .download-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-tile-grid,
  .use-case-grid,
  .why-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-panel-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quick-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid { grid-template-columns: 1fr; }
  .ecosystem-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .enterprise-hero-grid,
  .company-profile-grid,
  .company-story-grid,
  .company-reach-grid,
  .contact-center-grid {
    grid-template-columns: 1fr;
  }
  .enterprise-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .enterprise-card-grid.compact,
  .company-reach-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .enterprise-hero-media,
  .contact-hero-media {
    min-height: 460px;
  }
  .contact-legacy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  }
}

@media (max-width: 920px) {
  .nav-topline,
  .nav-links,
  .nav-actions .btn,
  .nav-actions .lang-switch { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-main { padding: 10px 0; }
  .site-header-wrap { padding: 10px 18px; }
  .product-hero,
  .listing-hero {
    min-height: auto;
    padding: 128px 0 74px;
  }
  .hero-copy h1,
  .listing-copy h1 { font-size: clamp(38px, 10vw, 58px); }
  .lineup-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lineup-card,
  .lineup-card:nth-child(2) { min-height: 250px; }
  .lineup-card img,
  .lineup-card:nth-child(2) img { max-height: 240px; }
  .device-note { position: relative; top: auto; right: auto; margin-top: 14px; max-width: none; }
  .device-stage { min-height: 360px; }
  .device-stage::before { inset: 32px 0; }
  .hero-device { max-height: 350px; }
  .detail-nav { top: 66px; }
  .detail-nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-shell { grid-template-columns: 1fr; }
  .enterprise-hero {
    min-height: auto;
    padding: 130px 0 78px;
  }
  .enterprise-hero-grid {
    gap: 34px;
  }
  .enterprise-metrics {
    grid-template-columns: 1fr;
  }
  .enterprise-hero-media,
  .contact-hero-media {
    min-height: auto;
  }
  .company-product-lineup,
  .contact-device-stack {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
  .company-profile-media {
    grid-template-columns: 1fr;
  }
  .company-photo-large,
  .company-photo-stack figure {
    min-height: 300px;
  }
  .company-reach-cards,
  .enterprise-card-grid.compact {
    grid-template-columns: 1fr;
  }
  .contact-center-grid {
    gap: 16px;
  }
  .legacy-page-banner {
    padding-top: 86px;
  }
  .company-legacy-banner figure,
  .contact-legacy-banner figure {
    height: clamp(280px, 58vw, 420px);
  }
  .legacy-intro-section {
    padding: 58px 0 56px;
  }
  .legacy-stat-row,
  .contact-legacy-grid,
  .contact-legacy-routes {
    grid-template-columns: 1fr;
  }
  .contact-legacy-form .wpforms-field-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-legacy-form #wpforms-173-field_7-container {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--max)); }
  .section { padding: 64px 0; }
  .product-hero::after,
  .listing-hero::after { height: 42px; }
  .product-grid,
  .download-grid,
  .content-grid,
  .feature-grid,
  .media-tile-grid,
  .showcase-panel-grid,
  .use-case-grid,
  .why-card-grid,
  .package-grid,
  .quick-metrics,
  .ecosystem-strip { grid-template-columns: 1fr; }
  .showcase-panel { grid-template-columns: 1fr; }
  .accessory-grid { grid-template-columns: 1fr; }
  .product-card-visual { min-height: 250px; }
  .product-card-body,
  .feature-card { padding: 22px; }
  .story-media { grid-template-columns: 1fr; }
  .story-media figure.wide { grid-column: auto; }
  .download-card { grid-template-columns: auto 1fr; }
  .download-card .btn { grid-column: 1 / -1; }
  .search-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .enterprise-hero {
    padding: 120px 0 64px;
  }
  .enterprise-hero::after {
    height: 38px;
  }
  .enterprise-hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }
  .enterprise-section {
    padding: 68px 0;
  }
  .enterprise-section-head h2,
  .company-profile-copy h2,
  .company-reach-copy h2,
  .contact-routing h2,
  .contact-form-head h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .enterprise-card-grid,
  .enterprise-card-grid.compact,
  .company-reach-cards {
    grid-template-columns: 1fr;
  }
  .enterprise-card,
  .contact-routing,
  .contact-form-panel,
  .contact-direct article {
    padding: 22px;
  }
  .company-timeline-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "year"
      "title"
      "text";
    gap: 12px;
  }
  .company-product-lineup {
    grid-template-columns: 1fr 1fr;
  }
  .company-product-lineup img:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .contact-route-card {
    grid-template-columns: 1fr;
  }
  .legacy-page-banner {
    padding-top: 78px;
  }
  .company-legacy-banner figure,
  .contact-legacy-banner figure {
    height: 240px;
  }
  .legacy-intro-inner h1,
  .contact-legacy-intro .legacy-intro-inner h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .legacy-intro-inner > p {
    font-size: 16px;
  }
  .legacy-stat-row {
    gap: 12px;
    margin-top: 34px;
  }
  .legacy-stat-row div {
    padding: 22px;
  }
  .contact-legacy-form .contact-form-panel {
    padding: 22px;
  }
  .contact-legacy-form .wpforms-field-container {
    grid-template-columns: 1fr;
  }
  .contact-legacy-form #wpforms-173-field_4-container,
  .contact-legacy-form #wpforms-173-field_5-container,
  .contact-legacy-form #wpforms-173-field_6-container,
  .contact-legacy-form #wpforms-173-field_7-container {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .btn:hover,
  .product-card:hover,
  .mega-card:hover { transform: none; }
}

/* Product detail flagship system: selected mix of concept 1 + concept 3. */
.product-hero {
  min-height: 820px;
  padding: 156px 0 40px;
  align-items: end;
  background: #020916;
  isolation: isolate;
}

.product-hero::before {
  background: url("network-bg-v1.png") center / cover no-repeat;
  opacity: .34;
  filter: saturate(.82) contrast(1.08);
}

.product-hero::after {
  display: none;
}

.product-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020916;
}

.product-hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .1;
  filter: saturate(.6) contrast(1.05) blur(2px);
  transform: scale(1.03);
}

.product-hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 22, .78);
}

.product-hero .hero-content {
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, .96fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
  padding-bottom: 34px;
}

.product-hero .hero-copy {
  max-width: 720px;
}

.product-hero .breadcrumbs {
  margin-bottom: 24px;
  color: rgba(232, 241, 255, .7);
}

.product-hero .breadcrumbs a {
  color: rgba(232, 241, 255, .72);
}

.product-hero .kicker {
  color: #54d8e8;
  letter-spacing: .18em;
}

.product-hero .product-mark {
  max-width: 230px;
  min-height: 48px;
  margin: 0 0 20px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.product-hero .product-mark img {
  max-width: 198px;
  max-height: 28px;
}

.product-hero .hero-copy h1 {
  max-width: 780px;
  margin: 14px 0 20px;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: .98;
  letter-spacing: 0;
}

.product-hero .hero-copy h1 span {
  display: block;
  margin-bottom: 18px;
  color: #78e1ee;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.product-hero .hero-copy p {
  max-width: 690px;
  color: rgba(238, 245, 255, .82);
  font-size: clamp(18px, 1.55vw, 23px);
}

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

.product-hero .btn {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 6px;
}

.product-hero .btn.primary {
  background: #2379d7;
  box-shadow: 0 18px 44px rgba(35, 121, 215, .3);
}

.product-hero .btn.ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}

.product-hero .hero-proof {
  gap: 9px;
  margin-top: 32px;
}

.product-hero .proof-pill {
  min-height: 36px;
  border-radius: 6px;
  color: rgba(235, 246, 255, .9);
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .13);
}

.device-stage {
  min-height: 560px;
  align-items: center;
}

.device-stage::before {
  display: none;
}

.device-plate {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  min-height: 510px;
  display: grid;
  place-items: center;
  padding: 58px 44px 38px;
  border-radius: 8px;
  background: rgba(7, 22, 56, .78);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .3);
  overflow: hidden;
}

.device-plate::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
}

.device-plate::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 40px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .34);
  filter: blur(16px);
}

.device-plate > span {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(225, 239, 255, .6);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-device {
  width: min(660px, 96%);
  max-height: 490px;
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, .36));
}

.product-detail--ptt200 .hero-device {
  width: min(390px, 78%);
  max-height: 620px;
}

.product-hero.product-detail--ptt200 {
  min-height: 760px;
  padding: 142px 0 70px;
  color: #0b1530;
  background: #f8fbff url("product-detail/ptt200/PTT200_s1-bg.jpg") center bottom / cover no-repeat;
}

.product-hero.product-detail--ptt200::before,
.product-hero.product-detail--ptt200 .product-hero-scene {
  display: none;
}

.product-hero.product-detail--ptt200 .hero-content {
  grid-template-columns: minmax(460px, .88fr) minmax(420px, 1.12fr);
  min-height: 548px;
  padding-bottom: 0;
}

.product-hero.product-detail--ptt200 .hero-copy {
  max-width: 640px;
}

.product-hero.product-detail--ptt200 .breadcrumbs,
.product-hero.product-detail--ptt200 .breadcrumbs a {
  color: rgba(12, 24, 52, .58);
}

.product-hero.product-detail--ptt200 .product-mark {
  max-width: 300px;
  min-height: 0;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.product-hero.product-detail--ptt200 .product-mark img {
  max-width: 278px;
  max-height: 42px;
}

.product-hero.product-detail--ptt200 .kicker {
  color: #2379d7;
}

.product-hero.product-detail--ptt200 .hero-copy h1 {
  max-width: 660px;
  margin: 8px 0 16px;
  color: #111827;
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.12;
}

.product-hero.product-detail--ptt200 .hero-copy h1 span {
  margin-bottom: 8px;
  color: #172033;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.product-hero.product-detail--ptt200 .hero-copy p {
  max-width: 600px;
  color: #5b6c86;
  font-size: clamp(17px, 1.25vw, 21px);
}

.product-hero.product-detail--ptt200 .btn.ghost {
  color: #10203f;
  background: rgba(255, 255, 255, .72);
  border-color: rgba(16, 32, 63, .12);
}

.product-hero.product-detail--ptt200 .proof-pill {
  color: #233757;
  background: rgba(255, 255, 255, .74);
  border-color: rgba(35, 121, 215, .14);
  box-shadow: 0 12px 28px rgba(35, 121, 215, .08);
}

.product-hero.product-detail--ptt200 .device-stage {
  min-height: 548px;
  display: grid;
  place-items: center;
}

.product-hero.product-detail--ptt200 .device-plate {
  min-height: 548px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.product-hero.product-detail--ptt200 .device-plate::before,
.product-hero.product-detail--ptt200 .device-plate::after,
.product-hero.product-detail--ptt200 .device-plate > span,
.product-hero.product-detail--ptt200 .device-note,
.product-hero.product-detail--ptt200 .hero-gallery {
  display: none;
}

.product-hero.product-detail--ptt200 .hero-device {
  width: min(520px, 76%);
  max-height: 690px;
  transform: translateY(22px);
  filter: drop-shadow(0 34px 28px rgba(4, 16, 38, .2));
}

.product-hero.page-hero {
  min-height: 680px;
  padding: 164px 0 110px;
  align-items: center;
  background: var(--deep);
  isolation: auto;
}

.product-hero.page-hero::after {
  display: block;
  height: 66px;
}

.product-hero.page-hero .hero-device {
  max-height: 400px;
}

.product-hero.page-hero .device-stage {
  min-height: 420px;
}

.product-detail--dt200a .hero-device,
.product-detail--dt200d .hero-device {
  transform: translateY(12px);
}

.device-note {
  right: -4px;
  top: 70px;
  max-width: 282px;
  padding: 18px 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  color: #091532;
  border: 0;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .24);
}

.device-note small {
  color: #576787;
}

.hero-gallery {
  position: absolute;
  z-index: 3;
  left: -12px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 10px;
}

.hero-gallery figure {
  margin: 0;
  height: 104px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-metrics .metric {
  min-height: 112px;
  padding: 22px 24px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .11);
  border-radius: 0;
  background: rgba(255, 255, 255, .035);
  box-shadow: none;
}

.hero-metrics .metric:last-child {
  border-right: 0;
}

.hero-metrics .metric strong {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 32px);
}

.hero-metrics .metric span {
  color: rgba(229, 241, 255, .68);
  font-size: 12px;
  line-height: 1.45;
}

.detail-nav {
  top: 86px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(12, 20, 48, .08);
  box-shadow: 0 12px 30px rgba(7, 24, 70, .06);
}

.detail-nav-inner {
  min-height: 58px;
}

.detail-links a {
  border-radius: 5px;
}

.product-hero + .detail-nav + .section {
  padding-top: 88px;
}

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

.feature-card {
  position: relative;
  min-height: 248px;
  padding: 26px;
  border-radius: 8px;
  border-color: rgba(13, 31, 82, .07);
  box-shadow: 0 14px 34px rgba(7, 24, 70, .065);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  background: #25bfd0;
}

.feature-index {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(12, 20, 48, .16);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #145fc1;
  background: #eef5ff;
}

.feature-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.product-capabilities {
  background: #fff;
}

.product-capabilities .container,
.product-use-cases .container,
.product-why .container,
.product-package .container {
  position: relative;
}

.product-capabilities .section-head,
.product-use-cases .section-head,
.product-why .section-head {
  max-width: 820px;
}

.media-tile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.media-tile {
  display: grid;
  grid-template-columns: minmax(240px, .94fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 300px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .07);
}

.media-tile figure,
.showcase-panel figure,
.why-card figure,
.package-card figure {
  background: #f5f8fc;
}

.media-tile figure {
  min-height: 100%;
  padding: 24px;
}

.media-tile img {
  max-height: 250px;
}

.media-tile > div {
  display: grid;
  align-content: center;
  padding: 30px;
}

.media-tile h3,
.showcase-panel h3,
.why-card h3 {
  font-size: 22px;
}

.showcase-panel-grid {
  gap: 22px;
}

.showcase-panel {
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .07);
}

.showcase-panel figure {
  min-height: 320px;
}

.showcase-panel img {
  max-height: 280px;
}

.story-grid {
  gap: clamp(36px, 5vw, 72px);
}

.story-media figure {
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .07);
}

.story-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.story-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(13, 31, 82, .08);
}

.product-use-cases {
  background: #050e27;
  color: #fff;
}

.product-use-cases .kicker {
  color: #5ee5f1;
}

.product-use-cases .section-head h2 {
  color: #fff;
}

.product-use-cases .section-head p {
  color: rgba(227, 240, 255, .72);
}

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

.use-case-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: #08183b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.use-case-card figure {
  aspect-ratio: 16 / 11;
  background: #0b1c42;
}

.use-case-card h3 {
  padding: 18px 20px 20px;
  color: #fff;
}

.why-card-grid {
  gap: 22px;
}

.why-card {
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .07);
}

.why-card > div {
  padding: 24px;
}

.product-package {
  background: #fff;
}

.ptt-legacy-overview {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 6vw, 112px) 0 clamp(90px, 7vw, 132px);
  background: #f7fbff;
  isolation: isolate;
}

.ptt-legacy-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("product-detail/ptt200/PTT200_s2-bg.jpg") right top / auto 100% no-repeat;
  opacity: .76;
}

.ptt-legacy-overview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0), #f7fbff 72%);
}

.ptt-legacy-overview .container {
  position: relative;
  z-index: 1;
}

.ptt-video-copy {
  max-width: 1180px;
}

.ptt-video-copy h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 900;
}

.ptt-video-copy p {
  max-width: 1180px;
  margin: 22px 0 0;
  color: #344761;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.72;
}

.ptt-video-card {
  max-width: 1080px;
  margin-top: clamp(34px, 4vw, 58px);
}

.ptt-video-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1098 / 615;
  overflow: hidden;
  border-radius: 8px;
  background: #101827;
  box-shadow: 0 30px 70px rgba(9, 26, 55, .16);
}

.ptt-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ptt-play-link {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: #2379d7;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(3, 19, 46, .26);
  transition: transform .2s ease, background .2s ease;
}

.ptt-play-link:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: #fff;
}

.ptt-play-link i {
  width: 34px;
  height: 34px;
  transform: translateX(2px);
}

.ptt-dispatch-platform {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 6vw, 112px) 0 clamp(82px, 6vw, 118px);
  scroll-margin-top: 132px;
  background: #f5fbff;
  isolation: isolate;
}

.ptt-dispatch-platform::before,
.ptt-dispatch-platform::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ptt-dispatch-platform::before {
  left: -4vw;
  right: -4vw;
  bottom: 9%;
  z-index: -2;
  height: min(37vw, 450px);
  background: url("product-detail/ptt200/PTT200_s3-bg2.jpg") center bottom / 100% auto no-repeat;
  opacity: .98;
}

.ptt-dispatch-platform::after {
  right: -170px;
  top: -250px;
  z-index: -3;
  width: min(54vw, 900px);
  aspect-ratio: 1920 / 1146;
  background: url("product-detail/ptt200/PTT200_s2-bg.jpg") right top / contain no-repeat;
  opacity: .22;
  filter: saturate(.8);
}

.ptt-dispatch-platform .container {
  position: relative;
  z-index: 1;
}

.ptt-dispatch-platform .section-head {
  max-width: 1040px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.ptt-dispatch-platform .section-head h2 {
  margin-top: 0;
  color: #111827;
  font-size: clamp(36px, 4vw, 56px);
}

.ptt-dispatch-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr) minmax(0, .9fr);
  gap: clamp(22px, 4.5vw, 68px);
  align-items: end;
  padding: 0 0 30px;
}

.ptt-dispatch-card {
  --float-y: 0px;
  position: relative;
  text-align: center;
  transform: translate3d(0, var(--float-y), 0);
  transition: transform .35s ease;
}

.ptt-dispatch-card figure {
  min-height: 270px;
  margin: 0 0 24px;
  display: grid;
  place-items: end center;
}

.ptt-dispatch-card img {
  max-width: 100%;
  max-height: 318px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(8, 24, 58, .14));
  animation: ptt-device-float 6s ease-in-out infinite;
}

.ptt-dispatch-card--1 {
  --float-y: 34px;
}

.ptt-dispatch-card--2 figure {
  min-height: 340px;
}

.ptt-dispatch-card--2 img {
  max-height: 390px;
  animation-delay: -1.6s;
}

.ptt-dispatch-card--3 {
  --float-y: 44px;
}

.ptt-dispatch-card--3 img {
  animation-delay: -3.2s;
}

.ptt-dispatch-card:hover {
  --float-y: 20px;
}

.ptt-dispatch-card--2:hover {
  --float-y: -10px;
}

@keyframes ptt-device-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.ptt-dispatch-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
  font-weight: 850;
}

.ptt-dispatch-card p {
  max-width: 390px;
  margin: 10px auto 0;
  color: #5b6c86;
  font-size: 14px;
  line-height: 1.55;
}

.product-use-cases--ptt200 {
  color: var(--ink);
  background: #fff;
}

.product-use-cases--ptt200 .kicker {
  color: #25bfd0;
}

.product-use-cases--ptt200 .section-head h2 {
  color: var(--ink);
}

.product-use-cases--ptt200 .use-case-card {
  overflow: hidden;
  border: 0;
  background: #eef4fb;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .075);
}

.product-use-cases--ptt200 .use-case-card figure {
  aspect-ratio: 439 / 536;
  background: #eef4fb;
}

.product-use-cases--ptt200 .use-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-use-cases--ptt200 .use-case-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 20px 20px;
  color: #fff;
  background: rgba(4, 12, 28, .42);
  text-align: center;
}

.product-package--ptt200 .section-head {
  margin-bottom: 36px;
}

.product-package--ptt200 .package-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.product-package--ptt200 .accessory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  margin: 28px auto 0;
}

.product-package--ptt200 .package-card {
  box-shadow: none;
  background: #f3f9fb;
  border-color: rgba(13, 31, 82, .05);
}

.product-package--ptt200 .package-card figure {
  background: #f3f9fb;
}

@media (prefers-reduced-motion: reduce) {
  .ptt-dispatch-card,
  .ptt-dispatch-card img,
  .ptt-feature-panel,
  .ptt-feature-panel img {
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .ptt-feature-panel {
    position: relative;
    top: auto;
  }
}

.package-card {
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 24, 70, .055);
}

.cta-band,
.site-footer {
  background: #020916;
}

@media (max-width: 1180px) {
  .product-hero .hero-content {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 520px;
  }

  .hero-metrics,
  .feature-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics .metric:nth-child(2n) {
    border-right: 0;
  }

  .hero-metrics .metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

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

  .media-tile figure {
    min-height: 250px;
  }

  .product-hero.product-detail--ptt200 .hero-content,
  .ptt-dispatch-grid {
    grid-template-columns: 1fr;
  }

  .product-hero.product-detail--ptt200 .hero-content {
    min-height: auto;
  }

  .product-hero.product-detail--ptt200 .hero-copy {
    max-width: 760px;
  }

  .product-hero.product-detail--ptt200 .device-stage,
  .product-hero.product-detail--ptt200 .device-plate {
    min-height: 500px;
  }

  .ptt-dispatch-grid {
    min-height: auto;
    padding-bottom: 0;
  }

  .ptt-dispatch-card,
  .ptt-dispatch-card--1,
  .ptt-dispatch-card--3 {
    --float-y: 0px;
  }

  .ptt-dispatch-card--2 figure {
    min-height: 280px;
  }

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

@media (max-width: 920px) {
  .product-hero {
    min-height: auto;
    padding: 112px 0 30px;
  }

  .product-hero .hero-content {
    gap: 28px;
    padding-bottom: 26px;
  }

  .product-hero .hero-copy h1 {
    font-size: clamp(34px, 9.2vw, 48px);
    line-height: 1;
  }

  .device-plate {
    min-height: 330px;
    padding: 48px 22px 28px;
  }

  .device-note {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 14px;
    max-width: none;
  }

  .hero-gallery {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .hero-gallery figure {
    height: 112px;
  }

  .detail-nav {
    top: 66px;
  }

  .product-hero.product-detail--ptt200 {
    padding-top: 118px;
  }

  .product-hero.product-detail--ptt200 .device-stage,
  .product-hero.product-detail--ptt200 .device-plate {
    min-height: 420px;
  }

  .ptt-legacy-overview,
  .ptt-dispatch-platform,
  .ptt-future-story {
    padding: 72px 0;
  }

  .ptt-dispatch-card figure,
  .ptt-dispatch-card--2 figure {
    min-height: auto;
  }

  .ptt-dispatch-platform::after {
    right: -340px;
    top: -180px;
    width: 780px;
  }

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

@media (max-width: 640px) {
  .product-hero .product-mark {
    max-width: 210px;
  }

  .hero-metrics,
  .feature-grid,
  .media-tile-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics .metric,
  .hero-metrics .metric:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .hero-metrics .metric:last-child {
    border-bottom: 0;
  }

  .device-plate {
    min-height: 300px;
  }

  .product-detail--ptt200 .hero-device,
  .hero-device {
    width: min(100%, 360px);
    max-height: 300px;
  }

  .media-tile > div {
    padding: 24px;
  }
}

/* Product detail middle story: capability matrix + experience band + engineering story. */
.product-story-system {
  padding: 108px 0 112px;
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fd 48%, #fff 100%);
  overflow: hidden;
}

.capability-matrix {
  display: grid;
  grid-template-columns: minmax(320px, .42fr) minmax(0, .58fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
}

.capability-copy {
  position: sticky;
  top: 132px;
  max-width: 470px;
  padding-top: 8px;
}

.capability-copy h2 {
  margin: 14px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

.capability-copy p {
  margin: 0;
  color: #5d6f8f;
  font-size: 18px;
  line-height: 1.72;
}

.capability-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.capability-summary span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: #17386f;
  background: #edf5ff;
  font-size: 13px;
  font-weight: 850;
}

.capability-summary i {
  width: 17px;
  height: 17px;
  color: #2379d7;
}

.capability-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 18px;
  align-items: stretch;
}

.capability-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 82, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .065);
}

.capability-feature::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: #25bfd0;
}

.capability-feature figure {
  margin: 0;
  display: grid;
  place-items: center;
  background: #f4f8fc;
  overflow: hidden;
}

.capability-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-feature > div {
  padding: 24px;
}

.capability-feature span {
  display: block;
  margin-bottom: 18px;
  color: rgba(12, 20, 48, .22);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.capability-feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 900;
}

.capability-feature p {
  margin: 12px 0 0;
  color: #5d6f8f;
  font-size: 15px;
  line-height: 1.62;
}

.capability-feature--primary {
  min-height: 560px;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
}

.capability-feature--primary figure {
  min-height: 340px;
}

.capability-feature-list {
  display: grid;
  gap: 18px;
}

.capability-feature-list .capability-feature {
  min-height: 174px;
  display: grid;
  grid-template-columns: minmax(126px, .43fr) minmax(0, .57fr);
  align-items: stretch;
}

.capability-feature-list .capability-feature figure {
  min-height: 174px;
}

.capability-feature-list .capability-feature > div {
  display: grid;
  align-content: center;
  padding: 20px 22px;
}

.capability-feature-list .capability-feature span {
  margin-bottom: 10px;
  font-size: 18px;
}

.capability-feature-list .capability-feature h3 {
  font-size: 19px;
}

.capability-feature-list .capability-feature p {
  margin-top: 8px;
  font-size: 14px;
}

.experience-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin-top: 108px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 8px;
  color: #fff;
  background: #050e27;
  box-shadow: 0 34px 86px rgba(5, 14, 39, .22);
  overflow: hidden;
}

.experience-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("network-bg-v1.png") center / cover no-repeat;
  opacity: .1;
  filter: saturate(.78);
}

.experience-band > * {
  position: relative;
  z-index: 1;
}

.experience-visual {
  display: grid;
  gap: 14px;
}

.experience-primary-image,
.experience-thumbs figure {
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
}

.experience-primary-image {
  min-height: 320px;
  padding: 28px;
}

.experience-primary-image img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

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

.experience-thumbs figure {
  min-height: 116px;
  padding: 10px;
  background: rgba(255, 255, 255, .9);
}

.experience-thumbs img {
  width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.experience-copy .kicker {
  color: #5ee5f1;
}

.experience-copy h2 {
  margin: 14px 0 18px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: .98;
  font-weight: 900;
}

.experience-copy > p {
  max-width: 640px;
  margin: 0;
  color: rgba(229, 241, 255, .72);
  font-size: 17px;
  line-height: 1.7;
}

.experience-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.experience-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.experience-list article > span {
  color: #5ee5f1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.experience-list h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.experience-list p {
  margin: 7px 0 0;
  color: rgba(229, 241, 255, .64);
  font-size: 14px;
  line-height: 1.55;
}

.legacy-android-system {
  margin-top: clamp(82px, 8vw, 128px);
  padding: clamp(62px, 5.4vw, 92px) 0 clamp(34px, 4vw, 64px);
  text-align: center;
  background: #fff url("product-detail/dt200a/DT200A_bgs6.jpg") center top / 100% auto no-repeat;
}

.legacy-android-copy {
  max-width: 1320px;
  margin: 0 auto;
}

.legacy-android-copy h2 {
  margin: 0;
  color: #02040b;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.05;
  font-weight: 900;
}

.legacy-android-copy p {
  margin: 22px auto 0;
  max-width: 1360px;
  color: #05070d;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.45;
}

.legacy-android-visual {
  width: min(100%, 1600px);
  margin: clamp(42px, 5vw, 72px) auto 0;
}

.legacy-android-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.engineering-story {
  padding: 112px 0 124px;
  background: #fff;
}

.engineering-story-grid {
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.engineering-media {
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.engineering-media figure {
  min-height: 250px;
  padding: 18px;
  border-radius: 8px;
  border-color: rgba(13, 31, 82, .08);
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 24, 70, .07);
}

.engineering-media figure.wide {
  min-height: 340px;
}

.engineering-media figure.wide img {
  min-height: 300px;
  object-fit: cover;
}

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

.engineering-copy h2 {
  margin: 14px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  font-weight: 900;
}

.engineering-copy > p {
  margin-bottom: 26px;
  color: #5d6f8f;
  font-size: 18px;
  line-height: 1.75;
}

.engineering-copy .story-list {
  border-top: 1px solid rgba(13, 31, 82, .09);
}

.engineering-copy .story-list li {
  min-height: 74px;
  align-items: center;
  padding: 18px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(13, 31, 82, .09);
  font-size: 17px;
  line-height: 1.45;
}

.engineering-copy .story-list i {
  width: 22px;
  height: 22px;
  color: #071846;
}

@media (max-width: 1180px) {
  .capability-matrix,
  .experience-band,
  .engineering-story-grid {
    grid-template-columns: 1fr;
  }

  .capability-copy {
    position: static;
    max-width: 760px;
  }

  .capability-board {
    grid-template-columns: 1fr;
  }

  .experience-band {
    padding: 36px;
  }
}

@media (max-width: 820px) {
  .product-story-system,
  .engineering-story {
    padding: 72px 0;
  }

  .capability-feature--primary {
    min-height: auto;
  }

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

  .capability-feature-list .capability-feature figure {
    min-height: 210px;
  }

  .experience-band {
    margin-top: 64px;
    padding: 28px;
  }

  .legacy-android-system {
    margin-top: 72px;
    padding-top: 56px;
  }

  .experience-thumbs {
    grid-template-columns: 1fr;
  }

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

  .engineering-media figure.wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .capability-copy h2,
  .experience-copy h2,
  .legacy-android-copy h2,
  .engineering-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .legacy-android-copy p {
    font-size: 16px;
  }

  .legacy-android-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .capability-feature > div {
    padding: 20px;
  }

  .experience-band {
    border-radius: 0;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }

  .product-hero.product-detail--ptt200 {
    padding: 104px 0 46px;
  }

  .product-hero.product-detail--ptt200 .hero-copy h1 span {
    font-size: clamp(44px, 16vw, 62px);
  }

  .product-hero.product-detail--ptt200 .hero-device {
    width: min(86%, 340px);
    max-height: 460px;
    transform: translateY(4px);
  }

  .ptt-play-link {
    width: 58px;
    height: 58px;
  }

  .ptt-play-link i {
    width: 26px;
    height: 26px;
  }

  .product-package--ptt200 .package-grid,
  .product-package--ptt200 .accessory-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* FAQ Support Center */
.faq-page {
  background: #f5f8fc;
  color: var(--ink);
}

.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 86px;
  background: #020916;
  color: #fff;
  isolation: isolate;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("network-bg-v1.png") center / cover no-repeat;
  opacity: .32;
  filter: saturate(.82) contrast(1.08);
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(2, 9, 22, .7);
}

.faq-hero--compact,
.faq-hero--single {
  padding-bottom: 72px;
}

.faq-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
}

.faq-hero-copy {
  max-width: 790px;
}

.faq-hero .kicker {
  color: #56dceb;
  letter-spacing: .18em;
}

.faq-hero h1 {
  max-width: 850px;
  margin: 14px 0 20px;
  color: #fff;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

.faq-hero--compact h1,
.faq-hero--single h1 {
  font-size: clamp(40px, 4.6vw, 66px);
}

.faq-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(232, 241, 255, .78);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.faq-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 790px);
  min-height: 68px;
  margin-top: 34px;
  padding: 8px 8px 8px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.faq-search i {
  width: 22px;
  height: 22px;
  color: #2379d7;
}

.faq-search input[type="search"] {
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  color: #091532;
  background: transparent;
  font: inherit;
  font-weight: 650;
}

.faq-search input[type="search"]::placeholder {
  color: #70809d;
}

.faq-search .btn {
  min-height: 50px;
  border-radius: 6px;
}

.faq-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-quick-links a,
.faq-article-tags a,
.faq-article-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  color: rgba(235, 246, 255, .9);
  background: rgba(255, 255, 255, .075);
  font-size: 13px;
  font-weight: 800;
}

.faq-quick-links i,
.faq-article-tags i {
  width: 16px;
  height: 16px;
}

.faq-quick-links a:hover,
.faq-article-tags a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.faq-hero-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(7, 22, 56, .78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.faq-hero-panel > span:not(.faq-topic-icon) {
  color: #56dceb;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.faq-hero-panel strong {
  color: #fff;
  font-size: clamp(52px, 5vw, 76px);
  line-height: .9;
}

.faq-hero-panel p {
  color: rgba(229, 241, 255, .72);
  font-size: 15px;
  line-height: 1.6;
}

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

.faq-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: rgba(235, 246, 255, .86);
  font-size: 13px;
  font-weight: 800;
}

.faq-hero-proof i {
  width: 18px;
  height: 18px;
  color: #56dceb;
}

.faq-section {
  padding: 86px 0;
  background: #f5f8fc;
}

.faq-section.white {
  background: #fff;
}

.faq-section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.faq-section-head.compact {
  margin-bottom: 26px;
}

.faq-section-head h2 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
}

.faq-section-head p {
  max-width: 680px;
  margin: 0;
  color: #5b6a86;
  font-size: 16px;
  line-height: 1.7;
}

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

.faq-topic-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(13, 31, 82, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 24, 70, .055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.faq-topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 121, 215, .24);
  box-shadow: 0 20px 46px rgba(7, 24, 70, .09);
}

.faq-topic-icon,
.faq-answer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #2379d7;
  background: #eef5ff;
  flex: 0 0 auto;
}

.faq-topic-icon i,
.faq-answer-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.faq-topic-body {
  min-width: 0;
}

.faq-topic-body strong,
.faq-answer-row strong,
.faq-index-row strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.faq-topic-body small,
.faq-answer-row small,
.faq-index-row small {
  display: block;
  margin-top: 8px;
  color: #5d6f8f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.faq-topic-count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  color: #1e62b4;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.faq-topic-arrow i {
  width: 18px;
  height: 18px;
  color: #2379d7;
}

.faq-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 34px;
  align-items: start;
}

.faq-answer-list,
.faq-index-list {
  border: 1px solid rgba(13, 31, 82, .08);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-answer-row,
.faq-index-row {
  margin: 0;
  border-bottom: 1px solid rgba(13, 31, 82, .08);
}

.faq-answer-row:last-child,
.faq-index-row:last-child {
  border-bottom: 0;
}

.faq-answer-row a,
.faq-index-row a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  background: #fff;
  transition: background .18s ease;
}

.faq-answer-row a:hover,
.faq-index-row a:hover {
  background: #f7faff;
}

.faq-answer-row > a > i,
.faq-index-row > a > i {
  width: 18px;
  height: 18px;
  color: #2379d7;
}

.faq-answer-list--large .faq-answer-row a {
  min-height: 116px;
}

.faq-support-card,
.faq-side-cta {
  padding: 30px;
  border-radius: 8px;
  background: #071846;
  color: #fff;
  box-shadow: 0 22px 54px rgba(7, 24, 70, .16);
}

.faq-support-card h2,
.faq-side-cta h2 {
  margin: 12px 0 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
}

.faq-support-card p,
.faq-side-cta p {
  color: rgba(229, 241, 255, .72);
  line-height: 1.65;
}

.faq-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faq-support-actions .btn {
  border-radius: 6px;
}

.faq-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-index-row:nth-child(odd) {
  border-right: 1px solid rgba(13, 31, 82, .08);
}

.faq-index-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.faq-index-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #2379d7;
  background: #eef5ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.faq-layout,
.faq-single-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-sidebar,
.faq-single-sidebar {
  position: sticky;
  top: 112px;
}

.faq-side-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(13, 31, 82, .1);
  border-radius: 8px;
  background: #fff;
}

.faq-side-search i {
  width: 18px;
  height: 18px;
  color: #2379d7;
}

.faq-side-search input {
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.faq-topic-nav {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(13, 31, 82, .08);
  border-radius: 8px;
  background: #fff;
}

.faq-topic-nav-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 0 10px;
  border-radius: 6px;
  color: #5d6f8f;
  font-size: 14px;
  font-weight: 800;
}

.faq-topic-nav-link i {
  width: 17px;
  height: 17px;
  color: #2379d7;
}

.faq-topic-nav-link small {
  color: #8190a8;
  font-size: 12px;
  font-weight: 850;
}

.faq-topic-nav-link:hover,
.faq-topic-nav-link.is-active {
  color: #071846;
  background: #eef5ff;
}

.faq-content-panel {
  min-width: 0;
}

.faq-empty-state {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 8px;
  color: #5d6f8f;
  background: #f5f8fc;
  font-weight: 750;
}

.faq-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.faq-single-layout {
  grid-template-columns: minmax(0, 760px) minmax(290px, 360px);
  justify-content: space-between;
}

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

.faq-answer-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 6px;
  color: #2379d7;
  background: #eef5ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-answer-label i {
  width: 18px;
  height: 18px;
}

.faq-article .entry-content {
  max-width: 760px;
  color: #24304a;
  font-size: 18px;
  line-height: 1.78;
}

.faq-article .entry-content > *:first-child {
  margin-top: 0;
}

.faq-article .entry-content a {
  color: #1f6fbf;
  font-weight: 800;
}

.faq-steps {
  margin-top: 42px;
}

.faq-steps h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.1;
}

.faq-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(13, 31, 82, .09);
}

.faq-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #2379d7;
  background: #eef5ff;
  font-weight: 900;
}

.faq-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.faq-step figure {
  margin: 16px 0;
  overflow: hidden;
  border-radius: 8px;
}

.faq-side-block {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(13, 31, 82, .08);
  border-radius: 8px;
  background: #fff;
}

.faq-side-block .kicker {
  margin-bottom: 6px;
}

.faq-side-block a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: #435270;
  font-size: 14px;
  font-weight: 800;
}

.faq-side-block a:hover {
  color: #071846;
}

.faq-side-block i {
  width: 17px;
  height: 17px;
  color: #2379d7;
}

.faq-side-cta {
  padding: 24px;
}

.faq-side-cta > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: #2379d7;
}

.faq-side-cta > span i {
  width: 22px;
  height: 22px;
}

@media (max-width: 1100px) {
  .faq-hero-inner,
  .faq-two-column,
  .faq-layout,
  .faq-single-layout {
    grid-template-columns: 1fr;
  }

  .faq-hero-panel {
    max-width: 560px;
  }

  .faq-sidebar,
  .faq-single-sidebar {
    position: static;
  }

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

@media (max-width: 820px) {
  .faq-hero {
    padding: 122px 0 62px;
  }

  .faq-search {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px 12px;
  }

  .faq-search .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .faq-topic-grid,
  .faq-index-list,
  .faq-topic-nav {
    grid-template-columns: 1fr;
  }

  .faq-topic-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .faq-topic-count {
    grid-column: 2;
    width: max-content;
  }

  .faq-topic-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .faq-index-row:nth-child(odd) {
    border-right: 0;
  }

  .faq-index-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(13, 31, 82, .08);
  }

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

@media (max-width: 560px) {
  .faq-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .faq-section {
    padding: 62px 0;
  }

  .faq-section-head h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .faq-topic-card,
  .faq-answer-row a,
  .faq-index-row a {
    padding: 18px;
  }

  .faq-answer-row a,
  .faq-index-row a {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .faq-answer-icon,
  .faq-index-meta {
    display: none;
  }

  .faq-support-card,
  .faq-side-cta,
  .faq-hero-panel {
    padding: 22px;
  }

  .faq-step {
    grid-template-columns: 1fr;
  }
}

/* Global WPForms presentation: one premium system for contact, support, RMA, orders, and leads. */
.form-experience {
  position: relative;
  overflow: hidden;
  background: #f6faff url("company-contact-light-bg.png") center top / cover no-repeat;
}

.form-experience::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(13, 31, 82, .08);
}

.form-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.form-note {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background: #071b48;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 60px rgba(7, 24, 70, .14);
}

.form-note::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: #31d4e8;
  border-radius: 999px 999px 0 0;
}

.form-note-kicker {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #75efff;
  background: rgba(117, 239, 255, .1);
  border: 1px solid rgba(117, 239, 255, .24);
  font-size: 12px;
  font-weight: 900;
}

.form-note-copy h2,
.form-note-copy h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.08;
}

.form-note-copy p {
  margin: 0;
  color: rgba(226, 237, 255, .78);
  font-size: 16px;
  line-height: 1.7;
}

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

.form-note-list span,
.form-note-mail {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 11px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(241, 247, 255, .92);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.form-note-list svg,
.form-note-mail svg {
  width: 18px;
  height: 18px;
  color: #35d2a4;
  flex: 0 0 auto;
}

.form-note-mail {
  color: #fff;
  background: rgba(36, 119, 216, .28);
}

.form-panel,
.contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(13, 31, 82, .1);
  box-shadow: 0 26px 70px rgba(7, 24, 70, .11);
}

.form-panel::before,
.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #2477d8;
}

.contact-legacy-form .contact-form-panel {
  padding: 42px;
}

.contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(13, 31, 82, .1);
}

.form-panel .wpforms-container,
.contact-form-panel .wpforms-container,
.form-panel div.wpforms-container-full,
.contact-form-panel div.wpforms-container-full {
  margin: 0 !important;
}

.form-panel .wpforms-form,
.contact-form-panel .wpforms-form {
  margin: 0;
}

.form-panel .wpforms-field-container,
.contact-form-panel .wpforms-field-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.contact-legacy-form .contact-form-panel .wpforms-field-container {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-panel .wpforms-field,
.contact-form-panel .wpforms-field {
  min-width: 0;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.form-panel .wpforms-field-textarea,
.form-panel .wpforms-field-html,
.form-panel .wpforms-field-file-upload,
.contact-form-panel .wpforms-field-textarea,
.contact-form-panel .wpforms-field-html,
.contact-form-panel .wpforms-field-file-upload {
  grid-column: 1 / -1;
}

.contact-legacy-form #wpforms-173-field_7-container {
  grid-column: 1 / -1;
}

.form-panel .wpforms-field-label,
.contact-form-panel .wpforms-field-label {
  display: block;
  margin: 0 0 8px !important;
  color: #0d1f52;
  font-size: 14px !important;
  line-height: 1.25;
  font-weight: 900 !important;
}

.form-panel .wpforms-required-label,
.contact-form-panel .wpforms-required-label {
  color: #1e77d3;
  font-weight: 900;
}

.form-panel .wpforms-field-description,
.form-panel .wpforms-field-sublabel,
.contact-form-panel .wpforms-field-description,
.contact-form-panel .wpforms-field-sublabel {
  margin-top: 6px;
  color: #64769b;
  font-size: 12px !important;
  line-height: 1.45;
  font-weight: 750 !important;
}

.form-panel .wpforms-field input[type="text"],
.form-panel .wpforms-field input[type="email"],
.form-panel .wpforms-field input[type="tel"],
.form-panel .wpforms-field input[type="url"],
.form-panel .wpforms-field input[type="number"],
.form-panel .wpforms-field input[type="date"],
.form-panel .wpforms-field select,
.form-panel .wpforms-field textarea,
.contact-form-panel .wpforms-field input[type="text"],
.contact-form-panel .wpforms-field input[type="email"],
.contact-form-panel .wpforms-field input[type="tel"],
.contact-form-panel .wpforms-field input[type="url"],
.contact-form-panel .wpforms-field input[type="number"],
.contact-form-panel .wpforms-field input[type="date"],
.contact-form-panel .wpforms-field select,
.contact-form-panel .wpforms-field textarea {
  width: 100% !important;
  max-width: none !important;
  min-height: 56px;
  padding: 14px 15px !important;
  border: 1px solid rgba(13, 31, 82, .14) !important;
  border-radius: 7px !important;
  color: #0d1f52 !important;
  background: #f8fbff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 1px 0 rgba(7, 24, 70, .03);
  font-size: 15px !important;
  line-height: 1.35 !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-panel .wpforms-field select,
.contact-form-panel .wpforms-field select {
  color: #233762 !important;
}

.form-panel .wpforms-field textarea,
.contact-form-panel .wpforms-field textarea {
  min-height: 154px;
  resize: vertical;
}

.form-panel .wpforms-field input::placeholder,
.form-panel .wpforms-field textarea::placeholder,
.contact-form-panel .wpforms-field input::placeholder,
.contact-form-panel .wpforms-field textarea::placeholder {
  color: #94a3bd;
}

.form-panel .wpforms-field input:focus,
.form-panel .wpforms-field select:focus,
.form-panel .wpforms-field textarea:focus,
.contact-form-panel .wpforms-field input:focus,
.contact-form-panel .wpforms-field select:focus,
.contact-form-panel .wpforms-field textarea:focus,
.form-panel .wpforms-field input:focus-visible,
.form-panel .wpforms-field select:focus-visible,
.form-panel .wpforms-field textarea:focus-visible,
.contact-form-panel .wpforms-field input:focus-visible,
.contact-form-panel .wpforms-field select:focus-visible,
.contact-form-panel .wpforms-field textarea:focus-visible {
  outline: none;
  border-color: #2477d8 !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(36, 119, 216, .14), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.form-panel .wpforms-error,
.form-panel label.wpforms-error,
.contact-form-panel .wpforms-error,
.contact-form-panel label.wpforms-error {
  margin-top: 7px !important;
  color: #b4232b !important;
  font-size: 13px !important;
  line-height: 1.35;
  font-weight: 850 !important;
}

.form-panel .wpforms-has-error input,
.form-panel .wpforms-has-error select,
.form-panel .wpforms-has-error textarea,
.contact-form-panel .wpforms-has-error input,
.contact-form-panel .wpforms-has-error select,
.contact-form-panel .wpforms-has-error textarea {
  border-color: rgba(180, 35, 43, .65) !important;
  background: #fff9f9 !important;
}

.form-panel .wpforms-submit-container,
.contact-form-panel .wpforms-submit-container {
  display: flex !important;
  justify-content: flex-end;
  margin: 28px 0 0 !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(13, 31, 82, .1);
}

.form-panel .wpforms-submit,
.form-panel button.wpforms-submit,
.contact-form-panel .wpforms-submit,
.contact-form-panel button.wpforms-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 0 28px !important;
  border: 1px solid #2477d8 !important;
  border-radius: 7px !important;
  color: #fff !important;
  background: #2477d8 !important;
  box-shadow: 0 16px 34px rgba(36, 119, 216, .24);
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-panel .wpforms-submit:hover,
.form-panel button.wpforms-submit:hover,
.contact-form-panel .wpforms-submit:hover,
.contact-form-panel button.wpforms-submit:hover {
  background: #1b65bf !important;
  box-shadow: 0 18px 40px rgba(36, 119, 216, .3);
  transform: translateY(-1px);
}

.form-panel .wpforms-confirmation-container-full,
.contact-form-panel .wpforms-confirmation-container-full {
  margin: 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(53, 210, 164, .32) !important;
  border-radius: 8px !important;
  color: #0d1f52 !important;
  background: #effbf6 !important;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .form-shell {
    grid-template-columns: 1fr;
  }

  .form-note {
    position: relative;
    top: auto;
  }

  .contact-legacy-form .contact-form-panel .wpforms-field-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .form-panel,
  .contact-form-panel,
  .contact-legacy-form .contact-form-panel,
  .form-note {
    padding: 22px;
  }

  .form-panel .wpforms-field-container,
  .contact-form-panel .wpforms-field-container,
  .contact-legacy-form .contact-form-panel .wpforms-field-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-legacy-form #wpforms-173-field_4-container,
  .contact-legacy-form #wpforms-173-field_5-container,
  .contact-legacy-form #wpforms-173-field_6-container,
  .contact-legacy-form #wpforms-173-field_7-container {
    grid-column: 1 / -1;
  }

  .form-panel .wpforms-submit-container,
  .contact-form-panel .wpforms-submit-container {
    justify-content: stretch;
  }

  .form-panel .wpforms-submit,
  .form-panel button.wpforms-submit,
  .contact-form-panel .wpforms-submit,
  .contact-form-panel button.wpforms-submit {
    width: 100%;
  }
}

/* PTT200 flagship redesign: restore the original page's image-led confidence inside the new site system. */
.product-hero.product-detail--ptt200 {
  min-height: 880px;
  padding: 150px 0 58px;
  color: #0d1f52;
  background: #f7fbff url("product-detail/ptt200/PTT200_s1-bg.jpg") center bottom / cover no-repeat;
}

.product-hero.product-detail--ptt200 .hero-content {
  grid-template-columns: minmax(480px, .86fr) minmax(520px, 1.14fr);
  min-height: 640px;
  align-items: center;
}

.product-hero.product-detail--ptt200 .hero-copy {
  max-width: 710px;
  padding-top: 20px;
}

.product-hero.product-detail--ptt200 .product-mark {
  max-width: 360px;
  margin: 0 0 22px;
}

.product-hero.product-detail--ptt200 .product-mark img {
  max-width: 336px;
  max-height: 52px;
}

.product-hero.product-detail--ptt200 .hero-copy h1 {
  max-width: 720px;
  margin: 8px 0 18px;
  color: #0b1530;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.02;
}

.product-hero.product-detail--ptt200 .hero-copy h1 span {
  margin-bottom: 8px;
  color: #0d1f52;
  font-size: clamp(78px, 8.4vw, 142px);
  line-height: .82;
}

.product-hero.product-detail--ptt200 .hero-copy p {
  max-width: 650px;
  color: #50617e;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.62;
}

.product-hero.product-detail--ptt200 .hero-actions {
  margin-top: 30px;
}

.product-hero.product-detail--ptt200 .proof-pill {
  min-height: 42px;
  background: rgba(255, 255, 255, .82);
  border-color: rgba(13, 31, 82, .08);
}

.ptt-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.ptt-hero-facts div {
  min-width: 0;
  padding: 14px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(13, 31, 82, .08);
  box-shadow: 0 16px 34px rgba(7, 24, 70, .07);
}

.ptt-hero-facts strong,
.ptt-hero-facts span {
  display: block;
}

.ptt-hero-facts strong {
  color: #2477d8;
  font-size: clamp(24px, 2vw, 34px);
  line-height: .95;
  font-weight: 950;
}

.ptt-hero-facts span {
  margin-top: 6px;
  color: #5d6e88;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.product-hero.product-detail--ptt200 .device-stage,
.product-hero.product-detail--ptt200 .device-plate {
  min-height: 650px;
}

.product-hero.product-detail--ptt200 .hero-device {
  width: min(620px, 86%);
  max-height: 780px;
  transform: translate(18px, 18px);
  filter: drop-shadow(0 42px 32px rgba(5, 18, 42, .22));
}

.product-hero.product-detail--ptt200::after {
  height: 40px;
  background: #fff;
}

.ptt-legacy-overview {
  padding: clamp(84px, 6.5vw, 126px) 0;
  background: #fff;
}

.ptt-legacy-overview::before {
  background: url("product-detail/ptt200/PTT200_s2-bg.jpg") right top / auto 100% no-repeat;
  opacity: .42;
}

.ptt-legacy-overview::after {
  display: none;
}

.ptt-legacy-overview .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .62fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.ptt-video-card {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  margin: 0;
}

.ptt-video-copy {
  grid-column: 2;
  grid-row: 1;
  max-width: 600px;
}

.ptt-video-copy h2 {
  color: #0b1530;
  font-size: clamp(42px, 4.8vw, 72px);
}

.ptt-video-copy p {
  margin-top: 22px;
  color: #52637f;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.78;
}

.ptt-video-card figure {
  aspect-ratio: 1098 / 615;
  border-radius: 8px;
  box-shadow: 0 34px 86px rgba(7, 24, 70, .16);
}

.ptt-video-card img {
  filter: saturate(1.02) contrast(1.02);
}

.ptt-overview-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.ptt-overview-facts span {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 8px;
  color: #60708c;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(13, 31, 82, .08);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
}

.ptt-overview-facts strong {
  color: #2477d8;
  font-size: 20px;
  font-weight: 950;
}

.ptt-dispatch-platform {
  padding: clamp(88px, 7vw, 132px) 0 clamp(96px, 7vw, 144px);
  background: #f4fbff;
}

.ptt-dispatch-platform::before {
  left: 0;
  right: 0;
  bottom: 7%;
  height: min(30vw, 360px);
  background-size: min(1500px, 100%) auto;
  opacity: .95;
}

.ptt-dispatch-platform::after {
  right: -250px;
  top: -180px;
  opacity: .14;
}

.ptt-dispatch-platform .section-head {
  max-width: 1080px;
}

.ptt-dispatch-platform .section-head h2 {
  color: #0b1530;
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.04;
}

.ptt-dispatch-platform .section-head p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #65738b;
}

.ptt-dispatch-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.16fr) minmax(0, .92fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding: 20px 0 10px;
}

.ptt-dispatch-card {
  padding: 0 10px;
}

.ptt-dispatch-card figure {
  min-height: 320px;
  margin-bottom: 28px;
}

.ptt-dispatch-card img {
  max-height: 350px;
  filter: drop-shadow(0 26px 24px rgba(8, 24, 58, .16));
}

.ptt-dispatch-card--2 figure {
  min-height: 390px;
}

.ptt-dispatch-card--2 img {
  max-height: 450px;
}

.ptt-dispatch-card h3 {
  color: #0d1f52;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 950;
}

.ptt-dispatch-card p {
  color: #60708c;
  font-size: 15px;
}

.product-use-cases--ptt200 {
  padding-top: clamp(94px, 7vw, 136px);
  background: #fff;
}

.product-use-cases--ptt200 .section-head {
  max-width: 1040px;
}

.product-use-cases--ptt200 .section-head h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.product-use-cases--ptt200 .use-case-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.product-use-cases--ptt200 .use-case-card {
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 24, 70, .09);
}

.product-use-cases--ptt200 .use-case-card figure {
  aspect-ratio: 439 / 536;
}

.product-package--ptt200 {
  background: #f8fbff;
}

.ptt-legacy-overview,
.ptt-dispatch-platform,
.ptt-future-story,
.product-use-cases--ptt200 {
  scroll-margin-top: 152px;
}

.ptt-overview-facts span {
  grid-template-columns: minmax(118px, auto) 1fr;
}

.ptt-dispatch-platform {
  padding-top: clamp(74px, 5.8vw, 112px);
}

.ptt-dispatch-platform .section-head {
  margin-bottom: clamp(18px, 2.8vw, 40px);
}

.ptt-dispatch-grid {
  padding-top: 0;
}

@media (max-width: 1180px) {
  .product-hero.product-detail--ptt200 .hero-content,
  .ptt-legacy-overview .container,
  .ptt-dispatch-grid {
    grid-template-columns: 1fr;
  }

  .product-hero.product-detail--ptt200 .hero-content {
    min-height: auto;
  }

  .product-hero.product-detail--ptt200 .hero-copy {
    max-width: 820px;
  }

  .ptt-video-copy,
  .ptt-video-card {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .ptt-video-card {
    order: 2;
  }

  .product-use-cases--ptt200 .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-hero.product-detail--ptt200 {
    padding-top: 116px;
    min-height: auto;
  }

  .product-hero.product-detail--ptt200 .hero-copy h1 span {
    font-size: clamp(58px, 17vw, 82px);
  }

  .product-hero.product-detail--ptt200 .device-stage,
  .product-hero.product-detail--ptt200 .device-plate {
    min-height: 380px;
  }

  .product-hero.product-detail--ptt200 .hero-device {
    width: min(100%, 390px);
    max-height: 420px;
    transform: translateY(10px);
  }

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

  .ptt-legacy-overview,
  .ptt-dispatch-platform,
  .ptt-future-story,
  .product-use-cases--ptt200 {
    padding: 72px 0;
  }

  .ptt-video-copy h2,
  .ptt-dispatch-platform .section-head h2,
  .ptt-future-story .section-head h2,
  .product-use-cases--ptt200 .section-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .ptt-overview-facts span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ptt-dispatch-card,
  .ptt-dispatch-card--1,
  .ptt-dispatch-card--3 {
    --float-y: 0px;
  }

  .ptt-dispatch-card figure,
  .ptt-dispatch-card--2 figure {
    min-height: 230px;
  }

  .ptt-dispatch-card img,
  .ptt-dispatch-card--2 img {
    max-height: 270px;
  }

  .product-use-cases--ptt200 .use-case-grid,
  .product-package--ptt200 .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .ptt-hero-facts,
  .product-use-cases--ptt200 .use-case-grid,
  .product-package--ptt200 .package-grid,
  .product-package--ptt200 .accessory-grid {
    grid-template-columns: 1fr;
  }
}

/* PTT200 dispatch platform legacy restore: match the original image-led section. */
section.white.ptt-dispatch-platform,
.ptt-dispatch-platform {
  overflow: hidden;
  padding: clamp(72px, 4.6875vw, 90px) 0 clamp(96px, 6.25vw, 120px);
  background:
    #f4fbff
    url("product-detail/ptt200/PTT200_s3-bg2.jpg")
    center top / cover no-repeat;
}

.ptt-dispatch-platform::before,
.ptt-dispatch-platform::after {
  display: none;
}

.ptt-dispatch-platform .container {
  max-width: 1400px;
}

.ptt-dispatch-platform .section-head {
  max-width: none;
  margin-bottom: 0;
}

.ptt-dispatch-platform .section-head h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(36px, 2.7vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 850;
}

.ptt-dispatch-platform .section-head p {
  display: none;
}

.ptt-dispatch-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  margin-top: clamp(58px, 5.2vw, 100px);
  padding: 0;
}

.ptt-dispatch-card {
  flex: 0 0 auto;
  padding: 0;
  text-align: center;
  transform: none;
  transition: none;
}

.ptt-dispatch-card,
.ptt-dispatch-card--1,
.ptt-dispatch-card--3 {
  --float-y: 0px;
}

.ptt-dispatch-card--1 {
  width: 26%;
  padding-top: 70px;
}

.ptt-dispatch-card--2 {
  width: 33.333333%;
}

.ptt-dispatch-card--3 {
  width: 20%;
  padding-top: 80px;
}

.ptt-dispatch-card:hover,
.ptt-dispatch-card--2:hover {
  transform: none;
}

.ptt-dispatch-card figure,
.ptt-dispatch-card--2 figure {
  min-height: 0;
  margin: 0;
  display: block;
}

.ptt-dispatch-card img,
.ptt-dispatch-card--2 img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: none;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: none;
  animation: none;
}

.ptt-dispatch-card h3 {
  max-width: 460px;
  margin: 30px auto 0;
  color: #0d1f52;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.2;
  font-weight: 800;
}

.ptt-dispatch-card--2 h3 {
  font-size: clamp(20px, 1.4vw, 28px);
}

.ptt-dispatch-card p {
  max-width: 450px;
  margin: 15px auto 0;
  color: #707070;
  font-size: clamp(14px, .85vw, 16px);
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .ptt-dispatch-platform .container {
    max-width: min(100%, 980px);
  }

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

  .ptt-dispatch-card--1,
  .ptt-dispatch-card--2,
  .ptt-dispatch-card--3 {
    width: auto;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .ptt-dispatch-platform {
    padding: 70px 0 78px;
    background-position: center top;
  }

  .ptt-dispatch-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }

  .ptt-dispatch-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .ptt-dispatch-card h3,
  .ptt-dispatch-card--2 h3 {
    margin-top: 18px;
    font-size: 20px;
  }
}

/* PTT200 feature stack legacy restore: image-led cards with scroll folding. */
.ptt-future-story {
  overflow: visible;
  padding: clamp(76px, 4.6875vw, 96px) 0 clamp(96px, 4.6875vw, 120px);
  background: #b4bdc2;
  isolation: isolate;
}

.ptt-future-story::before {
  display: none;
}

.ptt-future-story .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.ptt-future-story .section-head {
  width: min(90%, 1400px);
  max-width: 1400px;
  margin: 0 auto clamp(56px, 5vw, 78px);
}

.ptt-future-story .section-head .kicker {
  color: #4f5f6a;
}

.ptt-future-story .section-head h2 {
  color: #0b1530;
  font-size: clamp(42px, 5vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ptt-feature-stack {
  display: block;
  width: min(90%, 1400px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.ptt-feature-panel,
.ptt-feature-panel.reveal,
.ptt-feature-panel.reveal.visible {
  position: relative;
  display: block;
  height: clamp(480px, 34vw, 552px);
  min-height: 0;
  margin: 0 0 40px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
  filter: none;
  will-change: auto;
  perspective: 300px;
}

.ptt-feature-box {
  position: relative;
  top: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  transform-origin: center top;
  filter: brightness(1);
  will-change: transform, filter, top;
}

.ptt-feature-panel:last-child {
  margin-bottom: 0;
}

.ptt-feature-panel figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.ptt-feature-panel figure::after,
.ptt-feature-panel--light figure::after,
.ptt-feature-panel--dark figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 10, 24, .58) 0%, rgba(3, 10, 24, .32) 42%, rgba(3, 10, 24, .08) 100%);
}

.ptt-feature-panel--dark figure::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .72) 0%, rgba(255, 255, 255, .34) 38%, rgba(255, 255, 255, .08) 100%);
}

.ptt-feature-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.ptt-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: 860px;
  padding: clamp(46px, 3.5vw, 60px) clamp(42px, 3.5vw, 60px) clamp(28px, 2vw, 30px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
}

.ptt-feature-panel--dark .ptt-feature-content {
  color: #0d1f52;
}

.ptt-feature-content span {
  display: block;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: transparent;
  background: transparent;
  font-size: clamp(78px, 6vw, 160px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: 0;
  -webkit-text-stroke: 1px currentColor;
}

.ptt-feature-panel--dark .ptt-feature-content span {
  color: transparent;
  -webkit-text-stroke-color: #2477d8;
}

.ptt-feature-panel--light .ptt-feature-content span {
  -webkit-text-stroke-color: rgba(255, 255, 255, .82);
}

.ptt-feature-content h3 {
  max-width: 760px;
  margin: 0;
  color: currentColor;
  font-size: clamp(32px, 3.05vw, 48px);
  line-height: 1.15;
  font-weight: 900;
}

.ptt-feature-panel:nth-child(n + 3) .ptt-feature-content h3 {
  font-size: clamp(28px, 2.45vw, 42px);
}

.ptt-feature-content p {
  max-width: 760px;
  margin: 18px 0 0;
  color: currentColor;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.62;
  font-weight: 750;
  white-space: pre-line;
}

@media (max-width: 991px) {
  .ptt-future-story {
    overflow: hidden;
    padding: 86px 0;
  }

  .ptt-future-story .section-head,
  .ptt-feature-stack {
    width: min(92%, 760px);
  }

  .ptt-feature-panel,
  .ptt-feature-panel.reveal,
  .ptt-feature-panel.reveal.visible {
    position: relative;
    top: auto;
    height: 420px;
    margin-bottom: 28px;
    transform: none;
    filter: none;
  }

  .ptt-feature-box {
    transform: none;
    filter: none;
  }

  .ptt-feature-content {
    padding: 34px 28px;
  }
}

@media (max-width: 600px) {
  .ptt-future-story .section-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .ptt-feature-panel,
  .ptt-feature-panel.reveal,
  .ptt-feature-panel.reveal.visible {
    height: 370px;
  }

  .ptt-feature-box {
    border-radius: 8px;
  }

  .ptt-feature-content {
    padding: 28px 18px;
  }

  .ptt-feature-content span {
    font-size: clamp(56px, 18vw, 86px);
  }

  .ptt-feature-content h3,
  .ptt-feature-panel:nth-child(n + 3) .ptt-feature-content h3 {
    font-size: 24px;
  }

  .ptt-feature-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* PTT200 specs and accessories: restore the original information architecture with cleaner styling. */
.ptt-key-specs {
  background: #f7fbff;
  padding: clamp(78px, 7vw, 128px) 0 clamp(70px, 6vw, 110px);
}

.ptt-specs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(36px, 4vw, 64px);
}

.ptt-specs-head h2 {
  max-width: 960px;
  margin: 8px 0 0;
  color: #020713;
  font-size: clamp(42px, 4.2vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.ptt-spec-download {
  flex: 0 0 auto;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
}

.ptt-spec-download i {
  width: 20px;
  height: 20px;
}

.ptt-specs-layout {
  display: grid;
  grid-template-columns: minmax(320px, .58fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 110px);
  align-items: center;
}

.ptt-spec-device {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 560px;
}

.ptt-spec-device img {
  width: min(100%, 430px);
  max-height: 690px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(7, 24, 70, .08));
}

.ptt-spec-list {
  display: grid;
  gap: 0;
  min-width: 0;
}

.ptt-spec-row {
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 16px clamp(18px, 2vw, 34px);
  border-bottom: 1px solid rgba(13, 31, 82, .09);
  background: rgba(255, 255, 255, .72);
}

.ptt-spec-row:nth-child(odd) {
  background: #fff;
}

.ptt-spec-row span {
  color: #1687f5;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 850;
  line-height: 1.25;
}

.ptt-spec-row span::after {
  content: ":";
}

.ptt-spec-row strong {
  min-width: 0;
  color: #1f2633;
  font-size: clamp(16px, 1.12vw, 21px);
  font-weight: 650;
  line-height: 1.35;
}

.product-package--ptt200 {
  padding: clamp(76px, 7vw, 118px) 0;
  background: #fff;
}

.product-package--ptt200 > .container > .section-head {
  display: none;
}

.ptt-accessories-block {
  max-width: 1440px;
  margin: 0 auto;
}

.ptt-accessories-head {
  margin-bottom: clamp(28px, 3vw, 52px);
}

.ptt-accessories-head h3 {
  margin: 0;
  color: #020713;
  font-size: clamp(38px, 4.2vw, 70px);
  line-height: .98;
  letter-spacing: 0;
}

.ptt-accessories-head--optional {
  margin-top: clamp(74px, 7vw, 112px);
}

.ptt-accessories-grid {
  display: grid;
  gap: clamp(28px, 3.8vw, 58px);
}

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

.ptt-accessories-grid--optional {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.ptt-accessory-card {
  display: grid;
  align-content: stretch;
  min-height: clamp(300px, 26vw, 382px);
  overflow: hidden;
  border: 1px solid rgba(13, 31, 82, .05);
  border-radius: 8px;
  background: #f4f9fc;
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ptt-accessory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 119, 216, .14);
  box-shadow: 0 20px 44px rgba(7, 24, 70, .08);
}

.ptt-accessory-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 19vw, 296px);
  margin: 0;
  padding: clamp(24px, 3vw, 44px);
}

.ptt-accessory-card img {
  max-width: 84%;
  max-height: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ptt-accessory-card h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  margin: 0;
  padding: 0 24px 24px;
  color: #020713;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 650;
  line-height: 1.24;
  text-align: center;
}

@media (max-width: 1180px) {
  .ptt-specs-layout {
    grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
    gap: 44px;
  }

  .ptt-spec-row {
    grid-template-columns: minmax(180px, .44fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .ptt-specs-head,
  .ptt-specs-layout {
    grid-template-columns: 1fr;
  }

  .ptt-specs-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ptt-spec-device {
    min-height: auto;
  }

  .ptt-spec-device img {
    width: min(78vw, 360px);
  }

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

@media (max-width: 620px) {
  .ptt-spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ptt-accessories-grid--standard,
  .ptt-accessories-grid--optional {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .ptt-accessory-card {
    min-height: 280px;
  }
}

/* PTT200 package section: turn the flat accessory grid into a more intentional product kit layout. */
.product-package--ptt200 {
  background: #f7fbff;
}

.product-package--ptt200 .section-head {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.ptt-package-layout {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.ptt-package-primary,
.ptt-package-panel,
.ptt-accessory-strip {
  border: 1px solid rgba(13, 31, 82, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(7, 24, 70, .08);
}

.ptt-package-primary {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(22px, 2.1vw, 34px);
}

.ptt-package-primary::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(37, 191, 208, .16);
  border-radius: 8px;
  pointer-events: none;
}

.ptt-package-primary-copy {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.package-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #2477d8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.package-eyebrow i {
  width: 16px;
  height: 16px;
  color: #27c9d6;
}

.ptt-package-primary h3,
.ptt-accessory-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ptt-package-primary p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.58;
}

.ptt-package-primary figure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin: 20px 0 0;
  padding: 26px;
  background: #f3f8fc;
  border-radius: 8px;
}

.ptt-package-primary img {
  width: min(72%, 260px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(7, 24, 70, .2));
}

.ptt-package-panel {
  padding: clamp(18px, 1.8vw, 28px);
}

.ptt-package-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13, 31, 82, .08);
}

.ptt-package-panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.ptt-package-panel-head i {
  width: 20px;
  height: 20px;
  color: #27c9d6;
}

.ptt-package-panel-head strong {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(36, 119, 216, .16);
  border-radius: 999px;
  color: #2477d8;
  background: #f4f8ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-package--ptt200 .package-grid.ptt-package-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-package--ptt200 .package-card.package-card--compact,
.product-package--ptt200 .ptt-accessory-strip .package-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  min-height: 128px;
  overflow: hidden;
  padding: 14px;
  text-align: left;
  background: #f8fbfe;
  border-color: rgba(13, 31, 82, .07);
  box-shadow: none;
}

.product-package--ptt200 .package-card.package-card--compact:hover,
.product-package--ptt200 .ptt-accessory-strip .package-card:hover {
  border-color: rgba(36, 119, 216, .2);
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 24, 70, .08);
  transform: translateY(-2px);
}

.product-package--ptt200 .package-card.package-card--compact figure,
.product-package--ptt200 .ptt-accessory-strip .package-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(13, 31, 82, .06);
  border-radius: 8px;
}

.product-package--ptt200 .package-card.package-card--compact img,
.product-package--ptt200 .ptt-accessory-strip .package-card img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.product-package--ptt200 .package-card.package-card--compact h3,
.product-package--ptt200 .ptt-accessory-strip .package-card h3 {
  min-width: 0;
  padding: 0 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.package-index {
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(36, 119, 216, .26);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.ptt-accessory-strip {
  display: grid;
  grid-template-columns: minmax(240px, .44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(20px, 2vw, 30px);
}

.ptt-accessory-strip h3 {
  max-width: 420px;
  font-size: clamp(24px, 1.8vw, 34px);
}

.product-package--ptt200 .ptt-accessory-strip .accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: 0;
}

@media (max-width: 1180px) {
  .ptt-package-layout,
  .ptt-accessory-strip {
    grid-template-columns: 1fr;
  }

  .ptt-package-primary {
    min-height: auto;
  }

  .ptt-package-primary figure {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .product-package--ptt200 .section-head h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .product-package--ptt200 .package-grid.ptt-package-mini-grid,
  .product-package--ptt200 .ptt-accessory-strip .accessory-grid {
    grid-template-columns: 1fr;
  }

  .ptt-package-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-package--ptt200 .package-card.package-card--compact,
  .product-package--ptt200 .ptt-accessory-strip .package-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .ptt-package-primary,
  .ptt-package-panel,
  .ptt-accessory-strip {
    padding: 16px;
  }

  .ptt-package-primary::before {
    inset: 12px;
  }

  .ptt-package-primary figure {
    min-height: 230px;
    padding: 18px;
  }
}

/* Final PTT200 accessory override: keep the old site structure, only refine the styling. */
.product-package--ptt200 {
  padding: clamp(76px, 7vw, 118px) 0;
  background: #fff;
}

.product-package--ptt200 > .container > .section-head {
  display: none;
}

.product-package--ptt200 .ptt-accessories-grid {
  display: grid;
  gap: clamp(28px, 3.8vw, 58px);
}

.product-package--ptt200 .ptt-accessories-grid--standard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-package--ptt200 .ptt-accessories-grid--optional {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

@media (max-width: 900px) {
  .product-package--ptt200 .ptt-accessories-grid--standard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-package--ptt200 .ptt-accessories-grid--standard,
  .product-package--ptt200 .ptt-accessories-grid--optional {
    grid-template-columns: 1fr;
    max-width: none;
  }
}
