:root {
  --navy: #061b47;
  --blue: #0b3a86;
  --royal: #075dd6;
  --cyan: #08a6d8;
  --gold: #f5b400;
  --ink: #111827;
  --muted: #657087;
  --line: #dfe5ed;
  --paper: #f4f7fa;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }

.utility-bar { height: 35px; background: var(--navy); color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .05em; }
.utility-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-inner div { display: flex; align-items: center; gap: 16px; }
.utility-inner a:hover { color: white; }
.utility-sep { width: 1px; height: 11px; background: rgba(255,255,255,.28); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(5,27,71,.08); backdrop-filter: blur(14px); }
.nav { height: 76px; display: flex; align-items: center; }
.brand { width: 188px; margin-right: auto; }
.brand img { width: 168px; height: auto; }
.desktop-nav { display: flex; height: 100%; align-items: center; gap: 33px; margin-right: 36px; }
.desktop-nav a { position: relative; display: flex; height: 100%; align-items: center; font-size: 14px; font-weight: 600; color: #27354d; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; background: var(--blue); color: white; padding: 13px 18px; font-size: 13px; font-weight: 700; }
.nav-cta span { color: var(--gold); font-size: 16px; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 720px; overflow: hidden; color: white; background: linear-gradient(113deg, #05183f 0%, #08265d 49%, #09639e 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(0deg, rgba(2,12,35,.4), transparent); pointer-events: none; }
.hero-grid, .contact-grid-bg { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.hero-orbit { position: absolute; border: 1px solid rgba(105,211,255,.22); border-radius: 50%; }
.orbit-one { width: 700px; height: 700px; right: -100px; top: -90px; }
.orbit-two { width: 470px; height: 470px; right: 12px; top: 25px; border-color: rgba(255,190,25,.2); }
.hero-stage { position: relative; z-index: 2; min-height: 610px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateX(24px); transition: opacity .65s ease, transform .65s ease, visibility .65s; }
.hero-slide.active { opacity: 1; visibility: visible; transform: translateX(0); }
.hero-slide::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .65s ease; pointer-events: none; }
.hero-slide.active::before { opacity: 1; }
.hero-slide.multi::before { background: radial-gradient(circle at 74% 42%, rgba(33,139,220,.2), transparent 34%); }
.hero-slide.remote::before { background: radial-gradient(circle at 73% 43%, rgba(68,151,205,.2), transparent 35%); }
.hero-slide.emode::before { background: radial-gradient(circle at 73% 43%, rgba(8,198,213,.18), transparent 35%); }
.hero-inner { position: relative; z-index: 2; min-height: 610px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 40px; }
.hero-copy { padding-top: 16px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 26px; color: var(--royal); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.eyebrow span { display: block; width: 28px; height: 2px; background: var(--gold); }
.eyebrow.light { color: #83d6f1; }
.hero h1 { margin: 0; font-size: clamp(52px, 5.5vw, 82px); line-height: 1.08; letter-spacing: -.045em; font-weight: 760; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { max-width: 570px; margin: 30px 0 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; padding: 0 24px; border: 1px solid transparent; font-size: 14px; font-weight: 800; transition: transform .22s ease, background .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: #0a244d; }
.button.ghost { border-color: rgba(255,255,255,.3); color: white; background: rgba(255,255,255,.03); }
.button.ghost:hover { background: white; color: var(--navy); }
.button.white { background: white; color: var(--navy); }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-visual > img { position: relative; z-index: 2; width: min(620px, 95%); transform: rotate(-3deg); filter: drop-shadow(0 35px 45px rgba(0,0,0,.42)); animation: float 5s ease-in-out infinite; }
.hero-slide.multi .hero-visual > img { width: min(500px, 78%); transform: none; animation-name: float-straight; }
.hero-slide.remote .hero-visual > img { width: min(520px, 82%); max-height: 440px; object-fit: contain; transform: none; animation-name: float-straight; }
.hero-slide.emode .hero-visual > img { width: min(470px, 72%); max-height: 430px; object-fit: contain; transform: none; animation-name: float-straight; }
.instrument-halo { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(40,188,243,.34) 0, rgba(6,75,143,.06) 58%, transparent 70%); filter: blur(2px); }
.laser-line { position: absolute; z-index: 1; left: 4%; top: 50%; width: 250px; height: 2px; transform: rotate(-7deg); background: linear-gradient(90deg, transparent, #f9be12 38%, white 60%, transparent); box-shadow: 0 0 12px #f8c52a; }
.floating-spec { position: absolute; z-index: 3; min-width: 152px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.19); background: rgba(3,24,65,.55); backdrop-filter: blur(9px); }
.floating-spec b, .floating-spec span { display: block; }
.floating-spec b { color: white; font-size: 22px; letter-spacing: -.03em; }
.floating-spec span { margin-top: 4px; color: #9ccde3; font-size: 10px; }
.spec-a { right: 0; top: 100px; }
.spec-b { left: 10px; bottom: 85px; }
.hero-foot { position: relative; z-index: 3; height: 110px; display: flex; align-items: center; color: rgba(255,255,255,.46); font-size: 10px; letter-spacing: .17em; }
.hero-foot > i { width: 100px; height: 1px; margin: 0 22px; background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.1)); }
.hero-foot p { margin-left: 30px; color: rgba(255,255,255,.62); }
.carousel-controls { display: flex; align-items: center; gap: 15px; margin-left: auto; }
.carousel-controls > button { width: 34px; height: 34px; padding: 0; border: 1px solid rgba(255,255,255,.24); color: white; background: transparent; cursor: pointer; transition: background .2s ease, color .2s ease; }
.carousel-controls > button:hover, .carousel-controls > button:focus-visible { color: var(--navy); background: var(--gold); outline: none; }
.carousel-dots { display: flex; align-items: center; gap: 9px; }
.carousel-dots button { display: flex; align-items: center; gap: 7px; padding: 8px 0; border: 0; color: rgba(255,255,255,.38); background: transparent; cursor: pointer; }
.carousel-dots button span { font-size: 9px; font-weight: 800; }
.carousel-dots button i { display: block; width: 20px; height: 2px; margin: 0; background: rgba(255,255,255,.2); transition: width .3s ease, background .3s ease; }
.carousel-dots button.active { color: white; }
.carousel-dots button.active i { width: 42px; background: var(--gold); }
@keyframes float { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes float-straight { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.proof { position: relative; z-index: 5; background: white; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { position: relative; display: flex; align-items: baseline; gap: 13px; padding: 34px 28px; border-right: 1px solid var(--line); }
.proof-grid > div:first-child { border-left: 1px solid var(--line); }
.proof strong { color: var(--blue); font-size: 36px; line-height: 1; letter-spacing: -.05em; }
.proof sup { color: var(--gold); font-size: 18px; }
.proof small { color: var(--blue); font-size: 15px; margin-left: 3px; }
.proof-grid > div > span { color: var(--muted); font-size: 12px; }
.counter-number { display: inline-block; color: inherit; font: inherit; font-variant-numeric: tabular-nums; letter-spacing: inherit; transform-origin: 50% 80%; }
.proof.is-counting .counter-number { animation: counter-rise .72s cubic-bezier(.2,.8,.2,1) both; }
.proof-grid > div:nth-child(2) .counter-number { animation-delay: .08s; }
.proof-grid > div:nth-child(3) .counter-number { animation-delay: .16s; }
.proof-grid > div:nth-child(4) .counter-number { animation-delay: .24s; }
@keyframes counter-rise {
  from { opacity: .12; transform: translateY(12px) scale(.9); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .proof.is-counting .counter-number { animation: none; }
}

.split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; }
.section-intro h2, .section-head h2, .support h2 { margin: 0; color: #071a3e; font-size: clamp(38px, 4vw, 58px); line-height: 1.22; letter-spacing: -.04em; }
.about-copy > .lead { margin: 3px 0 22px; color: #1a2942; font-size: 21px; line-height: 1.75; font-weight: 650; }
.about-copy > p:not(.lead) { margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 2; }
.about-copy a, .story-copy a { color: var(--blue); text-underline-offset: 3px; }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 44px; background: var(--line); border: 1px solid var(--line); }
.about-points > div { padding: 25px 22px; background: white; }
.about-points span { display: block; margin-bottom: 34px; color: var(--gold); font-size: 12px; font-weight: 800; }
.about-points b { display: block; color: var(--blue); font-size: 16px; }
.about-points p { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.products { background: var(--paper); }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 100px; margin-bottom: 55px; }
.section-head > p { margin: 0 0 7px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { position: relative; overflow: hidden; min-height: 590px; border: 1px solid #e1e6ed; background: white; transition: transform .28s ease, box-shadow .28s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 25px 50px rgba(6,27,71,.1); }
.product-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px 0; }
.product-top span { color: #a5b0be; font-size: 12px; font-weight: 800; }
.product-top small { color: #8190a5; font-size: 9px; letter-spacing: .13em; }
.product-image { height: 260px; display: grid; place-items: center; padding: 20px 25px 0; }
.product-image img { max-height: 225px; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-card.blue .product-image img { max-width: 80%; }
.product-card.slate .product-image img { max-width: 75%; filter: drop-shadow(0 17px 16px rgba(7,27,62,.18)); }
.product-content { padding: 22px 28px 30px; }
.product-content h3 { margin: 0; color: #0c234d; font-size: 21px; }
.product-content > p { min-height: 72px; margin: 14px 0 20px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.product-content ul { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; padding: 0; margin: 0 0 28px; }
.product-content li { padding: 6px 9px; border: 1px solid #dce3eb; color: #52617a; font-size: 10px; }
.product-content > a { display: flex; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 800; }
.product-content > a span { color: var(--gold); font-size: 16px; }

.emode { overflow: hidden; color: white; background: var(--navy); }
.emode-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.emode-visual { position: relative; min-height: 590px; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(22,100,190,.5), transparent 66%); }
.emode-visual::before, .emode-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.emode-visual::before { width: 520px; height: 520px; }
.emode-visual::after { width: 360px; height: 360px; border-color: rgba(247,185,0,.2); }
.emode-visual > img { position: relative; z-index: 2; max-height: 435px; width: 87%; object-fit: contain; filter: drop-shadow(0 36px 40px rgba(0,0,0,.48)); }
.emode-visual > p { position: absolute; z-index: 3; left: 0; bottom: 0; margin: 0; color: rgba(255,255,255,.35); font-size: 11px; line-height: 1.7; letter-spacing: .19em; }
.emode-badge { position: absolute; z-index: 4; top: 20px; right: 10px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.2); color: #a9d6ee; font-size: 10px; }
.emode-badge span { margin-right: 8px; color: var(--gold); font-weight: 900; }
.emode-copy h2 { margin: 0; color: white; font-size: clamp(44px, 4.2vw, 62px); line-height: 1.12; letter-spacing: -.04em; }
.emode-copy h2 em { display: block; margin-top: 12px; color: #7dd2ef; font-size: .49em; font-style: normal; letter-spacing: -.02em; }
.emode-copy > p:not(.eyebrow) { margin: 28px 0 0; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.9; }
.emode-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 35px 0; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.emode-specs > div { padding: 20px; background: rgba(6,27,71,.82); }
.emode-specs strong, .emode-specs span { display: block; }
.emode-specs strong { color: white; font-size: 26px; }
.emode-specs strong small { margin-left: 4px; color: var(--gold); font-size: 12px; }
.emode-specs span { margin-top: 5px; color: #89b4cc; font-size: 10px; }

.applications { background: white; }
.app-head { margin-bottom: 50px; }
.application-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 13px; }
.app-card { position: relative; min-height: 430px; grid-column: span 2; overflow: hidden; background: #10284d; }
.app-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.app-card:hover img { transform: scale(1.07); }
.app-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,19,47,.96) 0%, rgba(3,20,51,.18) 75%); }
.app-content { position: absolute; inset: auto 24px 25px; color: white; }
.app-content span { color: var(--gold); font-size: 11px; font-weight: 900; }
.app-content h3 { margin: 11px 0 8px; font-size: 18px; }
.app-content p { margin: 0; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.7; }

.support { background: var(--paper); }
.support-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.software-frame { overflow: hidden; border: 1px solid #dbe3ec; border-radius: 7px; background: white; box-shadow: 0 26px 55px rgba(6,27,71,.14); transform: perspective(1000px) rotateY(3deg); }
.frame-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #e8edf2; background: #f9fafc; }
.frame-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d0d7e0; }
.frame-bar i:first-child { background: var(--gold); }
.frame-bar span { margin-left: 8px; color: #8390a3; font-size: 9px; }
.software-frame > img { width: 100%; aspect-ratio: 1.65; object-fit: cover; }
.support-media { position: relative; }
.support-carousel-stage { position: relative; }
.support-slide { display: none; }
.support-slide.active { display: block; }
.support-slide-trigger, .support-slide-static {
  position: relative; display: block; width: 100%; padding: 0; border: 0; background: #0b1c33; cursor: pointer; text-align: left;
}
.support-slide-static { cursor: default; }
.support-slide img { width: 100%; aspect-ratio: 1.65; object-fit: cover; display: block; }
.support-play {
  position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; margin: -34px 0 0 -34px;
  border-radius: 50%; background: rgba(7, 26, 62, .72); border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; transition: transform .25s ease, background .25s ease;
}
.support-play i {
  display: block; width: 0; height: 0; margin-left: 4px;
  border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff;
}
.support-slide-trigger:hover .support-play { transform: scale(1.06); background: rgba(7, 26, 62, .88); }
.support-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  color: #fff; font-size: 13px; line-height: 1.4;
  background: linear-gradient(transparent, rgba(5, 20, 48, .78));
}
.support-carousel-controls {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px 12px; border-top: 1px solid #e5ebf1; background: #f7f9fb;
}
.support-nav {
  width: 34px; height: 34px; border: 1px solid #d5dde8; border-radius: 4px; background: white;
  color: #173258; cursor: pointer;
}
.support-nav:hover { border-color: var(--blue); color: var(--blue); }
.support-dots { display: flex; gap: 8px; align-items: center; }
.support-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #c5d0dc; cursor: pointer;
}
.support-dots button.active { background: var(--blue); width: 18px; border-radius: 999px; }
body.video-modal-open { overflow: hidden; }
.video-modal[hidden] { display: none !important; }
.video-modal {
  position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 24px;
}
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 14, 34, .72); }
.video-modal-dialog {
  position: relative; z-index: 1; width: min(920px, 100%); background: #07162f; color: white;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 80px rgba(0,0,0,.45); padding: 18px 18px 16px;
}
.video-modal-close {
  position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border: 0; border-radius: 4px;
  background: rgba(255,255,255,.08); color: white; font-size: 24px; line-height: 1; cursor: pointer;
}
.video-modal-title { margin: 0 40px 12px 0; font-size: 15px; font-weight: 650; }
.video-modal-dialog video { display: block; width: 100%; max-height: min(70vh, 520px); background: #000; }
.support-copy > p:not(.eyebrow) { margin: 28px 0 30px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.support-copy ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid #d5dde6; }
.support-copy li { display: flex; align-items: center; gap: 22px; padding: 15px 0; border-bottom: 1px solid #d5dde6; }
.support-copy li b { color: var(--gold); font-size: 11px; }
.support-copy li span { color: #243550; font-size: 13px; font-weight: 700; }

.contact { position: relative; overflow: hidden; padding: 88px 0; color: white; background: linear-gradient(105deg, #092052, #0b4a8e); }
.contact::after { content: ""; position: absolute; width: 470px; height: 470px; right: -100px; top: -250px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.contact-grid-bg { opacity: .09; }
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.contact h2 { margin: 0; font-size: clamp(39px, 4vw, 58px); line-height: 1.18; letter-spacing: -.035em; }
.contact p:not(.eyebrow) { max-width: 670px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.9; }
.contact-actions { display: flex; align-items: center; justify-content: flex-end; gap: 27px; }
.contact-phone { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.25); }
.contact-phone small, .contact-phone strong { display: block; }
.contact-phone small { margin-bottom: 6px; color: #91c7de; font-size: 10px; }
.contact-phone strong { font-size: 20px; letter-spacing: .02em; }

footer { color: #c4cedb; background: #04132f; }
.footer-main { display: grid; grid-template-columns: 1.35fr .72fr .72fr 1fr auto; gap: 45px; padding: 70px 0 58px; }
.footer-brand img { width: 190px; filter: brightness(1.2); }
.footer-brand p { max-width: 280px; margin: 25px 0 0; color: #77879d; font-size: 13px; line-height: 1.9; }
.footer-main h4 { margin: 0 0 22px; color: white; font-size: 13px; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) p { display: block; margin: 0 0 13px; color: #7d8ca1; font-size: 12px; line-height: 1.8; }
.footer-main a:hover { color: var(--gold) !important; }
.footer-qr { min-width: 126px; }
.footer-qr-frame { width: 126px; padding: 7px; border-radius: 4px; background: white; box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.footer-qr-frame img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; }
.footer-main .footer-qr p { margin: 10px 0 0; text-align: center; color: #7d8ca1; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); color: #57677e; font-size: 10px; }

/* Inner pages */
.desktop-nav a.active::after { right: 0; }
.desktop-nav a.active { color: var(--blue); }
.inner-hero { position: relative; overflow: hidden; min-height: 455px; color: white; background: linear-gradient(112deg, #05183d 0%, #08275e 58%, #0b6099 100%); }
.inner-grid, .page-cta-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, black, transparent 80%); }
.inner-orbit { position: absolute; width: 520px; height: 520px; right: -40px; top: -220px; border: 1px solid rgba(113,218,255,.24); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.015), 0 0 0 160px rgba(255,255,255,.012); }
.inner-hero-content { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 78px; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; color: rgba(255,255,255,.46); font-size: 10px; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs b { color: rgba(255,255,255,.8); font-weight: 600; }
.inner-hero .eyebrow { margin-bottom: 18px; }
.inner-hero h1 { max-width: 820px; margin: 0; font-size: clamp(45px, 5vw, 68px); line-height: 1.15; letter-spacing: -.045em; }
.inner-hero-content > p:last-child { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.9; }

.page-cta { position: relative; overflow: hidden; padding: 82px 0; color: white; background: linear-gradient(105deg, #072052, #0b4b8f); }
.page-cta::after { content: ""; position: absolute; width: 380px; height: 380px; right: -90px; top: -210px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.page-cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.page-cta-inner p { margin: 0 0 14px; color: #82d3ef; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.page-cta-inner h2 { margin: 0; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.2; letter-spacing: -.035em; }
.page-cta-inner > div:last-child { display: flex; align-items: center; justify-content: flex-end; gap: 25px; }
.page-cta-inner > div:last-child > a:last-child { color: #b9d9e8; font-size: 14px; font-weight: 700; }

/* About */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.story-visual { position: relative; min-height: 470px; display: grid; place-items: center; background: linear-gradient(145deg, #edf4f8, #dce9f2); }
.story-visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(8,75,150,.14); border-radius: 50%; }
.story-visual img { position: relative; z-index: 2; width: 78%; max-height: 330px; object-fit: contain; filter: drop-shadow(0 25px 24px rgba(5,29,67,.22)); }
.story-visual > div { position: absolute; z-index: 3; right: -28px; bottom: -28px; width: 165px; padding: 24px; color: white; background: var(--blue); }
.story-visual strong, .story-visual span { display: block; }
.story-visual strong { font-size: 38px; }
.story-visual sup { color: var(--gold); font-size: 17px; }
.story-visual span { margin-top: 6px; color: #9bc8e3; font-size: 10px; }
.story-copy h2, .detail-overview h2, .compact-head h2, .contact-page-section h2 { margin: 0; color: #071a3e; font-size: clamp(38px, 4vw, 56px); line-height: 1.23; letter-spacing: -.04em; }
.story-lead { margin: 28px 0 18px; color: #172a48; font-size: 19px !important; font-weight: 650; }
.story-copy > p:not(.eyebrow) { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.capability-section { background: var(--paper); }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.capability-grid article { min-height: 315px; padding: 28px; background: white; }
.capability-grid article > span { display: block; margin-bottom: 60px; color: var(--gold); font-size: 12px; font-weight: 900; }
.capability-grid h3 { margin: 0; color: var(--blue); font-size: 19px; }
.capability-grid p { margin: 15px 0 0; color: var(--muted); font-size: 12px; line-height: 1.85; }
.solution-values { color: white; background: var(--navy); }
.values-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.values-grid h2 { margin: 0; font-size: clamp(38px, 4vw, 56px); line-height: 1.24; letter-spacing: -.04em; }
.values-grid > div:last-child > p { margin: 0 0 30px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.95; }
.values-grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; list-style: none; background: rgba(255,255,255,.13); }
.values-grid li { padding: 18px; background: var(--navy); color: #c5d7e6; font-size: 12px; }

/* Product catalog */
.catalog-section { background: var(--paper); }
.catalog-grid { display: grid; gap: 24px; }
.catalog-card { min-height: 390px; display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); background: white; }
.catalog-card:nth-child(even) .catalog-visual { order: 2; }
.catalog-visual { position: relative; display: grid; place-items: center; overflow: hidden; padding: 35px; background: linear-gradient(145deg, #e8f1f6, #f8fafb); }
.catalog-visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(4,55,130,.12); border-radius: 50%; }
.catalog-visual > span { position: absolute; left: 25px; top: 23px; color: #9aa7b7; font-size: 11px; font-weight: 900; }
.catalog-visual img { position: relative; z-index: 2; width: 78%; max-height: 280px; object-fit: contain; filter: drop-shadow(0 24px 22px rgba(5,29,67,.2)); }
.catalog-card.blue .catalog-visual img { width: 64%; }
.catalog-card.slate .catalog-visual img { width: 58%; }
.catalog-copy { align-self: center; padding: 55px 65px; }
.catalog-copy small { color: var(--royal); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.catalog-copy h2 { margin: 12px 0 17px; color: #0a234e; font-size: 30px; }
.catalog-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.catalog-copy ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 23px 0 30px; list-style: none; }
.catalog-copy li { padding: 6px 9px; border: 1px solid #dce3eb; color: #52617a; font-size: 10px; }
.catalog-copy > a { display: flex; justify-content: space-between; max-width: 170px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 800; }
.catalog-copy > a span { color: var(--gold); }
.compare-section { background: white; }
.compact-head { margin-bottom: 42px; }
.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.compare-grid > div { padding: 28px 24px; background: white; }
.compare-grid b, .compare-grid span { display: block; }
.compare-grid b { color: #8a97aa; font-size: 10px; }
.compare-grid span { margin-top: 32px; color: var(--blue); font-size: 17px; font-weight: 800; }
.compare-grid p { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

/* Product detail */
.product-detail-hero { position: relative; overflow: hidden; color: white; background: linear-gradient(115deg, #05183d 0%, #08275e 57%, #0a5f99 100%); }
.product-detail-grid { position: relative; z-index: 2; min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.product-detail-copy { padding: 55px 0 70px; }
.product-detail-copy .breadcrumbs { margin-bottom: 55px; }
.product-detail-copy h1 { margin: 0; max-width: 650px; font-size: clamp(46px, 5.2vw, 70px); line-height: 1.12; letter-spacing: -.045em; }
.product-detail-copy > p:not(.eyebrow) { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.95; }
.detail-actions { display: flex; gap: 12px; margin-top: 35px; }
.product-detail-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.product-detail-visual img { position: relative; z-index: 2; width: 92%; max-height: 385px; object-fit: contain; filter: drop-shadow(0 34px 35px rgba(0,0,0,.42)); }
.product-detail-visual.blue img { width: 72%; }
.product-detail-visual.slate img { width: 65%; }
.product-detail-visual > span { position: absolute; right: 0; bottom: 30px; color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: .18em; }
.detail-halo { position: absolute; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: radial-gradient(circle, rgba(39,168,226,.22), transparent 68%); }
.detail-highlights { border-bottom: 1px solid var(--line); background: white; }
.detail-highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.detail-highlight-grid > div { padding: 30px 26px; border-right: 1px solid var(--line); }
.detail-highlight-grid > div:first-child { border-left: 1px solid var(--line); }
.detail-highlight-grid strong, .detail-highlight-grid span { display: block; }
.detail-highlight-grid strong { color: var(--blue); font-size: 28px; }
.detail-highlight-grid span { margin-top: 6px; color: var(--muted); font-size: 10px; }
.detail-overview-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.detail-prose > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.detail-prose > p:first-child { color: #172a48; font-size: 19px; font-weight: 650; }
.detail-application-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 35px; border: 1px solid var(--line); background: var(--line); }
.detail-application-list > div { display: flex; gap: 15px; padding: 18px; background: white; }
.detail-application-list span { color: var(--gold); font-size: 10px; font-weight: 900; }
.detail-application-list b { color: #273955; font-size: 12px; }
.detail-content-shell { display: grid; gap: 42px; max-width: 980px; }
.detail-content-intro h2 { margin: 0; color: #071a3e; font-size: clamp(38px, 4vw, 56px); line-height: 1.23; letter-spacing: -.04em; }
.detail-rich-content { color: var(--muted); font-size: 15px; line-height: 1.95; }
.detail-rich-content > *:first-child { margin-top: 0; }
.detail-rich-content h2, .detail-rich-content h3 { color: #071a3e; letter-spacing: -.03em; line-height: 1.3; }
.detail-rich-content h2 { margin: 36px 0 16px; font-size: 28px; }
.detail-rich-content h3 { margin: 28px 0 12px; font-size: 22px; }
.detail-rich-content p { margin: 0 0 18px; }
.detail-rich-content ul, .detail-rich-content ol { margin: 0 0 18px; padding-left: 1.3em; }
.detail-rich-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.detail-rich-content img, .detail-rich-content video {
  display: block; width: auto; max-width: min(100%, 720px); max-height: 420px;
  margin: 28px auto; border-radius: 2px; object-fit: contain; background: #0b1c33;
}
.detail-rich-content blockquote {
  margin: 24px 0; padding: 14px 20px; border-left: 3px solid var(--blue); background: #f3f7fb; color: #314864;
}
.detail-application-list-wide { margin-top: 8px; }
.detail-video-grid { display: grid; gap: 28px; justify-items: start; }
.detail-video-card { margin: 0; width: min(100%, 720px); }
.detail-video-card video {
  display: block; width: 100%; max-width: 720px; max-height: 405px;
  aspect-ratio: 16 / 9; object-fit: contain; background: #0b1c33; border: 1px solid var(--line);
}
.detail-video-card figcaption { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.parameters { background: var(--paper); }
.parameter-table { border-top: 2px solid var(--blue); }
.parameter-row { display: grid; grid-template-columns: .34fr .66fr; border-bottom: 1px solid #d8e0e8; }
.parameter-row b, .parameter-row span { padding: 17px 22px; font-size: 12px; line-height: 1.7; }
.parameter-row b { color: #1c3153; background: #e8eef4; }
.parameter-row span { color: #5d6c81; background: white; }

/* Applications */
.application-detail-section { background: white; }
.application-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.application-detail-card { overflow: hidden; border: 1px solid var(--line); background: white; }
.application-detail-card:last-child { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr 1fr; }
.application-detail-image { position: relative; height: 285px; overflow: hidden; background: #dce9f1; }
.application-detail-card:last-child .application-detail-image { height: 100%; min-height: 330px; }
.application-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.application-detail-image > span { position: absolute; top: 18px; left: 18px; padding: 7px 9px; color: white; background: rgba(5,27,71,.75); font-size: 10px; font-weight: 900; }
.application-detail-card > div:last-child { padding: 30px; }
.application-detail-card h2 { margin: 0; color: #0a234e; font-size: 24px; }
.application-detail-card p { margin: 14px 0 18px; color: var(--muted); font-size: 12px; line-height: 1.85; }
.application-detail-card ul { padding: 0; margin: 0; list-style: none; }
.application-detail-card li { padding: 9px 0; border-top: 1px solid var(--line); color: #40516b; font-size: 11px; }
.workflow-section { background: var(--paper); }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.workflow-grid > div { padding: 28px; background: white; }
.workflow-grid span { color: var(--gold); font-size: 11px; font-weight: 900; }
.workflow-grid h3 { margin: 38px 0 10px; color: var(--blue); font-size: 18px; }
.workflow-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }

/* Support */
.support-services { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid article { min-height: 320px; padding: 28px; border: 1px solid var(--line); }
.service-grid span { color: var(--gold); font-size: 11px; font-weight: 900; }
.service-grid h2 { margin: 70px 0 15px; color: var(--blue); font-size: 22px; }
.service-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.85; }
.download-section { background: var(--paper); }
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.download-grid > a { position: relative; min-height: 270px; padding: 34px; color: white; background: linear-gradient(135deg, var(--navy), #0b4d91); transition: transform .25s ease; }
.download-grid > a:hover { transform: translateY(-5px); }
.download-grid > a:last-child { background: linear-gradient(135deg, #0a315d, #078aae); }
.download-grid small { color: #88cde6; font-size: 10px; }
.download-grid h3 { max-width: 360px; margin: 40px 0 10px; font-size: 24px; line-height: 1.4; }
.download-grid span { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .15em; }
.download-grid b { position: absolute; right: 30px; bottom: 28px; color: var(--gold); font-size: 11px; }
.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-grid h2 { margin: 0; color: #071a3e; font-size: 50px; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.85; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; padding: 21px 0; cursor: pointer; list-style: none; color: #1a2f50; font-size: 14px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-size: 18px; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 35px 20px 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

/* Contact */
.contact-page-section { background: var(--paper); }
.contact-page-grid { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 590px; box-shadow: 0 20px 55px rgba(6,27,71,.1); }
.contact-info-panel { padding: 55px; color: white; background: linear-gradient(145deg, #061b47, #0a5195); }
.contact-info-panel h2 { color: white; font-size: 34px; }
.contact-info-list { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.17); }
.contact-info-list > div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-info-list small, .contact-info-list a, .contact-info-list p { display: block; }
.contact-info-list small { margin-bottom: 7px; color: #83cbe7; font-size: 9px; }
.contact-info-list a, .contact-info-list p { margin: 0; color: white; font-size: 14px; line-height: 1.8; }
.inquiry-panel { padding: 55px; background: white; }
.inquiry-panel h2 { font-size: 39px; }
.inquiry-checklist { margin: 35px 0; border-top: 1px solid var(--line); }
.inquiry-checklist > div { display: flex; align-items: center; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.inquiry-checklist b { color: var(--gold); font-size: 10px; }
.inquiry-checklist span { color: #344762; font-size: 12px; font-weight: 700; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; margin-right: 20px; }
  .brand { width: 160px; }
  .product-content { padding-inline: 22px; }
  .app-card { grid-column: span 5; min-height: 330px; }
  .app-card:last-child { grid-column: 3 / span 6; }
  .capability-grid, .service-grid, .compare-grid, .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-copy { padding: 45px; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 36px, 720px); }
  .section { padding: 85px 0; }
  .utility-bar, .desktop-nav, .nav-cta { display: none; }
  .site-header { top: 0; }
  .nav { height: 70px; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 24px; height: 2px; background: var(--blue); }
  .mobile-menu > div { position: absolute; right: 0; top: 51px; width: 230px; padding: 13px; background: white; border: 1px solid var(--line); box-shadow: 0 18px 35px rgba(5,27,71,.16); }
  .mobile-menu a { display: block; padding: 12px 10px; border-bottom: 1px solid #edf0f4; color: #263953; font-size: 13px; }
  .hero { min-height: auto; }
  .hero-stage { min-height: 820px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 820px; padding-top: 80px; }
  .hero-copy { position: relative; z-index: 4; }
  .hero-visual { min-height: 410px; margin-top: -20px; }
  .hero-visual > img { width: min(590px, 88%); }
  .hero-slide.multi .hero-visual > img { width: min(470px, 72%); }
  .hero-slide.remote .hero-visual > img { width: min(470px, 76%); max-height: 400px; }
  .hero-slide.emode .hero-visual > img { width: min(430px, 68%); }
  .spec-a { right: 4%; top: 65px; }
  .spec-b { left: 3%; bottom: 55px; }
  .hero-foot { height: 80px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .split, .section-head, .emode-grid, .support-grid, .contact-inner { grid-template-columns: 1fr; gap: 45px; }
  .section-head { align-items: start; }
  .about-points { margin-top: 35px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; display: grid; grid-template-columns: .9fr 1.1fr; }
  .product-top { position: absolute; inset: 0 0 auto; }
  .product-image { height: 100%; min-height: 350px; padding-top: 55px; }
  .product-content { align-self: center; padding: 60px 28px 35px; }
  .emode-visual { min-height: 510px; order: 2; }
  .emode-copy { order: 1; }
  .emode-visual > img { max-height: 390px; }
  .support-grid { gap: 55px; }
  .software-frame { transform: none; }
  .contact-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / 3; }
  .footer-qr { grid-column: 3; }
  .inner-hero { min-height: 420px; }
  .inner-hero-content { padding-top: 62px; }
  .page-cta-inner, .story-grid, .values-grid, .detail-overview-grid, .faq-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 45px; }
  .page-cta-inner > div:last-child { justify-content: flex-start; }
  .story-visual { max-width: 650px; }
  .story-visual > div { right: 20px; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card:nth-child(even) .catalog-visual { order: 0; }
  .catalog-visual { min-height: 360px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 0; }
  .product-detail-copy { padding-bottom: 20px; }
  .product-detail-visual { min-height: 430px; }
  .application-detail-card:last-child { display: block; }
  .contact-info-panel, .inquiry-panel { padding: 45px; }
}

@media (max-width: 580px) {
  .shell { width: min(100% - 28px, 500px); }
  .section { padding: 72px 0; }
  .brand img { width: 150px; }
  .hero-stage { min-height: 750px; }
  .hero-inner { min-height: 750px; padding-top: 63px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 15px; line-height: 1.8; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 220px; }
  .hero-visual { min-height: 330px; }
  .hero-slide.multi .hero-visual > img { width: 78%; }
  .hero-slide.remote .hero-visual > img { width: 76%; max-height: 310px; }
  .hero-slide.emode .hero-visual > img { width: 72%; max-height: 300px; }
  .floating-spec { min-width: 126px; padding: 11px 12px; }
  .floating-spec b { font-size: 18px; }
  .spec-a { top: 28px; }
  .spec-b { bottom: 30px; }
  .instrument-halo { width: 330px; height: 330px; }
  .hero-foot p { display: none; }
  .hero-foot > span, .hero-foot > i { display: none; }
  .carousel-controls { width: 100%; justify-content: center; margin-left: 0; }
  .proof-grid > div { display: block; padding: 26px 19px; }
  .proof span { display: block; margin-top: 7px; }
  .section-intro h2, .section-head h2, .support h2 { font-size: 38px; }
  .about-copy > .lead { font-size: 18px; }
  .about-points { grid-template-columns: 1fr; }
  .about-points span { margin-bottom: 12px; }
  .product-card { display: block; }
  .product-image { height: 260px; min-height: 0; padding-top: 48px; }
  .product-content { padding-top: 25px; }
  .product-content > p { min-height: 0; }
  .emode-visual { min-height: 410px; }
  .emode-visual::before { width: 380px; height: 380px; }
  .emode-visual::after { width: 270px; height: 270px; }
  .emode-visual > p { font-size: 8px; }
  .emode-badge { top: 0; }
  .emode-specs { grid-template-columns: 1fr 1fr; }
  .emode-specs > div { padding: 16px; }
  .application-grid { grid-template-columns: 1fr; }
  .app-card, .app-card:last-child { grid-column: auto; min-height: 320px; }
  .contact { padding: 72px 0; }
  .contact h2 { font-size: 39px; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .contact-phone { padding: 14px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-contact { grid-column: 1 / 3; }
  .footer-qr { grid-column: 1 / 3; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .inner-hero { min-height: 390px; }
  .inner-hero-content { padding-top: 48px; padding-bottom: 62px; }
  .breadcrumbs { margin-bottom: 38px; }
  .inner-hero h1 { font-size: 42px; }
  .inner-hero-content > p:last-child { font-size: 14px; }
  .page-cta { padding: 65px 0; }
  .page-cta-inner > div:last-child { align-items: flex-start; flex-direction: column; }
  .story-visual { min-height: 350px; }
  .story-visual img { width: 86%; }
  .story-visual > div { right: 10px; bottom: -20px; }
  .story-copy h2, .detail-overview h2, .compact-head h2, .contact-page-section h2 { font-size: 37px; }
  .capability-grid, .service-grid, .compare-grid, .workflow-grid, .application-detail-grid, .download-grid { grid-template-columns: 1fr; }
  .capability-grid article, .service-grid article { min-height: 255px; }
  .capability-grid article > span, .service-grid h2 { margin-bottom: 36px; }
  .service-grid h2 { margin-top: 38px; }
  .values-grid ul { grid-template-columns: 1fr; }
  .catalog-visual { min-height: 290px; }
  .catalog-copy { padding: 35px 25px; }
  .catalog-copy h2 { font-size: 25px; }
  .product-detail-copy { padding-top: 45px; }
  .product-detail-copy .breadcrumbs { margin-bottom: 40px; }
  .product-detail-copy h1 { font-size: 43px; }
  .detail-actions { align-items: stretch; flex-direction: column; width: 220px; }
  .product-detail-visual { min-height: 330px; }
  .detail-halo { width: 310px; height: 310px; }
  .detail-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-highlight-grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .detail-highlight-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .detail-application-list { grid-template-columns: 1fr; }
  .parameter-row { grid-template-columns: 1fr; }
  .parameter-row b { padding-bottom: 8px; }
  .parameter-row span { padding-top: 8px; }
  .application-detail-card:last-child { grid-column: auto; }
  .application-detail-card:last-child .application-detail-image { min-height: 285px; }
  .faq-grid h2 { font-size: 40px; }
  .contact-info-panel, .inquiry-panel { padding: 35px 25px; }
}

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