
:root {
  --ink: #0d1210;
  --soft-ink: #5c635f;
  --paper: #f4f6f2;
  --white: #ffffff;
  --acid: #c9a441;
  --line: rgba(13, 18, 16, 0.13);
  --font-geist-sans:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-geist-mono:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

.site-shell {
  min-width: 320px;
  overflow: hidden;
}

.mobile-bottom-nav {
  display: none;
}

.topbar {
  height: 34px;
  padding: 0 clamp(22px, 4.2vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: #101512;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar p {
  margin: 0;
}

.topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 164, 65, 0.1);
}

.topbar-divider {
  height: 11px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.header {
  height: 84px;
  background: rgba(255, 255, 255, 0.97);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4.2vw, 72px);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-logo {
  width: 142px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: block;
}

.brand-mark i {
  position: absolute;
  width: 8px;
  background: var(--ink);
  transform: skew(-22deg);
}

.brand-mark i:nth-child(1) {
  height: 24px;
  left: 4px;
  top: 5px;
}

.brand-mark i:nth-child(2) {
  height: 18px;
  left: 14px;
  top: 11px;
}

.brand-mark i:nth-child(3) {
  height: 27px;
  left: 24px;
  top: 2px;
  background: var(--acid);
}

.brand-name {
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0.055em;
  line-height: 1;
}

.brand-name small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.32em;
  color: #7c837f;
  margin-top: 7px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 58px);
}

.nav-link {
  height: 84px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 590;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  background: var(--acid);
  transition: left 0.3s ease, right 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 0;
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
}

.language-switch button {
  border: 0;
  background: transparent;
  min-width: 29px;
  padding: 6px 4px;
  color: #8a918d;
  font-size: 10px;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--acid);
  font-weight: 750;
}

.header-cta {
  min-height: 42px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 650;
}

.header-cta span {
  color: var(--acid);
}

.menu-button,
.mobile-only {
  display: none;
}

.hero {
  min-height: min(790px, calc(100vh - 118px));
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  padding: 90px clamp(24px, 8.2vw, 140px);
  isolation: isolate;
  overflow: hidden;
  background: #07100c;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  background-position: center 52%;
  background-size: cover;
  background-repeat: no-repeat;
  transition:
    opacity 0.9s ease,
    transform 6.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 72% 48%, transparent 0 16%, rgba(3, 9, 7, 0.26) 49%, transparent 74%);
  mix-blend-mode: multiply;
}

.hero-grid,
.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  width: min(740px, 68vw);
  position: relative;
  z-index: 2;
}

.hero-slide-content {
  animation: heroContentIn 0.7s ease both;
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #616a65;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--acid);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.62);
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 7.4vw, 116px);
  line-height: 0.97;
  letter-spacing: -0.07em;
  font-weight: 570;
  max-width: 900px;
}

.hero-copy {
  width: min(580px, 90%);
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.8;
}

.button-row {
  margin-top: 42px;
  display: flex;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--acid);
  color: #11170f;
}

.button-primary span {
  font-size: 17px;
}

.button-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 16, 14, 0.26);
  backdrop-filter: blur(8px);
}

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

.button-dark span {
  color: var(--acid);
}

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

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201, 164, 65, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 460px;
  height: 460px;
  right: 7%;
  top: 15%;
  animation: orbitPulse 5s ease-in-out infinite;
}

.orbit-two {
  width: 320px;
  height: 320px;
  right: 11.5%;
  top: 24%;
  animation: orbitPulse 5s 1s ease-in-out infinite;
}

.vision-target {
  position: absolute;
  right: clamp(50px, 13vw, 220px);
  top: 38%;
  width: 160px;
  height: 210px;
  border: 1px solid rgba(201, 164, 65, 0.4);
  background: rgba(201, 164, 65, 0.04);
  animation: targetFloat 4s ease-in-out infinite;
}

.target-corner {
  position: absolute;
  width: 16px;
  height: 16px;
}

.corner-one {
  left: -3px;
  top: -3px;
  border-left: 3px solid var(--acid);
  border-top: 3px solid var(--acid);
}

.corner-two {
  right: -3px;
  top: -3px;
  border-right: 3px solid var(--acid);
  border-top: 3px solid var(--acid);
}

.corner-three {
  left: -3px;
  bottom: -3px;
  border-left: 3px solid var(--acid);
  border-bottom: 3px solid var(--acid);
}

.corner-four {
  right: -3px;
  bottom: -3px;
  border-right: 3px solid var(--acid);
  border-bottom: 3px solid var(--acid);
}

.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: clamp(24px, 8.2vw, 140px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-bottom i {
  height: 1px;
  width: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-bottom i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  animation: scrollLine 2.5s ease-in-out infinite;
}

.hero-carousel-controls {
  position: absolute;
  right: clamp(24px, 5vw, 84px);
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 14, 11, 0.38);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--acid);
  background: rgba(7, 14, 11, 0.72);
  outline: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dots button {
  width: 38px;
  height: 42px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  transition:
    width 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.carousel-dots button.active {
  width: 58px;
  border-color: var(--acid);
  color: var(--acid);
}

.metrics {
  padding: 0 clamp(24px, 5vw, 84px);
  background: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px clamp(18px, 2.7vw, 48px);
  border-right: 1px solid var(--line);
}

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

.metric strong {
  font-size: clamp(31px, 3.2vw, 50px);
  letter-spacing: -0.05em;
  font-weight: 560;
}

.metric span {
  color: #747c77;
  font-size: 11px;
  margin-top: 8px;
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7.2vw, 122px);
}

.metrics,
.product-section,
.solutions-section,
.technology-section,
.production-section,
.about-section,
.partners-section,
.catalog-section,
.video-feature,
.cta-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.technology-copy h2,
.solutions-intro h2,
.about-copy h2,
.video-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 560;
}

.section-heading-side {
  padding-bottom: 6px;
}

.section-heading-side > p,
.technology-copy > p,
.solutions-intro > p,
.about-copy > p,
.video-copy > p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.85;
  font-size: 14px;
}

.text-link {
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 700;
}

.featured-products {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.product-card {
  position: relative;
  background: white;
  border: 1px solid rgba(13, 18, 16, 0.08);
  min-width: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(17, 25, 20, 0.1);
}

.product-image {
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 38%),
    #e9ece7;
}

.featured:first-child .product-image {
  height: 410px;
}

.tone-amber .product-image {
  background-color: #e8e5dc;
}

.tone-cyan .product-image {
  background-color: #e1e9ea;
}

.tone-violet .product-image {
  background-color: #e8e4eb;
}

.tone-lime .product-image {
  background-color: #e7eadd;
}

.product-image-preview-button {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.product-image-preview-button > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 28px;
  transition: transform 320ms ease;
}

.product-image-preview-button:hover > img {
  transform: scale(1.035);
}

.product-image-preview-button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

.product-index {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  pointer-events: none;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(13, 18, 16, 0.5);
}

.product-video-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 68px;
  height: 68px;
  padding: 0 0 0 4px;
  border: 1px solid rgba(13, 18, 16, 0.12);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  box-shadow:
    0 18px 40px rgba(13, 18, 16, 0.2),
    0 0 0 9px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  font-size: 18px;
}

.product-video-button:hover,
.product-video-button:focus-visible {
  box-shadow:
    0 22px 48px rgba(13, 18, 16, 0.28),
    0 0 0 12px rgba(255, 255, 255, 0.28);
  outline: none;
  transform: translate(-50%, -50%) scale(1.08);
}

.product-video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(1080px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.product-video-modal::backdrop {
  background: rgba(5, 9, 7, 0.86);
  backdrop-filter: blur(9px);
}

.product-video-modal-card {
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0d1210;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.6);
}

.product-video-modal-card > header {
  min-height: 82px;
  padding: 17px 18px 17px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-video-modal-card > header span {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-video-modal-card > header h2 {
  margin: 7px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.product-video-modal-card > header button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.product-video-modal-card > header button:hover,
.product-video-modal-card > header button:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  outline: none;
}

.product-video-modal-stage {
  min-height: min(620px, 72vh);
  max-height: calc(100vh - 122px);
  padding: 20px;
  background: #050706;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-video-modal-stage video {
  display: block;
  width: min(100%, 960px);
  height: auto;
  max-height: calc(100vh - 162px);
  margin: auto;
  background: black;
  object-fit: contain;
}

.product-image-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(1180px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.product-image-modal::backdrop {
  background: rgba(5, 9, 7, 0.86);
  backdrop-filter: blur(9px);
}

.product-image-modal-card {
  width: 100%;
  max-height: calc(100vh - 40px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0d1210;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.product-image-modal-card > header {
  min-height: 78px;
  padding: 15px 18px 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-image-modal-card > header span {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-image-modal-card > header h2 {
  margin: 7px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.product-image-modal-card > header button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.product-image-modal-card > header button:hover,
.product-image-modal-card > header button:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  outline: none;
}

.product-image-modal-stage {
  position: relative;
  min-height: min(650px, 68vh);
  padding: 24px;
  background: #e7eae5;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.zoomable-product-image {
  --product-zoom-x: 50%;
  --product-zoom-y: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: pan-y;
}

.zoomable-product-image > img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: var(--product-zoom-x) var(--product-zoom-y);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transition: transform 180ms ease;
}

.zoomable-product-image.is-zoomed {
  cursor: zoom-out;
}

.zoomable-product-image.is-zoomed > img {
  transform: scale(2);
}

.zoomable-product-image:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

.product-zoom-indicator {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  min-width: 34px;
  min-height: 28px;
  padding: 0 8px;
  background: rgba(13, 18, 16, 0.82);
  color: white;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.zoomable-product-image.is-zoomed .product-zoom-indicator {
  background: var(--acid);
  color: var(--ink);
}

.product-image-modal-stage > .zoomable-product-image {
  max-height: calc(100vh - 210px);
}

.product-image-modal-thumbnails {
  min-height: 84px;
  padding: 10px 18px;
  background: #0d1210;
  display: flex;
  justify-content: center;
  gap: 9px;
  overflow-x: auto;
}

.product-image-modal-thumbnails button {
  width: 76px;
  height: 62px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.product-image-modal-thumbnails button.active {
  border-color: var(--acid);
}

.product-image-modal-thumbnails button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.product-image-modal-thumbnails img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.device {
  position: relative;
  width: 210px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .device {
  transform: rotate(-2deg) scale(1.05);
}

.device-body {
  width: 148px;
  height: 112px;
  border-radius: 16px 18px 14px 18px;
  position: relative;
  background:
    linear-gradient(145deg, #444b47 0%, #181d1b 45%, #090c0b 100%);
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.35),
    inset -14px -15px 20px rgba(0, 0, 0, 0.36),
    0 32px 45px rgba(15, 23, 18, 0.3);
}

.device-body::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
}

.device-lens {
  width: 72px;
  height: 72px;
  border: 8px solid #222825;
  border-radius: 50%;
  position: absolute;
  left: 38px;
  top: 20px;
  background: radial-gradient(circle at 40% 35%, #8ca5a7 0 4%, #29464c 12%, #0b1214 33%, #020303 62%);
  box-shadow:
    0 0 0 4px #555c57,
    0 0 0 7px #171b19;
}

.device-lens span {
  position: absolute;
  width: 13px;
  height: 8px;
  background: rgba(202, 237, 240, 0.4);
  border-radius: 50%;
  top: 12px;
  left: 14px;
  transform: rotate(-25deg);
  filter: blur(1px);
}

.device-detail {
  position: absolute;
  right: 14px;
  bottom: 15px;
  width: 18px;
  height: 3px;
  background: #707873;
  box-shadow: 0 -6px 0 #3e4541;
}

.device-light {
  width: 5px;
  height: 5px;
  background: var(--acid);
  box-shadow: 0 0 9px var(--acid);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 16px;
}

.device-shadow {
  position: absolute;
  bottom: 18px;
  width: 180px;
  height: 25px;
  border-radius: 50%;
  background: rgba(18, 26, 21, 0.22);
  filter: blur(12px);
  z-index: -1;
}

.device-surround .device-body {
  width: 164px;
  height: 82px;
  border-radius: 48px 48px 24px 24px;
}

.device-surround .device-lens {
  width: 62px;
  height: 62px;
  left: 51px;
  top: 9px;
}

.device-dms .device-body {
  width: 108px;
  height: 138px;
  border-radius: 28px 28px 18px 18px;
}

.device-dms .device-lens {
  left: 18px;
  top: 28px;
}

.device-gateway .device-body {
  width: 180px;
  height: 104px;
  border-radius: 8px;
}

.device-gateway .device-lens {
  width: 20px;
  height: 20px;
  border-width: 3px;
  left: 23px;
  top: 44px;
  box-shadow: 0 0 0 2px #555c57, 0 0 0 4px #171b19;
}

.device-display .device-body {
  width: 185px;
  height: 108px;
  border-radius: 7px;
  background: #141917;
}

.device-display .device-body::before {
  inset: 8px;
  background:
    linear-gradient(rgba(201, 164, 65, 0.08), rgba(201, 164, 65, 0)),
    linear-gradient(145deg, #213e42, #0a171b);
  border: 1px solid #46514c;
}

.device-display .device-lens {
  display: none;
}

.device-radar .device-body {
  width: 118px;
  height: 118px;
  border-radius: 50%;
}

.device-radar .device-lens {
  width: 35px;
  height: 35px;
  left: 41px;
  top: 41px;
  border-width: 4px;
}

.product-info {
  padding: 24px 24px 28px;
  min-height: 168px;
}

.product-info > p {
  margin: 0 0 13px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #88908b;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  max-width: 85%;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.product-info > span {
  display: block;
  margin-top: 12px;
  color: #737b76;
  font-size: 12px;
  line-height: 1.7;
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 25px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.card-arrow:hover,
.card-arrow:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--acid);
  outline: none;
}

.product-detail-page {
  padding: clamp(64px, 7vw, 108px) clamp(24px, 7.2vw, 122px)
    clamp(80px, 9vw, 140px);
  background: #f2f4ef;
}

.product-detail-toolbar {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.product-detail-toolbar > span,
.product-detail-back {
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-detail-toolbar > span {
  color: #7b837e;
}

.product-detail-back {
  color: var(--ink);
  text-decoration: none;
}

.product-detail-back:hover,
.product-detail-back:focus-visible {
  color: #6d8100;
  outline: none;
}

.product-detail-card {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 680px;
  margin: 0 auto;
  border: 1px solid rgba(13, 18, 16, 0.09);
  background: white;
  box-shadow: 0 30px 90px rgba(17, 25, 20, 0.09);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  overflow: hidden;
}

.product-detail-gallery {
  min-width: 0;
  padding: clamp(16px, 2vw, 28px);
  background: #e7eae5;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 12px;
}

.product-detail-main-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0) 42%
    ),
    #dfe3dd;
  display: grid;
  place-items: center;
}

.product-detail-main-image > .zoomable-product-image {
  min-height: inherit;
}

.product-detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(13, 18, 16, 0.84);
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-detail-gallery-arrow:hover,
.product-detail-gallery-arrow:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  outline: none;
}

.product-detail-gallery-arrow.previous {
  left: 15px;
}

.product-detail-gallery-arrow.next {
  right: 15px;
}

.product-detail-image-count {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 4;
  padding: 7px 10px;
  background: rgba(13, 18, 16, 0.84);
  color: white;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.product-detail-thumbnails {
  min-width: 0;
  display: flex;
  gap: 9px;
  overflow-x: auto;
}

.product-detail-thumbnails button {
  width: 78px;
  height: 62px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.product-detail-thumbnails button.active {
  border-color: var(--ink);
  background: var(--acid);
}

.product-detail-thumbnails button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.product-detail-thumbnails img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-detail-content {
  min-width: 0;
  padding: 72px clamp(28px, 4vw, 58px) 54px;
  overflow: visible;
}

.product-detail-content > .eyebrow {
  margin: 0 0 20px;
}

.product-detail-content > h1 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.product-detail-summary {
  margin: 23px 0 0;
  color: #69726c;
  font-size: 13px;
  line-height: 1.8;
}

.product-detail-specifications {
  grid-column: 1 / -1;
  width: 100%;
  padding: clamp(42px, 5vw, 74px) clamp(28px, 5vw, 76px)
    clamp(52px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: white;
}

.product-detail-specifications > h3 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-rich-content {
  color: #404943;
  font-size: 13px;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.product-rich-content h2,
.product-rich-content h3,
.product-rich-content h4 {
  margin: 28px 0 13px;
  color: var(--ink);
  line-height: 1.25;
}

.product-rich-content h2 {
  font-size: 25px;
}

.product-rich-content h3 {
  font-size: 20px;
}

.product-rich-content h4 {
  font-size: 16px;
}

.product-rich-content p {
  margin: 0 0 14px;
}

.product-rich-content ul,
.product-rich-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.product-rich-content blockquote {
  margin: 18px 0;
  padding: 14px 17px;
  border-left: 3px solid #97aa12;
  background: #f3f5ef;
}

.product-rich-content table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: 11px;
}

.product-rich-content th,
.product-rich-content td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product-rich-content th {
  background: #f1f3ef;
  color: var(--ink);
}

.product-rich-content a {
  color: #687b00;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-detail-message {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-detail-message > h1 {
  max-width: 850px;
  margin: 16px 0 0;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-detail-message > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #69726c;
  line-height: 1.8;
}

.product-detail-message .button {
  margin-top: 32px;
}

.product-rich-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border: 1px solid var(--line);
  background: #f1f3ef;
}

.product-detail-empty {
  margin: 0;
  color: #8a928d;
  font-size: 12px;
}

.solutions-section {
  min-height: 780px;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7.2vw, 122px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  color: white;
  background:
    linear-gradient(100deg, rgba(4, 9, 7, 0.96), rgba(4, 9, 7, 0.65) 48%, rgba(4, 9, 7, 0.32)),
    url("/company/hero-bus.jpeg")
      center / cover no-repeat;
}

.solutions-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-intro > p {
  color: rgba(255, 255, 255, 0.64);
  margin-top: 34px;
}

.solutions-intro .eyebrow {
  margin-top: 0;
  margin-bottom: 28px;
}

.scene-list {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.scene-card {
  min-height: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  gap: 20px;
  align-items: center;
  position: relative;
  transition: background 0.3s ease, padding 0.3s ease;
}

.scene-card:hover {
  background: rgba(201, 164, 65, 0.08);
  padding: 0 18px;
}

.scene-number {
  font-family: var(--font-geist-mono);
  color: var(--acid);
  font-size: 10px;
}

.scene-content h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 560;
}

.scene-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.6;
}

.scene-arrow {
  justify-self: end;
  font-size: 18px;
}

.technology-section {
  background: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
}

.technology-media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(4, 12, 9, 0.18), rgba(4, 12, 9, 0.74)),
    url("/company/cms-road-view.webp")
      center / cover no-repeat;
}

.technology-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 164, 65, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 65, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
}

.tech-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 22px var(--acid);
  animation: scan 4s linear infinite;
}

.tech-chip {
  position: absolute;
  bottom: 42px;
  left: 42px;
  padding: 16px 20px;
  background: rgba(7, 12, 10, 0.86);
  border-left: 3px solid var(--acid);
  backdrop-filter: blur(12px);
  color: white;
}

.tech-chip span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.tech-chip strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-geist-mono);
  font-size: 18px;
}

.tech-detection {
  position: absolute;
  color: var(--acid);
  border: 1px solid var(--acid);
  padding: 7px 9px;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.detection-one {
  left: 34%;
  top: 29%;
}

.detection-two {
  right: 12%;
  top: 52%;
}

.technology-copy {
  padding: 9vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.technology-copy > p:not(.eyebrow) {
  margin-top: 32px;
}

.technology-copy ul {
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
}

.technology-copy li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.technology-copy li span {
  color: #758700;
}

.production-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  background: #0d1210;
  color: white;
}

.production-copy {
  padding: clamp(90px, 9vw, 145px) clamp(24px, 7.2vw, 122px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.production-copy h2,
.partners-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 560;
}

.production-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.85;
}

.production-stats {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.production-stat {
  min-height: 116px;
  padding: 24px 20px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
}

.production-stat:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.production-stat:nth-child(even) {
  padding-left: 24px;
}

.production-stat strong {
  color: var(--acid);
  font-family: var(--font-geist-mono);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 520;
  letter-spacing: -0.06em;
}

.production-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.5;
}

.production-media {
  min-height: 780px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 9, 7, 0.06) 20%, rgba(4, 9, 7, 0.9) 100%),
    url("/company/hero-factory.webp") center / cover no-repeat;
}

.production-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 70%);
}

.production-media-label {
  position: absolute;
  top: 34px;
  left: 34px;
  padding: 14px 18px;
  border-left: 3px solid var(--acid);
  background: rgba(6, 11, 9, 0.78);
  backdrop-filter: blur(12px);
}

.production-media-label span,
.production-media-label strong {
  display: block;
}

.production-media-label span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.production-media-label strong {
  margin-top: 7px;
  font-family: var(--font-geist-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.production-tests {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px clamp(24px, 4vw, 62px) 38px;
  background: rgba(6, 11, 9, 0.9);
  backdrop-filter: blur(14px);
}

.production-tests h3 {
  margin: 0 0 20px;
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.production-tests ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.production-tests li {
  min-height: 60px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.74);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 11px;
  line-height: 1.55;
}

.production-tests li span {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  line-height: 1.9;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 8vw;
  align-items: center;
}

.about-image {
  min-height: 580px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 10, 8, 0.04), rgba(5, 10, 8, 0.45)),
    url("/company/hero-factory.webp")
      center / cover no-repeat;
}

.image-badge {
  position: absolute;
  right: -40px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  background: var(--acid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.image-badge span,
.image-badge small {
  font-size: 8px;
  letter-spacing: 0.16em;
}

.image-badge strong {
  font-family: var(--font-geist-mono);
  font-size: 30px;
  letter-spacing: -0.06em;
  margin: 6px 0;
}

.about-copy h2 {
  font-size: clamp(38px, 4.1vw, 62px);
}

.about-copy > p:not(.eyebrow) {
  margin-top: 34px;
}

.partners-section {
  background: #f0f2ee;
}

.partners-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.partners-heading > p {
  max-width: 590px;
  margin: 0 0 6px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.85;
}

.partners-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-card {
  min-width: 0;
  min-height: 210px;
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, transform 0.25s ease;
}

.partner-card:hover {
  z-index: 1;
  background: white;
  transform: translateY(-4px);
}

.partner-logo-frame {
  min-height: 148px;
  padding: 30px 26px 18px;
  display: grid;
  place-items: center;
}

.partner-logo-frame img {
  display: block;
  width: auto;
  max-width: min(100%, 190px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.partner-card-tall .partner-logo-frame img,
.partner-card-compact .partner-logo-frame img {
  max-width: 110px;
  max-height: 88px;
}

.partner-card figcaption {
  min-height: 62px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.partner-card figcaption strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #303733;
  font-size: 10px;
  white-space: nowrap;
}

.partner-card figcaption span {
  flex: none;
  color: #8a928d;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-section {
  padding: 72px clamp(24px, 7.2vw, 122px);
  background: var(--acid);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.cta-section > div:not(.cta-ring) {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 750;
}

.cta-section h2 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4.1vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  font-weight: 600;
}

.cta-section > div > span {
  font-size: 13px;
  color: rgba(13, 18, 16, 0.67);
}

.cta-section .button {
  flex: none;
  position: relative;
  z-index: 1;
}

.cta-ring {
  position: absolute;
  right: 17%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(13, 18, 16, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(13, 18, 16, 0.035), 0 0 0 120px rgba(13, 18, 16, 0.025);
}

.footer {
  padding: 74px clamp(24px, 7.2vw, 122px) 24px;
  background: #0d1210;
  color: white;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: block;
  width: 178px;
  height: 90px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand strong {
  font-size: 25px;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 80px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links span {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
}

.footer-contact-list {
  width: 100%;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 12px;
}

.footer-contact-list p {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
}

.footer-contact-list small {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.footer-contact-list strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 560;
  overflow-wrap: anywhere;
}

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.page-hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  isolation: isolate;
  padding: 90px clamp(24px, 8.2vw, 140px);
  background: #101512;
}

.page-hero-products {
  background:
    linear-gradient(90deg, rgba(4, 11, 8, 0.94), rgba(4, 11, 8, 0.48)),
    url("/company/ma-e56-system.webp")
      center / cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(90deg, rgba(4, 11, 8, 0.94), rgba(4, 11, 8, 0.48)),
    url("/company/motorhome-case.webp") center / cover no-repeat;
}

.page-hero-contact::after {
  content: "";
  position: absolute;
  right: 8%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 164, 65, 0.33);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201, 164, 65, 0.03), 0 0 0 140px rgba(201, 164, 65, 0.02);
}

.page-hero-content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(52px, 6.4vw, 96px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 560;
}

.page-hero-content > p:last-child {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  font-size: 14px;
}

.page-hero-index {
  position: absolute;
  right: clamp(24px, 5vw, 90px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.page-hero-index i {
  width: 42px;
  height: 1px;
  background: var(--acid);
}

.catalog-section {
  background: #f2f4ef;
}

.catalog-toolbar {
  min-height: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-row button {
  min-height: 40px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid transparent;
  font-size: 11px;
  cursor: pointer;
}

.filter-row button:hover {
  border-color: var(--line);
}

.filter-row button.active {
  background: var(--ink);
  color: white;
}

.product-count {
  font-family: var(--font-geist-mono);
  font-size: 9px;
  color: #77807a;
}

.catalog-groups {
  display: grid;
  gap: 72px;
}

.catalog-group {
  min-width: 0;
}

.catalog-group-heading {
  min-height: 76px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.catalog-group-heading > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.catalog-group-heading span,
.catalog-group-heading > strong {
  color: #7c8f00;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-group-heading h2 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.catalog-empty {
  min-height: 180px;
  margin: 0;
  color: #7b837e;
  display: grid;
  place-items: center;
  font-size: 12px;
}

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

.video-feature {
  min-height: 600px;
  padding: 0 clamp(24px, 7.2vw, 122px);
  background: #101512;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: center;
}

.video-stage {
  min-height: 380px;
  display: flex;
  align-items: center;
}

.video-window {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background:
    linear-gradient(135deg, rgba(201, 164, 65, 0.1), rgba(0, 0, 0, 0.5)),
    url("/company/hero-camera-installation.webp")
      center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  background: var(--acid);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 18px;
}

.video-window small {
  position: absolute;
  left: 22px;
  bottom: 21px;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.video-timeline {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.video-timeline span {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--acid);
}

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

.video-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 26px;
}

.video-copy .button {
  margin-top: 36px;
}

.contact-main {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7.2vw, 122px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(42px, 5vw, 76px) 7vw;
  background: #f2f4ef;
}

.contact-details {
  grid-column: 1;
  grid-row: 1;
}

.contact-main > .contact-map {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
}

.contact-map {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  background: #dfe4dc;
}

.amap-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.amap-status {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  background-color: #dfe4dc;
  background-image:
    linear-gradient(rgba(13, 18, 16, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 18, 16, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.amap-status span,
.amap-brand,
.amap-open-link {
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.amap-status span {
  color: var(--orange);
}

.amap-status strong {
  font-size: 14px;
  font-weight: 650;
}

.amap-brand {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(13, 18, 16, 0.1);
}

.amap-open-link {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  padding: 12px 14px;
  color: white;
  background: var(--ink);
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.amap-open-link:hover {
  color: var(--ink);
  background: var(--acid);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.contact-cards article {
  min-height: 180px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.contact-cards article:first-child {
  grid-column: 1 / -1;
}

.contact-cards span {
  color: #818a84;
  font-family: var(--font-geist-mono);
  font-size: 8px;
}

.contact-cards h3 {
  margin: 40px 0 12px;
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-cards p {
  margin: 0;
  color: #747c77;
  font-size: 10px;
  line-height: 1.6;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.contact-channel strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.contact-channel small {
  color: var(--muted);
  font-family: var(--font-geist-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel-link {
  width: fit-content;
  text-decoration: none;
}

.contact-channel-link strong,
.contact-channel-link small {
  transition: color 160ms ease;
}

.contact-channel-link:hover strong,
.contact-channel-link:hover small {
  color: var(--orange);
}

.inquiry-panel {
  grid-column: 2;
  grid-row: 1;
  background: white;
  padding: clamp(30px, 4.2vw, 62px);
  align-self: start;
}

.inquiry-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}

.inquiry-heading > span {
  color: #839500;
}

.inquiry-heading h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 44px);
  letter-spacing: -0.04em;
  font-weight: 600;
}

.inquiry-panel form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 18px;
}

.inquiry-panel label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.inquiry-panel label:nth-of-type(5) {
  grid-column: 1 / -1;
}

.inquiry-panel label span {
  color: #737b76;
  font-size: 10px;
}

.inquiry-panel input,
.inquiry-panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c9cfca;
  background: transparent;
  outline: none;
  padding: 10px 0 12px;
  font-size: 13px;
  resize: vertical;
  transition: border-color 0.25s ease;
}

.inquiry-panel input:focus,
.inquiry-panel textarea:focus {
  border-color: #859900;
}

.inquiry-panel .button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.form-status {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  font-size: 11px;
}

.form-status.success {
  color: #587000;
}

.form-status.error {
  color: #b03b32;
}

.product-inquiry-section {
  padding: clamp(72px, 8vw, 124px) clamp(24px, 7.2vw, 122px);
  background: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(52px, 8vw, 130px);
  align-items: start;
}

.product-inquiry-intro {
  padding-top: 12px;
  color: white;
}

.product-inquiry-intro > h2 {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-inquiry-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.8;
}

.product-inquiry-context {
  margin-top: 44px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-inquiry-context span,
.product-inquiry-context small {
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-inquiry-context span {
  color: var(--acid);
}

.product-inquiry-context strong {
  font-size: 18px;
  line-height: 1.4;
}

.product-inquiry-context small {
  color: rgba(255, 255, 255, 0.5);
}

.product-inquiry-section > .product-inquiry-panel {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  align-self: start;
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}

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

@keyframes scrollLine {
  0% {
    transform: translateX(-110%);
  }
  60%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(720px);
  }
}

@media (max-width: 1024px) {
  .topbar {
    display: none;
  }

  .header {
    grid-template-columns: 1fr auto;
    height: 74px;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: -1;
  }

  .nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    height: 58px;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-only {
    display: inline-flex;
    margin-top: 18px;
    justify-content: space-between;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 74px);
  }

  .vision-target {
    right: 8vw;
    opacity: 0.5;
  }

  .featured-products {
    grid-template-columns: 1fr 1fr;
  }

  .featured-products .product-card:first-child {
    grid-column: 1 / -1;
  }

  .featured:first-child .product-image {
    height: 360px;
  }

  .solutions-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .technology-section {
    grid-template-columns: 1fr;
  }

  .technology-media {
    min-height: 560px;
  }

  .production-section {
    grid-template-columns: 1fr;
  }

  .production-copy {
    padding: 100px clamp(24px, 7.2vw, 72px);
  }

  .production-media {
    min-height: 700px;
  }

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

  .about-layout {
    gap: 70px;
  }

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

  .video-feature,
  .contact-main {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-details {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-main > .contact-map {
    grid-column: 1;
    grid-row: 2;
  }

  .inquiry-panel {
    grid-column: 1;
    grid-row: 3;
  }

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

  .product-inquiry-section > .product-inquiry-panel {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .header {
    padding: 0 18px;
  }

  .menu-button {
    display: none;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-name small {
    display: none;
  }

  .brand-logo {
    width: 110px;
    height: 48px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    gap: 0;
  }

  .language-switch button {
    min-width: 25px;
    font-size: 9px;
  }

  .hero {
    min-height: 740px;
    padding: 80px 22px;
    align-items: flex-end;
  }

  .hero-slide {
    background-position: 63% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 11, 8, 0.25), rgba(4, 11, 8, 0.92) 80%);
    z-index: -1;
  }

  .hero-content {
    width: 100%;
    padding-bottom: 65px;
  }

  .hero-bottom {
    display: none;
  }

  .hero-carousel-controls {
    right: 18px;
    bottom: 18px;
    left: 18px;
    justify-content: flex-end;
    gap: 8px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .carousel-dots button {
    width: 24px;
    height: 38px;
  }

  .carousel-dots button.active {
    width: 38px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 75px);
  }

  .hero-copy {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    justify-content: space-between;
  }

  .vision-target,
  .hero-orbit {
    display: none;
  }

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

  .metric {
    min-height: 118px;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 80px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .technology-copy h2,
  .solutions-intro h2,
  .about-copy h2,
  .video-copy h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .featured-products,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .featured-products .product-card:first-child {
    grid-column: auto;
  }

  .product-image,
  .featured:first-child .product-image {
    height: 310px;
  }

  .product-video-button {
    width: 60px;
    height: 60px;
  }

  .product-detail-page {
    padding: 48px 20px 72px;
  }

  .product-detail-toolbar {
    margin-bottom: 18px;
  }

  .product-detail-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-detail-gallery {
    min-height: 390px;
    padding: 10px;
  }

  .product-detail-main-image {
    min-height: 310px;
  }

  .product-detail-main-image > .zoomable-product-image {
    max-height: 440px;
  }

  .product-detail-thumbnails button {
    width: 66px;
    height: 53px;
  }

  .product-detail-content {
    padding: 44px 22px 46px;
  }

  .product-detail-specifications {
    padding: 38px 22px 50px;
  }

  .product-detail-content > h1 {
    padding-right: 0;
  }

  .product-rich-content {
    overflow-x: auto;
  }

  .product-video-modal {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .product-video-modal-card > header {
    min-height: 72px;
    padding: 13px 13px 13px 17px;
  }

  .product-video-modal-card > header h2 {
    max-width: calc(100vw - 110px);
    font-size: 14px;
  }

  .product-video-modal-stage {
    min-height: 240px;
    max-height: calc(100vh - 92px);
    padding: 8px;
  }

  .product-video-modal-stage video {
    max-height: calc(100vh - 108px);
  }

  .product-image-modal {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .product-image-modal-card {
    max-height: calc(100vh - 20px);
  }

  .product-image-modal-card > header {
    min-height: 72px;
    padding: 13px 13px 13px 17px;
  }

  .product-image-modal-card > header h2 {
    max-width: calc(100vw - 110px);
    font-size: 14px;
  }

  .product-image-modal-stage {
    min-height: 260px;
    padding: 8px;
  }

  .product-image-modal-stage > .zoomable-product-image {
    max-height: calc(100vh - 205px);
  }

  .product-image-modal-thumbnails {
    justify-content: flex-start;
  }

  .solutions-section {
    padding: 80px 20px;
    background-position: 62% center;
  }

  .scene-card {
    grid-template-columns: 36px 1fr 25px;
    gap: 10px;
  }

  .technology-media {
    min-height: 430px;
  }

  .technology-copy {
    padding: 80px 22px;
  }

  .production-copy {
    padding: 80px 22px;
  }

  .production-copy h2,
  .partners-heading h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .production-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .production-media {
    min-height: 720px;
    background-position: 46% center;
  }

  .production-media-label {
    top: 22px;
    left: 22px;
  }

  .production-tests {
    padding: 30px 22px 34px;
  }

  .production-tests ul {
    grid-template-columns: 1fr;
  }

  .production-tests li {
    min-height: 52px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .partners-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

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

  .partner-card {
    min-height: 176px;
  }

  .partner-logo-frame {
    min-height: 118px;
    padding: 22px 16px 14px;
  }

  .partner-logo-frame img {
    max-width: min(100%, 145px);
    max-height: 62px;
  }

  .partner-card-tall .partner-logo-frame img,
  .partner-card-compact .partner-logo-frame img {
    max-width: 86px;
    max-height: 70px;
  }

  .partner-card figcaption {
    min-height: 58px;
    padding: 13px 12px;
  }

  .partner-card figcaption strong {
    font-size: 9px;
  }

  .about-image {
    min-height: 430px;
  }

  .image-badge {
    right: 18px;
    bottom: -35px;
  }

  .cta-section {
    padding: 65px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-section .button {
    width: 100%;
  }

  .footer {
    padding: 64px 22px calc(92px + env(safe-area-inset-bottom));
  }

  .footer-main {
    flex-direction: column;
    gap: 55px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 25px 0;
    gap: 13px;
  }

  .page-hero {
    min-height: 500px;
    padding: 80px 22px;
  }

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

  .catalog-section {
    padding-top: 45px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0;
  }

  .catalog-groups {
    gap: 52px;
  }

  .catalog-group-heading {
    min-height: 62px;
    margin-bottom: 16px;
  }

  .filter-row {
    gap: 4px;
  }

  .filter-row button {
    padding: 0 12px;
  }

  .video-feature,
  .contact-main {
    padding: 70px 20px;
  }

  .product-inquiry-section {
    padding: 64px 20px;
  }

  .product-inquiry-intro > h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .video-stage {
    min-height: auto;
  }

  .contact-map {
    min-height: 330px;
  }

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

  .contact-cards article:first-child {
    grid-column: auto;
  }

  .contact-cards article {
    min-height: 130px;
  }

  .contact-cards h3 {
    margin-top: 22px;
  }

  .inquiry-panel {
    padding: 30px 22px;
  }

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

  .inquiry-panel label,
  .inquiry-panel label:nth-of-type(5) {
    grid-column: 1;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    min-height: 68px;
    padding: 6px 8px max(6px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(13, 18, 16, 0.11);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -14px 36px rgba(13, 18, 16, 0.12);
    backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-bottom-nav a {
    position: relative;
    min-height: 54px;
    color: #7c837f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition:
      color 180ms ease,
      background 180ms ease;
  }

  .mobile-bottom-nav a::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 0;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--acid);
    transform: translateX(-50%);
    transition: width 180ms ease;
  }

  .mobile-bottom-nav a.active {
    color: var(--ink);
    background: rgba(201, 164, 65, 0.1);
  }

  .mobile-bottom-nav a.active::before {
    width: 42px;
  }

  .mobile-bottom-nav a > span {
    font-size: 21px;
    line-height: 1;
  }

  .mobile-bottom-nav a > small {
    font-size: 10px;
    font-weight: 680;
    letter-spacing: 0.02em;
  }
}

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

  .hero-slide {
    transform: none;
  }
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #eef0ec;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 34px 28px;
  background: #0d1210;
  color: white;
  display: flex;
  flex-direction: column;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.admin-brand .brand-mark {
  transform: scale(0.8);
  transform-origin: left center;
  width: 28px;
}

.admin-sidebar nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.admin-sidebar nav a {
  min-height: 54px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.47);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.admin-sidebar nav a.active {
  color: white;
}

.admin-sidebar nav a span {
  color: var(--acid);
  font-family: var(--font-geist-mono);
  font-size: 8px;
}

.admin-user {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-user > span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.admin-user strong {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.admin-user a {
  color: var(--acid);
  font-size: 10px;
  margin-top: 6px;
}

.admin-main {
  padding: 55px clamp(26px, 5vw, 80px) 90px;
  min-width: 0;
}

.admin-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
}

.admin-header p {
  color: #747c77;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.admin-header h1 {
  margin: 12px 0 0;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.06em;
  font-weight: 570;
}

.admin-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #66705f;
  font-size: 10px;
}

.admin-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #92ad00;
  box-shadow: 0 0 0 5px rgba(146, 173, 0, 0.1);
}

.admin-panel {
  background: white;
  border: 1px solid rgba(13, 18, 16, 0.09);
  margin-bottom: 24px;
  padding: clamp(25px, 4vw, 52px);
}

.admin-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-heading span {
  color: #7a8c00;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.admin-panel-heading h2 {
  margin: 9px 0 0;
  font-size: 26px;
  font-weight: 620;
}

.admin-panel-heading p {
  margin: 0;
  color: #7b837e;
  font-size: 10px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.admin-form label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.admin-form label > span {
  font-size: 10px;
  color: #68706b;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d7dcd7;
  background: #fafbf9;
  padding: 10px 12px;
  outline: none;
  resize: vertical;
  font-size: 12px;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: #99ad10;
  box-shadow: 0 0 0 3px rgba(153, 173, 16, 0.09);
}

.admin-textarea {
  grid-column: 1 / -1;
}

.upload-field {
  border: 1px dashed #bdc5bd;
  background: #f7f8f5;
  padding: 17px;
}

.upload-field input {
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
}

.upload-field small {
  color: #858c87;
  font-size: 9px;
}

.admin-form .admin-home-toggle {
  grid-column: 1 / -1;
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid #dfe3de;
  background: #f7f8f5;
  cursor: pointer;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 4px 10px;
}

.admin-form .admin-home-toggle input {
  grid-row: 1 / 3;
  width: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: #829600;
}

.admin-form .admin-home-toggle > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
}

.admin-form .admin-home-toggle small {
  color: #7b837e;
  font-size: 9px;
}

.admin-form .button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
}

.admin-status {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: #637600;
  font-size: 11px;
}

.admin-product-list {
  display: flex;
  flex-direction: column;
}

.admin-product-list article {
  min-height: 100px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
}

.admin-thumb {
  height: 70px;
  background: #e9ece7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-geist-mono);
  font-size: 10px;
  color: #727b75;
  overflow: hidden;
}

.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-list small {
  color: #879087;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.admin-product-list h3 {
  margin: 6px 0 4px;
  font-size: 14px;
}

.admin-product-list p {
  margin: 0;
  color: #737b76;
  font-size: 10px;
}

.admin-media-status {
  display: flex;
  gap: 8px;
}

.admin-media-status span {
  padding: 7px 9px;
  background: #f0f2ee;
  color: #717a74;
  font-size: 8px;
}

.admin-empty {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #7a827d;
  text-align: center;
}

.admin-empty > span {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.admin-empty p {
  max-width: 300px;
  line-height: 1.7;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: 42px;
  align-items: start;
}

.category-form {
  padding: 24px;
  background: #f6f8f4;
  border: 1px solid #e0e4df;
}

.admin-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-form-actions .button {
  margin-top: 0;
}

.admin-secondary-button {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #cdd3cd;
  background: white;
  color: #59615c;
  font-size: 11px;
  cursor: pointer;
}

.category-list {
  border-top: 1px solid var(--line);
}

.category-list article {
  min-height: 92px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: center;
}

.category-order {
  font-family: var(--font-geist-mono);
  color: #889187;
  font-size: 9px;
}

.category-list small {
  color: #839500;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.category-list h3 {
  margin: 6px 0 3px;
  font-size: 14px;
}

.category-list p {
  margin: 0;
  color: #757e77;
  font-size: 10px;
}

.category-actions {
  display: flex;
  gap: 6px;
}

.category-actions button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #d4d9d4;
  background: white;
  color: #5f6862;
  font-size: 9px;
  cursor: pointer;
}

.category-actions button.danger {
  color: #a33e36;
}

.seo-form {
  max-width: 1100px;
}

.seo-language-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.seo-language-card {
  padding: 28px;
  border: 1px solid #dfe3de;
  background: #f8f9f6;
  display: grid;
  gap: 22px;
}

.seo-language-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe3de;
}

.seo-language-heading span {
  color: #819300;
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.seo-language-heading h3 {
  margin: 8px 0 0;
  font-size: 19px;
}

.seo-form label > small {
  color: #8a918c;
  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: 18px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .admin-sidebar nav,
  .admin-user {
    display: none;
  }

  .admin-main {
    padding: 38px 18px 70px;
  }

  .admin-live {
    display: none;
  }

  .admin-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .category-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .seo-language-grid {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .seo-language-card {
    padding: 20px;
  }

  .admin-form-actions {
    grid-column: 1;
    align-items: stretch;
    flex-direction: column;
  }

  .category-list article {
    grid-template-columns: 32px 1fr;
  }

  .category-actions {
    grid-column: 2;
  }

  .admin-textarea,
  .admin-home-toggle,
  .admin-form .button,
  .admin-status {
    grid-column: 1;
  }

  .admin-product-list article {
    grid-template-columns: 65px 1fr;
  }

  .admin-media-status {
    display: none;
  }
}

/* PHP-rendered v2 compatibility: the public templates reuse the v1 visual system. */
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

.language-switch a {
  border: 0;
  background: transparent;
  min-width: 29px;
  padding: 6px 4px;
  color: #8a918d;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: center;
}

.language-switch a.active {
  color: var(--ink);
  background: var(--acid);
  font-weight: 750;
}

.hero h1 {
  white-space: pre-line;
}

.product-placeholder {
  width: 190px;
  height: 118px;
  border: 10px solid #202623;
  border-radius: 12px;
  background: linear-gradient(145deg, #263a3b, #081113);
  color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 28px 48px rgba(13, 18, 16, 0.22);
  display: grid;
  place-items: center;
  font-family: var(--font-geist-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.form-notice {
  margin: -16px 0 24px;
  padding: 12px 14px;
  font-size: 11px;
}

.form-notice.success {
  background: rgba(109, 129, 0, 0.1);
  color: #587000;
}

.form-notice.error {
  background: rgba(176, 59, 50, 0.09);
  color: #b03b32;
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.inquiry-panel form > small {
  grid-column: 1 / -1;
  color: #8a928d;
  font-size: 9px;
  line-height: 1.6;
}

.product-image-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(13, 18, 16, 0.85);
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-image-modal-arrow.previous {
  left: 18px;
}

.product-image-modal-arrow.next {
  right: 18px;
}

.product-image-modal-arrow:hover,
.product-image-modal-arrow:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  outline: none;
}

.product-image-modal-thumbnails {
  color: rgba(255, 255, 255, 0.65);
  align-items: center;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.zoom-image.zoomed > img {
  transform: scale(2);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}

.dialog-open {
  overflow: hidden;
}

.contact-map.is-ready .amap-status {
  display: none;
}

.not-found {
  min-height: min(720px, calc(100vh - 118px));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px clamp(24px, 8.2vw, 140px);
  background:
    linear-gradient(90deg, rgba(4, 11, 8, 0.97) 0%, rgba(4, 11, 8, 0.82) 48%, rgba(4, 11, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 9, 8, 0.1), rgba(5, 9, 8, 0.72)),
    url("/company/hero-camera-installation.webp") center / cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

.not-found::after {
  content: "";
  position: absolute;
  right: clamp(-160px, -4vw, -30px);
  top: 50%;
  z-index: -1;
  width: clamp(380px, 48vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 164, 65, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(201, 164, 65, 0.035),
    0 0 0 140px rgba(201, 164, 65, 0.02);
  transform: translateY(-50%);
}

.not-found-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.not-found-content {
  position: relative;
  z-index: 2;
  width: min(720px, 64vw);
}

.not-found-content .eyebrow {
  margin-bottom: 25px;
}

.not-found h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.not-found-description {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.not-found-code {
  position: absolute;
  right: clamp(28px, 7vw, 120px);
  bottom: 52px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.not-found-code strong {
  font-family: var(--font-geist-mono);
  font-size: clamp(104px, 17vw, 260px);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found-code span {
  margin-top: 20px;
  color: var(--acid);
  font-family: var(--font-geist-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
}

@media (max-width: 1024px) {
  .not-found {
    min-height: calc(100vh - 74px);
  }
}

@media (max-width: 720px) {
  .language-switch a {
    min-width: 25px;
    font-size: 9px;
  }

  .not-found {
    min-height: calc(100vh - 74px);
    padding: 80px 22px 126px;
    align-items: center;
  }

  .not-found-content {
    width: 100%;
  }

  .not-found h1 {
    max-width: 340px;
    font-size: clamp(54px, 17vw, 76px);
  }

  .not-found-description {
    max-width: 330px;
    margin-top: 24px;
    font-size: 14px;
  }

  .not-found .button-row {
    align-items: stretch;
  }

  .not-found-code {
    right: 18px;
    bottom: 92px;
    opacity: 0.55;
  }

  .not-found-code strong {
    font-size: 100px;
  }

  .not-found-code span {
    display: none;
  }
}
