:root {
  --ink: #0f1424;
  --violet: #4f4aa7;
  --violet-deep: #3a3679;
  --blue: #569dda;
  --cyan: #58c8ec;
  --muted: #6b7383;
  --surface: #f5f6f9;
  --line: #e2e5ed;
  --lavender: #efeff8;
  --white: #fff;
  color-scheme: light;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}
:root[data-palette="cobalt"] {
  --ink: #0b1832;
  --violet: #2557d6;
  --violet-deep: #173a99;
  --blue: #3980f6;
  --cyan: #55c4e8;
  --surface: #f5f7fc;
  --lavender: #eaf0ff;
}
:root[data-palette="lagoon"] {
  --ink: #0d2527;
  --violet: #007c83;
  --violet-deep: #005c63;
  --blue: #00a2a9;
  --cyan: #5ed8d0;
  --surface: #f3f8f8;
  --lavender: #e4f4f3;
}
:root[data-palette="coral"] {
  --ink: #29191b;
  --violet: #c64d4a;
  --violet-deep: #8f3436;
  --blue: #e27a5f;
  --cyan: #f1b866;
  --surface: #fbf6f4;
  --lavender: #f8eae8;
}
:root[data-palette="lime"] {
  --ink: #171c12;
  --violet: #557219;
  --violet-deep: #34470f;
  --blue: #7f9f2d;
  --cyan: #b7d957;
  --surface: #f7f9f2;
  --lavender: #eef3e4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  font-weight: 600;
  font-size: 72px;
  line-height: 1.07;
  letter-spacing: -0.055em;
}
h2 {
  font-size: 43px;
  line-height: 1.13;
  letter-spacing: -0.045em;
  font-weight: 600;
}
h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  font-weight: 600;
}
p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.container {
  width: calc(100% - 128px);
  max-width: 1280px;
  margin: 0 auto;
}
.mono {
  font-family:inherit;
}
.gradient-word {
  background: linear-gradient(
    100deg,
    var(--violet) 15%,
    var(--blue) 76%,
    var(--cyan)
  );
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 49px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  background: white;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.button .icon {
  width: 16px;
  height: 16px;
}
.button.primary {
  background: var(--violet);
  color: white;
  border-color: var(--violet);
}
.button.primary:hover {
  background: var(--violet-deep);
  border-color: var(--violet-deep);
}
.button.secondary:hover {
  border-color: var(--violet);
  color: var(--violet);
}
.button.text-button {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  padding-left: 0;
  padding-right: 0;
}
.button.text-button:hover {
  color: var(--violet);
}
.button.light {
  background: white;
  color: var(--violet);
  border-color: white;
}
.button.light:hover {
  background: var(--lavender);
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  background: none;
  padding: 0;
}
.text-link .icon {
  width: 16px;
  height: 16px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-header {
  height: 90px;
  background: white;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  display: block;
  width: 174px;
  height: 43px;
  position: relative;
  overflow: hidden;
  flex: none;
}
.brand img {
  position: absolute;
  width: 207px;
  max-width: none;
  height: auto;
  left: -16px;
  top: -22px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.main-nav a,
.main-nav button {
  font-size: 13px;
  font-weight: 600;
  background: none;
  padding: 12px 0;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav button:hover {
  color: var(--violet);
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}
.language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family:inherit;font-size:11px;line-height:normal;
}
.language .icon {
  width: 16px;
  height: 16px;
}
.header-controls .button {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 11px;
}
.menu-toggle {
  display: none;
  background: transparent;
  padding: 10px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading p {
  max-width: 365px;
  font-size: 13px;
}
.section {
  padding: 84px 0;
}
.section.soft {
  background: var(--surface);
}
.section-number {
  font-family:inherit;font-size:10px;line-height:normal;
  color: var(--muted);
  margin-right: 8px;
}
.hero-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 50px 0 45px;
  min-height: 635px;
}
.hero-product h1 {
  font-size: 68px;
}
.hero-statement {
  display: block;
  max-width: 540px;
}
.hero-product .intro {
  font-size: 15px;
  max-width: 400px;
  margin: 25px 0 29px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
}
.hero-note .icon {
  color: var(--violet);
  width: 17px;
  height: 17px;
}
.hero-visual {
  position: relative;
  height: 525px;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}
.visual-topline {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.visual-topline .model {
  font-weight: 700;
  color: var(--ink);
}
.visual-topline .mono {
  color: var(--muted);
  font-size: 9px;
}
.hero-visual .product-photo {
  position: absolute;
  width: 130%;
  max-width: none;
  left: -14%;
  top: 6px;
}
.visual-bottomline {
  position: absolute;
  z-index: 2;
  bottom: 23px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #dce0e9;
  padding-top: 16px;
  font-family:inherit;font-size:10px;line-height:normal;
  color: var(--muted);
}
.visual-bottomline span:last-child {
  color: var(--ink);
  font-weight: 500;
}
.hero-visual .screen-callout {
  position: absolute;
  right: 22px;
  top: 48%;
  background: white;
  border: 1px solid var(--line);
  padding: 13px 15px;
  box-shadow: 0 6px 20px #0f142407;
  border-radius: 5px;
}
.screen-callout strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
}
.screen-callout span {
  font-size: 9px;
  color: var(--muted);
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.trust-item {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border: 0;
}
.trust-item strong {
  display: block;
  font-size: 31px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  font-weight: 600;
}
.trust-item span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.trust-item .small-value {
  font-size: 28px;
}
.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.model-card {
  padding: 30px 32px 28px;
  background: var(--surface);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}
.model-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.model-top h3 {
  font-size: 28px;
}
.model-top p {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 6px;
  max-width: 240px;
}
.model-tag {
  font-family:inherit;font-size:9px;line-height:normal;
  color: var(--violet);
  border: 1px solid #d7d7ec;
  border-radius: 3px;
  padding: 6px 8px;
  white-space: nowrap;
}
.model-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  margin: 4px -15px;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.13);
}
.model-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  border-top: 1px solid #dfe2e9;
  padding: 18px 0;
  margin-top: 5px;
}
.model-specs span {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.model-specs strong {
  font-family:inherit;font-size:12px;line-height:normal;
  font-weight: 500;
}
.model-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.model-bottom .button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 11px;
}
.model-bottom .text-link {
  font-size: 11px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.industry {
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 22px;
  min-height: 92px;
  transition: background 0.15s;
}
.industry:hover {
  background: var(--lavender);
}
.industry .industry-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  background: var(--surface);
  border-radius: 50%;
  color: var(--violet);
  flex: none;
}
.industry .industry-icon .icon {
  width: 20px;
  height: 20px;
}
.industry .industry-name {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}
.industry > .icon {
  width: 13px;
  height: 13px;
  color: #9096a7;
  margin-left: auto;
}
.platform-section {
  background: var(--ink);
  color: white;
  padding: 75px 0;
}
.platform-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 60px;
}
.platform-section h2 {
  font-size: 45px;
  max-width: 650px;
}
.platform-section p {
  color: #aeb6c9;
  font-size: 13px;
  max-width: 380px;
  margin: 18px 0 24px;
}
.platform-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid #ffffff25;
  margin-top: 48px;
  padding-top: 27px;
}
.platform-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.platform-feature > .icon {
  color: #9cb5e5;
  flex: none;
}
.platform-feature strong {
  font-size: 12px;
  font-weight: 600;
  display: block;
}
.platform-feature span {
  font-size: 11px;
  line-height: 1.65;
  display: block;
  color: #aeb6c9;
  margin-top: 7px;
}
.included-mark {
  text-align: right;
}
.included-mark .large {
  font-size: 84px;
  letter-spacing: -0.075em;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.included-mark p {
  font-size: 11px;
  margin: 12px 0 0;
  max-width: none;
}
.site-footer {
  padding: 27px 0;
  background: white;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner p {
  font-size: 10px;
}
.footer-inner .brand {
  width: 130px;
  height: 32px;
}
.footer-inner .brand img {
  width: 156px;
  left: -12px;
  top: -16px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links button {
  padding: 8px 0;
  background: none;
  color: var(--muted);
  font-size: 10px;
}
.footer-links button:hover {
  color: var(--violet);
}
.mobile-contact {
  display: none;
}
.hero-operator {
  background: #f0f1f8;
  position: relative;
  overflow: hidden;
  padding-top: 43px;
}
.operator-heading {
  text-align: center;
  position: relative;
  z-index: 2;
}
.operator-heading h1 {
  font-size: 65px;
  line-height: 1.08;
}
.operator-heading > p {
  font-size: 13px;
  max-width: 510px;
  margin: 19px auto 0;
}
.operator-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 22px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  min-height: 320px;
}
.operator-showcase figure {
  margin: 0;
  position: relative;
  height: 325px;
  overflow: hidden;
}
.operator-showcase figure img {
  height: 100%;
  width: 125%;
  max-width: none;
  margin-left: -12.5%;
  object-fit: cover;
}
.operator-detail {
  max-width: 205px;
  padding: 25px 0;
  border-top: 1px solid #d4d7e6;
  border-bottom: 1px solid #d4d7e6;
}
.operator-detail:last-child {
  justify-self: end;
}
.operator-detail > .icon {
  color: var(--violet);
  margin-bottom: 15px;
}
.operator-detail h3 {
  font-size: 19px;
}
.operator-detail p {
  font-size: 11px;
  line-height: 1.65;
  margin-top: 9px;
}
.operator-detail .mono {
  display: block;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--violet);
  margin-top: 15px;
}
.operator-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 0 35px;
}
.operator-ribbon {
  background: var(--violet);
  color: white;
}
.operator-ribbon .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 19px;
  padding-bottom: 19px;
}
.operator-ribbon .ribbon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  border-right: 1px solid #ffffff38;
}
.operator-ribbon .ribbon-item:last-child {
  border: 0;
}
.operator-ribbon strong {
  font-size: 20px;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.operator-industries {
  padding: 75px 0;
}
.operator-industries .section-heading {
  align-items: flex-start;
}
.operator-industries .industries-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 0;
}
.operator-industries .industry {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  min-height: 137px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 19px;
}
.operator-industries .industry > .icon {
  position: absolute;
  right: 16px;
  top: 20px;
}
.operator-industries .industry-name {
  font-size: 10px;
}
.operator-industries .industry-icon {
  background: var(--lavender);
  width: 35px;
  height: 35px;
}
.operator-products {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 80px;
  align-items: center;
}
.operator-products p {
  margin-top: 22px;
  max-width: 400px;
  font-size: 13px;
}
.operator-products .actions {
  margin-top: 30px;
}
.operator-products figure {
  margin: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
}
.operator-products figure img {
  width: 100%;
}
.operator-products figcaption {
  display: flex;
  justify-content: space-around;
  padding: 0 20px 25px;
  font-family:inherit;font-size:11px;line-height:normal;
  color: var(--muted);
}
.operator-platform {
  background: white;
}
.operator-platform-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.operator-platform .platform-features {
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 0;
}
.operator-platform .platform-feature {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.operator-platform .platform-feature:first-child {
  padding-top: 0;
}
.operator-platform .platform-feature strong {
  font-size: 14px;
  color: var(--ink);
}
.operator-platform .platform-feature span {
  color: var(--muted);
  font-size: 12px;
}
.operator-platform .platform-feature > .icon {
  color: var(--violet);
  width: 25px;
  height: 25px;
}
.operator-platform h2 {
  font-size: 44px;
}
.operator-platform p {
  margin: 23px 0 25px;
  font-size: 13px;
}
.operator-platform .platform-free {
  font-family:inherit;font-size:11px;line-height:normal;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.operator-platform .platform-free:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.closing-cta {
  background: var(--violet);
  color: white;
  padding: 40px 0;
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.closing-inner h2 {
  font-size: 29px;
}
.closing-inner p {
  color: #d7d5ed;
  font-size: 12px;
  margin-top: 9px;
}
.range-intro {
  padding: 43px 0 29px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 75px;
}
.range-intro h1 {
  font-size: 54px;
  line-height: 1.12;
}
.range-intro p {
  font-size: 12px;
  max-width: 370px;
  margin-bottom: 20px;
}
.range-models {
  gap: 18px;
  padding-bottom: 35px;
}
.range-models .model-card {
  padding: 25px 28px 22px;
}
.range-models .model-card:last-child {
  background: #efeff7;
}
.range-models .model-image {
  height: 230px;
  margin-top: 12px;
  margin-bottom: 5px;
}
.range-models .model-image img {
  width: 100%;
  margin: 0 auto;
}
.range-models .model-top h3 {
  font-size: 32px;
}
.range-models .model-specs {
  padding: 14px 0;
}
.range-models .model-bottom .button {
  background: transparent;
}
.range-models .model-bottom .primary {
  background: var(--violet);
}
.range-models .model-top p {
  max-width: 275px;
}
.range-shared {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.range-shared .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 73px;
}
.shared-spec {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
}
.shared-spec .icon {
  color: var(--violet);
  width: 19px;
  height: 19px;
}
.engineering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.engineering-grid .intro {
  margin-top: 23px;
  font-size: 13px;
  max-width: 390px;
}
.protocol-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 27px 0 28px;
}
.protocol {
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  padding: 14px 15px;
  align-items: center;
  font-family:inherit;font-size:12px;line-height:normal;
  background: white;
}
.protocol .icon {
  width: 15px;
  height: 15px;
  color: var(--violet);
}
.engineering-visual {
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
}
.engineering-visual {
  margin: 0;
}
.engineering-visual img {
  height: 310px;
  width: 100%;
  object-fit: contain;
}
.engineering-caption {
  padding: 21px 25px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.engineering-caption strong {
  display: block;
  font-family:inherit;font-size:14px;line-height:normal;
}
.engineering-caption span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 7px;
}
.comparison-section {
  background: var(--surface);
}
.comparison-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-size: 12px;
  background: white;
}
.comparison-table caption {
  text-align: left;
  padding-bottom: 14px;
  font-size: 11px;
  color: var(--muted);
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.65;
}
.comparison-table th {
  font-weight: 600;
}
.comparison-table thead {
  background: var(--ink);
  color: white;
}
.comparison-table thead th {
  font-size: 14px;
  border: 0;
}
.comparison-table tbody th {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  width: 30%;
}
.comparison-table td {
  font-family:inherit;
  font-size: 11px;
}
.comparison-table tbody tr:last-child > * {
  border: 0;
}
.comparison-section .table-caption {
  margin-top: 17px;
  font-size: 10px;
}
.range-platform {
  padding: 48px 0;
}
.range-platform .platform-top {
  grid-template-columns: 1fr auto;
}
.range-platform h2 {
  font-size: 34px;
}
.range-platform p {
  max-width: 540px;
  margin: 15px 0 0;
}
.range-platform .platform-features {
  display: none;
}
.range-industries {
  padding: 70px 0;
}
.range-industries .section-heading h2 {
  font-size: 37px;
}
.site-footer button {
  cursor: pointer;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-200%);
  background: var(--violet);
  color: white;
  padding: 12px 16px;
}
.skip-link:focus {
  transform: translateY(0);
}
.no-script {
  padding: 40px;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 44px;
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  box-shadow: 0 25px 120px #0f14243d;
}
dialog::backdrop {
  background: #0f14247d;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 34px;
  max-width: 460px;
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 12px;
  background: var(--surface);
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.dialog-intro {
  font-size: 12px;
  margin: 15px 0;
}
.preview-note {
  font-size: 10px;
  color: var(--violet);
  background: var(--lavender);
  padding: 10px 13px;
  margin: 17px 0 22px;
  border-radius: 4px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  background: white;
  border: 1px solid #d9dce6;
  border-radius: 4px;
  padding: 11px 12px;
  font-size: 12px;
  color: var(--ink);
}
.form-grid textarea {
  resize: vertical;
}
.full-field {
  grid-column: 1/-1;
}
form > .button {
  margin-top: 22px;
  width: 100%;
}
.form-result {
  font-size: 12px;
  color: var(--violet);
  margin-top: 12px;
  line-height: 1.5;
}
#info-content {
  margin-top: 21px;
}
#info-content p {
  font-size: 13px;
  margin-bottom: 16px;
}
#info-content ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
#info-content .button {
  margin-top: 14px;
}
#info-content .comparison-table {
  margin: 25px 0;
  font-size: 11px;
}
#info-content .comparison-table td,
#info-content .comparison-table th {
  padding: 11px;
}
#info-content a {
  color: var(--violet);
}
.spec-download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: var(--surface);
  border-radius: 5px;
  margin-top: 24px;
}
.spec-download p {
  margin: 0 !important;
  font-size: 11px !important;
}
.spec-download .button {
  margin: 0 !important;
  font-size: 10px;
}
.copy-in-spec {
  color: var(--muted);
  font-size: 10px !important;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1280px;
  }
  .hero-product {
    min-height: 680px;
  }
  .hero-visual {
    height: 565px;
  }
  .hero-product h1 {
    font-size: 76px;
  }
  .hero-visual .product-photo {
    top: 20px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 24px;
  }
  .main-nav {
    gap: 20px;
  }
  .header-controls {
    gap: 16px;
  }
  .brand {
    width: 148px;
    height: 37px;
  }
  .brand img {
    width: 176px;
    left: -14px;
    top: -19px;
  }
  .hero-product {
    gap: 25px;
  }
  .hero-product h1 {
    font-size: 56px;
  }
  .hero-visual {
    height: 465px;
  }
  .hero-visual .product-photo {
    top: 28px;
    width: 153%;
    left: -26.5%;
  }
  .hero-visual .screen-callout {
    right: 14px;
    padding: 10px;
  }
  .screen-callout strong {
    font-size: 18px;
  }
  .hero-product .intro {
    font-size: 14px;
  }
  .hero-product .actions {
    gap: 6px;
  }
  .hero-product .button {
    padding: 12px 16px;
    font-size: 11px;
  }
  .industry {
    padding: 21px 14px;
    gap: 10px;
  }
  .industry .industry-name {
    font-size: 10px;
  }
  .model-card {
    padding: 25px;
  }
  .operator-products,
  .operator-platform-inner {
    gap: 45px;
  }
  .operator-industries .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .range-intro {
    gap: 35px;
  }
  .engineering-grid {
    gap: 35px;
  }
  .main-nav a,
  .main-nav button {
    font-size: 11px;
  }
  .range-models .model-top p {
    max-width: 230px;
  }
  .range-models .model-image {
    height: 200px;
  }
  .operator-heading h1 {
    font-size: 61px;
  }
  .hero-operator {
    padding-top: 45px;
  }
  .operator-showcase {
    grid-template-columns: 1fr 1.3fr 1fr;
    min-height: 285px;
  }
  .operator-showcase figure {
    height: 285px;
  }
  .operator-detail {
    max-width: 175px;
  }
  .hero-visual .visual-topline {
    left: 19px;
    right: 19px;
  }
  .range-shared .container {
    gap: 12px;
  }
  .shared-spec {
    font-size: 10px;
    gap: 7px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 25px;
  }
  .container {
    width: calc(100% - 48px);
  }
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 34px;
  }
  .site-header {
    height: 75px;
  }
  .header-inner {
    gap: 16px;
    justify-content: space-between;
  }
  .main-nav {
    gap: 14px;
  }
  .header-controls .language {
    display: none;
  }
  .header-controls {
    gap: 10px;
  }
  .main-nav a,
  .main-nav button {
    font-size: 10px;
  }
  .header-controls .button {
    padding: 9px 13px;
    font-size: 10px;
  }
  .hero-product {
    gap: 20px;
    min-height: 540px;
  }
  .hero-product h1 {
    font-size: 48px;
  }
  .hero-visual {
    height: 400px;
  }
  .hero-visual .product-photo {
    top: 42px;
  }
  .hero-product .intro {
    font-size: 13px;
  }
  .hero-product .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .hero-product .hero-note {
    font-size: 10px;
    margin-top: 20px;
  }
  .visual-topline .mono {
    display: none;
  }
  .visual-bottomline {
    font-size: 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 13px;
    bottom: 18px;
  }
  .hero-visual .screen-callout {
    right: 10px;
    top: 41%;
    padding: 8px 11px;
  }
  .screen-callout strong {
    font-size: 16px;
  }
  .screen-callout span {
    font-size: 8px;
  }
  .section {
    padding: 60px 0;
  }
  .section-heading {
    gap: 24px;
  }
  .section-heading p {
    max-width: 280px;
    font-size: 12px;
  }
  .trust-grid {
    padding: 24px 0;
  }
  .trust-item {
    padding: 0 18px;
  }
  .trust-item strong {
    font-size: 26px;
  }
  .trust-item span {
    font-size: 9px;
  }
  .model-card {
    padding: 22px;
  }
  .model-top {
    gap: 10px;
  }
  .model-top h3 {
    font-size: 24px;
  }
  .model-tag {
    font-size: 8px;
    padding: 5px;
  }
  .model-image {
    height: 200px;
  }
  .model-specs strong {
    font-size: 10px;
  }
  .model-specs span {
    font-size: 9px;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .platform-top {
    gap: 35px;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .platform-section h2 {
    font-size: 36px;
  }
  .included-mark .large {
    font-size: 70px;
  }
  .platform-section {
    padding: 60px 0;
  }
  .platform-features {
    gap: 23px;
  }
  .platform-feature {
    gap: 10px;
  }
  .platform-feature strong {
    font-size: 11px;
  }
  .platform-feature span {
    font-size: 10px;
  }
  .operator-heading h1 {
    font-size: 54px;
  }
  .operator-heading > p {
    font-size: 12px;
    max-width: 420px;
  }
  .operator-showcase {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 10px;
  }
  .operator-showcase figure {
    height: 260px;
  }
  .operator-detail h3 {
    font-size: 16px;
  }
  .operator-detail p {
    font-size: 10px;
  }
  .operator-detail .mono {
    font-size: 8px;
  }
  .operator-products {
    gap: 30px;
  }
  .operator-products h2,
  .operator-platform h2 {
    font-size: 35px;
  }
  .operator-products p {
    font-size: 12px;
  }
  .operator-platform-inner {
    gap: 40px;
  }
  .operator-products figcaption {
    font-size: 9px;
  }
  .operator-ribbon .ribbon-item {
    font-size: 9px;
  }
  .operator-ribbon strong {
    font-size: 18px;
  }
  .range-intro h1 {
    font-size: 43px;
  }
  .range-intro p {
    font-size: 11px;
  }
  .range-models .model-card {
    padding: 22px;
  }
  .range-models .model-top p {
    font-size: 10px;
  }
  .range-models .model-top h3 {
    font-size: 28px;
  }
  .range-models .model-image {
    height: 180px;
  }
  .range-models .model-image img {
    width: 95%;
  }
  .model-bottom .text-link {
    font-size: 10px;
  }
  .shared-spec {
    font-size: 10px;
  }
  .engineering-grid {
    gap: 30px;
  }
  .engineering-visual img {
    height: 250px;
  }
  .engineering-caption {
    padding: 18px;
    gap: 12px;
  }
  .engineering-caption strong {
    font-size: 12px;
  }
  .engineering-caption span {
    font-size: 8px;
  }
  .engineering-grid h2 {
    font-size: 34px;
  }
  .range-platform h2 {
    font-size: 29px;
  }
  .range-platform p {
    font-size: 12px;
  }
  .range-platform .button {
    font-size: 11px;
    padding: 12px 16px;
  }
  .footer-inner p {
    font-size: 9px;
  }
  .footer-links {
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 72px;
  }
  .brand {
    width: 143px;
    height: 36px;
  }
  .brand img {
    width: 170px;
    left: -13.5px;
    top: -18.5px;
  }
  .header-inner {
    gap: 10px;
  }
  .header-controls {
    margin-left: auto;
    gap: 5px;
  }
  .header-controls .button {
    font-size: 15px;
    min-height: 44px;
    padding: 9px 13px;
    border-radius: 4px;
  }
  .header-controls .button .icon {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-right: -7px;
  }
  .menu-toggle .icon {
    width: 20px;
    height: 20px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 25px;
    box-shadow: 0 15px 25px #0f142409;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a,
  .main-nav button {
    text-align: left;
    padding: 14px 0;
    font-size: 16px;
    min-height: 44px;
    border-bottom: 1px solid var(--line);
  }
  .hero-product {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    padding: 33px 0 27px;
    min-height: 0;
  }
  .hero-product h1 {
    font-size: 46px;
    line-height: 1.08;
  }
  .hero-statement {
    font-size: 34px;
    line-height: 1.18;
    margin-top: 8px;
    max-width: 350px;
  }
  .hero-product .intro {
    font-size: 12px;
    line-height: 1.8;
    margin: 18px 0 20px;
    max-width: 335px;
  }
  .hero-product .actions {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .hero-product .actions .button {
    padding: 11px 14px;
    font-size: 10px;
    min-height: 44px;
    gap: 12px;
  }
  .hero-product .hero-note {
    margin-top: 17px;
    font-size: 9px;
  }
  .hero-product .hero-note .icon {
    width: 14px;
    height: 14px;
  }
  .hero-visual {
    height: 342px;
    border-radius: 6px;
  }
  .hero-visual .product-photo {
    width: 145%;
    left: -22.5%;
    top: 8px;
  }
  .visual-topline {
    top: 17px;
    left: 19px;
    font-size: 9px;
  }
  .visual-topline .mono {
    display: block;
    font-size: 8px;
  }
  .visual-bottomline {
    bottom: 16px;
    left: 19px;
    right: 19px;
    flex-direction: row;
    align-items: center;
    font-size: 8px;
    padding-top: 11px;
  }
  .hero-visual .screen-callout {
    right: 18px;
    top: 44%;
    padding: 9px 12px;
  }
  .screen-callout strong {
    font-size: 19px;
  }
  .screen-callout span {
    font-size: 8px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .trust-item {
    padding: 23px 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:nth-child(even) {
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }
  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .trust-item strong,
  .trust-item .small-value {
    font-size: 27px;
  }
  .trust-item span {
    font-size: 9px;
    margin-top: 6px;
  }
  .trust-item:last-child {
    border-left: 1px solid var(--line);
  }
  .section {
    padding: 48px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading p {
    max-width: 330px;
    margin-top: 16px;
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .models-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .model-card {
    padding: 24px;
  }
  .model-top h3 {
    font-size: 27px;
  }
  .model-top p {
    font-size: 10px;
    max-width: 190px;
  }
  .model-tag {
    font-size: 8px;
  }
  .model-image {
    height: 205px;
    margin-top: 10px;
    margin-bottom: 4px;
  }
  .model-specs {
    gap: 8px;
    padding: 16px 0;
  }
  .model-specs strong {
    font-size: 11px;
  }
  .model-specs span {
    font-size: 9px;
  }
  .model-bottom .button {
    font-size: 10px;
    min-height: 40px;
  }
  .model-bottom .text-link {
    font-size: 10px;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry {
    padding: 17px 12px;
    gap: 9px;
    min-height: 85px;
  }
  .industry .industry-name {
    font-size: 10px;
  }
  .industry .industry-icon {
    width: 29px;
    height: 29px;
  }
  .industry .industry-icon .icon {
    width: 17px;
    height: 17px;
  }
  .industry > .icon {
    display: none;
  }
  .platform-section {
    padding: 45px 0;
  }
  .platform-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .platform-section h2 {
    font-size: 34px;
  }
  .platform-section p {
    font-size: 12px;
    margin: 17px 0 21px;
  }
  .platform-section .button {
    font-size: 11px;
  }
  .included-mark {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 22px;
    border-top: 1px solid #ffffff25;
  }
  .included-mark .large {
    font-size: 62px;
  }
  .included-mark p {
    font-size: 10px;
    margin: 0;
    max-width: 150px;
  }
  .platform-features {
    grid-template-columns: 1fr;
    margin-top: 26px;
    padding-top: 25px;
    gap: 24px;
  }
  .platform-feature {
    gap: 15px;
  }
  .platform-feature strong {
    font-size: 12px;
  }
  .platform-feature span {
    font-size: 11px;
    margin-top: 5px;
  }
  .site-footer {
    padding: 23px 0 87px;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-inner > .brand {
    width: 113px;
    height: 28px;
  }
  .footer-inner > .brand img {
    width: 136px;
    left: -11px;
    top: -15px;
  }
  .footer-inner p {
    font-size: 14px;
    line-height: 1.5;
  }
  .footer-links {
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 10px;
    gap: 22px;
  }
  .footer-links button {
    font-size: 14px;
    min-height: 44px;
    padding: 10px 0;
  }
  .mobile-contact {
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 0.75fr 1fr 1.45fr;
    background: white;
    border-top: 1px solid var(--line);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    gap: 6px;
    box-shadow: 0 -4px 15px #0f142405;
  }
  .mobile-contact button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 7px 8px;
    background: transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
  }
  .mobile-contact button .icon {
    width: 18px;
    height: 18px;
  }
  .mobile-contact button:last-child {
    background: var(--violet);
    color: white;
  }
  .hero-operator {
    padding-top: 33px;
  }
  .operator-heading h1 {
    font-size: 44px;
    line-height: 1.1;
  }
  .operator-heading > p {
    font-size: 11px;
    margin-top: 17px;
    max-width: 310px;
  }
  .operator-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
    margin-top: 5px;
  }
  .operator-showcase figure {
    grid-row: 1;
    grid-column: 1/-1;
    height: 250px;
    margin: 0 -15px;
  }
  .operator-showcase figure img {
    width: 115%;
    margin-left: -7.5%;
    object-fit: cover;
  }
  .operator-detail {
    padding: 17px 0 0;
    max-width: none;
    border-bottom: 0;
    align-self: start;
  }
  .operator-detail:last-child {
    justify-self: stretch;
  }
  .operator-detail > .icon {
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
  }
  .operator-detail h3 {
    font-size: 15px;
  }
  .operator-detail p {
    font-size: 10px;
    margin-top: 7px;
  }
  .operator-detail .mono {
    font-size: 8px;
    margin-top: 10px;
  }
  .operator-actions {
    padding: 24px 0 28px;
    gap: 6px;
  }
  .operator-actions .button {
    font-size: 10px;
    padding: 12px 14px;
    gap: 10px;
    min-height: 44px;
  }
  .operator-ribbon .container {
    width: 100%;
    padding: 18px 10px;
    gap: 0;
  }
  .operator-ribbon .ribbon-item {
    flex-direction: column;
    gap: 5px;
    font-size: 8px;
    text-align: center;
    line-height: 1.5;
    padding: 0 5px;
  }
  .operator-ribbon strong {
    font-size: 22px;
  }
  .operator-industries {
    padding: 46px 0;
  }
  .operator-industries .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .operator-industries .industry {
    padding: 13px 10px;
    gap: 17px;
    min-height: 119px;
  }
  .operator-industries .industry-name {
    font-size: 9px;
    line-height: 1.55;
  }
  .operator-industries .industry-icon {
    width: 30px;
    height: 30px;
  }
  .operator-industries .industry > .icon {
    display: none;
  }
  .operator-products {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .operator-products h2 {
    font-size: 35px;
  }
  .operator-products p {
    font-size: 12px;
    margin-top: 18px;
  }
  .operator-products .actions {
    margin-top: 21px;
  }
  .operator-products .button {
    font-size: 11px;
  }
  .operator-products figcaption {
    font-size: 9px;
    padding: 0 13px 23px;
  }
  .operator-products figure img {
    max-height: 280px;
    object-fit: cover;
    width: 100%;
  }
  .operator-platform-inner {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .operator-platform h2 {
    font-size: 35px;
  }
  .operator-platform p {
    font-size: 12px;
    margin: 18px 0 20px;
  }
  .operator-platform .platform-free {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .operator-platform .platform-feature strong {
    font-size: 13px;
  }
  .operator-platform .platform-feature span {
    font-size: 11px;
  }
  .operator-platform .platform-feature {
    padding: 22px 0;
  }
  .closing-cta {
    padding: 33px 0;
  }
  .closing-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .closing-inner h2 {
    font-size: 27px;
  }
  .closing-inner p {
    font-size: 11px;
  }
  .closing-inner .button {
    font-size: 11px;
  }
  .range-intro {
    display: block;
    padding: 32px 0 26px;
  }
  .range-intro h1 {
    font-size: 42px;
  }
  .range-intro p {
    font-size: 11px;
    margin-top: 17px;
    margin-bottom: 18px;
    max-width: 320px;
  }
  .range-intro .button {
    font-size: 10px;
    min-height: 42px;
    padding: 11px 16px;
  }
  .range-models {
    padding-bottom: 25px;
    gap: 15px;
  }
  .range-models .model-image {
    height: 205px;
    margin-top: 3px;
  }
  .range-models .model-image img {
    width: 100%;
    max-width: 350px;
  }
  .range-models .model-card {
    padding: 23px;
  }
  .range-models .model-top h3 {
    font-size: 31px;
  }
  .range-models .model-top p {
    max-width: 200px;
    font-size: 10px;
  }
  .range-shared .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 22px 0;
  }
  .shared-spec {
    font-size: 10px;
    gap: 9px;
  }
  .shared-spec .icon {
    width: 17px;
    height: 17px;
  }
  .engineering-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .engineering-grid h2 {
    font-size: 34px;
  }
  .engineering-grid .intro {
    font-size: 12px;
    margin-top: 18px;
  }
  .protocol-list {
    margin: 21px 0;
    gap: 10px;
  }
  .protocol {
    padding: 13px 14px;
    font-size: 11px;
  }
  .engineering-visual img {
    height: 240px;
  }
  .engineering-caption {
    padding: 18px 20px;
  }
  .engineering-caption strong {
    font-size: 13px;
  }
  .engineering-caption span {
    font-size: 8px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 13px 9px;
  }
  .comparison-table thead th {
    font-size: 14px;
  }
  .comparison-table tbody th {
    font-size: 14px;
    width: 29%;
  }
  .comparison-table td {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .comparison-table caption {
    font-size: 14px;
  }
  .comparison-section .table-caption {
    font-size: 9px;
  }
  .range-platform {
    padding: 37px 0;
  }
  .range-platform .platform-top {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .range-platform h2 {
    font-size: 31px;
  }
  .range-platform p {
    font-size: 11px;
  }
  .range-platform .button {
    justify-self: start;
  }
  .range-industries {
    padding: 45px 0;
  }
  .range-industries .section-heading h2 {
    font-size: 32px;
  }
  dialog {
    padding: 35px 23px 25px;
    max-height: calc(100dvh - 24px);
    width: calc(100% - 24px);
    border-radius: 8px;
  }
  dialog h2 {
    font-size: 29px;
  }
  .dialog-intro {
    font-size: 16px;
    line-height: 1.5;
  }
  .preview-note {
    font-size: 14px;
    line-height: 1.5;
    margin: 15px 0 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .form-grid label {
    font-size: 16px;
  }
  .form-grid input,
  .form-grid textarea,
  .form-grid select {
    font-size: 16px;
    padding: 10px;
  }
  .full-field {
    grid-column: auto;
  }
  .spec-download {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  #info-content .comparison-table td,
  #info-content .comparison-table th {
    padding: 10px 8px;
  }
  #info-content .comparison-table td {
    font-size: 16px;
  }
  #info-content .comparison-table th {
    font-size: 14px;
  }
  #info-content p,
  #info-content ul {
    font-size: 16px;
    line-height: 1.5;
  }
  .form-result {
    font-size: 15px;
  }
  dialog .button {
    font-size: 16px;
    min-height: 48px;
  }
  .spec-download p {
    font-size: 15px !important;
    line-height: 1.5;
  }
  .copy-in-spec {
    font-size: 14px !important;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-product h1 {
    font-size: 41px;
  }
  .hero-statement {
    font-size: 30px;
  }
  .hero-product .actions .button {
    font-size: 9px;
    padding: 11px 10px;
    gap: 7px;
  }
  .hero-product .actions {
    gap: 4px;
  }
  .header-controls .button {
    font-size: 14px;
    padding: 8px 10px;
  }
  .brand {
    width: 130px;
  }
  .hero-visual {
    height: 306px;
  }
  .operator-heading h1 {
    font-size: 39px;
  }
  .operator-actions .button {
    padding: 11px;
    font-size: 9px;
  }
  .range-intro h1 {
    font-size: 38px;
  }
  .industry {
    padding: 16px 9px;
    gap: 7px;
  }
  .industry .industry-name {
    font-size: 9px;
  }
  .model-card,
  .range-models .model-card {
    padding: 19px;
  }
  .model-specs strong {
    font-size: 10px;
  }
  .operator-industries .industry-name {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
