:root {
  --ink: #101b2a;
  --ink-soft: #435064;
  --line: #dce3eb;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #1767c9;
  --blue-bright: #18aee3;
  --navy: #081a2d;
  --content: min(92vw, 1380px);
  --radius: 0.35rem;
  --shadow: 0 30px 80px rgba(7, 30, 55, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 240ms ease, border-color 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(246, 248, 251, 0.94);
  border-color: var(--line);
}

.header-inner {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: clamp(152px, 14vw, 205px);
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.6vw, 2.8rem);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.global-nav a:not(.nav-contact) {
  position: relative;
}

.global-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 0.8rem 1.25rem;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: color 200ms ease, background 200ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--navy);
  background: transparent;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 760px;
  height: min(920px, 100svh);
  padding-top: 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 103, 201, 0.055) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--paper);
}

.hero-grid {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 4rem 0 3rem;
}

.eyebrow,
.section-index {
  margin: 0 0 1.2rem;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  gap: 1rem;
}

.eyebrow span:first-child {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.45rem, 4.7vw, 5.6rem);
  line-height: 1.14;
  letter-spacing: -0.055em;
}

h1 > span,
h1 > strong {
  display: block;
}

h1 > span {
  font-size: 0.56em;
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.03em;
}

h1 > strong {
  margin-top: 0.1em;
  font-weight: 750;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.button span,
.text-link span {
  transition: transform 200ms ease;
}

.button:hover span,
.button:focus-visible span,
.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.2rem, -0.1rem);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(23, 103, 201, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(23, 103, 201, 0.3);
}

.text-link {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  padding-block: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.camera-halo {
  position: absolute;
  top: 13%;
  right: -2%;
  width: min(43vw, 610px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 103, 201, 0.24);
  border-radius: 50%;
}

.camera-halo::before,
.camera-halo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 103, 201, 0.13);
  border-radius: inherit;
}

.camera-halo::before {
  inset: 11%;
}

.camera-halo::after {
  inset: 23%;
}

.hero-camera {
  position: absolute;
  top: 10%;
  right: 7%;
  width: min(36vw, 500px);
  max-height: 80%;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 28px 42px rgba(15, 31, 49, 0.14));
  animation: camera-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.hero-phone {
  position: absolute;
  right: -10%;
  bottom: 10%;
  z-index: 2;
  width: min(50vw, 690px);
  filter: drop-shadow(0 35px 38px rgba(15, 31, 49, 0.22));
  animation: phone-in 1s cubic-bezier(0.22, 1, 0.36, 1) 280ms both, phone-float 7s ease-in-out 1.3s infinite;
}

.signal-label {
  position: absolute;
  top: 15%;
  left: 3%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font: 700 0.7rem/1 Arial, sans-serif;
  letter-spacing: 0.14em;
}

.signal-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(24, 174, 227, 0.12);
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 3.8%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-caption span {
  color: var(--blue);
  font-family: Arial, sans-serif;
}

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

.facts-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.fact {
  min-height: 176px;
  padding: 2.2rem clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.fact:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.fact p {
  margin-bottom: 0;
}

.fact-value {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.25vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.fact-value small,
.fact-value span {
  font-family: "Yu Gothic", sans-serif;
  font-size: 0.34em;
  letter-spacing: 0;
}

.fact-value small {
  margin-right: 0.2rem;
}

.fact-value.fact-word {
  font-family: "Yu Gothic", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.65rem);
  letter-spacing: -0.04em;
}

.fact > p:last-child {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.section {
  padding: clamp(3rem, 4vw, 4rem) 0;
}

.section-heading {
  width: var(--content);
  margin: 0 auto clamp(1.5rem, 2.4vw, 2.25rem);
}

.section-heading h2,
.trust-cta h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-heading-inline {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(1.5rem, 2.6vw, 2.5rem);
}

.section-heading-inline h2 {
  margin-bottom: 0;
}

.feature-pair {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-pair article {
  min-width: 0;
  background: var(--white);
}

.feature-copy {
  min-height: 176px;
  padding: clamp(2rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  grid-template-rows: auto auto;
  align-content: start;
  column-gap: 1.3rem;
}

.feature-number {
  grid-row: 1 / 3;
  color: var(--blue);
  font: 700 0.75rem/1 Arial, sans-serif;
  letter-spacing: 0.14em;
}

.feature-copy h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  line-height: 1.24;
  letter-spacing: -0.045em;
}

@media (min-width: 561px) {
  .night-feature .feature-copy h3 {
    white-space: nowrap;
  }
}

.feature-copy > p:last-child {
  max-width: 29rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.mount-collage {
  position: relative;
  min-height: 320px;
  padding: 0 2.5rem 2.5rem;
}

.mount-collage figure {
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
}

.mount-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mount-collage figure:hover img {
  transform: scale(1.035);
}

.mount-collage figcaption {
  position: absolute;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(8, 26, 45, 0.86);
  font-size: 0.75rem;
  font-weight: 700;
}

.mount-main {
  position: absolute;
  inset: 0 17% 2.5rem 2.5rem;
}

.mount-main figcaption {
  left: 1rem;
  bottom: 1rem;
}

.mount-sub {
  position: absolute;
  right: 2.5rem;
  bottom: 0;
  width: 43%;
  height: 48%;
  border: 0.65rem solid var(--white);
  box-shadow: var(--shadow);
}

.mount-sub figcaption {
  right: 0.35rem;
  bottom: 0.35rem;
  left: 0.35rem;
}

.night-feature {
  color: var(--white);
  background: var(--navy) !important;
}

.feature-copy-light .feature-number {
  color: var(--blue-bright);
}

.feature-copy-light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.compare {
  --position: 52%;
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #07111d;
}

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

.compare-night {
  position: absolute;
  inset: 0;
  filter: brightness(0.32) contrast(1.15) saturate(1.45) hue-rotate(6deg);
}

.compare::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(13, 65, 126, 0.08), rgba(8, 18, 32, 0.28));
}

.compare-day {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-day img {
  width: 100%;
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 1.2rem;
  z-index: 4;
  padding: 0.45rem 0.65rem;
  font: 800 0.68rem/1 Arial, sans-serif;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}

.compare-label-day {
  left: 1.2rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
}

.compare-label-night {
  right: 1.2rem;
  color: var(--white);
  background: rgba(8, 26, 45, 0.68);
}

.image-note {
  margin: 0;
  padding: 0.6rem 1rem 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  text-align: right;
}

.scenes {
  background: var(--white);
}

.scene-strip {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.scene-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.scene-card-large {
  min-height: 320px;
}

.scene-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 650ms ease;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(4, 15, 27, 0.85) 100%);
}

.scene-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

.scene-card div {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  z-index: 2;
}

.scene-card span {
  color: rgba(255, 255, 255, 0.62);
  font: 700 0.65rem/1 Arial, sans-serif;
}

.scene-card h3 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.55rem);
  line-height: 1.25;
}

.scene-card p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.flow {
  background: var(--paper);
}

.flow-more {
  width: var(--content);
  margin: 1.5rem auto 0;
  text-align: right;
}

.flow-list {
  width: var(--content);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 190px;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateX(50%);
}

.flow-list span,
.flow-list strong,
.flow-list small {
  display: block;
}

.flow-list span {
  margin-bottom: 2.5rem;
  color: var(--blue);
  font: 700 0.72rem/1 Arial, sans-serif;
}

.flow-list strong {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.flow-list small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.trust-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--navy);
}

.trust-block,
.cta-block {
  min-height: 400px;
  padding: clamp(4.5rem, 5vw, 5rem) max(4vw, calc((100vw - min(92vw, 1380px)) / 2));
}

.trust-block {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-block::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -13rem;
  width: 31rem;
  height: 31rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.trust-block .section-index,
.cta-block .section-index {
  color: var(--blue-bright);
}

.since {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  margin: 2rem 0 1.5rem;
}

.since span {
  padding-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font: 700 0.7rem/1 Arial, sans-serif;
  letter-spacing: 0.13em;
}

.since strong {
  font: 700 clamp(4.5rem, 8vw, 8rem)/0.82 Arial, sans-serif;
  letter-spacing: -0.07em;
}

.trust-block > p:not(.section-index),
.cta-block > p:not(.section-index) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
}

.text-link-light {
  position: relative;
  z-index: 2;
  margin-top: 1.2rem;
}

.cta-block {
  background: linear-gradient(135deg, #1767c9, #058fbf);
}

.cta-block h2 {
  max-width: 40rem;
}

.button-white {
  margin-top: 1.25rem;
  color: var(--blue);
  background: var(--white);
}

.button-white:hover,
.button-white:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(3, 37, 75, 0.22);
}

.site-footer {
  min-height: 140px;
  padding: 2.5rem 4vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.copyright {
  font-family: Arial, sans-serif;
  letter-spacing: 0.08em;
}

.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.flow-page-hero {
  min-height: 520px;
  padding-top: 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 103, 201, 0.055) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--paper);
}

.flow-page-hero-grid {
  width: var(--content);
  min-height: 442px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.flow-page-copy {
  position: relative;
  z-index: 4;
  padding: 3.5rem 0;
}

.flow-page-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 4.2vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.flow-page-copy > p:not(.eyebrow) {
  max-width: 41rem;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.flow-sequence {
  max-width: none !important;
  margin: 1.35rem 0 1.5rem !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 700 !important;
}

.flow-sequence span {
  padding: 0.2rem 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.flow-sequence i {
  color: var(--blue);
  font-style: normal;
}

.flow-page-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.flow-page-visual > img {
  position: absolute;
  top: 1%;
  right: 3%;
  z-index: 2;
  width: min(35vw, 470px);
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(9, 35, 63, 0.14));
}

.flow-orbit {
  position: absolute;
  top: 3%;
  right: -5%;
  width: min(35vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 103, 201, 0.22);
  border-radius: 50%;
}

.flow-orbit::before,
.flow-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 103, 201, 0.12);
  border-radius: inherit;
}

.flow-orbit::before {
  inset: 13%;
}

.flow-orbit::after {
  inset: 27%;
}

.flow-status {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 3;
  min-width: 220px;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: rgba(8, 26, 45, 0.94);
  box-shadow: var(--shadow);
}

.flow-status span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--blue-bright);
  font: 700 0.68rem/1 Arial, sans-serif;
  letter-spacing: 0.14em;
}

.flow-status strong {
  font-size: 1rem;
  line-height: 1.5;
}

.flow-page .section {
  padding: clamp(3rem, 4vw, 4rem) 0;
}

.journey {
  background: var(--white);
}

.journey .section-heading,
.step-guide .section-heading {
  margin-bottom: clamp(1.5rem, 2.4vw, 2.25rem);
}

.journey .section-heading h2,
.step-guide .section-heading h2 {
  font-size: clamp(2.25rem, 3vw, 3rem);
}

.journey-list {
  width: var(--content);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  list-style: none;
}

.journey-list li {
  position: relative;
  min-height: 132px;
  padding: 1.25rem 0.8rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.journey-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateX(50%);
}

.journey-list span,
.journey-list strong,
.journey-list small {
  display: block;
}

.journey-list span {
  margin-bottom: 1.5rem;
  color: var(--blue);
  font: 700 0.72rem/1 Arial, sans-serif;
}

.journey-list strong {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.journey-list small {
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.step-guide {
  background: var(--paper);
}

.step-guide-list {
  width: var(--content);
  margin: 0;
  padding: 0;
  list-style: none;
  margin-inline: auto;
  border-top: 1px solid var(--ink);
}

.step-guide-item {
  padding: clamp(2rem, 3vw, 2.75rem) 0;
  display: grid;
  grid-template-columns: clamp(86px, 10vw, 138px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}

.step-marker {
  align-self: start;
  padding-top: 0.25rem;
  color: var(--blue);
  font-family: Arial, sans-serif;
}

.step-marker span,
.step-marker strong {
  display: block;
}

.step-marker span {
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.step-marker strong {
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.step-guide-copy {
  max-width: 990px;
}

.step-guide-copy h3 {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.step-lead {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.25vw, 1.125rem);
  font-weight: 700;
  line-height: 1.55;
}

.step-guide-copy > p:not(.step-lead):last-child,
.step-guide-copy > p:not(.step-lead):nth-last-child(2) {
  max-width: 48rem;
  color: var(--ink-soft);
}

.consultation-points {
  max-width: 760px;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
}

.consultation-points li {
  padding: 0.85rem 0.75rem 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
}

.mount-options {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.mount-options figure {
  margin: 0;
  background: var(--white);
}

.mount-options img {
  width: 100%;
  height: clamp(210px, 25vw, 330px);
  object-fit: cover;
}

.mount-options figcaption {
  padding: 1rem 1.15rem 1.15rem;
}

.mount-options figcaption strong,
.mount-options figcaption span {
  display: block;
}

.mount-options figcaption strong {
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.mount-options figcaption span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.inline-support {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  align-items: start;
  color: var(--white);
  background: var(--navy);
}

.inline-support strong {
  font-size: 0.92rem;
}

.inline-support span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.setup-sequence {
  max-width: 760px;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.setup-sequence li {
  min-height: 92px;
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.setup-sequence li:last-child {
  border-right: 0;
}

.setup-sequence span {
  color: var(--blue);
  font: 700 0.7rem/1 Arial, sans-serif;
}

.step-guide-item-media {
  display: grid;
  grid-template-columns: clamp(86px, 10vw, 138px) minmax(0, 0.96fr) minmax(270px, 0.74fr);
}

.step-guide-media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(24, 174, 227, 0.2), transparent 56%),
    linear-gradient(135deg, #0b2744, #071522);
}

.step-guide-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(45vw, 600px);
  max-width: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.28));
}

.flow-page-cta {
  padding: clamp(4.5rem, 5vw, 5rem) 5vw;
  color: var(--white);
  background: linear-gradient(135deg, #1767c9, #058fbf);
  text-align: center;
}

.flow-page-cta .section-index {
  color: rgba(255, 255, 255, 0.7);
}

.flow-page-cta h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.flow-page-cta > p {
  color: rgba(255, 255, 255, 0.74);
}

.flow-page-cta .button {
  margin-top: 1.25rem;
}

.cable-note {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: start;
  color: var(--ink);
  background: #eaf4ff;
  border-left: 3px solid var(--blue);
}

.cable-note strong {
  font-size: 0.92rem;
}

.cable-note span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.scene-page .section {
  padding: clamp(3rem, 4vw, 4rem) 0;
}

.subpage-hero {
  width: var(--content);
  min-height: 440px;
  margin: 0 auto;
  padding-top: 78px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.subpage-hero-copy {
  padding: 3rem 0;
}

.subpage-hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.subpage-hero-copy > p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.subpage-hero-image {
  position: relative;
  height: 320px;
  background: #dcecff;
  border-radius: 9rem 0.35rem 9rem 0.35rem;
}

.subpage-hero-image::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  background: var(--blue);
  border-radius: inherit;
  opacity: 0.18;
}

.subpage-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.subpage-hero-image:hover img {
  transform: translate(-8px, -8px);
}

.scene-featured {
  background: var(--white);
}

.scene-featured .section-heading,
.scene-others .section-heading {
  margin-bottom: clamp(1.5rem, 2.4vw, 2.25rem);
}

.scene-featured .section-heading h2,
.scene-others .section-heading h2 {
  font-size: clamp(2.25rem, 3vw, 3rem);
}

.scene-feature-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  align-items: start;
}

.scene-feature {
  position: relative;
}

.scene-feature-image {
  position: relative;
  height: 370px;
  overflow: hidden;
  background: #dce3eb;
  border-radius: 0.35rem 7rem 0.35rem 0.35rem;
}

.scene-feature-portrait {
  margin-top: 4.5rem;
}

.scene-feature-portrait .scene-feature-image {
  height: 430px;
  border-radius: 11rem 11rem 0.35rem 0.35rem;
}

.scene-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.scene-feature-image img,
.scene-other-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-feature:hover img,
.scene-other-card:hover img {
  transform: translate(-6px, -6px) scale(1.025);
}

.scene-feature-copy {
  padding: 1.25rem 0 0;
}

.scene-feature-copy > span,
.scene-other-card > span {
  color: var(--blue);
  font: 700 0.7rem/1 Arial, sans-serif;
  letter-spacing: 0.12em;
}

.scene-feature-copy h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  letter-spacing: -0.045em;
}

.scene-feature-copy p {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.scene-others {
  background: var(--paper);
}

.scene-other-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.scene-other-card > div {
  height: 210px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #dce3eb;
  border-radius: 0.35rem 3.5rem 0.35rem 0.35rem;
}

.scene-other-card:nth-child(even) > div {
  border-radius: 3.5rem 0.35rem 0.35rem 0.35rem;
}

.scene-other-card h3 {
  margin: 0.35rem 0 0.15rem;
  font-size: 1.1rem;
}

.scene-other-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.product-hero {
  min-height: 560px;
  padding-top: 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 103, 201, 0.055) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--paper);
}

.product-hero-inner {
  width: var(--content);
  min-height: 482px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 2rem;
}

.product-hero-copy {
  position: relative;
  z-index: 5;
  padding: 3rem 0;
}

.product-hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 4.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.product-hero-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.product-hero-visual {
  position: relative;
  align-self: stretch;
}

.product-hero-cad {
  min-width: 0;
}

.product-cad-grid {
  position: absolute;
  inset: 7% 0 4% 5%;
  background:
    linear-gradient(rgba(23, 103, 201, 0.09) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(90deg, rgba(23, 103, 201, 0.09) 1px, transparent 1px) 0 0 / 34px 34px;
  border: 1px solid rgba(23, 103, 201, 0.16);
  border-radius: 50% 0.4rem 0.4rem 0.4rem;
}

.product-hero-cad-image {
  position: absolute;
  top: 1%;
  right: 4%;
  z-index: 3;
  width: min(37vw, 500px);
  height: 98%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 38px rgba(9, 35, 63, 0.16));
}

.product-orbit {
  position: absolute;
  top: 8%;
  right: 4%;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 103, 201, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 4.5rem rgba(23, 103, 201, 0.035), 0 0 0 9rem rgba(23, 103, 201, 0.02);
}

.product-hero-main {
  position: absolute;
  top: 2%;
  right: 20%;
  z-index: 3;
  width: min(25vw, 350px);
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(9, 35, 63, 0.16));
}

.product-hero-sub {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(9, 35, 63, 0.12));
}

.product-hero-ptz {
  right: 0;
  bottom: -5%;
  width: min(20vw, 270px);
}

.product-hero-cloud {
  top: 10%;
  left: 1%;
  width: min(13vw, 175px);
}

.product-hero-label {
  position: absolute;
  right: 3%;
  bottom: 5%;
  z-index: 4;
  margin: 0;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: rgba(8, 26, 45, 0.94);
}

.product-hero-label strong,
.product-hero-label span {
  display: block;
}

.product-hero-label strong {
  font: 700 1.25rem/1 Arial, sans-serif;
}

.product-hero-label span {
  margin-top: 0.3rem;
  color: var(--blue-bright);
  font: 700 0.62rem/1 Arial, sans-serif;
  letter-spacing: 0.13em;
}

.product-lineup,
.product-variants,
.product-common {
  background: var(--white);
}

.product-lineup-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 0.95fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  min-width: 0;
  background: var(--paper);
}

.product-card-main {
  background: #eaf4ff;
}

.product-card-cloud {
  color: var(--white);
  background: var(--navy);
}

.product-card-image {
  height: clamp(280px, 25vw, 340px);
  padding: 1.1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq-hero {
  padding: calc(78px + 3.5rem) 0 3.5rem;
  background:
    linear-gradient(90deg, rgba(23, 103, 201, 0.055) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--paper);
}

.faq-hero-inner,
.faq-list {
  width: var(--content);
  margin: 0 auto;
}

.faq-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.faq-hero-copy {
  max-width: 44rem;
  color: var(--ink-soft);
}

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

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 1.5rem 3.2rem 1.5rem 0;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  align-items: baseline;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--blue);
  font: 800 0.82rem/1 Arial, sans-serif;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.3rem;
  color: var(--blue);
  font: 400 1.6rem/1 Arial, sans-serif;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 52rem;
  padding: 0 3.2rem 1.6rem 3rem;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.product-card:hover .product-card-image img {
  transform: translateY(-6px);
}

.product-card-copy {
  padding: 1.4rem 1.25rem 1.6rem;
  border-top: 1px solid var(--line);
}

.product-card-copy p {
  margin-bottom: 0.5rem;
  color: var(--blue);
  font: 800 0.65rem/1 Arial, sans-serif;
  letter-spacing: 0.13em;
}

.product-card-cloud .product-card-copy p {
  color: var(--blue-bright);
}

.product-card-copy h3 {
  margin-bottom: 0.25rem;
  font: 700 clamp(1.6rem, 2vw, 2rem)/1 Arial, sans-serif;
  letter-spacing: -0.04em;
}

.product-card-copy strong,
.product-card-copy span,
.product-card-copy b {
  display: block;
}

.product-card-copy strong {
  font-size: 0.92rem;
}

.product-card-copy span {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.product-card-cloud .product-card-copy span {
  color: rgba(255, 255, 255, 0.68);
}

.product-card-copy b {
  margin-top: 1.2rem;
  font-size: 0.78rem;
}

.product-card-copy em {
  margin-left: 0.25rem;
  font: 700 1.1rem/1 Arial, sans-serif;
  font-style: normal;
  white-space: nowrap;
}

.product-feature {
  background: var(--navy);
}

.product-feature-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.product-feature-visual {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 45%, rgba(24, 174, 227, 0.22), transparent 54%),
    #071522;
}

.product-feature-visual::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-feature-visual > span {
  position: absolute;
  top: 1.25rem;
  left: 1.35rem;
  z-index: 2;
  color: var(--blue-bright);
  font: 800 0.68rem/1 Arial, sans-serif;
  letter-spacing: 0.15em;
}

.product-feature-visual img {
  width: 100%;
  height: 116%;
  object-fit: contain;
  object-position: center top;
  transform: translateY(1%);
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.32));
}

.product-feature-copy {
  color: var(--white);
}

.product-feature-copy .section-index {
  color: var(--blue-bright);
}

.product-feature-copy h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.product-name {
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.68);
}

.product-name strong {
  margin-left: 0.4rem;
  color: var(--white);
  font-family: Arial, sans-serif;
}

.product-points {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.product-points div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.product-points dt {
  font-weight: 700;
}

.product-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.product-variant-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-variant {
  min-width: 0;
  padding: 1.8rem;
  background: var(--paper);
}

.product-variant-cloud {
  background: #edf3f8;
}

.product-variant img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-variant:hover img {
  transform: translateY(-6px);
}

.product-variant span {
  display: block;
  margin: 0.8rem 0 0.45rem;
  color: var(--blue);
  font: 800 0.72rem/1 Arial, sans-serif;
  letter-spacing: 0.13em;
}

.product-variant h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.product-variant p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-compare {
  background: var(--paper);
}

.product-table-wrap {
  width: var(--content);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.product-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.product-table th,
.product-table td {
  padding: 0.9rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.product-table th:last-child,
.product-table td:last-child {
  border-right: 0;
}

.product-table thead th {
  color: var(--white);
  background: var(--navy);
  font-family: Arial, sans-serif;
}

.product-table tbody th {
  width: 9rem;
  background: #eaf4ff;
}

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

.product-table-note {
  width: var(--content);
  margin: 0.8rem auto 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.product-common-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.product-common-grid article {
  min-height: 150px;
  padding: 1.4rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-common-grid article:last-child {
  border-right: 0;
}

.product-common-grid span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--blue);
  font: 700 0.7rem/1 Arial, sans-serif;
}

.product-common-grid h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.product-common-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.product-cable-note {
  width: var(--content);
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #eaf4ff;
  border-left: 3px solid var(--blue);
}

.product-cable-note > div {
  padding: 1.1rem 1.25rem;
}

.product-cable-note > div + div {
  border-left: 1px solid rgba(23, 103, 201, 0.18);
}

.product-cable-note strong,
.product-cable-note span {
  display: block;
}

.product-cable-note strong {
  margin-bottom: 0.25rem;
  font: 700 0.85rem/1.2 Arial, sans-serif;
}

.product-cable-note span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.product-links {
  width: var(--content);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.contact-intro {
  width: min(90vw, 1040px);
  margin: 0 auto;
  padding: calc(78px + 3.5rem) 0 2.6rem;
  border-bottom: 1px solid var(--line);
}

.contact-intro-copy h1 {
  max-width: 930px;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.contact-intro-copy > p:last-child {
  max-width: 50rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.form-steps {
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
}

.form-steps li {
  padding: 0.9rem 0.75rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-steps li span {
  margin-right: 0.55rem;
  color: var(--blue);
  font-family: Arial, sans-serif;
}

.form-steps li.is-current {
  color: var(--white);
  background: var(--navy);
  border-bottom-color: var(--navy);
}

.form-steps li.is-current span {
  color: var(--blue-bright);
}

.contact-form-section {
  padding: 3rem 0 4rem;
}

.contact-form {
  width: min(90vw, 1040px);
  margin: 0 auto;
}

.form-required-note {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-required-note span,
.form-field label > span,
.address-fieldset legend > span,
.inquiry-fieldset legend > span,
.consent-field b {
  margin-right: 0.25rem;
  color: #b83c32;
  font-size: 0.72rem;
}

.contact-guidance {
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  color: var(--ink-soft);
  background: #eaf4ff;
  border-left: 3px solid var(--blue);
}

.contact-guidance p {
  margin: 0;
  font-size: 0.84rem;
}

.contact-guidance p + p {
  margin-top: 0.35rem;
}

.address-fieldset,
.inquiry-fieldset {
  min-width: 0;
  margin: 0 0 1rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.address-fieldset legend,
.inquiry-fieldset legend {
  padding: 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.postal-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.postal-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  align-items: center;
  gap: 0.5rem;
}

.radio-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.radio-options label {
  min-height: 54px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.radio-options input {
  width: 1rem;
  height: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  margin-bottom: 0.4rem;
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field label small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d2dd;
  border-radius: 0;
  font: inherit;
}

.form-field input[type="file"] {
  padding: 0.58rem 0.7rem;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(23, 103, 201, 0.28);
  outline-offset: 1px;
  border-color: var(--blue);
}

.consent-field {
  margin-top: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
}

.consent-field a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-actions {
  margin-top: 1.8rem;
  display: flex;
  justify-content: flex-end;
}

.form-actions-split {
  justify-content: space-between;
  gap: 1rem;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.confirm-heading h2,
.form-complete h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.confirm-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.confirm-list > div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.confirm-list dt {
  font-weight: 700;
}

.confirm-list dd {
  margin: 0;
  white-space: pre-wrap;
}

.form-complete {
  padding: clamp(3rem, 4vw, 4rem) 0;
  text-align: center;
}

.form-complete > p:not(.section-index) {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.form-complete .button {
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes camera-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes phone-in {
  from { opacity: 0; transform: translate(40px, 24px); }
  to { opacity: 1; transform: none; }
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1180px) {
  .hero {
    min-height: 720px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(410px, 1.05fr);
  }

  .scene-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .scene-card,
  .scene-card-large {
    min-height: 300px;
  }

  .journey-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .journey-list li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --content: min(90vw, 680px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    padding: 0.65rem;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    height: 1px;
    background: var(--ink);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    inset: 0 auto auto 0;
    z-index: 101;
    width: 100vw;
    height: 100svh;
    padding: 7rem 5vw 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: rgba(246, 248, 251, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .global-nav a {
    padding: 1.15rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--line);
  }

  .global-nav .nav-contact {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    color: var(--white);
    text-align: center;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding-top: 66px;
    background:
      linear-gradient(90deg, rgba(23, 103, 201, 0.05) 1px, transparent 1px) 0 0 / 25vw 100%,
      var(--paper);
  }

  .hero-grid {
    height: auto;
    padding-top: 3.4rem;
    display: block;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  h1 > span {
    font-size: 0.5em;
  }

  .hero-visual {
    height: clamp(420px, 76vw, 590px);
    margin-top: 1rem;
  }

  .hero-camera {
    top: 3%;
    right: 4%;
    width: min(54vw, 370px);
  }

  .hero-phone {
    right: -11vw;
    bottom: 12%;
    width: min(82vw, 560px);
  }

  .camera-halo {
    top: 4%;
    right: -10%;
    width: min(74vw, 480px);
  }

  .signal-label {
    top: 7%;
    left: 0;
  }

  .flow-page-hero {
    min-height: 0;
    padding-top: 66px;
  }

  .flow-page-hero-grid {
    min-height: 0;
    padding-top: 2.8rem;
    display: block;
  }

  .flow-page-copy {
    padding: 0;
  }

  .flow-page-copy h1 {
    font-size: clamp(2.8rem, 9vw, 4rem);
  }

  .flow-page-visual {
    height: clamp(300px, 50vw, 410px);
    margin-top: 0.5rem;
  }

  .flow-page-visual > img {
    top: 0;
    right: 8%;
    width: min(54vw, 390px);
  }

  .flow-orbit {
    top: 0;
    right: 0;
    width: min(56vw, 410px);
  }

  .flow-status {
    right: 2%;
    bottom: 5%;
  }

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

  .fact {
    min-height: 145px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .fact:last-child {
    grid-column: 1 / -1;
  }

  .feature-pair,
  .section-heading-inline,
  .trust-cta {
    grid-template-columns: 1fr;
  }

  .feature-pair {
    gap: 1px;
  }

  .mount-collage,
  .compare {
    min-height: 320px;
  }

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

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

  .flow-list li {
    min-height: 0;
    padding: 1.25rem 0;
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    column-gap: 0.75rem;
    border-top: 0;
  }

  .flow-list li:first-child {
    border-top: 1px solid var(--ink);
  }

  .flow-list li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -4px;
    left: 1.25rem;
  }

  .flow-list span {
    grid-row: 1 / 3;
    margin: 0;
  }

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

  .journey-list li {
    min-height: 0;
    padding: 1.25rem 0;
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    column-gap: 0.75rem;
    border-top: 0;
  }

  .journey-list li:first-child {
    border-top: 1px solid var(--ink);
  }

  .journey-list span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step-guide-item,
  .step-guide-item-media {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 1.5rem;
  }

  .step-guide-media {
    grid-column: 2;
    min-height: 280px;
  }

  .step-guide-media img {
    width: min(78vw, 560px);
  }

  .subpage-hero {
    min-height: 0;
    padding-top: 66px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .subpage-hero-copy {
    padding: 3rem 0 2rem;
  }

  .subpage-hero-image {
    height: 290px;
    margin-bottom: 2.5rem;
  }

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

  .scene-feature-portrait {
    margin-top: 0;
  }

  .scene-feature-image,
  .scene-feature-portrait .scene-feature-image {
    height: min(58vw, 390px);
    border-radius: 0.35rem 6rem 0.35rem 0.35rem;
  }

  .scene-other-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-intro {
    padding-top: calc(66px + 3rem);
  }

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

  .planning-grid,
  .installation-grid,
  .three-step-list,
  .view-support,
  .height-support,
  .return-band {
    grid-template-columns: 1fr;
  }

  .planning-grid {
    gap: 3rem;
  }

  .installation-grid {
    gap: 1px;
  }

  .height-support {
    gap: 0.5rem;
  }

  .installation-image {
    height: min(72vw, 520px);
  }

  .three-step-list li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .three-step-list li:last-child {
    border-bottom: 0;
  }

  .three-step-list span {
    margin-bottom: 2.5rem;
  }

  .view-support-visual {
    min-height: 490px;
  }

  .view-support-visual img {
    width: min(112vw, 780px);
  }

  .view-support-copy {
    padding: 4.5rem 5vw;
  }

  .return-number {
    padding-bottom: 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-block {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 860px) {
  .radio-options {
    grid-template-columns: 1fr 1fr;
  }

  .product-hero {
    min-height: 0;
    padding-top: 66px;
  }

  .product-hero-inner {
    min-height: 0;
    padding-top: 2.8rem;
    display: block;
  }

  .product-hero-copy {
    padding: 0;
  }

  .product-hero-copy h1 {
    font-size: clamp(2.8rem, 9vw, 4rem);
  }

  .product-hero-visual {
    height: 360px;
    margin-top: 0.5rem;
  }

  .product-hero-cad-image {
    top: 0;
    right: 8%;
    width: min(62vw, 440px);
  }

  .product-hero-main {
    top: 0;
    right: 25%;
    width: min(44vw, 320px);
  }

  .product-hero-ptz {
    right: 3%;
    width: min(34vw, 240px);
  }

  .product-hero-cloud {
    left: 1%;
    width: min(25vw, 170px);
  }

  .product-orbit {
    right: 10%;
    width: min(52vw, 410px);
  }

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

  .product-feature-grid,
  .product-variant-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid {
    gap: 2rem;
  }

  .product-feature-visual {
    height: 340px;
  }

  .product-variant {
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
    gap: 1.5rem;
    align-items: center;
  }

  .product-cable-note {
    grid-template-columns: 1fr;
  }

  .product-cable-note > div + div {
    border-top: 1px solid rgba(23, 103, 201, 0.18);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 0.98rem;
  }

  .brand img {
    width: 145px;
  }

  .hero-grid {
    padding-top: 2.6rem;
  }

  .flow-page-hero-grid {
    padding-top: 2.6rem;
  }

  .flow-page-copy > p:not(.eyebrow) br {
    display: none;
  }

  .flow-page-visual {
    height: 280px;
  }

  .flow-page-visual > img {
    right: 3%;
    width: 70vw;
  }

  .flow-status {
    right: auto;
    bottom: 0.5rem;
    left: 0;
    min-width: 190px;
  }

  .eyebrow {
    font-size: 0.63rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    height: 390px;
  }

  .hero-camera {
    width: 58vw;
  }

  .hero-phone {
    right: -18vw;
    width: 92vw;
  }

  .hero-caption {
    right: auto;
    left: 0;
    bottom: 1rem;
  }

  .facts-grid {
    width: 100%;
  }

  .fact {
    padding: 1.5rem 5vw;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-heading {
    margin-bottom: 1.75rem;
  }

  .section-heading-inline {
    gap: 1rem;
  }

  .flow-page .section {
    padding: 3.25rem 0;
  }

  .journey .section-heading,
  .step-guide .section-heading {
    margin-bottom: 1.8rem;
  }

  .step-guide-item,
  .step-guide-item-media {
    padding: 2rem 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem;
  }

  .step-marker strong {
    font-size: 2.75rem;
  }

  .step-guide-copy h3 {
    font-size: 1.75rem;
  }

  .consultation-points {
    grid-template-columns: 1fr 1fr;
  }

  .mount-options,
  .setup-sequence,
  .inline-support {
    grid-template-columns: 1fr;
  }

  .mount-options img {
    height: 62vw;
    max-height: 300px;
  }

  .setup-sequence li {
    min-height: 0;
    grid-template-columns: 1.5rem 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .setup-sequence li:last-child {
    border-bottom: 0;
  }

  .step-guide-media {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .cable-note {
    grid-template-columns: 1fr;
  }

  .scene-page .section {
    padding: 3.25rem 0;
  }

  .subpage-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .subpage-hero-image {
    height: 235px;
    border-radius: 6rem 0.35rem 6rem 0.35rem;
  }

  .scene-featured .section-heading,
  .scene-others .section-heading {
    margin-bottom: 1.75rem;
  }

  .scene-feature-image,
  .scene-feature-portrait .scene-feature-image {
    height: 70vw;
    max-height: 340px;
  }

  .scene-other-grid {
    gap: 1.5rem 0.7rem;
  }

  .scene-other-card > div {
    height: 42vw;
    max-height: 205px;
    border-radius: 0.35rem 2.2rem 0.35rem 0.35rem;
  }

  .scene-other-card:nth-child(even) > div {
    border-radius: 2.2rem 0.35rem 0.35rem 0.35rem;
  }

  .contact-intro {
    width: 90vw;
    padding: calc(66px + 2.7rem) 0 2rem;
  }

  .contact-intro-copy h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .contact-intro-copy h1 br {
    display: none;
  }

  .contact-form-section {
    padding-top: 2.4rem;
  }

  .postal-row,
  .radio-options {
    grid-template-columns: 1fr;
  }

  .product-hero-inner {
    padding-top: 2.6rem;
  }

  .product-hero-visual {
    height: 320px;
  }

  .product-cad-grid {
    inset: 5% 0 3%;
  }

  .product-hero-cad-image {
    right: 3%;
    width: min(82vw, 390px);
  }

  .product-hero-main {
    right: 22%;
    width: 52vw;
  }

  .product-hero-ptz {
    right: -2%;
    width: 39vw;
  }

  .product-hero-cloud {
    top: 7%;
    width: 28vw;
  }

  .product-hero-label {
    right: 0;
    bottom: 0.5rem;
  }

  .product-lineup-grid,
  .product-common-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .product-card-image {
    height: 190px;
  }

  .product-card-copy {
    padding: 1.2rem 5vw 1.35rem;
  }

  .product-card-copy h3 {
    font-size: 1.5rem;
  }

  .product-feature-grid,
  .product-variant-grid {
    width: 100%;
  }

  .product-feature-visual {
    height: 300px;
  }

  .product-feature-copy {
    padding-inline: 5vw;
  }

  .product-points div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .product-variant {
    padding: 1.5rem 5vw;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .product-variant img {
    height: 210px;
  }

  .product-table-wrap {
    width: 100%;
    border-inline: 0;
  }

  .product-card-image {
    height: 280px;
  }

  .faq-hero {
    padding: calc(66px + 2.8rem) 0 2.8rem;
  }

  .faq-item summary {
    padding-right: 2.4rem;
  }

  .faq-answer {
    padding-right: 0;
    padding-left: 3rem;
  }

  .product-common-grid article {
    min-height: 170px;
    padding: 1.25rem 5vw;
  }

  .product-common-grid article:nth-child(even) {
    border-right: 0;
  }

  .product-common-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .product-cable-note {
    width: 90vw;
  }

  .product-links {
    width: 90vw;
    justify-content: flex-start;
  }

  .form-grid,
  .form-grid-three {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions,
  .form-actions-split {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .confirm-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .planning-list li,
  .planning-list li:nth-child(even) {
    border-right: 0;
  }

  .installation-grid {
    width: 100%;
    border-inline: 0;
  }

  .installation-image {
    height: 82vw;
  }

  .height-support {
    width: 100%;
    padding: 2.3rem 5vw;
  }

  .three-step-list,
  .return-band {
    width: 90vw;
  }

  .return-number,
  .return-copy {
    padding: 2.3rem 5vw;
  }

  .feature-pair {
    width: 100%;
    border-inline: 0;
  }

  .feature-copy {
    min-height: 0;
    padding: 2rem 5vw;
    grid-template-columns: 2.2rem 1fr;
  }

  .mount-collage {
    min-height: 300px;
    padding: 0 5vw 2rem;
  }

  .mount-main {
    inset: 0 14% 2rem 5vw;
  }

  .mount-sub {
    right: 5vw;
    width: 47%;
    border-width: 0.45rem;
  }

  .compare {
    min-height: 300px;
  }

  .scene-strip {
    width: 100%;
    padding-inline: 5vw;
    display: flex;
    gap: 0.7rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .scene-strip::-webkit-scrollbar {
    display: none;
  }

  .scene-card,
  .scene-card-large {
    min-width: min(74vw, 310px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .trust-block,
  .cta-block {
    min-height: 0;
    padding: 4rem 5vw;
  }

  .since strong {
    font-size: clamp(4.2rem, 23vw, 6.3rem);
  }

  .site-footer {
    padding: 2.2rem 5vw;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
