/*
Theme Name: ANDROMEDA Technologies (EN)
Theme URI: https://andromedatechnologies.eu
Author: VERLYON
Author URI: https://verlyon.sk
Description: English single-page investor site for ANDROMEDA Technologies. Content, design system, animations and responsive behaviour all live in the theme, so no page builder is required. Sister theme to the Slovak version — install this one on the international domain.
Version: 2.4.1
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: Proprietary — internal use only
Text Domain: andromeda-en
*/

/* =========================================================================
   PÍSMA — hosťované priamo v téme.
   Variabilné rezy: jeden súbor pokryje všetky použité váhy vrátane
   neštandardných (520, 550, 650). Žiadne volanie na Google Fonts,
   takže zo stránky neodchádza IP adresa návštevníka tretej strane.
   ========================================================================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =========================================================================
   00 · RESET + TOKENY
   ========================================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  color-scheme: dark;

  /* plochy */
  --bg: #050505;
  --panel: #090909;
  --panel-2: #0b0b0b;
  --light: #f0f0ec;

  /* text */
  --white: #f5f5f2;
  --muted: #969693;   /* 4.6:1 na --bg — bežný sekundárny text */
  --dim: #8a8a86;     /* 4.0:1 — mono labely, min. 10px */
  --faint: #7d7d79;   /* najtlmenejší text — stále 4,8:1 na --bg */

  /* linky */
  --hairline: rgba(255, 255, 255, 0.16);
  --hairline-soft: rgba(255, 255, 255, 0.08);

  /* akcent — technická oceľová modrá s navy základom, bez fialového nádychu */
  --accent-deep: #061627;
  --accent: #0c2e5c;
  --accent-bright: #2d78d2;
  --accent-text: #86b4ee;  /* 9.3:1 na --bg */
  --accent-soft: rgba(45, 120, 210, 0.16);
  --accent-line: rgba(45, 120, 210, 0.42);

  /* typografia */
  --font: Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* rytmus */
  --pad: 5vw;
  --header-h: 96px;
  --section-y: clamp(84px, 8.5vw, 148px);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; font: inherit; }
ul { list-style: none; }

::selection { background: var(--accent-bright); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #262626; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--accent-bright);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 220ms var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* jemný filmový šum cez celú stránku */
.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* =========================================================================
   01 · TYPOGRAFICKÉ A LAYOUT PRIMITÍVY
   ========================================================================= */

.section {
  position: relative;
  padding: var(--section-y) var(--pad);
  border-top: 1px solid var(--hairline);
  scroll-margin-top: var(--header-h);
}
.section--panel { background: var(--panel); }

/* číslovaný pruh na začiatku sekcie: 02 ———— DATA ACQUISITION */
.section-rule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(46px, 5vw, 78px);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-rule i { display: block; height: 1px; background: var(--hairline); }

.eyebrow {
  display: block;
  margin-bottom: 26px;
  color: #cfcfcb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 14px 4px 0;
  background: var(--accent-bright);
  box-shadow: 0 0 14px rgba(45, 120, 210, .7);
  vertical-align: middle;
}

.display {
  margin: 0;
  font-size: clamp(38px, 5.1vw, 80px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.display span { color: var(--muted); }

.display-sm {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-top: 32px;
  color: #a9a9a5;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}
.lead strong { color: var(--white); font-weight: 500; }

.section-head { margin-bottom: clamp(52px, 6vw, 96px); }

.mono-label {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.accent { color: var(--accent-text); }
.hl {
  color: var(--white);
  background-image: linear-gradient(to top, rgba(45, 120, 210, .26) 0 .38em, transparent .38em);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* tlačidlá */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 200px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
}
.btn--primary {
  border-color: rgba(45, 120, 210, .82);
  background: linear-gradient(135deg, #0c2e5c, #050f1e);
  box-shadow: inset 0 0 24px rgba(45, 120, 210, .08), 0 0 30px rgba(12, 52, 106, .18);
}
.btn--primary:hover { border-color: var(--accent-bright); background: var(--accent); }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn__arrow { font-size: 15px; }

.text-link {
  display: inline-block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #cfcfcc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color 250ms ease, border-color 250ms ease;
}
.text-link:hover { color: #fff; border-color: #fff; }

/* reveal pri scrollovaní — aktívne len keď beží JS (html.js),
   bez JS je obsah normálne viditeľný */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 900ms ease, transform 1000ms var(--ease);
}
.js .reveal-stagger > * { opacity: 0; transform: translateY(20px); }
.js .reveal-stagger > *.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 800ms ease, transform 900ms var(--ease);
}

/* =========================================================================
   02 · HLAVIČKA + NAVIGÁCIA
   ========================================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0);
  transition: background 400ms ease, border-color 400ms ease, height 400ms ease;
}
.site-header.is-scrolled {
  height: 76px;
  border-bottom-color: var(--hairline);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.js .site-header { opacity: 0; transform: translateY(-16px); }
.js body.is-ready .site-header {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease 150ms, transform 900ms var(--ease) 150ms,
              background 400ms ease, border-color 400ms ease, height 400ms ease;
}

.brand { display: inline-flex; align-items: center; }
.brand img {
  width: clamp(148px, 13vw, 190px);
  height: auto;
  aspect-ratio: 832 / 334;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 46px); }
.desktop-nav a, .header-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav a { position: relative; color: #bcbcb9; transition: color 250ms ease; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -9px;
  height: 1px;
  background: #fff;
  transition: right 350ms ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }
.desktop-nav a:hover::after { right: 0; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  transition: border-color 250ms ease;
}
.header-cta:hover { border-color: var(--accent-bright); }

.menu-button {
  display: none;
  justify-self: end;
  padding: 12px 0 12px 20px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px 0;
  background: #fff;
  transition: transform 320ms var(--ease), opacity 200ms ease;
}
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* mobilné menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: calc(var(--header-h) + 8px) 24px max(36px, env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 320ms ease, transform 420ms var(--ease), visibility 320ms;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  display: block;
  padding: clamp(10px, 1.7vh, 15px) 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: clamp(17px, 2.4vh, 20px);
  font-weight: 500;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.mobile-menu a:last-of-type { color: var(--accent-text); }
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 26px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* =========================================================================
   03 · HERO
   ========================================================================= */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  min-height: max(760px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) var(--pad) 40px;
  background:
    radial-gradient(circle at 76% 48%, rgba(10, 46, 96, .14), transparent 34%),
    radial-gradient(circle at 58% 72%, rgba(255, 255, 255, .025), transparent 30%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  scroll-margin-top: 0;
}

.technical-grid {
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: -3;
  opacity: .52;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 88%);
}
.technical-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.02) 45%, rgba(255,255,255,.11) 50%, rgba(255,255,255,.02) 55%, transparent 100%);
  transform: translateX(-60%);
}
body.is-ready .technical-grid::after { animation: gridSweep 5.4s cubic-bezier(.45,0,.18,1) .45s forwards; }

/* technický rám okolo hero */
.hero-frame {
  position: absolute;
  inset: calc(var(--header-h) + 22px) 26px 24px;
  z-index: 1;
  border: 1px solid transparent;
  pointer-events: none;
}
.js .hero-frame { opacity: 0; }
.js body.is-ready .hero-frame { animation: frameReveal 1.2s ease .35s forwards; }
.frame-corner { position: absolute; width: 16px; height: 16px; }
.frame-corner::before, .frame-corner::after { content: ""; position: absolute; background: rgba(255,255,255,.62); }
.frame-corner::before { top: 0; left: 0; width: 16px; height: 1px; }
.frame-corner::after { top: 0; left: 0; width: 1px; height: 16px; }
.corner-tl { top: -1px; left: -1px; }
.corner-tr { top: -1px; right: -1px; transform: rotate(90deg); }
.corner-bl { bottom: -1px; left: -1px; transform: rotate(-90deg); }
.corner-br { bottom: -1px; right: -1px; transform: rotate(180deg); }
.frame-index, .frame-status {
  position: absolute;
  top: 15px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
}
.frame-index { left: 20px; }
.frame-status { right: 20px; display: flex; align-items: center; gap: 9px; }
.frame-status i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-bright), 0 0 24px var(--accent);
}
.frame-status b {
  min-width: 148px;
  color: var(--accent-text);
  font-size: inherit;
  font-weight: 500;
  text-align: right;
}
.frame-progress {
  position: absolute;
  top: 40px; right: 20px;
  width: 148px; height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}
.frame-progress i {
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), #e9e9e6);
  transform: scaleX(0);
  transform-origin: left;
}
body.is-ready .frame-progress i { animation: progressFill 5.7s cubic-bezier(.33,1,.68,1) .65s forwards; }

/* replay — v pätke rámu, mimo navigácie aj nadpisu (fix: prekrývanie) */
.replay {
  position: absolute;
  z-index: 12;
  top: calc(var(--header-h) + 84px);
  right: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 250ms ease;
}
.js .replay { opacity: 0; }
.js body.is-ready .replay { animation: fadeIn 500ms ease 5.9s forwards; }
.replay:hover { color: #fff; }

.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  max-width: 720px;
  padding: 26px 0 60px;
}
.hero .eyebrow { margin-bottom: 26px; }
.js .hero-copy [data-reveal] { opacity: 0; transform: translateY(18px); }
.js body.is-ready .hero-copy [data-reveal="eyebrow"] { animation: rise 1s var(--ease) 1.1s forwards; }
.js body.is-ready .hero-copy [data-reveal="lead"] { animation: rise 1.1s var(--ease) 3.45s forwards; }
.js body.is-ready .hero-copy [data-reveal="actions"] { animation: rise 1s var(--ease) 4.25s forwards; }

.hero-title {
  margin: 0;
  font-size: clamp(40px, 3.85vw, 76px);
  font-weight: 520;
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.title-line { display: block; padding: .04em 0; }
/* .word musí mať overflow:hidden kvôli nábehu písmen zdola, ale pri
   line-height .94 to orezávalo mäkčene a dĺžne — hore preto pridáme
   priestor a vykompenzujeme ho záporným okrajom, aby sa layout nehol */
.title-line .word {
  display: inline-block;
  overflow: hidden;
  margin-right: .2em;
  padding-top: .18em;
  margin-top: -.18em;
  vertical-align: top;
}
.js .title-line .letter { display: inline-block; opacity: 0; transform: translateY(112%); }
.js body.is-ready .title-line .letter {
  animation: letterUp 1s var(--ease) forwards;
  animation-delay: calc(1.5s + var(--i) * 40ms);
}
.title-line--accent { -webkit-text-stroke: 1px rgba(255, 255, 255, .9); }

.hero-lead {
  max-width: 580px;
  margin-top: 32px;
  color: #a9a9a5;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.62;
}
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 36px; flex-wrap: wrap; }

/* hero metriky */
.hero-metrics {
  grid-column: 1 / -1;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid var(--hairline);
}
.js .hero-metrics { opacity: 0; transform: translateY(20px); }
.js body.is-ready .hero-metrics { animation: rise 1s ease 5.05s forwards; }
.hero-metrics > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  column-gap: 14px;
  padding: 20px 26px 4px 0;
  border-right: 1px solid var(--hairline-soft);
}
.hero-metrics > div:not(:first-child) { padding-left: 26px; }
.hero-metrics > div:last-child { border-right: 0; }
.hero-metrics .idx {
  grid-row: 1 / 3;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.9;
}
.hero-metrics strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero-metrics strong b { color: var(--accent-text); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero-metrics small {
  margin-top: 7px;
  color: var(--dim);
  font-size: 11px;
  line-height: 1.45;
}

/* scéna s dronom */
.drone-stage {
  position: relative;
  z-index: 4;
  isolation: isolate;
  justify-self: end;
  min-width: 0;
  width: min(54vw, 940px);
  aspect-ratio: 16 / 9;
  transform: translate(calc(5vw + var(--px, 0px)), calc(1vh + var(--py, 0px)));
  transition: transform 600ms cubic-bezier(.2, .8, .3, 1);
}
/* horizont, o ktorý sa scéna opiera */
.drone-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -6%; right: -10%; top: 66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,120,210,.3) 28%, rgba(255,255,255,.13) 58%, rgba(45,120,210,.22) 78%, transparent);
}
/* svetelná kaluž pod dronom — bez nej scéna pôsobí ako nalepený obrázok */
.drone-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 4%; right: -6%; top: 40%;
  height: 84%;
  opacity: 0;
  background:
    radial-gradient(ellipse 46% 42% at 52% 28%, rgba(45,120,210,.22), transparent 70%),
    radial-gradient(ellipse 32% 20% at 50% 46%, rgba(150,190,255,.1), transparent 72%);
  filter: blur(26px);
}
body.is-ready .drone-stage::after { animation: fadeIn 1.8s ease 2.4s forwards; }
/* HERO VIZUÁL — video namiesto fotky.
   Kamera obieha okolo dronu, prvá a posledná snímka sú identické,
   takže slučka je bez švíku. Statická snímka pod videom drží kompozíciu
   od prvej milisekundy a video sa na ňu prelne. */
.drone-video { position: absolute; z-index: 5; inset: 0; }
.drone-video__still,
.drone-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* tyrkysové podsvietenie dronu sa zosúladí s modrou paletou webu */
  filter: saturate(.86) hue-rotate(-16deg) contrast(1.03);
  /* vineta na všetky štyri strany — záber sa rozplynie do stránky a po
     obdĺžniku videa neostane viditeľný šev. Dva prechody sa prekrývajú
     prienikom; ak prehliadač mask-composite nepozná, ostane aspoň
     vodorovné stmavenie okrajov. */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 11%, #000 86%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 11%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.drone-video video { opacity: 0; transition: opacity 900ms ease; }
.drone-video.is-playing video { opacity: 1; }

/* sledovacie rohy — držia sa stredu záberu, takže fungujú aj pri otáčaní */
.drone-track {
  position: absolute;
  z-index: 7;
  inset: 24% 26%;
  opacity: 0;
  transform: scale(1.06);
}
.drone-track i { position: absolute; width: 18px; height: 18px; }
.drone-track i::before, .drone-track i::after { content: ""; position: absolute; background: rgba(150, 195, 255, .75); }
.drone-track i::before { width: 18px; height: 1px; top: 0; left: 0; }
.drone-track i::after { width: 1px; height: 18px; top: 0; left: 0; }
.drone-track i:nth-child(1) { top: 0; left: 0; }
.drone-track i:nth-child(2) { top: 0; right: 0; transform: rotate(90deg); }
.drone-track i:nth-child(3) { bottom: 0; left: 0; transform: rotate(-90deg); }
.drone-track i:nth-child(4) { bottom: 0; right: 0; transform: rotate(180deg); }
.drone-track b {
  position: absolute;
  right: 0;
  bottom: -22px;
  color: var(--accent-text);
  font: 500 9px/1 var(--mono);
  letter-spacing: .18em;
}
body.is-ready .drone-track { animation: trackLock 1s var(--ease) 2.6s forwards, trackPulse 3.4s ease 4s infinite; }

.flight-haze {
  position: absolute;
  z-index: 1;
  inset: -35% -10%;
  opacity: 0;
  background: radial-gradient(ellipse at 62% 58%, rgba(10,48,105,.22) 0%, rgba(8,28,60,.1) 26%, transparent 66%);
  filter: blur(18px);
}
.flight-haze::before, .flight-haze::after, .flight-haze i, .flight-haze b {
  content: "";
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(110,160,225,.55);
  box-shadow: 0 0 10px rgba(45,120,210,.7);
}
.flight-haze::before { left: 24%; top: 42%; }
.flight-haze::after { right: 16%; top: 64%; width: 2px; height: 2px; }
.flight-haze i { left: 43%; bottom: 18%; width: 2px; height: 2px; }
.flight-haze b { right: 37%; top: 25%; width: 1px; height: 1px; }
body.is-ready .flight-haze { animation: hazeIn 1.8s ease 2.8s forwards; }

.sensor-cone {
  position: absolute;
  z-index: 3;
  left: 61%; top: 57%;
  width: 260px; height: 175px;
  opacity: 0;
  transform: translateX(-50%) perspective(300px) rotateX(13deg);
  transform-origin: top;
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(45,120,210,.18), rgba(10,50,110,.055) 54%, transparent 100%);
  pointer-events: none;
}
.sensor-cone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 17px, rgba(100,150,215,.09) 18px 19px);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 94%);
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}
.sensor-cone i {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(115,165,230,.62), transparent);
  box-shadow: 0 0 13px rgba(45,120,210,.5);
}
body.is-ready .sensor-cone { animation: coneIn 1.5s ease 4.4s forwards, coneBreathe 4.6s ease-in-out 6s infinite; }

.drone-blueprint {
  position: absolute;
  z-index: 2;
  inset: -9% -5%;
  opacity: 0;
  border: 1px solid rgba(255,255,255,.07);
  transform: scale(.96);
}
.drone-blueprint::before, .drone-blueprint::after { content: ""; position: absolute; background: rgba(255,255,255,.08); }
.drone-blueprint::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.drone-blueprint::after { top: 50%; left: 0; right: 0; height: 1px; }
.drone-blueprint i { position: absolute; width: 8px; height: 8px; border-style: solid; border-color: rgba(255,255,255,.35); }
.drone-blueprint i:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.drone-blueprint i:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.drone-blueprint i:nth-child(3) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.drone-blueprint i:nth-child(4) { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
body.is-ready .drone-blueprint { animation: blueprintIn 1.3s ease .65s forwards, blueprintOut 1.1s ease 4.5s forwards; }

.drone-scan {
  position: absolute;
  z-index: 8;
  top: 5%; bottom: 3%; left: 0;
  width: 2px;
  opacity: 0;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright), 0 0 42px var(--accent);
}
.drone-scan span {
  position: absolute;
  top: 8%; left: 12px;
  white-space: nowrap;
  color: #e9e9e6;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
}
body.is-ready .drone-scan { animation: scanDrone 3.45s cubic-bezier(.45,0,.2,1) 1.1s forwards; }

.drone-coordinates {
  position: absolute;
  z-index: 7;
  right: 5%; bottom: 9%;
  display: grid;
  gap: 4px;
  opacity: 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}
body.is-ready .drone-coordinates { animation: rise .9s ease 4.75s forwards; }

/* =========================================================================
   04 · SEKCIA 02 — PROBLÉM
   ========================================================================= */

.problem-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
}

.crisis-row {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: clamp(20px, 3vw, 46px);
  padding: 34px 0;
  border-top: 1px solid var(--hairline-soft);
}
.crisis-row:first-child { border-top: 0; padding-top: 0; }
.crisis-big {
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.crisis-big u { color: var(--accent-text); font-size: .62em; text-decoration: none; }
.crisis-big u.sm { font-size: .34em; letter-spacing: .02em; }
.crisis-text h3 {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.crisis-text p { color: #9d9d99; font-size: 15px; line-height: 1.6; }
.crisis-source {
  margin-top: 14px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}

/* mapa hrozieb — obsah kreslí canvas, tu je len rám a odpočty */
.threat-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: linear-gradient(160deg, #0a0a0a, #060606);
}
.threat-map-header, .threat-map-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.threat-map-header { border-bottom: 1px solid var(--hairline-soft); }
.threat-map-footer { border-top: 1px solid var(--hairline-soft); }
.threat-map-header .status { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-text); }
.threat-map-header .status::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright);
  animation: nodePulse 2.6s ease infinite;
}
.threat-map-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 34px 34px;
}
.threat-map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 55%, rgba(45,120,210,.08), transparent 64%);
}
.threat-map-canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.threat-map-footer b {
  margin-left: 8px;
  color: var(--accent-text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.problem-quote {
  margin-top: 42px;
  padding: 34px 0 0;
  border-top: 1px solid var(--hairline);
  color: #a5a5a1;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  letter-spacing: -.015em;
}
.problem-quote .emphasis { color: var(--white); }

/* =========================================================================
   05 · SEKCIA 03 — GLOBÁLNY ROZSAH
   ========================================================================= */

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.scope-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px 26px 30px 0;
  border-right: 1px solid var(--hairline-soft);
  transition: background 350ms ease;
}
.scope-card:not(:first-child) { padding-left: 26px; }
.scope-card:last-child { border-right: 0; }
.scope-card:hover { background: rgba(255, 255, 255, .017); }
.scope-card .country {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scope-card .metric {
  margin: 26px 0 14px;
  color: var(--white);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.scope-card .metric-label { color: #92928e; font-size: 13px; line-height: 1.55; }

.global-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.global-strip-cell {
  padding: 30px 24px 30px 0;
  border-right: 1px solid var(--hairline-soft);
}
.global-strip-cell:not(:first-child) { padding-left: 24px; }
.global-strip-cell:last-child { border-right: 0; }
.gs-num {
  color: var(--accent-text);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}
.gs-label {
  margin-top: 10px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* =========================================================================
   06 · SEKCIA 04 — RIEŠENIE (vrátane skenu terénu)
   ========================================================================= */

.terrain-block { position: relative; margin-bottom: clamp(70px, 8vw, 120px); }

.terrain-visual {
  position: relative;
  width: 100%;
  height: clamp(460px, 52vw, 720px);
  margin: 26px 0 10px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline-soft);
}
.terrain-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.terrain-grid-overlay {
  position: absolute;
  inset: 7% 5% 9%;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: perspective(700px) rotateX(61deg) translateY(29%);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(to top, #000, transparent 78%);
  mask-image: linear-gradient(to top, #000, transparent 78%);
}

.terrain-scan-label {
  position: absolute;
  top: 8%; left: 4%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
}
.terrain-scan-label span { color: var(--accent-text); font-size: 10px; letter-spacing: .18em; }
.terrain-scan-label small { color: var(--dim); font-size: 10px; letter-spacing: .12em; }

.terrain-axis {
  position: absolute;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
}
.axis-x { right: 4%; top: 9%; }
.axis-z { left: 2%; top: 46%; transform: rotate(-90deg); transform-origin: left center; }

/* poloha detekcie sa počíta z projekcie terénu, preto px cez --x/--y */
.detection-marker {
  position: absolute;
  z-index: 8;
  left: 0; top: 0;
  width: 18px; height: 18px;
  margin-left: var(--x, 0px);
  margin-top: var(--y, 0px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.4);
}
.marker-ring, .marker-core { position: absolute; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.marker-ring { width: 18px; height: 18px; border: 1px solid var(--accent-bright); box-shadow: 0 0 20px rgba(18,72,140,.62); }
.marker-ring::before, .marker-ring::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: rgba(255,255,255,.5);
  transform: translate(-50%, -50%);
}
.marker-ring::before { width: 27px; height: 1px; }
.marker-ring::after { width: 1px; height: 27px; }
.marker-core { width: 4px; height: 4px; background: var(--accent-bright); box-shadow: 0 0 10px var(--accent-bright); }

.marker-callout {
  position: absolute;
  left: 24px; top: -12px;
  min-width: 168px;
  padding: 8px 10px;
  border-left: 1px solid rgba(255,255,255,.5);
  background: linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.34));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
/* strana kalloutu sa riadi atribútom, nie poradím v DOM */
.detection-marker[data-side="left"] .marker-callout {
  left: auto;
  right: 24px;
  border-left: 0;
  border-right: 1px solid rgba(255,255,255,.5);
  text-align: right;
  background: linear-gradient(270deg, rgba(5,5,5,.94), rgba(5,5,5,.34));
}
.marker-callout b, .marker-callout small { display: block; font-family: var(--mono); white-space: nowrap; }
.marker-callout b { color: var(--accent-text); font-size: 10px; font-weight: 550; letter-spacing: .12em; }
.marker-callout small { margin-top: 5px; color: var(--dim); font-size: 9px; letter-spacing: .06em; }
.detection-marker.is-detected { animation: markerReveal .65s var(--ease) forwards; }
.detection-marker.is-detected .marker-ring { animation: markerPulse 2.3s ease-in-out .6s infinite; }

.scan-telemetry {
  position: absolute;
  z-index: 9;
  right: 2%; bottom: 6%;
  display: grid;
  grid-template-columns: repeat(3, minmax(122px, 1fr));
  border: 1px solid var(--hairline);
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.js .scan-telemetry { opacity: 0; transform: translateY(10px); }
.js .terrain-block.is-scanning .scan-telemetry { animation: rise .8s ease .8s forwards; }
.scan-telemetry > div { min-width: 0; padding: 12px 14px; border-right: 1px solid var(--hairline-soft); }
.scan-telemetry > div:last-child { border-right: 0; }
.scan-telemetry span, .scan-telemetry b { display: block; font-family: var(--mono); }
.scan-telemetry span { color: var(--dim); font-size: 9px; letter-spacing: .12em; }
.scan-telemetry b {
  margin-top: 7px;
  color: #e4e4e0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}
.scan-telemetry > div:last-child b { color: var(--accent-text); }

.terrain-replay {
  position: absolute;
  z-index: 10;
  left: 2%; bottom: 6%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--dim);
  font: 500 10px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 250ms ease;
}
.terrain-replay:hover { color: #fff; }

.terrain-copy { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 70px); margin-top: 40px; }
.terrain-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.terrain-copy h3 span { color: var(--muted); }
.terrain-copy p { align-self: end; color: #a1a19d; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.62; }

.scan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(50px, 6vw, 90px);
  border-top: 1px solid var(--hairline);
}
.scan-steps article { padding: 24px 36px 26px 0; border-right: 1px solid var(--hairline-soft); }
.scan-steps article:not(:first-child) { padding-left: 36px; }
.scan-steps article:last-child { border-right: 0; }
.scan-steps span { color: var(--faint); font-family: var(--mono); font-size: 10px; }
.scan-steps h4 { margin: 40px 0 10px; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.scan-steps p { max-width: 290px; color: #8f8f8b; font-size: 14px; line-height: 1.55; }

/* výkonnostné ukazovatele + priebeh misie */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}
.capabilities { margin-top: 24px; }
.capability { padding: 22px 0; border-top: 1px solid var(--hairline-soft); }
.capability:first-child { border-top: 0; }
.capability-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 14px; }
.capability-head .label { font-size: 13px; letter-spacing: .04em; }
.capability-head .value {
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cap-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid var(--hairline);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  vertical-align: middle;
}
.capability-track { height: 2px; background: rgba(255, 255, 255, .09); }
.capability-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px rgba(45, 120, 210, .5);
  transition: width 1.3s var(--ease);
}

.mission-flow-title {
  margin-bottom: 24px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.flow-step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--hairline-soft); }
.flow-step:first-of-type { border-top: 0; }
.flow-step .num { color: var(--accent-text); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; }
.flow-step h4 { margin-bottom: 9px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.flow-step p { color: #92928e; font-size: 14px; line-height: 1.6; }

.cores { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline); }
.core-card {
  padding: 30px 30px 34px 0;
  border-right: 1px solid var(--hairline-soft);
  transition: background 350ms ease;
}
.core-card:not(:first-child) { padding-left: 30px; }
.core-card:last-child { border-right: 0; }
.core-card:hover { background: rgba(255, 255, 255, .017); }
.core-num { color: var(--dim); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.core-icon { width: 30px; height: 30px; margin: 30px 0 24px; color: var(--accent-text); }
.core-icon svg { width: 100%; height: 100%; }
.core-card h4 { margin-bottom: 12px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.core-card p { color: #92928e; font-size: 14px; line-height: 1.6; }

/* --- video: prelet nad územím (celoplošný pás v sekcii Riešenie) --------- */

.field-scan {
  position: relative;
  margin: 0 calc(var(--pad) * -1) clamp(56px, 6vw, 96px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: #030303;
}
.field-scan__media { position: relative; aspect-ratio: 21 / 8; min-height: 340px; overflow: hidden; }
.field-scan__still,
.field-scan video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* záber má tyrkysový HUD — jemné pootočenie odtieňa ho zosúladí
     s modrou akcentovou farbou webu */
  filter: saturate(.85) hue-rotate(-18deg) contrast(1.04);
}
/* video sa na statickú snímku prelne — nevznikne skok z výsledného
   stavu späť na prázdne pole, a keď sa neprehrá vôbec (blokované
   automatické prehrávanie, obmedzený pohyb), ostane zmysluplný záber */
.field-scan video { opacity: 0; transition: opacity 700ms ease; }
.field-scan.is-playing video { opacity: 1; }

.field-scan__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.7) 20%, rgba(5,5,5,.24) 44%, rgba(5,5,5,0) 62%, rgba(5,5,5,.32) 100%),
    linear-gradient(180deg, rgba(5,5,5,.34), transparent 20%, transparent 76%, rgba(5,5,5,.42));
}
.field-scan__frame { position: absolute; inset: 22px; z-index: 2; pointer-events: none; }
.field-scan__caption {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  top: 50%;
  width: min(400px, 34%);
  transform: translateY(-50%);
}
.field-scan__caption .step {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.field-scan__caption h3 {
  margin-bottom: 14px;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.field-scan__caption p { color: #b4b4b0; font-size: 14.5px; line-height: 1.6; }
.field-scan__note,
.field-scan__replay {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.field-scan__note { right: var(--pad); }
.field-scan__replay {
  left: var(--pad);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  cursor: pointer;
  transition: color 250ms ease;
}
.field-scan__replay:hover { color: #fff; }

/* --- video: konštrukčná vizualizácia (v boxe sekcie Technológia) --------- */

.drone-showcase-stage video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #040404;
}
.specs-note {
  padding: 14px 18px 0;
  color: var(--dim);
  font-size: 12.5px;
  line-height: 1.55;
}
.showcase-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-top: 1px solid var(--hairline-soft);
}
.showcase-replay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 250ms ease;
}
.showcase-replay:hover { color: #fff; }

/* =========================================================================
   07 · SEKCIA 05 — TECHNOLÓGIA
   ========================================================================= */

.tech-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 5vw, 80px); align-items: start; }

.drone-showcase { border: 1px solid var(--hairline); background: linear-gradient(165deg, #0a0a0a, #050505); }
.drone-showcase-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.drone-showcase-header .model { color: var(--white); }
.drone-showcase-stage {
  position: relative;
  display: grid;
  place-items: center;
  /* video vypĺňa box celé; odsadenie zostáva len pre obrázkový obsah */
  padding: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 40px 40px;
}
.drone-showcase-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(45,120,210,.09), transparent 60%);
  pointer-events: none;
}
.drone-showcase-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 30px rgba(0,0,0,.9));
}
.specs-strip { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--hairline-soft); }
.spec-cell { padding: 20px 14px; border-right: 1px solid var(--hairline-soft); }
.spec-cell:last-child { border-right: 0; }
.spec-cell .key {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.spec-cell .val {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.spec-cell .unit { color: var(--dim); font-size: 12px; font-weight: 400; }

.sensor-stack .mono-label { display: block; margin-bottom: 22px; }
.sensor-card { padding: 24px 0; border-top: 1px solid var(--hairline-soft); }
.sensor-card:first-of-type { border-top: 0; padding-top: 0; }
.sensor-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.sensor-icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--hairline);
  color: var(--accent-text);
}
.sensor-icon svg { width: 17px; height: 17px; }
.sensor-head h3 { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.sensor-card p { color: #92928e; font-size: 14px; line-height: 1.6; }

/* =========================================================================
   08 · SEKCIA 06 — PREČO PRÁVE TERAZ
   ========================================================================= */

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline-soft); border: 1px solid var(--hairline-soft); }
.why-card { padding: clamp(28px, 3vw, 46px); background: var(--bg); transition: background 350ms ease; }
.section--panel .why-card { background: var(--panel); }
.why-card:hover { background: #0d0d0d; }
.why-card .marker {
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.why-card h3 {
  margin: 26px 0 16px;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -.025em;
}
.why-card p { color: #92928e; font-size: 14.5px; line-height: 1.65; }

/* =========================================================================
   09 · SEKCIA 07 — DOPAD A TRH
   ========================================================================= */

.impact-numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline); }
.impact-cell { padding: 34px 26px 34px 0; border-right: 1px solid var(--hairline-soft); }
.impact-cell:not(:first-child) { padding-left: 26px; }
.impact-cell:last-child { border-right: 0; }
.impact-num {
  display: block;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.impact-unit {
  margin-top: 12px;
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.impact-desc { margin-top: 16px; color: #8f8f8b; font-size: 13.5px; line-height: 1.6; }

.impact-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 70px); margin-top: 64px; }
.impact-note {
  max-width: 760px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-soft);
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
}
.impact-meta .title {
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.impact-meta li { padding: 11px 0; border-bottom: 1px solid var(--hairline-soft); color: #a3a39f; font-size: 14px; }
.impact-meta li:last-child { border-bottom: 0; }

/* =========================================================================
   10 · SEKCIA 08 — FÁZY
   ========================================================================= */

.phases-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline); }
.phase-card {
  position: relative;
  padding: 34px 32px 36px 0;
  border-right: 1px solid var(--hairline-soft);
}
.phase-card:not(:first-child) { padding-left: 32px; }
.phase-card:last-child { border-right: 0; }
.phase-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--hairline-soft);
}
.phase-card.is-active::before { background: var(--accent-bright); box-shadow: 0 0 14px rgba(45,120,210,.6); }
.phase-num { color: var(--dim); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.phase-card.is-active .phase-num { color: var(--accent-text); }
.phase-title { margin: 26px 0 8px; font-size: clamp(19px, 1.7vw, 25px); font-weight: 500; letter-spacing: -.03em; }
.phase-sub { margin-bottom: 26px; color: var(--dim); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; }
.phase-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--hairline-soft);
  color: #9d9d99;
  font-size: 13.5px;
  line-height: 1.5;
}
.phase-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 1px; background: var(--faint); }
.phase-card.is-active .phase-list li::before { background: var(--accent-bright); }
.phase-status {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 12px;
  border: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status-done { border-color: rgba(45,120,210,.5); color: var(--accent-text); }
.status-progress { color: var(--white); }
.status-future { color: var(--dim); }

/* =========================================================================
   11 · SEKCIA 09 — PRE INVESTOROV
   ========================================================================= */

.invest-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 88px); align-items: start; }
.invest-pitch h3 { margin-bottom: 22px; font-size: clamp(22px, 2vw, 30px); font-weight: 500; letter-spacing: -.03em; }
.invest-pitch p { margin-bottom: 18px; color: #a1a19d; font-size: 15.5px; line-height: 1.7; }
.cta-line {
  margin-top: 30px;
  padding: 26px 28px;
  border-left: 1px solid var(--accent-bright);
  background: linear-gradient(90deg, rgba(45,120,210,.08), transparent 70%);
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
}
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--hairline-soft); }
.pillar:first-child { border-top: 0; padding-top: 0; }
.pillar-num { color: var(--accent-text); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; }
.pillar h4 { margin-bottom: 9px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.pillar p { color: #92928e; font-size: 14px; line-height: 1.6; }

/* =========================================================================
   12 · SEKCIA 10 — TÍM
   ========================================================================= */

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--hairline); }
.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.5vw, 34px);
  padding: 38px 34px 40px 0;
  border-right: 1px solid var(--hairline-soft);
}
.team-card:last-child { border-right: 0; padding-left: 34px; }
.team-avatar {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 17px;
  letter-spacing: .06em;
}
.team-card h3 { font-size: clamp(19px, 1.7vw, 24px); font-weight: 500; letter-spacing: -.03em; }
.team-role {
  margin: 8px 0 6px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.team-tag {
  margin-bottom: 16px;
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.team-bio { color: #92928e; font-size: 14px; line-height: 1.65; }

/* =========================================================================
   13 · SEKCIA 11 — KONTAKT (svetlá) + PÄTIČKA
   ========================================================================= */

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 86vh;
  padding: clamp(90px, 10vw, 150px) var(--pad);
  border-top: 1px solid var(--hairline);
  background: var(--light);
  color: #050505;
  scroll-margin-top: var(--header-h);
}
.cta .eyebrow { color: #4a4a47; }
.cta .eyebrow::before { background: var(--accent); box-shadow: none; }
.cta-title {
  max-width: 16ch;
  font-size: clamp(44px, 7.4vw, 122px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.cta-title span { color: #86867f; }
.cta-sub { max-width: 660px; margin-top: 34px; color: #3f3f3c; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65; }
.cta-actions { display: flex; align-items: center; gap: 26px; margin-top: 48px; flex-wrap: wrap; }
.cta .btn {
  border-color: rgba(0, 0, 0, .5);
  background: none;
  box-shadow: none;
  color: #050505;
}
.cta .btn--primary { background: #050505; border-color: #050505; color: var(--light); }
.cta .btn--primary:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: #fff; }
.cta .btn--ghost:hover { background: rgba(0, 0, 0, .07); border-color: #050505; }
.cta .btn svg { width: 16px; height: 12px; }
.cta-info { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 58px; }
.cta-info-item {
  color: #55554f;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cta-info-item::before { content: "— "; color: #9a9a92; }
.cta :focus-visible { outline-color: var(--accent); }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  padding: 30px var(--pad);
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  color: var(--dim);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-footer img { width: 150px; height: auto; aspect-ratio: 832 / 334; }
.footer-copy { justify-self: center; text-align: center; }
.footer-links { justify-self: end; display: flex; gap: 24px; }
.footer-links a { transition: color 250ms ease; }
.footer-links a:hover { color: #fff; }


/* Dotykové ciele — tieto tlačidlá sú zámerne drobné mono popisky, takže
   ich klikaciu plochu zväčšíme neviditeľným pseudoprvkom. Vzhľad ani
   poloha sa nemenia, len sa dajú na telefóne trafiť. */
.showcase-replay { position: relative; }
.replay::after,
.field-scan__replay::after,
.terrain-replay::after,
.showcase-replay::after {
  content: "";
  position: absolute;
  inset: -14px 0;
}

/* =========================================================================
   14 · KEYFRAMES
   ========================================================================= */

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes letterUp { to { opacity: 1; transform: translateY(0); } }
@keyframes wireReveal { 0% { opacity: .28; clip-path: inset(0 100% 0 0); } 20% { opacity: .42; } 100% { opacity: .38; clip-path: inset(0 0 0 0); } }
@keyframes wireFade { to { opacity: 0; } }
@keyframes droneReveal { to { -webkit-mask-position: 0% 0; mask-position: 0% 0; } }
@keyframes droneFloat { 0%, 100% { transform: translateY(0) rotate(-.2deg); } 50% { transform: translateY(-10px) rotate(.2deg); } }
@keyframes scanDrone { 0% { left: 0; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes trackLock { to { opacity: 1; transform: scale(1); } }
@keyframes trackPulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes hazeIn { to { opacity: 1; } }
@keyframes coneIn { to { opacity: .8; } }
@keyframes coneBreathe { 0%, 100% { opacity: .55; } 50% { opacity: .9; } }
@keyframes frameReveal { to { opacity: 1; border-color: var(--hairline-soft); } }
@keyframes progressFill { to { transform: scaleX(1); } }
@keyframes gridSweep { 0% { opacity: 0; transform: translateX(-60%); } 12%, 88% { opacity: 1; } 100% { opacity: 0; transform: translateX(60%); } }
@keyframes blueprintIn { to { opacity: 1; transform: scale(1); } }
@keyframes blueprintOut { to { opacity: 0; transform: scale(1.015); } }
@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--accent-soft), 0 0 12px rgba(18,72,140,.48); }
  50% { box-shadow: 0 0 0 11px rgba(18,72,140,0), 0 0 20px rgba(45,120,210,.62); }
}
@keyframes pathDraw { to { stroke-dashoffset: 0; } }
@keyframes terrainSweep { 0% { left: 4%; opacity: 0; } 4%, 96% { opacity: 1; } 100% { left: 96%; opacity: 0; } }
@keyframes markerReveal { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes markerPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.45); opacity: .32; }
}
@keyframes threatPing { 0% { opacity: .9; transform: scale(.6); } 100% { opacity: 0; transform: scale(2.1); } }

/* =========================================================================
   15 · RESPONZIVITA
   ========================================================================= */

@media (max-width: 1280px) {
  .specs-strip { grid-template-columns: repeat(3, 1fr); }
  .spec-cell:nth-child(3) { border-right: 0; }
  .spec-cell:nth-child(-n+3) { border-bottom: 1px solid var(--hairline-soft); }
  .tech-layout { grid-template-columns: 1fr; }
  .scope-card { min-height: 260px; }
}

@media (max-width: 1100px) {
  :root { --header-h: 84px; }

  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    padding-top: calc(var(--header-h) + 46px);
  }
  .hero-copy { max-width: 760px; padding: 46px 0 8px; }
  .drone-stage { grid-row: 2; justify-self: center; width: min(96vw, 900px); transform: translate(3vw, 0); margin: -10px 0 6px; }
  .hero-metrics { grid-row: 3; grid-template-columns: repeat(2, 1fr); }
  .hero-metrics > div:nth-child(2) { border-right: 0; }
  .hero-metrics > div:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); }
  .hero-metrics > div:nth-child(odd) { padding-left: 0; }
  .replay { top: calc(var(--header-h) + 70px); right: 28px; }

  .problem-layout, .solution-grid, .invest-layout, .terrain-copy { grid-template-columns: 1fr; }
  .field-scan__media { aspect-ratio: 16 / 8; }
  .field-scan__caption { width: min(400px, 46%); }
  .terrain-copy p { align-self: start; }
  .marker-callout { display: none; }
  .scope-grid, .impact-numbers { grid-template-columns: repeat(2, 1fr); }
  .scope-card:nth-child(2), .impact-cell:nth-child(2) { border-right: 0; }
  .scope-card:nth-child(-n+2), .impact-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); }
  .scope-card:nth-child(odd), .impact-cell:nth-child(odd) { padding-left: 0; }
  .scope-card:nth-child(even), .impact-cell:nth-child(even) { padding-left: 26px; }
  .global-strip { grid-template-columns: repeat(2, 1fr); }
  .global-strip-cell:nth-child(2) { border-right: 0; }
  .global-strip-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); }
  .global-strip-cell:nth-child(odd) { padding-left: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: 0; border-bottom: 1px solid var(--hairline-soft); padding-right: 0; }
  .team-card:last-child { padding-left: 0; border-bottom: 0; }
  .phases-grid { grid-template-columns: 1fr; }
  .phase-card { padding: 30px 0 34px !important; border-right: 0; }
  .cores { grid-template-columns: 1fr; }
  .core-card { padding: 28px 0 30px !important; border-right: 0; border-bottom: 1px solid var(--hairline-soft); }
  .core-card:last-child { border-bottom: 0; }
  .core-icon { margin: 22px 0 18px; }
  .impact-meta { grid-template-columns: 1fr; gap: 34px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: 20px; }
  .footer-copy, .footer-links { justify-self: start; text-align: left; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .scan-steps { grid-template-columns: 1fr; }
  .scan-steps article { padding: 22px 0 24px !important; border-right: 0; border-bottom: 1px solid var(--hairline-soft); }
  .scan-steps article:last-child { border-bottom: 0; }
  .scan-steps h4 { margin-top: 20px; }
  .scan-steps p { max-width: none; }
  .crisis-row { grid-template-columns: 1fr; gap: 14px; }

  /* na úzkych displejoch popis nepatrí na záber, ale pod neho */
  .field-scan__media { aspect-ratio: 16 / 9; min-height: 0; }
  .field-scan__media::after { background: linear-gradient(180deg, rgba(5,5,5,.35), transparent 42%, rgba(5,5,5,.6)); }
  .field-scan__caption {
    position: static;
    width: auto;
    transform: none;
    padding: 26px var(--pad) 0;
  }
  .field-scan__frame { inset: 12px; }
  /* obe popisky sú vnútri záberu — na mobile ich presunieme nad video,
     kde je voľné miesto, nech neležia na dronovi */
  .field-scan__note { top: 16px; bottom: auto; right: 20px; }
  .field-scan__replay { top: 15px; bottom: auto; left: 20px; }
  /* na úzkych displejoch sa popisok a tlačidlo skladajú pod seba,
     inak by sa v hornej lište terénu prekryli */
  .terrain-replay { top: 4%; left: 4%; right: auto; bottom: auto; padding: 0; }
  .terrain-scan-label { top: calc(4% + 26px); left: 4%; }
  .scan-telemetry { left: 2%; right: 2%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --pad: 20px; --header-h: 74px; --section-y: clamp(64px, 12vw, 92px); }

  .site-header.is-scrolled { height: 66px; }
  .brand img { width: 148px; }

  .hero { min-height: 0; padding: calc(var(--header-h) + 36px) var(--pad) 30px; }
  .technical-grid { background-size: 34px 34px; }
  .hero-frame { inset: calc(var(--header-h) + 14px) 8px 14px; }
  .frame-status { display: none; }
  .frame-progress { top: 15px; right: 20px; width: 90px; }
  .hero-copy { padding: 44px 0 6px; }
  .hero-title { font-size: clamp(29px, 8.4vw, 52px); line-height: 1; }
  .hero-lead { max-width: 100%; font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 28px; }
  .btn { width: 100%; max-width: 320px; }
  .drone-stage { width: 118vw; transform: translate(6vw, 0); margin: 14px 0 34px; }
  .drone-blueprint { inset: -9% -2%; }
  .sensor-cone { width: 170px; height: 120px; }
  .drone-coordinates { display: none; }
  .drone-track { inset: 22% 18%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics > div { padding: 15px 0 !important; border-right: 0; border-bottom: 1px solid var(--hairline-soft); }
  .hero-metrics > div:last-child { border-bottom: 0; }
  .replay { position: relative; display: flex; justify-content: flex-start; margin-top: 18px; padding: 0; }

  .scope-grid, .impact-numbers, .global-strip { grid-template-columns: 1fr; }
  .scope-card, .impact-cell, .global-strip-cell {
    padding: 24px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--hairline-soft);
    min-height: 0;
  }
  .scope-card:last-child, .impact-cell:last-child, .global-strip-cell:last-child { border-bottom: 0; }
  .scope-card .metric { margin: 16px 0 10px; }

  .terrain-visual { height: 460px; }
  .terrain-grid-overlay { inset: 11% 1% 17%; background-size: 28px 28px; }
  .terrain-scan-label span { font-size: 9px; letter-spacing: .12em; }
  .terrain-scan-label small { font-size: 9px; }
  .scan-telemetry > div { padding: 8px 7px; }
  .scan-telemetry span { font-size: 8px; letter-spacing: .04em; }
  .scan-telemetry b { font-size: 10px; letter-spacing: .04em; }
  .axis-x, .axis-z { display: none; }

  .specs-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-cell { border-bottom: 1px solid var(--hairline-soft); }
  .spec-cell:nth-child(even) { border-right: 0; }
  .spec-cell:nth-child(3) { border-right: 1px solid var(--hairline-soft); }
  .spec-cell:nth-last-child(-n+2) { border-bottom: 0; }

  .showcase-foot { flex-direction: column; align-items: flex-start; gap: 10px; }

  .why-card { padding: 26px 0; background: none !important; border-bottom: 1px solid var(--hairline-soft); }
  .why-grid { border: 0; gap: 0; background: none; }
  .why-card:last-child { border-bottom: 0; }
  .why-card h3 { margin: 18px 0 12px; }

  .cta { min-height: 0; padding: clamp(70px, 16vw, 110px) var(--pad); }
  .cta-title { font-size: clamp(30px, 9.5vw, 64px); }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .cta-info { gap: 12px; flex-direction: column; margin-top: 42px; }

  .team-card { grid-template-columns: 1fr; gap: 20px; }
  .team-avatar { width: 62px; height: 62px; font-size: 15px; }

  .pillar, .flow-step { gap: 16px; }
  .site-footer { padding: 26px var(--pad); }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* =========================================================================
   16 · OBMEDZENÝ POHYB / TLAČ
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .js .reveal, .js .reveal-stagger > *, .js .hero-copy [data-reveal],
  .js .hero-metrics, .js .scan-telemetry, .js .replay, .js .hero-frame, .js .site-header {
    opacity: 1 !important;
    transform: none !important;
  }
  .js .drone-video video { opacity: 1 !important; }
  .js .title-line .letter { opacity: 1 !important; transform: none !important; }
}

@media print {
  .noise, .site-header, .mobile-menu, .replay, .terrain-replay,
  .drone-stage, .terrain-visual, .threat-map { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .cta { padding: 20px 0; border-color: #ccc; }
}

/* bez JavaScriptu: mobilné menu sa nedá otvoriť, tak sa hamburger skryje —
   navigáciu v takom prípade preberá zoznam odkazov v pätičke */
html:not(.js) .menu-button { display: none; }
.mobile-menu[hidden] { display: none; }

/* sken terénu kreslí canvas — bez JS by ostal prázdny rám, tak ho vynecháme
   a sekcia sa zúži na text, ktorý dáva zmysel aj sám o sebe */
html:not(.js) .terrain-visual { display: none; }
html:not(.js) .terrain-copy { margin-top: 0; }
