:root {
  --ink: #111820;
  --muted: #5e6973;
  --line: #d9e1e7;
  --paper: #f5f7f9;
  --white: #ffffff;
  --blue: #0f6fa8;
  --cyan: #00a7ba;
  --navy: #17222d;
  --green: #148268;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(245, 247, 249, 0.94);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-wordmark {
  width: 150px;
  height: auto;
  object-fit: contain;
  background: var(--white);
  mix-blend-mode: multiply;
  filter: none;
}

.nav {
  display: flex;
  gap: 34px;
  color: #6b7782;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 24px 0 22px;
  border-radius: 0;
  white-space: nowrap;
  word-break: keep-all;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background: #2b87ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav a:hover {
  color: var(--ink);
  background: transparent;
}

.nav a.is-active {
  color: var(--ink);
  background: transparent;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.site-header .nav:last-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.lang-toggle {
  width: 48px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 38px;
  justify-items: center;
  align-items: start;
  min-height: 760px;
  padding: 78px 5vw 66px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(245, 247, 249, 0.98), rgba(245, 247, 249, 0.82)),
    repeating-linear-gradient(90deg, rgba(15, 111, 168, 0.08) 0 1px, transparent 1px 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.no-break {
  white-space: nowrap;
  overflow-wrap: normal;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: none;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  white-space: nowrap;
}

html[lang="en"] .hero h1 {
  font-size: clamp(36px, 3.6vw, 58px);
  white-space: normal;
}

.hero-copy {
  width: 100%;
}

.mobile-break {
  display: none;
}

.desktop-gap {
  display: inline;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
}

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

.button-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

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

.hero-product {
  width: min(980px, 100%);
  padding: 22px 28px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(22, 37, 49, 0.13);
}

.hero-product img {
  width: 100%;
  aspect-ratio: 2.45;
  object-fit: contain;
}

.hero-product div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-product span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-product strong {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  min-height: 132px;
  padding: 30px 5vw;
  border-right: 1px solid var(--line);
}

.proof-strip strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 96px 5vw;
}

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

#technology .section-head {
  max-width: 1180px;
}

#technology .section-head p:not(.eyebrow) {
  max-width: 1040px;
}

.section-head.compact {
  max-width: 680px;
}

.section-head p:not(.eyebrow),
.downloads p {
  color: var(--muted);
  font-size: 18px;
}

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

.company-section .section-head {
  max-width: none;
}

.company-section .section-head p:not(.eyebrow) {
  max-width: none;
}

#products .section-head {
  max-width: none;
}

#products .section-head p:not(.eyebrow) {
  max-width: none;
}

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

.company-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 111, 168, 0.05), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.company-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--blue);
  border: 1px solid rgba(15, 111, 168, 0.22);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.company-grid h3 {
  font-size: 22px;
}

.company-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 26px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card.featured {
  border-color: rgba(15, 111, 168, 0.34);
}

.product-image {
  display: grid;
  min-height: 210px;
  place-items: center;
  background: #eef3f6;
  border-radius: 6px;
}

.product-image img {
  max-height: 245px;
  object-fit: contain;
}

.product-body {
  padding: 10px;
}

.product-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900;
}

.product-body h3 b {
  color: var(--blue);
}

.product-body p {
  color: var(--muted);
  font-size: 17px;
}

.product-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.product-body li {
  padding: 8px 10px;
  color: var(--navy);
  background: #edf6f5;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.text-link:hover {
  color: var(--cyan);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.compare {
  padding-top: 0;
}

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

.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  color: var(--navy);
  background: #eef3f6;
  font-size: 14px;
  text-transform: uppercase;
}

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

.dark {
  color: var(--white);
  background: var(--navy);
}

.dark .eyebrow {
  color: #79dbc8;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tech-grid div {
  position: relative;
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.tech-visual {
  position: relative;
  display: block;
  width: 70px;
  height: 54px;
  margin-bottom: 24px;
}

.tech-visual::before,
.tech-visual::after,
.tech-visual i {
  position: absolute;
  content: "";
  display: block;
}

.tech-visual::before {
  inset: 9px 12px;
  border: 1px solid rgba(121, 219, 200, 0.52);
  border-radius: 8px;
  background: rgba(121, 219, 200, 0.08);
}

.tech-visual.rf::after {
  left: 22px;
  top: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid #79dbc8;
  border-radius: 50%;
}

.tech-visual.rf i {
  left: 18px;
  top: 14px;
  border: 1px solid rgba(121, 219, 200, 0.58);
  border-radius: 50%;
}

.tech-visual.rf i:nth-child(1) {
  width: 28px;
  height: 28px;
}

.tech-visual.rf i:nth-child(2) {
  left: 11px;
  top: 7px;
  width: 42px;
  height: 42px;
}

.tech-visual.rf i:nth-child(3) {
  left: 4px;
  top: 0;
  width: 56px;
  height: 56px;
}

.tech-visual.firmware::before {
  inset: 8px 11px;
  border-radius: 6px;
}

.tech-visual.firmware::after {
  left: 24px;
  top: 20px;
  width: 22px;
  height: 14px;
  border-top: 2px solid #79dbc8;
  border-bottom: 2px solid #79dbc8;
}

.tech-visual.firmware i {
  width: 8px;
  height: 2px;
  background: rgba(121, 219, 200, 0.82);
}

.tech-visual.firmware i:nth-child(1) { left: 4px; top: 18px; }
.tech-visual.firmware i:nth-child(2) { left: 4px; top: 30px; }
.tech-visual.firmware i:nth-child(3) { right: 4px; top: 18px; }
.tech-visual.firmware i:nth-child(4) { right: 4px; top: 30px; }

.tech-visual.manufacturing::before {
  inset: 23px 4px 12px;
  border-radius: 4px;
}

.tech-visual.manufacturing::after {
  left: 16px;
  top: 10px;
  width: 38px;
  height: 18px;
  border-left: 2px solid #79dbc8;
  border-bottom: 2px solid #79dbc8;
  transform: skewX(-24deg);
}

.tech-visual.manufacturing i {
  bottom: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #79dbc8;
}

.tech-visual.manufacturing i:nth-child(1) { left: 14px; }
.tech-visual.manufacturing i:nth-child(2) { left: 31px; }
.tech-visual.manufacturing i:nth-child(3) { left: 48px; }

.tech-visual.interface::before {
  left: 6px;
  right: auto;
  width: 22px;
}

.tech-visual.interface::after {
  right: 6px;
  top: 18px;
  width: 22px;
  height: 18px;
  border: 1px solid rgba(121, 219, 200, 0.52);
  border-radius: 6px;
  background: rgba(121, 219, 200, 0.08);
}

.tech-visual.interface i {
  left: 31px;
  width: 16px;
  height: 1px;
  background: #79dbc8;
}

.tech-visual.interface i:nth-child(1) { top: 19px; }
.tech-visual.interface i:nth-child(2) { top: 27px; }
.tech-visual.interface i:nth-child(3) { top: 35px; }

.tech-visual.tuning::before {
  inset: 26px 5px 23px;
  border: 0;
  background: rgba(121, 219, 200, 0.55);
}

.tech-visual.tuning::after {
  left: 14px;
  top: 12px;
  width: 44px;
  height: 30px;
  border: 2px solid rgba(121, 219, 200, 0.6);
  border-top: 0;
  border-right: 0;
  transform: skewX(-16deg);
}

.tech-visual.tuning i {
  width: 6px;
  height: 20px;
  bottom: 15px;
  border-radius: 4px;
  background: #79dbc8;
}

.tech-visual.tuning i:nth-child(1) { left: 18px; height: 12px; }
.tech-visual.tuning i:nth-child(2) { left: 32px; height: 22px; }
.tech-visual.tuning i:nth-child(3) { left: 46px; height: 30px; }

.tech-visual.sdk::before {
  inset: 10px 7px;
  border-radius: 6px;
}

.tech-visual.sdk::after {
  left: 19px;
  top: 23px;
  width: 32px;
  height: 2px;
  background: #79dbc8;
  box-shadow: 0 8px 0 rgba(121, 219, 200, 0.5), 0 -8px 0 rgba(121, 219, 200, 0.5);
}

.tech-visual.sdk i {
  top: 21px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #79dbc8;
  border-left: 2px solid #79dbc8;
}

.tech-visual.sdk i:nth-child(1) {
  left: 13px;
  transform: rotate(-45deg);
}

.tech-visual.sdk i:nth-child(2) {
  right: 13px;
  transform: rotate(135deg);
}

.tech-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.tech-photo {
  margin: 22px 0 0;
  overflow: hidden;
  width: min(100%, 320px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.tech-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tech-photo figcaption {
  padding: 10px 12px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.tech-photo-phone {
  width: min(100%, 180px);
}

.tech-photo-phone img {
  aspect-ratio: 9 / 16;
}

.tech-photo-wide {
  width: min(100%, 380px);
}

.tech-photo-wide img {
  aspect-ratio: 16 / 9;
}

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

.application-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.application-grid article:not(:has(img)) {
  display: flex;
  align-items: center;
  min-height: 220px;
  border-left: 4px solid var(--blue);
}

.application-grid img {
  width: 100%;
  aspect-ratio: 1.85;
  object-fit: cover;
}

.application-grid div {
  padding: 22px;
}

.application-grid h3 {
  font-size: 20px;
}

.application-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.news-section .section-head {
  max-width: none;
}

.news-section .section-head p:not(.eyebrow) {
  max-width: none;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) repeat(2, minmax(0, 0.72fr));
  gap: 18px;
}

.news-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-grid img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.news-grid article:not(.news-feature) h3 {
  padding: 18px 18px 20px;
  font-size: 18px;
}

.news-feature {
  grid-row: span 2;
}

.news-feature img {
  aspect-ratio: 1.48;
}

.news-feature div {
  padding: 24px;
}

.news-feature span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.news-feature h3 {
  font-size: 26px;
}

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

.downloads {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(420px, 1fr) auto;
  align-items: start;
  gap: 28px;
  background: #e8eef2;
}

.downloads .section-head {
  margin-bottom: 0;
}

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

.download-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.download-grid a:hover {
  border-color: rgba(15, 111, 168, 0.42);
  box-shadow: 0 12px 28px rgba(22, 37, 49, 0.08);
}

.download-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.download-grid span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding: 82px 5vw;
  color: var(--white);
  background: #0d4f78;
}

.contact .eyebrow {
  color: #a3f0e1;
}

.contact-copy {
  max-width: 760px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.contact-topics span {
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.contact-panel {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
}

.contact-panel div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.contact-panel dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

.contact-panel .button {
  width: 100%;
  color: var(--white);
  background: var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.footer-logo {
  width: 128px;
  height: auto;
  margin-bottom: 8px;
  background: var(--white);
  mix-blend-mode: multiply;
}

.footer-link {
  color: var(--blue);
  font-weight: 800;
}

.site-footer span:last-child {
  text-align: right;
}

.policy-page {
  background: var(--paper);
}

.policy-hero {
  padding: 86px 5vw 56px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  color: var(--blue);
}

.policy-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.policy-hero span {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.policy-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 5vw 92px;
}

.policy-content h2 {
  margin-top: 38px;
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content dd {
  color: var(--muted);
  font-size: 17px;
}

.policy-content dl {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.policy-content dl div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-content dt {
  color: var(--navy);
  font-weight: 900;
}

.policy-content dd {
  margin: 4px 0 0;
}

.detail-page {
  background: var(--paper);
}

.back-link {
  display: inline-flex;
  margin: 34px 5vw 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.back-link::before {
  content: "<";
  margin-right: 8px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 5vw;
  align-items: center;
  padding: 56px 5vw 92px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.detail-hero h1 {
  color: var(--blue);
}

.detail-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.detail-hero > img,
.product-viewer {
  width: 100%;
  object-fit: contain;
  padding: 28px;
  background: #eef3f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-viewer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-viewer-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 280px;
}

.product-viewer-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.product-viewer-frame img.is-active {
  opacity: 1;
  pointer-events: auto;
}

.product-viewer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-viewer-thumbs {
  display: flex;
  gap: 10px;
  max-width: min(100%, 560px);
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: thin;
}

.product-thumb {
  flex: 0 0 78px;
  width: 78px;
  aspect-ratio: 1;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb.is-active,
.product-thumb:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(0, 122, 204, 0.16);
}

.viewer-button {
  width: 34px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #a7b0b8;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.viewer-button:hover {
  color: var(--blue);
}

.product-viewer-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 8px;
}

.product-viewer-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a7b0b8;
}

.product-viewer-dots span.is-active {
  background: var(--ink);
}

.product-viewer-caption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 5vw;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.detail-highlights article {
  min-height: 160px;
  padding: 28px;
  background: var(--white);
}

.detail-highlights span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.detail-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 56px;
}

.detail-grid > div {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid h2 {
  font-size: 28px;
}

.detail-grid p,
.detail-grid li {
  color: var(--muted);
}

.integration-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-section .section-head {
  max-width: none;
}

.integration-section .section-head p:not(.eyebrow) {
  max-width: none;
  color: var(--muted);
}

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

.integration-grid article {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(15, 111, 168, 0.05), rgba(255, 255, 255, 0) 48%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.integration-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
}

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

.antenna-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.antenna-section .section-head {
  max-width: none;
}

.antenna-section .section-head p:not(.eyebrow) {
  max-width: none;
}

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

.antenna-grid article {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(20, 130, 104, 0.06), rgba(255, 255, 255, 0) 48%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.antenna-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

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

.detail-size {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0 5vw 96px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-size img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f8f9;
}

.detail-size h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.detail-size p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.detail-size dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.detail-size dl div {
  padding: 16px;
  background: #eef3f6;
  border-radius: 6px;
}

.detail-size dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.detail-size dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.spec-section {
  padding-top: 96px;
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 5vw 80px;
  padding: 34px;
  color: var(--white);
  background: #0d4f78;
  border-radius: 8px;
}

.detail-cta h2 {
  font-size: clamp(26px, 3.2vw, 40px);
}

.detail-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.detail-cta .eyebrow {
  color: #a3f0e1;
}

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

.spec-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-card.wide {
  grid-column: 1 / -1;
}

.spec-card h3 {
  padding: 18px 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 15px;
}

.spec-table th {
  width: 42%;
  color: var(--navy);
  background: #eef3f6;
}

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

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

  .site-header {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 5vw;
  }

  .nav {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .site-header .nav:last-child {
    position: static;
    left: auto;
    transform: none;
  }

  .hero,
  .detail-hero,
  .detail-highlights,
  .detail-grid,
  .detail-size,
  .detail-cta,
  .spec-grid,
  .integration-grid,
  .antenna-grid,
  .news-grid,
  .product-card,
  .product-card.featured,
  .company-grid,
  .tech-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .detail-hero > div,
  .detail-hero > img,
  .product-viewer {
    width: 100%;
    max-width: calc(100vw - 64px);
  }

  .detail-hero > div,
  .detail-hero > img,
  .product-viewer {
    max-width: 320px;
  }

  .product-viewer {
    padding: 18px;
  }

  .product-viewer-thumbs {
    gap: 6px;
    max-width: 232px;
  }

  .product-thumb {
    flex-basis: 54px;
    width: 54px;
    padding: 4px;
  }

  .viewer-button {
    width: 24px;
    font-size: 34px;
  }

  .hero-copy > p:not(.eyebrow),
  .detail-hero p:not(.eyebrow),
  .detail-highlights p,
  .detail-grid p,
  .detail-grid li,
  .integration-grid p,
  .spec-card,
  .antenna-grid p,
  .detail-size dd,
  .detail-cta p {
    overflow-wrap: anywhere;
  }

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

  .hero {
    min-height: auto;
    padding-top: 96px;
    text-align: left;
    justify-items: stretch;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 6.8vw, 32px);
    white-space: normal;
  }

  .mobile-break {
    display: block;
  }

  .desktop-gap {
    display: none;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .downloads,
  .contact,
  .site-footer {
    align-items: flex-start;
  }

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

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

  .site-footer span:last-child {
    text-align: left;
  }

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

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

@media (max-width: 560px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-product {
    padding: 18px;
  }

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

  .detail-size {
    padding: 20px;
  }

  .detail-size dl {
    grid-template-columns: 1fr;
  }
}
