:root {
  --bg: #020c19;
  --bg-deep: #010812;
  --surface: #081726;
  --surface-2: #0d1f33;
  --surface-3: #11263d;
  --border: #1a334d;
  --border-bright: #284b6d;
  --text: #f5f9ff;
  --muted: #8ba4bf;
  --muted-2: #617d99;
  --blue: #3287ff;
  --blue-bright: #55a6ff;
  --blue-soft: rgba(50, 135, 255, .13);
  --green: #49e3a4;
  --green-soft: rgba(73, 227, 164, .12);
  --shadow: 0 28px 90px rgba(0, 0, 0, .46);
  --max: 1540px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(30, 94, 164, .13), transparent 29rem),
    radial-gradient(circle at 13% 37%, rgba(18, 60, 105, .10), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.viewer-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.demo-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  border-bottom: 1px solid rgba(73, 227, 164, .19);
  background: #071b20;
  color: #b9cec9;
  font-size: 11px;
}
.demo-bar span { display: inline-flex; align-items: center; gap: 8px; color: #6df0ba; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.demo-bar span i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(73, 227, 164, .10); }
.demo-bar p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(40, 75, 109, .66);
  background: rgba(2, 12, 25, .89);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-logo { width: 45px; height: 32px; object-fit: contain; flex: 0 0 auto; }
.brand > span:last-child { display: grid; }
.brand strong { font-size: 14px; line-height: 1; letter-spacing: -.025em; }
.brand small { margin-top: 5px; color: #7793ae; font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.site-header nav { display: flex; align-items: center; gap: clamp(12px, 1.55vw, 24px); }
.site-header nav a { color: #9fb2c6; font-size: 10px; font-weight: 700; white-space: nowrap; transition: .15s ease; }
.site-header nav a:hover { color: white; }
.header-cta {
  justify-self: end;
  padding: 10px 13px;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  color: #d9e7f4;
  font-size: 11px;
  font-weight: 750;
}
.header-cta span { margin-left: 6px; color: var(--blue-bright); }

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(620px, 1.5fr);
  align-items: center;
  gap: clamp(42px, 5vw, 88px);
  margin: 0 auto;
  padding: 88px 0 96px;
}
.eyebrow { color: var(--blue-bright); font-size: 9px; line-height: 1.3; font-weight: 900; letter-spacing: .18em; }
.hero h1 {
  margin: 16px 0 22px;
  max-width: 680px;
  font-size: clamp(43px, 4.2vw, 69px);
  line-height: 1.01;
  letter-spacing: -.058em;
}
.hero h1 em { color: #70afff; font-style: normal; }
.hero-lead { max-width: 600px; margin-bottom: 30px; color: #9cb2c8; font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.primary-button, .secondary-button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  transition: transform .16s ease, filter .16s ease, border-color .16s ease;
}
.primary-button { border: 1px solid #4a9bff; background: var(--blue); color: white; box-shadow: 0 12px 36px rgba(50, 135, 255, .20); }
.secondary-button { border: 1px solid var(--border-bright); background: rgba(255, 255, 255, .026); color: #d7e5f2; }
.primary-button:hover, .secondary-button:hover { transform: translateY(-1px); filter: brightness(1.08); }
.proof-list { display: flex; flex-wrap: wrap; gap: 15px 22px; margin: 29px 0 0; padding: 0; list-style: none; color: #7f98b1; font-size: 10px; }
.proof-list li { display: flex; align-items: center; gap: 7px; }
.proof-list span { width: 16px; height: 16px; display: grid; place-items: center; border: 1px solid rgba(73, 227, 164, .28); border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 8px; font-weight: 900; }

.hero-visual { position: relative; min-width: 0; }
.map-hero-visual { width: min(100%, 560px); justify-self: center; }
.map-hero-visual .screen-window { max-height: 570px; }
.map-hero-visual .screen-button { max-height: 538px; overflow: hidden; background: #06111d; }
.map-hero-visual .screen-button img { width: 100%; height: 538px; object-fit: cover; object-position: center 36%; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 114, 201, .21), rgba(39, 114, 201, .06) 38%, transparent 70%);
  filter: blur(18px);
}
.screen-window { overflow: hidden; border: 1px solid #254766; border-radius: 13px; background: #06111d; box-shadow: var(--shadow), 0 0 0 1px rgba(72, 149, 228, .05); transform: perspective(1500px) rotateY(-2deg) rotateX(.8deg); transform-origin: center; }
.window-bar { height: 31px; display: flex; align-items: center; gap: 6px; padding: 0 11px; border-bottom: 1px solid #18344e; background: #0b1c2d; }
.window-bar > span { width: 6px; height: 6px; border-radius: 50%; background: #3d5268; }
.window-bar > span:first-child { background: #dc6681; }
.window-bar > span:nth-child(2) { background: #e1b15e; }
.window-bar > span:nth-child(3) { background: #52ca9d; }
.window-bar strong { margin-left: 6px; color: #68839d; font-size: 8px; font-weight: 700; }
.screen-button, .stage-image, .map-screen, .detail-gallery > button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}
.screen-button img { width: 100%; height: auto; }
.screen-button.crop-workspace { aspect-ratio: 1883 / 690; overflow: hidden; }
.screen-button.crop-workspace img { position: absolute; left: 0; top: 0; width: 100%; height: auto; transform: translateY(-18.2%); }
.expand-hint, .map-screen > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(76, 153, 235, .34);
  border-radius: 7px;
  background: rgba(2, 12, 25, .89);
  color: #dcecff;
  font-size: 9px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: .18s ease;
}
.screen-button:hover .expand-hint, .map-screen:hover > span { opacity: 1; transform: none; }
.expand-hint b, .map-screen b { color: var(--blue-bright); }
.capture-note {
  position: absolute;
  left: -22px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid #21415f;
  border-radius: 9px;
  background: rgba(7, 23, 38, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}
.capture-note > i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(73, 227, 164, .10); }
.capture-note span { display: grid; gap: 3px; color: #7490aa; font-size: 8px; }
.capture-note strong { color: #dbe8f4; font-size: 10px; }

.section-divider {
  width: 100%;
  height: 1px;
  border: 0;
  background: rgba(40, 75, 109, .58);
}

.product-section, .workflow-section, .map-section, .showcase-section, .detail-gallery, .final-cta, footer {
  width: min(var(--max), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.section-order {
  display: block;
  margin-bottom: 12px;
  color: #5d7892;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}
.section-order + .eyebrow { display: block; }
.product-section { padding: 106px 0 94px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 35px; }
.section-heading h2, .map-copy h2, .final-cta h2 { margin: 11px 0 0; font-size: clamp(31px, 3vw, 47px); line-height: 1.08; letter-spacing: -.046em; }
.section-heading > p { max-width: 450px; margin-bottom: 4px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.section-heading.compact { margin-bottom: 28px; }

.tour-tabs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.tour-tab {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #0c1825;
  color: #9bb0c5;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  transition: .15s ease;
}
.tour-tab:hover { color: white; border-color: #315878; }
.tour-tab.active { color: #71b1ff; border-color: var(--blue); background: var(--blue-soft); box-shadow: inset 3px 0 0 var(--blue); }
.tour-stage {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(280px, .46fr) minmax(650px, 1.54fr);
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
  overflow: hidden;
}
.tour-stage-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4vw, 65px); border-right: 1px solid var(--border); }
.tour-stage-copy h3 { margin: 13px 0 15px; font-size: clamp(25px, 2.2vw, 36px); line-height: 1.09; letter-spacing: -.04em; }
.tour-stage-copy > p { color: #93a9bf; font-size: 12px; line-height: 1.72; }
.stage-stat { display: grid; gap: 5px; margin: 20px 0 27px; padding: 15px; border: 1px solid #1d3c58; border-radius: 8px; background: rgba(50, 135, 255, .055); }
.stage-stat strong { color: #d7e9fa; font-size: 11px; }
.stage-stat span { color: #708ba5; font-size: 9px; line-height: 1.5; }
.text-link { width: fit-content; padding: 0 0 5px; border: 0; border-bottom: 1px solid rgba(85, 166, 255, .4); background: transparent; color: var(--blue-bright); cursor: pointer; font-size: 10px; font-weight: 800; }
.text-link span { margin-left: 5px; }
.stage-image { overflow: hidden; background: #040d18; }
.stage-image::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; transition: .15s ease; }
.stage-image:hover::after { border-color: rgba(85, 166, 255, .42); }
.stage-image img { width: 100%; height: 100%; object-fit: contain; transition: opacity .14s ease, transform .24s ease; }
.stage-image.crop-workspace { min-height: 0; aspect-ratio: 1883 / 690; align-self: center; }
.stage-image.crop-workspace img { position: absolute; left: 0; top: 0; width: 100%; height: auto; object-fit: initial; transform: translateY(-18.2%); }
.stage-image:hover img { transform: scale(1.008); }
.stage-image.crop-workspace:hover img { transform: translateY(-18.2%) scale(1.008); }
.stage-image img.changing { opacity: .1; }

.workflow-section { padding: 50px 0 110px; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.workflow-grid article { position: relative; min-height: 245px; padding: 28px; overflow: hidden; border: 1px solid var(--border); border-radius: 11px; background: linear-gradient(145deg, #0a1a2b, #071523); }
.workflow-grid article::after { content: ""; position: absolute; right: -30px; bottom: -70px; width: 180px; height: 180px; border: 1px solid rgba(50, 135, 255, .10); border-radius: 50%; box-shadow: 0 0 0 28px rgba(50, 135, 255, .025), 0 0 0 58px rgba(50, 135, 255, .018); }
.workflow-grid .number { position: absolute; right: 20px; top: 18px; color: #294764; font-size: 10px; font-weight: 900; }
.workflow-grid .icon { width: 39px; height: 39px; display: grid; place-items: center; margin-bottom: 25px; border: 1px solid #285983; border-radius: 8px; color: #58a4ff; background: rgba(50, 135, 255, .08); font-size: 18px; }
.workflow-grid h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -.025em; }
.workflow-grid p { max-width: 340px; margin: 0; color: #8199b0; font-size: 11px; line-height: 1.7; }

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(720px, 1.62fr);
  gap: clamp(35px, 5vw, 80px);
  align-items: center;
  padding: 92px clamp(25px, 5vw, 78px);
  border: 1px solid #1d3b59;
  border-radius: 15px;
  background:
    radial-gradient(circle at 79% 45%, rgba(35, 103, 79, .14), transparent 34%),
    linear-gradient(135deg, #081a2b, #06131f);
  box-shadow: 0 27px 85px rgba(0, 0, 0, .28);
}
.map-section { margin-top: 92px; margin-bottom: 72px; scroll-margin-top: 92px; }
.map-copy h2 { margin-bottom: 20px; }
.map-copy > p { color: #91a8bd; font-size: 12px; line-height: 1.75; }
.map-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; color: #adc1d2; font-size: 9px; }
.map-copy li { display: flex; align-items: center; gap: 8px; }
.map-copy li i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(73, 227, 164, .08); }
.live-map-panel { min-width: 0; overflow: hidden; border: 1px solid #254a68; border-radius: 11px; background: #030d18; box-shadow: 0 24px 60px rgba(0, 0, 0, .4); }
.live-map-toolbar, .live-map-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 14px; border-bottom: 1px solid #17344f; background: #0a1b2d; }
.live-map-toolbar { min-height: 56px; }
.server-live { display: flex; align-items: center; gap: 10px; }
.server-live > i, .live-map-footer i, .feed-heading > i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(73, 227, 164, .10); }
.server-live > span { display: grid; gap: 3px; }
.server-live strong { font-size: 10px; }
.server-live small { color: #7791aa; font-size: 8px; }
.server-live small b { color: #bcd1e3; }
.map-controls { display: flex; align-items: center; gap: 5px; }
.map-controls button { height: 31px; min-width: 31px; padding: 0 9px; border: 1px solid #284b6c; border-radius: 6px; background: #0b2135; color: #d6e8f7; cursor: pointer; font-size: 11px; font-weight: 800; }
.map-controls button:hover { border-color: #3e7aaa; background: #102b45; }
.live-map-layout { display: grid; grid-template-columns: minmax(0, 1fr) 278px; min-height: 560px; }
.map-canvas { position: relative; min-height: 560px; overflow: hidden; border-right: 1px solid #17344f; background: #01070d; cursor: grab; touch-action: none; user-select: none; }
.map-canvas.dragging { cursor: grabbing; }
.map-world { position: absolute; inset: 0; transform-origin: 50% 50%; will-change: transform; }
.tile-layer { position: absolute; inset: 0; display: grid; min-width: 0; min-height: 0; grid-template-columns: repeat(8, minmax(0, 1fr)); grid-template-rows: repeat(8, minmax(0, 1fr)); gap: 0; }
.map-tile { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: fill; pointer-events: none; }
.marker-layer { position: absolute; inset: 0; pointer-events: none; }
.map-player, .map-event { position: absolute; z-index: 3; display: grid; place-items: center; padding: 0; transform: translate(-50%, -50%); cursor: pointer; pointer-events: auto; transition: left 2.25s ease-in-out, top 2.25s ease-in-out, transform .14s ease; }
.map-player { width: 13px; height: 13px; border: 2px solid #d6fff0; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(73, 227, 164, .12), 0 5px 15px rgba(0, 0, 0, .7); }
.map-player::after { content: attr(data-name); position: absolute; top: 16px; left: 50%; transform: translateX(-50%); padding: 4px 6px; border: 1px solid rgba(106, 151, 187, .35); border-radius: 5px; background: rgba(2, 11, 20, .86); color: #eef8ff; font-size: 7px; font-weight: 750; white-space: nowrap; opacity: 0; transition: opacity .14s ease; }
.map-player:hover, .map-player.selected { transform: translate(-50%, -50%) scale(1.38); z-index: 5; }
.map-player:hover::after, .map-player.selected::after { opacity: 1; }
.map-event { width: 31px; height: 31px; border: 0; border-radius: 0; background: transparent; color: #d98d32; box-shadow: none; font-size: 9px; font-weight: 900; }
.map-event svg { width: 30px; height: 30px; overflow: visible; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .84)); }
.map-event.helicopter { color: #d17b5b; }
.map-event.airdrop { color: #e1a643; }
.map-event.military { color: #a8bd72; }
.map-event:hover { transform: translate(-50%, -50%) scale(1.2); z-index: 6; }
.map-event.pulse { animation: eventPulse .8s ease-out; }
@keyframes eventPulse { 50% { transform: translate(-50%, -50%) scale(1.18); filter: drop-shadow(0 0 7px currentColor); } }
.map-vehicle { position: absolute; z-index: 4; display: grid; place-items: center; width: 29px; height: 29px; padding: 0; transform: translate(-50%, -50%); border: 0; border-radius: 0; background: transparent; color: #f7f4ed; cursor: pointer; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .82)); pointer-events: auto; transition: left 2.25s ease-in-out, top 2.25s ease-in-out, transform .14s ease; }
.map-vehicle svg { width: 28px; height: 28px; overflow: visible; }
.map-vehicle:hover { transform: translate(-50%, -50%) scale(1.25); z-index: 6; }
.map-vehicle.boat { color: #dceef7; }
.icon-fill { fill: currentColor; stroke: #041017; stroke-width: 1.5; stroke-linejoin: round; }
.icon-line { fill: none; stroke: #f7f4ed; stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.icon-detail { fill: #bfd6e4; stroke: #041017; stroke-width: 1; stroke-linejoin: round; }
.icon-wheel { fill: #263746; stroke: #041017; stroke-width: 1.2; }
.map-status { position: absolute; left: 10px; right: 10px; bottom: 9px; z-index: 8; display: flex; align-items: center; gap: 14px; padding: 7px 9px; border: 1px solid rgba(43, 83, 117, .55); border-radius: 7px; background: rgba(2, 11, 20, .84); color: #8ca5bc; font-size: 7px; backdrop-filter: blur(8px); }
.map-status span { display: flex; align-items: center; gap: 5px; }
.map-status span:last-child { margin-left: auto; }
.map-status i { width: 6px; height: 6px; border-radius: 50%; }
.player-key { background: var(--green); }
.event-key { background: #ffc34e; }
.vehicle-key { width: 8px !important; height: 5px !important; border-radius: 2px !important; background: #f7f4ed; box-shadow: 0 0 0 1px #041017; }
.boat-key { width: 8px !important; height: 5px !important; border-radius: 0 0 5px 5px !important; background: #dceef7; box-shadow: 0 0 0 1px #041017; }
.player-popover { position: absolute; top: 10px; left: 10px; z-index: 10; min-width: 190px; display: grid; gap: 4px; padding: 13px; border: 1px solid #2b5476; border-radius: 8px; background: rgba(5, 22, 37, .95); box-shadow: 0 14px 38px rgba(0, 0, 0, .44); }
.player-popover[hidden] { display: none; }
.player-popover > button { position: absolute; top: 6px; right: 6px; width: 23px; height: 23px; border: 0; background: transparent; color: #7994ab; cursor: pointer; }
.player-popover > span { color: var(--green); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.player-popover > strong { font-size: 13px; }
.player-popover > small { color: #7f99b1; font-size: 8px; }
.live-feed { min-width: 0; background: #071522; }
.feed-heading { min-height: 63px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border-bottom: 1px solid #18344d; }
.feed-heading > div { display: grid; gap: 4px; }
.feed-heading span { color: var(--blue-bright); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.feed-heading strong { font-size: 11px; }
.feed-list { max-height: 497px; overflow: hidden; }
.feed-entry { display: grid; grid-template-columns: 27px minmax(0, 1fr) auto; gap: 8px; align-items: start; padding: 10px 11px; border-bottom: 1px solid rgba(46, 77, 105, .42); animation: feedIn .28s ease; }
@keyframes feedIn { from { opacity: 0; transform: translateY(-7px); } }
.feed-icon { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #20405e; border-radius: 6px; color: #72b9ff; background: #0d253b; font-size: 9px; font-weight: 900; }
.feed-icon svg { width: 18px; height: 18px; overflow: visible; }
.feed-icon .icon-line { stroke-width: 1.25; }
.feed-entry.event .feed-icon { color: #ffd47d; border-color: rgba(255, 195, 78, .25); background: rgba(83, 57, 17, .45); }
.feed-entry.combat .feed-icon { color: #ff91a3; border-color: rgba(255, 102, 122, .22); background: rgba(81, 24, 36, .48); }
.feed-copy { min-width: 0; }
.feed-copy strong { display: block; margin-bottom: 3px; overflow: hidden; color: #dce8f3; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.feed-copy span { display: block; color: #7892aa; font-size: 7px; line-height: 1.45; }
.feed-time { padding-top: 3px; color: #526d85; font-size: 6px; white-space: nowrap; }
.live-map-footer { min-height: 37px; border-top: 1px solid #17344f; border-bottom: 0; color: #66829b; font-size: 7px; }
.live-map-footer span { display: flex; align-items: center; gap: 7px; }
.live-map-footer strong { color: #8da7bf; font-size: 7px; }

.showcase-section {
  display: grid;
  grid-template-columns: minmax(300px, .48fr) minmax(650px, 1.52fr);
  align-items: center;
  gap: clamp(38px, 5vw, 82px);
  padding: 98px 0;
  scroll-margin-top: 72px;
}
.showcase-section + .showcase-section,
.product-section + .showcase-section,
.showcase-section + .product-section { border-top: 1px solid rgba(40, 75, 109, .34); }
.showcase-section.reverse { grid-template-columns: minmax(650px, 1.52fr) minmax(300px, .48fr); }
.showcase-section.reverse .showcase-copy { grid-column: 2; grid-row: 1; }
.showcase-section.reverse .showcase-visual { grid-column: 1; grid-row: 1; }
.showcase-copy h2 {
  margin: 12px 0 19px;
  font-size: clamp(31px, 3vw, 47px);
  line-height: 1.08;
  letter-spacing: -.046em;
}
.showcase-copy > p { color: #91a8bd; font-size: 12px; line-height: 1.75; }
.feature-points, .workflow-steps { display: grid; gap: 10px; margin: 27px 0 0; padding: 0; list-style: none; }
.feature-points li {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #1c3a56;
  border-radius: 8px;
  background: rgba(13, 31, 51, .67);
}
.feature-points strong { color: #dceaf6; font-size: 10px; }
.feature-points span { color: #7792aa; font-size: 8px; line-height: 1.55; }
.compact-list { grid-template-columns: 1fr; }
.workflow-steps li { display: grid; grid-template-columns: 31px 1fr; align-items: start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(40, 75, 109, .42); }
.workflow-steps b { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #2a5a82; border-radius: 7px; color: var(--blue-bright); background: var(--blue-soft); font-size: 8px; }
.workflow-steps span { color: #7892aa; font-size: 8px; line-height: 1.55; }
.workflow-steps strong { display: block; margin-bottom: 3px; color: #dceaf6; font-size: 10px; }
.showcase-visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #254766;
  border-radius: 12px;
  background: #06111d;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.showcase-visual::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; border-radius: 11px; transition: .16s ease; pointer-events: none; }
.showcase-visual:hover::after { border-color: rgba(85, 166, 255, .44); }
.showcase-visual img { width: 100%; height: auto; transition: transform .24s ease; }
.showcase-visual:hover img { transform: scale(1.006); }
.showcase-visual:hover .expand-hint { opacity: 1; transform: none; }

#interface { scroll-margin-top: 72px; }

.detail-gallery { display: grid; grid-template-columns: .53fr 1fr 1fr; gap: 13px; padding: 22px 0 112px; }
.detail-gallery > button { min-height: 365px; overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); }
.detail-gallery > button::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 48%, rgba(2, 10, 19, .92) 85%); }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: top left; transition: transform .25s ease; }
.detail-gallery > button.crop-workspace img { position: absolute; left: 0; top: 0; width: 100%; height: 130%; object-fit: cover; object-position: center; transform: translateY(-18%); }
.detail-gallery > button:first-child img { object-fit: cover; object-position: center 19%; }
.detail-gallery > button:hover img { transform: scale(1.018); }
.detail-gallery > button.crop-workspace:hover img { transform: translateY(-18%) scale(1.018); }
.detail-gallery > button > span { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; display: grid; gap: 4px; }
.detail-gallery strong { font-size: 13px; }
.detail-gallery small { color: #829bb3; font-size: 9px; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 82px;
  padding: clamp(30px, 4vw, 55px);
  border: 1px solid #27527a;
  border-radius: 13px;
  background: linear-gradient(125deg, #0b2948, #071b31 55%, #071726);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}
.final-cta h2 { max-width: 820px; font-size: clamp(27px, 3vw, 43px); }
.final-cta .primary-button { flex: 0 0 auto; }

footer { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 25px; padding-bottom: 25px; border-top: 1px solid var(--border); }
.brand.small .brand-logo { width: 38px; height: 27px; }
.brand.small strong { font-size: 12px; }
footer p { max-width: 510px; margin: 0; color: #637e97; font-size: 9px; text-align: right; line-height: 1.6; }

.image-viewer {
  width: min(96vw, 1720px);
  max-width: none;
  height: min(94vh, 1020px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid #315b80;
  border-radius: 12px;
  color: var(--text);
  background: #030c16;
  box-shadow: 0 38px 120px rgba(0, 0, 0, .78);
}
.image-viewer::backdrop { background: rgba(0, 6, 13, .88); backdrop-filter: blur(8px); }
.viewer-head { height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px 0 18px; border-bottom: 1px solid var(--border); background: #0a1a2a; color: #829db7; font-size: 10px; font-weight: 700; }
.viewer-head button { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--border-bright); border-radius: 7px; background: #0c1d2e; cursor: pointer; color: #c5d5e4; font-size: 17px; }
.viewer-body { width: 100%; height: calc(100% - 50px); display: grid; place-items: center; overflow: auto; padding: 15px; }
.viewer-image-frame { position: relative; max-width: 100%; max-height: 100%; }
.viewer-image-frame:not(.crop-workspace) { display: grid; place-items: center; }
.viewer-image-frame:not(.crop-workspace) img { max-width: 100%; max-height: calc(94vh - 80px); width: auto; height: auto; }
.viewer-image-frame.crop-workspace { width: min(100%, 1700px); aspect-ratio: 1883 / 690; overflow: hidden; }
.viewer-image-frame.crop-workspace img { position: absolute; left: 0; top: 0; width: 100%; height: auto; max-width: none; max-height: none; transform: translateY(-18.2%); }
.viewer-body img { box-shadow: 0 0 0 1px #172f47; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; width: min(980px, calc(100% - 42px)); padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { margin-top: 8px; }
  .tour-stage { min-height: 0; grid-template-columns: 1fr; }
  .tour-stage-copy { border-right: 0; border-bottom: 1px solid var(--border); }
  .stage-image { min-height: 480px; }
  .map-section { grid-template-columns: 1fr; }
  .map-copy { max-width: 720px; }
  .showcase-section, .showcase-section.reverse { grid-template-columns: 1fr; }
  .showcase-section.reverse .showcase-copy, .showcase-section.reverse .showcase-visual { grid-column: 1; }
  .showcase-section.reverse .showcase-copy { grid-row: 1; }
  .showcase-section.reverse .showcase-visual { grid-row: 2; }
  .live-map-layout { grid-template-columns: minmax(0, 1fr) 250px; }
  .detail-gallery { grid-template-columns: 1fr 1fr; }
  .detail-gallery > button:first-child { grid-row: span 2; }
}

@media (max-width: 760px) {
  .demo-bar { justify-content: space-between; padding-left: 14px; padding-right: 14px; }
  .demo-bar p { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .site-header { height: 62px; grid-template-columns: 1fr auto; padding: 0 14px; }
  .site-header nav { display: none; }
  .header-cta { padding: 8px 10px; font-size: 9px; }
  .header-cta > span { display: none; }
  .brand-logo { width: 39px; height: 28px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 6px; }
  .hero { width: calc(100% - 28px); min-height: 0; gap: 42px; padding: 56px 0 68px; }
  .hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { display: grid; }
  .primary-button, .secondary-button { width: 100%; }
  .proof-list { display: grid; }
  .screen-window { transform: none; border-radius: 8px; }
  .window-bar { height: 26px; }
  .capture-note { position: static; width: fit-content; margin-top: 10px; }
  .expand-hint { display: none; }
  .product-section, .workflow-section, .map-section, .showcase-section, .detail-gallery, .final-cta, footer { width: calc(100% - 28px); }
  .product-section { padding: 75px 0 70px; }
  .section-heading { display: grid; gap: 15px; margin-bottom: 27px; }
  .section-heading > p { font-size: 11px; }
  .tour-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .tour-tab { min-height: 44px; padding: 7px 9px; text-align: left; }
  .tour-stage-copy { padding: 31px 23px; }
  .stage-image { min-height: 280px; }
  .stage-image.crop-workspace { min-height: 0; }
  .stage-image img { object-fit: cover; object-position: top left; }
  .workflow-section { padding-bottom: 75px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid article { min-height: 210px; }
  .map-section { width: 100%; margin-top: 55px; margin-bottom: 35px; padding: 62px 14px; border-left: 0; border-right: 0; border-radius: 0; }
  .map-copy ul { grid-template-columns: 1fr; }
  .live-map-toolbar { align-items: flex-start; flex-direction: column; padding-top: 12px; padding-bottom: 12px; }
  .map-controls { width: 100%; }
  .map-controls button { flex: 0 0 auto; }
  .live-map-layout { grid-template-columns: 1fr; }
  .live-map-panel { width: 100%; }
  .map-canvas { width: 100%; height: min(92vw, 500px); min-height: 0; aspect-ratio: 1 / 1; border-right: 0; border-bottom: 1px solid #17344f; }
  .tile-layer { inset: -1px; width: calc(100% + 2px); height: calc(100% + 2px); }
  .map-tile { width: calc(100% + 1px); height: calc(100% + 1px); }
  .feed-list { max-height: 290px; }
  .map-status span:last-child { display: none; }
  .showcase-section { gap: 28px; padding: 68px 0; }
  .showcase-copy h2 { font-size: clamp(29px, 9vw, 41px); }
  .showcase-visual { border-radius: 8px; }
  .detail-gallery { grid-template-columns: 1fr; padding-bottom: 76px; }
  .detail-gallery > button:first-child { grid-row: auto; }
  .detail-gallery > button { min-height: 300px; }
  .final-cta { display: grid; gap: 28px; margin-bottom: 60px; padding: 28px 22px; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p { text-align: left; }
  .image-viewer { width: 98vw; height: 88vh; }
  .viewer-body { place-items: start center; padding: 8px; }
}

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