/* ═══════════════════════════════════════════════════════════════
   ELVIAN — TECHNOLOGIE · návrh 2026
   Identita dle Manuálu vizuálního stylu Elvian 2026 (MK, 13. 8. 2026):
   Navy #1F2A44 · Soft gold #C6A75E (jen akcent, nikdy plocha) ·
   Ivory #FAF6EE · Warm beige #E8DCC8 · Playfair Display + Inter.
   Základ: Elvian-Tech-v6 — layout beze změny, plný rebrand tokenů.
   ═══════════════════════════════════════════════════════════════ */

@property --ga {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --navy: #1F2A44;
  --navy-deep: #192138;
  --navy-darker: #131A2C;
  --abyss: #0D1220;
  --abyss-2: #080B16;
  --gold: #C6A75E;
  --gold-soft: #A8894A;
  --gold-hot: #D9C28A;
  --gold-glow: rgba(229, 196, 74, .5);
  --cyan: #8CA2CC;
  --teal: #D9C28A;
  --violet: #FAF6EE;
  --cream: #FAF6EE;
  --cream-warm: #F4EEE2;
  --ink: #232B3E;
  --ink-soft: #3D4557;
  --muted: #7A7466;
  --line: rgba(255,255,255,.09);
  --line-gold: rgba(198,167,94,.25);
  --line-dark: rgba(31,42,68,.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 72px;
}

/* ── base ─────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font-body);
  background: var(--abyss);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: #E8DCC8; color: #1F2A44; }
.mono { font-family: var(--font-mono); }
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; position: relative; }

body.is-booting { overflow: hidden; }

/* jemné zrno přes celý web */
.grain {
  position: fixed; inset: -100px; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .028; mix-blend-mode: overlay;
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); } 25% { transform: translate(-30px,18px); }
  50% { transform: translate(22px,-26px); } 75% { transform: translate(-14px,-8px); } 100% { transform: translate(0,0); }
}

/* ── custom cursor ────────────────────────────────────────────── */
/* kurzor: klasický systémový (custom cursor odstraněn na přání Jiřího) */

/* ── scroll progress ──────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 1500;
  background: linear-gradient(90deg, var(--gold), var(--gold-hot));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ── boot screen ──────────────────────────────────────────────── */
.boot {
  position: fixed; inset: 0; z-index: 4000; background: var(--abyss-2);
  display: grid; place-items: center; transition: opacity .5s .55s, visibility .5s .55s;
}
.boot-grid {
  position: absolute; inset: 0; opacity: .14;
  background-image: linear-gradient(rgba(140,162,204,.25) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(140,162,204,.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 75%);
  animation: boot-grid-pan 6s linear infinite;
}
@keyframes boot-grid-pan { to { background-position: 48px 48px; } }
.boot-inner { position: relative; text-align: center; width: min(420px, 84vw); }
.boot-logo img { height: 40px; margin: 0 auto 26px; opacity: 0; animation: boot-in .7s var(--ease-out) .1s forwards; }
.boot-line { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: rgba(250,246,238,.55); display: flex; justify-content: center; gap: 10px; opacity: 0; animation: boot-in .7s var(--ease-out) .25s forwards; }
.boot-sep { color: var(--gold); }
.boot-count { font-family: var(--font-mono); font-weight: 300; font-size: clamp(64px, 10vw, 96px); color: var(--cream); line-height: 1; margin: 18px 0 14px; font-variant-numeric: tabular-nums; opacity: 0; animation: boot-in .7s var(--ease-out) .35s forwards; }
.boot-pct { font-size: .35em; color: var(--gold); margin-left: 6px; }
.boot-bar { height: 2px; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
.boot-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-hot)); box-shadow: 0 0 14px var(--gold-glow); }
.boot-log { margin-top: 16px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .3em; color: var(--gold); min-height: 16px; }
@keyframes boot-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.boot-curtain { position: absolute; left: 0; width: 100%; height: 50%; background: var(--abyss-2); transform: scaleY(0); }
.boot-curtain--top { top: 0; transform-origin: top; }
.boot-curtain--bottom { bottom: 0; transform-origin: bottom; }
body.boot-done .boot { opacity: 0; visibility: hidden; }
body.boot-done .boot-inner { animation: boot-out .4s var(--ease-out) forwards; }
@keyframes boot-out { to { opacity: 0; transform: scale(.96); filter: blur(6px); } }

/* ── nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .45s, border-color .45s, backdrop-filter .45s, transform .45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13,18,32,.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-row { display: flex; align-items: center; gap: 28px; width: min(1360px, calc(100% - 48px)); }
.nav-logo img { height: 30px; transition: transform .3s var(--ease-out); }
.nav-logo:hover img { transform: scale(1.04); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a {
  position: relative; display: block; padding: 8px 12px; font-size: 13.5px; font-weight: 500;
  color: rgba(250,246,238,.72); letter-spacing: .01em; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-back { color: rgba(250,246,238,.5) !important; }
.nav-other { color: var(--gold) !important; }
.lang { display: flex; gap: 2px; margin-left: 6px; }
.lang a { padding: 5px 6px; border-radius: 8px; font-size: 15px; filter: grayscale(.35) opacity(.6); transition: filter .25s, background .25s; }
.lang a.active, .lang a:hover { filter: none; background: rgba(255,255,255,.07); }
.nav-burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: 0; padding: 10px; }
.nav-burger span { width: 24px; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── hero ─────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: calc(var(--nav-h) + 40px) 0 90px; }
#bg-shader { position: absolute; inset: 0; width: 100%; height: 100%; }
#globe { position: absolute; top: 50%; right: -2vw; transform: translateY(-50%); width: min(54vw, 880px); aspect-ratio: 1; pointer-events: none; z-index: 4; }
#meteors { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 18% 40%, rgba(13,18,32,.5), transparent 55%),
    linear-gradient(180deg, rgba(13,18,32,.55), transparent 26%, transparent 62%, var(--abyss) 100%);
}
.hero-scan {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: linear-gradient(180deg, transparent 0%, rgba(140,162,204,.06) 48%, rgba(140,162,204,.12) 50%, rgba(140,162,204,.06) 52%, transparent 100%);
  background-size: 100% 260px; background-repeat: no-repeat; background-position-y: -260px;
  animation: scan 9s linear infinite;
}
@keyframes scan { 0% { background-position-y: -260px; } 60%, 100% { background-position-y: calc(100% + 260px); } }

.readout {
  position: absolute; z-index: 5; display: flex; gap: 10px; align-items: center;
  font-size: 10.5px; letter-spacing: .18em; color: rgba(250,246,238,.5);
  opacity: 0; animation: readout-in 1s var(--ease-out) 1.1s forwards;
}
.readout--tl { top: calc(var(--nav-h) + 18px); left: 34px; }
.readout--tr { top: calc(var(--nav-h) + 18px); right: 34px; }
.readout--bl { bottom: 26px; left: 34px; }
.readout--br { bottom: 26px; right: 34px; }
.rsep { color: var(--gold); opacity: .8; }
.rnum { color: var(--gold); }
.readout-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); animation: blink 2.4s infinite; }
@keyframes readout-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.hero-content { position: relative; z-index: 6; max-width: 1000px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border: 1px solid var(--line-gold); border-radius: 999px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  background: rgba(198,167,94,.05);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.eyebrow--dark { border-color: rgba(31,42,68,.3); color: var(--navy); background: rgba(31,42,68,.05); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: relative; flex: none; }
.pulse-dot::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--gold); animation: pulse-ring 2s var(--ease-out) infinite; }
.pulse-dot--dark { background: var(--navy); }
.pulse-dot--dark::after { border-color: var(--navy); }
@keyframes pulse-ring { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.hero-eyebrow { margin-bottom: 34px; opacity: 0; animation: readout-in .8s var(--ease-out) .95s forwards; }

.hero-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 6.6vw, 92px); line-height: 1.04; letter-spacing: -.015em; margin-bottom: 30px; }
.ht-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.ht-inner { display: inline-block; transform: translateY(115%); animation: line-up 1.1s var(--ease-out) forwards; }
.ht-line:nth-child(1) .ht-inner { animation-delay: 1.05s; }
.ht-line:nth-child(2) .ht-inner { animation-delay: 1.18s; }
.ht-line:nth-child(3) .ht-inner { animation-delay: 1.31s; }
@keyframes line-up { to { transform: translateY(0); } }
.hero-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(110deg, var(--gold) 20%, var(--gold-hot) 40%, var(--gold) 60%, var(--cyan) 130%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 7s ease infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub { max-width: 760px; color: rgba(250,246,238,.78); font-size: 16.5px; font-weight: 300; }
.hero-sub + .hero-sub { margin-top: 10px; font-size: 15px; color: rgba(250,246,238,.62); }
.hero-tagline { margin-top: 18px; font-size: 15px; color: rgba(250,246,238,.85); }
.hero-tagline strong { color: var(--gold); font-weight: 600; }
.hs-1, .hs-2, .hs-3, .hs-4, .hs-5 { opacity: 0; animation: readout-in .9s var(--ease-out) forwards; }
.hs-1 { animation-delay: 1.5s; } .hs-2 { animation-delay: 1.6s; } .hs-3 { animation-delay: 1.7s; }
.hs-4 { animation-delay: 1.8s; } .hs-5 { animation-delay: 1.95s; }

.hero-nokia {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  padding: 9px 18px; border: 1px solid var(--line-gold); border-radius: 999px;
  font-size: 12.5px; letter-spacing: .06em; color: rgba(250,246,238,.85);
  background: rgba(198,167,94,.06);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-nokia strong { color: var(--gold); letter-spacing: .14em; font-weight: 700; }

.hero-ctas { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  letter-spacing: .02em; transition: transform .3s var(--ease-out), box-shadow .3s, background .3s, color .3s, border-color .3s;
  will-change: transform; overflow: hidden;
}
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold { background: linear-gradient(120deg, #283754, var(--navy)); color: var(--cream); border: 1px solid rgba(198,167,94,.55); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: sheen 4.2s ease infinite;
}
@keyframes sheen { 0%, 55% { left: -80%; } 75%, 100% { left: 130%; } }
.btn-gold:hover { border-color: var(--gold); box-shadow: 0 14px 44px rgba(0,0,0,.45), 0 0 24px rgba(198,167,94,.25); }
.btn-ghost { border: 1px solid rgba(250,246,238,.25); color: var(--cream); background: rgba(255,255,255,.03); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(198,167,94,.06); }
.btn-xl { padding: 20px 42px; font-size: 17px; }

.hero-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 60px; max-width: 760px; }
.meta-item { position: relative; padding: 16px 18px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.03); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: border-color .3s, transform .3s var(--ease-out); }
.meta-item:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.meta-index { font-size: 9.5px; letter-spacing: .25em; color: rgba(250,246,238,.4); }
.meta-num { font-family: var(--font-display); font-size: 40px; font-weight: 300; line-height: 1.15; color: var(--gold); font-variant-numeric: tabular-nums; }
.meta-label { font-size: 11.5px; color: rgba(250,246,238,.6); letter-spacing: .02em; }
.meta-bar { position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease-out) .3s; }
.meta-item.is-counted .meta-bar { transform: scaleX(1); }

.scroll-hint { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,246,238,.45); opacity: 0; animation: readout-in 1s var(--ease-out) 2.3s forwards; }
.scroll-hint .scroll-line { width: 1px; height: 44px; background: linear-gradient(180deg, transparent, var(--gold)); overflow: hidden; position: relative; }
.scroll-hint .scroll-line::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-hot); animation: scroll-drop 2s var(--ease-out) infinite; }
@keyframes scroll-drop { 0% { top: -50%; } 70%, 100% { top: 110%; } }

/* ── marquee ──────────────────────────────────────────────────── */
.marquee { position: relative; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--abyss-2); overflow: hidden; }
.marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--abyss-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--abyss-2), transparent); }
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-size: 30px; font-weight: 300; letter-spacing: .04em;
  color: transparent; -webkit-text-stroke: 1px rgba(250,246,238,.3); white-space: nowrap;
  transition: color .4s, -webkit-text-stroke-color .4s;
}
.marquee-track span:hover { color: var(--cream); -webkit-text-stroke-color: transparent; }
.marquee-track .mq-gold { color: var(--gold); -webkit-text-stroke: 0; font-style: italic; }
.marquee-track i { color: var(--gold); font-size: 11px; font-style: normal; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── sekce společné ───────────────────────────────────────────── */
.section { position: relative; padding: 130px 0; overflow: hidden; }
.section--light { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); color: var(--ink); }
.section--dark { background: var(--abyss); }
.section--deep { background: linear-gradient(180deg, var(--abyss) 0%, var(--abyss-2) 60%, var(--abyss) 100%); }
.section--dark::before, .section--deep::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: radial-gradient(ellipse 60% 40% at 80% 0%, rgba(31,42,68,.5), transparent 65%),
              radial-gradient(ellipse 50% 35% at 10% 100%, rgba(198,167,94,.06), transparent 60%);
}
/* zlatý dělicí paprsek na horní hraně tmavých sekcí */
.section--dark::after, .section--deep::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(760px, 82%); height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(198,167,94,.6) 30%, rgba(140,162,204,.5) 70%, transparent);
  box-shadow: 0 0 20px 1px rgba(198,167,94,.28);
}
.sec-index {
  position: absolute; top: -26px; right: 0; font-size: clamp(120px, 16vw, 220px); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px rgba(31,42,68,.1); line-height: 1; user-select: none; pointer-events: none;
}
.sec-index--dark { -webkit-text-stroke-color: rgba(250,246,238,.05); }

.h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 4.4vw, 58px); line-height: 1.1; letter-spacing: -.01em; margin: 22px 0 20px; }
.h2 em { font-style: italic; font-weight: 500; color: var(--gold); }
.section--light .h2 em { background: linear-gradient(110deg, var(--navy), #3A4C7A 60%, var(--navy)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.2; }
.h3 em { font-style: italic; color: var(--gold); }
.section--light .h3 em { color: var(--navy); }
.sec-sub { max-width: 720px; font-size: 16.5px; font-weight: 300; color: rgba(250,246,238,.7); }
.section--light .sec-sub { color: var(--ink-soft); }
.lead { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--ink-soft); }
.lead + .lead { margin-top: 16px; }
.lead strong { color: var(--navy); font-weight: 600; }

/* reveal systém */
[data-rv] { opacity: 0; will-change: transform, opacity, filter; }
[data-rv="up"] { transform: translateY(42px); }
[data-rv="left"] { transform: translateX(-42px); }
[data-rv="blur"] { filter: blur(10px); transform: translateY(16px); }
[data-rv="zoom"] { transform: scale(.94) translateY(24px); }
.is-in[data-rv] { opacity: 1; transform: none; filter: none; transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out); }
[data-stagger] > * { opacity: 0; transform: translateY(36px); }
[data-stagger].is-in > * { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-stagger].is-in > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: .1s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: .2s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: .3s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: .4s; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: .5s; }

/* animovaný gradient border (conic) */
.glow-card { position: relative; }
.glow-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--ga), rgba(198,167,94,.5), rgba(140,162,204,.25), transparent 30%, rgba(198,167,94,.45) 55%, transparent 75%, rgba(198,167,94,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin-border 7s linear infinite; pointer-events: none; opacity: .8;
  transition: opacity .4s, filter .4s;
}
.glow-card:hover::before { opacity: 1; filter: saturate(1.4) brightness(1.25); }
@keyframes spin-border { to { --ga: 360deg; } }

/* tilt */
.tilt { transform-style: preserve-3d; }
.tilt .tilt-glare {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 3;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.1), transparent 45%);
  opacity: 0; transition: opacity .35s;
}
.tilt:hover .tilt-glare { opacity: 1; }

/* ── kdo jsme ─────────────────────────────────────────────────── */
.who-intro { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; margin-bottom: 90px; }
.principles { margin-bottom: 80px; }
.principles-head { max-width: 560px; margin-bottom: 40px; }
.arch-eyebrow { display: block; font-size: 10.5px; letter-spacing: .3em; color: var(--muted); margin-bottom: 12px; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.p-card {
  position: relative; padding: 30px 24px 26px; border-radius: 18px; background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 2px 8px rgba(35,43,62,.04);
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.p-card:hover { box-shadow: 0 24px 60px rgba(31,42,68,.16); }
.p-card::before { opacity: 0; transition: opacity .4s; }
.p-card:hover::before { opacity: 1; }
.p-icon { width: 44px; height: 44px; color: var(--navy); margin-bottom: 40px; transition: color .3s, transform .45s var(--ease-spring); }
.p-card:hover .p-icon { color: var(--gold-soft); transform: translateY(-4px) scale(1.08); }
.p-icon svg { width: 100%; height: 100%; }
.p-num { position: absolute; top: 26px; right: 24px; font-size: 11px; letter-spacing: .2em; color: rgba(31,42,68,.35); }
.p-card h4 { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.p-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }
.draw { stroke-dasharray: 200; stroke-dashoffset: 0; }
.p-card:hover .draw, .s-card:hover .draw { animation: draw-in 1.2s var(--ease-out); }
@keyframes draw-in { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }

.who-callout {
  position: relative; max-width: 860px; margin: 0 auto 70px; padding: 40px 48px;
  border-left: 3px solid var(--gold); border-radius: 0 20px 20px 0;
  background: linear-gradient(100deg, rgba(198,167,94,.09), rgba(255,255,255,.6) 70%);
}
.who-people { display: flex; gap: 26px; align-items: center; max-width: 760px; margin: 0 auto 70px; padding: 30px 36px; border-radius: 20px; background: #fff; border: 1px solid var(--line-dark); box-shadow: 0 10px 40px rgba(31,42,68,.08); }
.who-people-icon { flex: none; width: 58px; height: 58px; color: var(--navy); }
.who-people-icon svg { width: 100%; height: 100%; }
.who-people-eyebrow { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; font-weight: 600; }
.who-people p { color: var(--ink-soft); font-size: 15.5px; }
.who-people strong { color: var(--navy); }
.who-closing { text-align: center; max-width: 720px; margin: 0 auto 110px; }
.who-closing p { font-family: var(--font-display); font-size: clamp(20px, 2.3vw, 27px); font-weight: 300; line-height: 1.5; color: var(--ink-soft); }
.who-closing strong { font-weight: 500; color: var(--navy); }

/* systém — tři vrstvy */
.arch-head { text-align: center; margin-bottom: 46px; }
.arch-diagram { position: relative; display: flex; gap: 0; max-width: 980px; margin: 0 auto; }
.arch-flow { flex: none; width: 60px; position: relative; }
.arch-flow-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#arch-flow-path { stroke-dasharray: 8 10; animation: flow-dash 1.6s linear infinite; filter: drop-shadow(0 0 6px rgba(198,167,94,.5)); }
@keyframes flow-dash { to { stroke-dashoffset: -18; } }
.arch-rows { flex: 1; display: flex; flex-direction: column; gap: 22px; }
.arch-row {
  position: relative; padding: 26px 30px; border-radius: 18px; background: #fff;
  border: 1px solid var(--line-dark); box-shadow: 0 4px 18px rgba(31,42,68,.06);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.arch-row:hover { transform: translateX(8px); border-color: rgba(var(--rc, 198,167,94), .5); box-shadow: 0 16px 48px rgba(31,42,68,.14); }
.arch-tag { font-size: 10px; letter-spacing: .3em; color: var(--muted); margin-bottom: 6px; }
.arch-name { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--ink); display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.arch-sub { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--muted); letter-spacing: .04em; }
.arch-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  display: inline-flex; flex-direction: column; padding: 8px 14px; border-radius: 10px;
  background: rgba(31,42,68,.05); border: 1px solid rgba(31,42,68,.1);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--navy); font-weight: 600;
  transition: background .3s, border-color .3s, transform .3s var(--ease-out);
}
.chip i { font-style: normal; font-family: var(--font-body); font-weight: 400; font-size: 10.5px; color: var(--muted); letter-spacing: .02em; margin-top: 2px; }
.chip:hover { background: rgba(198,167,94,.12); border-color: var(--line-gold); transform: translateY(-2px); }
.arch-caption { text-align: center; margin-top: 44px; font-size: 15.5px; color: var(--muted); }
.arch-caption strong { color: var(--navy); }

/* ── svět ─────────────────────────────────────────────────────── */
.world-head { text-align: center; max-width: 780px; margin: 0 auto 54px; }
.world-head .sec-sub { margin-inline: auto; }
.world-visual {
  position: relative; border-radius: 24px; overflow: hidden;
  background: radial-gradient(ellipse 80% 90% at 50% 10%, #131A2C, var(--abyss-2) 75%);
  border: 1px solid var(--line); aspect-ratio: 16 / 8.4; min-height: 420px;
  box-shadow: 0 40px 120px rgba(0,0,0,.5), inset 0 0 120px rgba(19,26,44,.6);
}
#map-dots { position: absolute; inset: 0; width: 100%; height: 100%; }
.world-legend { position: absolute; left: 22px; bottom: 18px; display: flex; gap: 18px; font-size: 10.5px; letter-spacing: .16em; color: rgba(250,246,238,.6); }
.lg { display: inline-flex; align-items: center; gap: 7px; }
.lg-dot { width: 8px; height: 8px; border-radius: 50%; }
.lg-gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.lg-cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.lg-teal { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.lg-hub { background: var(--cream); box-shadow: 0 0 8px var(--cream); }
.world-caption { position: absolute; right: 22px; bottom: 18px; display: flex; gap: 10px; font-size: 10.5px; letter-spacing: .16em; color: rgba(250,246,238,.55); }
.wc-label { color: var(--gold); }
.wc-sep { opacity: .5; }

/* ── pilíře ───────────────────────────────────────────────────── */
.pillars-head { max-width: 780px; margin-bottom: 60px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  position: relative; border-radius: 22px; padding: 22px 26px 30px;
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015) 55%);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s;
}
.pillar:hover { border-color: var(--line-gold); box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 60px rgba(198,167,94,.06); }
.pillar-visual { position: relative; height: 190px; margin: -6px -10px 18px; border-radius: 14px; overflow: hidden; background: rgba(8,11,22,.55); border: 1px solid rgba(255,255,255,.06); }
.pillar-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pv-readout { position: absolute; left: 12px; right: 12px; bottom: 10px; display: flex; justify-content: space-between; font-size: 9.5px; letter-spacing: .18em; color: rgba(250,246,238,.55); }
.pv-live { color: var(--teal); animation: blink 2.8s infinite; }
.pv-gold { color: var(--gold); }
.pillar-num { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.pillar h3 { font-family: var(--font-display); font-size: 25px; font-weight: 500; line-height: 1.25; margin-bottom: 14px; }
.pillar p { font-size: 14.5px; font-weight: 300; color: rgba(250,246,238,.68); margin-bottom: 22px; }
.pillar ul { list-style: none; }
.pillar li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 2px; border-top: 1px solid var(--line); font-size: 13.5px; transition: padding-left .3s var(--ease-out), background .3s; }
.pillar li:hover { padding-left: 10px; background: linear-gradient(90deg, rgba(198,167,94,.06), transparent); }
.pillar li span { color: rgba(250,246,238,.85); }
.pillar li em { font-style: normal; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--gold); white-space: nowrap; }

/* ── smart grid ───────────────────────────────────────────────── */
.grid-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; filter: blur(120px); opacity: .14; pointer-events: none; }
.grid-glow--cyan { top: -200px; right: -180px; background: var(--cyan); }
.grid-glow--gold { bottom: -220px; left: -200px; background: var(--gold); }
.grid-head { max-width: 820px; margin-bottom: 70px; }
.grid-stack { position: relative; padding-left: 66px; }
#grid-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.grid-beam { position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.grid-beam::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: calc(var(--bp, 0) * 100%); background: linear-gradient(180deg, var(--cyan), var(--gold), var(--teal)); box-shadow: 0 0 18px rgba(198,167,94,.6); transition: height .2s linear; }
.grid-layer {
  position: relative; display: grid; grid-template-columns: 84px 96px 1fr; gap: 26px; align-items: center;
  margin-bottom: 20px; padding: 30px 34px; border-radius: 20px;
  background: linear-gradient(120deg, rgba(255,255,255,.045), rgba(255,255,255,.012) 60%);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform .5s var(--ease-out), border-color .45s, box-shadow .5s, background .45s;
}
.grid-layer::before {
  content: ''; position: absolute; left: 0; top: 14%; bottom: 14%; width: 3px; border-radius: 3px;
  background: rgb(var(--lc)); opacity: .25; transition: opacity .4s, box-shadow .4s;
}
.grid-layer.is-active { border-color: rgba(var(--lc), .45); background: linear-gradient(120deg, rgba(var(--lc), .09), rgba(255,255,255,.015) 60%); transform: translateX(10px); box-shadow: 0 24px 70px rgba(0,0,0,.4), 0 0 50px rgba(var(--lc), .08); }
.grid-layer.is-active::before { opacity: 1; box-shadow: 0 0 18px rgba(var(--lc), .8); }
.layer-num { display: grid; place-items: center; }
.layer-num span {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px;
  border: 1px solid rgba(var(--lc), .5); color: rgb(var(--lc));
  font-size: 10px; letter-spacing: .2em; font-weight: 600; font-size: 15px;
  background: rgba(var(--lc), .07); transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.grid-layer.is-active .layer-num span { transform: scale(1.1); box-shadow: 0 0 30px rgba(var(--lc), .35); }
.layer-icon { width: 76px; height: 76px; color: rgb(var(--lc)); opacity: .9; }
.layer-icon svg { width: 100%; height: 100%; }
.grid-layer.is-active .layer-icon { animation: icon-pop .5s var(--ease-spring); }
@keyframes icon-pop { 50% { transform: scale(1.12); } }
.layer-info h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.vendor { font-size: 10px; letter-spacing: .22em; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-gold); color: var(--gold); background: rgba(198,167,94,.08); }
.layer-tag { font-size: 11px; letter-spacing: .18em; color: rgba(var(--lc), .95); margin: 6px 0 12px; }
.layer-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 26px; }
.layer-points li { position: relative; padding-left: 18px; font-size: 13.5px; font-weight: 300; color: rgba(250,246,238,.7); }
.layer-points li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 2px; background: rgb(var(--lc)); border-radius: 2px; }
.grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 64px; }
.gstat { text-align: center; padding: 28px 16px 24px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.025); transition: border-color .35s, transform .35s var(--ease-out); }
.gstat:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.gstat-num { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 300; color: var(--gold); white-space: nowrap; }
.gstat-lbl { margin-top: 8px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,246,238,.5); }

/* ── služby ───────────────────────────────────────────────────── */
.services-head { max-width: 820px; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.s-card {
  position: relative; border-radius: 22px; padding: 42px 44px; background: #fff;
  border: 1px solid var(--line-dark); overflow: hidden;
  box-shadow: 0 4px 20px rgba(31,42,68,.05);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s;
}
.s-card:hover { box-shadow: 0 34px 90px rgba(31,42,68,.18); border-color: rgba(198,167,94,.45); }
.s-card::after {
  content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(198,167,94,.07), transparent);
  transform: skewX(-18deg); transition: left .9s var(--ease-out); pointer-events: none;
}
.s-card:hover::after { left: 135%; }
.s-ghost { position: absolute; top: 6px; right: 20px; font-size: 120px; font-weight: 300; color: transparent; -webkit-text-stroke: 1px rgba(31,42,68,.09); line-height: 1; user-select: none; transition: -webkit-text-stroke-color .4s, transform .5s var(--ease-out); }
.s-card:hover .s-ghost { -webkit-text-stroke-color: rgba(198,167,94,.4); transform: translateY(-4px); }
.s-icon { width: 52px; height: 52px; color: var(--navy); margin-bottom: 22px; transition: color .35s, transform .45s var(--ease-spring); }
.s-icon svg { width: 100%; height: 100%; }
.s-card:hover .s-icon { color: var(--gold-soft); transform: scale(1.08); }
.s-card h3 { font-family: var(--font-display); font-size: 30px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.s-quote { font-family: var(--font-display); font-style: italic; font-size: 18.5px; font-weight: 300; color: var(--navy); margin-bottom: 18px; line-height: 1.45; }
.s-quote em { color: var(--gold-soft); font-weight: 500; }
.s-card > p:not(.s-quote) { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); font-weight: 300; margin-bottom: 14px; }
.s-card p strong { color: var(--navy); font-weight: 600; }
.s-closing { border-top: 1px solid var(--line-dark); padding-top: 16px; }
.s-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 18px; }
.s-pills span {
  padding: 7px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--navy); background: rgba(31,42,68,.06); border: 1px solid rgba(31,42,68,.12);
  transition: background .3s, border-color .3s, transform .3s var(--ease-out);
}
.s-pills span:hover { background: rgba(198,167,94,.14); border-color: var(--line-gold); transform: translateY(-2px); }

/* ── nokia ────────────────────────────────────────────────────── */
.partner-lines { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(180deg, transparent 0 89px, rgba(140,162,204,.05) 89px 90px);
}
.partner-head { max-width: 800px; margin-bottom: 56px; }
.partner-feature {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center;
  padding: 54px 60px; border-radius: 26px; overflow: hidden; margin-bottom: 26px;
  background: linear-gradient(120deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.pf-eyebrow { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,246,238,.55); margin-bottom: 14px; }
.pf-name { font-family: var(--font-body); font-weight: 700; font-size: clamp(54px, 7vw, 96px); letter-spacing: .1em; line-height: 1; color: var(--cream); text-shadow: 0 0 60px rgba(140,162,204,.3); }
.pf-area { margin-top: 14px; font-size: 11px; letter-spacing: .2em; color: var(--gold); }
.pf-quote { position: relative; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 27px); font-weight: 300; font-style: italic; line-height: 1.5; color: rgba(250,246,238,.85); padding-left: 34px; }
.pf-quote em { color: var(--gold); font-weight: 500; }
.pf-mark { position: absolute; left: 0; top: -8px; font-size: 60px; color: var(--gold); opacity: .5; font-family: var(--font-display); }
.pf-scan { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(140,162,204,.06) 48%, rgba(140,162,204,.14) 50%, rgba(140,162,204,.06) 52%, transparent 70%);
  background-size: 300% 100%; animation: pf-scan 6s ease infinite;
}
@keyframes pf-scan { 0%, 100% { background-position: 120% 0; } 50% { background-position: -20% 0; } }
.partner-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pc-card {
  position: relative; padding: 34px 32px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), border-color .4s, box-shadow .45s;
}
.pc-card:hover { border-color: var(--line-gold); box-shadow: 0 26px 70px rgba(0,0,0,.4); }
.pc-num { font-size: 12px; letter-spacing: .26em; color: var(--gold); }
.pc-label { font-family: var(--font-display); font-size: 21px; font-weight: 500; margin: 12px 0 12px; }
.pc-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(250,246,238,.7); }
.pc-card strong { color: var(--gold-hot); font-weight: 500; }

/* ── vedení ───────────────────────────────────────────────────── */
.team-head { max-width: 760px; margin-bottom: 54px; }
.team-sub { display: flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.team-sub .bar { width: 44px; height: 2px; background: var(--navy); }
.team-sub--gold { margin-top: 90px; color: var(--gold-soft); }
.bar--gold { background: var(--gold) !important; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member {
  position: relative; padding: 30px 24px 26px; border-radius: 20px; background: #fff;
  border: 1px solid var(--line-dark); text-align: center; overflow: hidden;
  box-shadow: 0 4px 16px rgba(31,42,68,.05);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s;
}
.member:hover { box-shadow: 0 28px 70px rgba(31,42,68,.16); border-color: rgba(198,167,94,.4); }
.member--hl { border-color: rgba(198,167,94,.5); background: linear-gradient(170deg, #fff, rgba(198,167,94,.06)); }
.m-avatar { position: relative; width: 108px; height: 108px; margin: 0 auto 18px; border-radius: 50%; padding: 3px; background: conic-gradient(from 0deg, var(--gold), rgba(31,42,68,.25), var(--gold)); animation: avatar-spin 9s linear infinite; }
@keyframes avatar-spin { to { transform: rotate(360deg); } }
.m-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; animation: avatar-spin 9s linear infinite reverse; filter: saturate(.92); transition: filter .4s; }
.member:hover .m-avatar img { filter: saturate(1.08); }
.m-ping { position: absolute; right: 6px; bottom: 8px; width: 13px; height: 13px; border-radius: 50%; background: var(--teal); border: 2.5px solid #fff; box-shadow: 0 0 0 rgba(217,194,138,.6); animation: ping 2.6s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(217,194,138,.55); } 70% { box-shadow: 0 0 0 12px rgba(217,194,138,0); } 100% { box-shadow: 0 0 0 0 rgba(217,194,138,0); } }
.m-role { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; min-height: 26px; display: flex; align-items: center; justify-content: center; }
.m-name { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); margin: 4px 0 10px; }
.m-bio { font-size: 13px; line-height: 1.6; color: var(--muted); min-height: 84px; }
.m-bio strong { color: var(--navy); }
.m-tag { display: inline-block; margin-top: 12px; padding: 5px 14px; border-radius: 999px; font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--navy); background: rgba(31,42,68,.07); border: 1px solid rgba(31,42,68,.14); }
.m-badge {
  position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px; font-size: 9px; letter-spacing: .16em; font-weight: 600;
  color: var(--cream); background: var(--navy); border: 1px solid rgba(198,167,94,.55); box-shadow: 0 4px 16px rgba(31,42,68,.3);
}

.jarvis {
  display: grid; grid-template-columns: 380px 1fr; gap: 50px; align-items: center;
  border-radius: 26px; padding: 46px 54px; margin-bottom: 26px;
  background: linear-gradient(125deg, var(--navy-darker), var(--abyss) 70%);
  border: 1px solid rgba(198,167,94,.3); color: var(--cream);
  box-shadow: 0 40px 110px rgba(19,26,44,.5);
}
.jarvis-visual { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: rgba(8,11,22,.5); border: 1px solid var(--line); }
#neural { position: absolute; inset: 0; width: 100%; height: 100%; }
.jarvis-readout { position: absolute; left: 14px; right: 14px; bottom: 12px; display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .18em; color: rgba(250,246,238,.5); }
.jr-live { color: var(--teal); animation: blink 2.4s infinite; }
.jarvis-copy .m-role { justify-content: flex-start; color: var(--gold); }
.jarvis-name { font-family: var(--font-display); font-size: clamp(38px, 4vw, 54px); font-weight: 400; margin: 6px 0 14px; }
.jarvis-copy > p { font-size: 15.5px; font-weight: 300; line-height: 1.7; color: rgba(250,246,238,.78); max-width: 560px; }
.jarvis-tags { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.jarvis-tags span { padding: 7px 16px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; font-weight: 600; color: var(--gold); border: 1px solid var(--line-gold); background: rgba(198,167,94,.07); }
.jarvis-meta { margin-top: 18px; font-size: 11.5px; letter-spacing: .1em; color: rgba(250,246,238,.65); }
.live { font-style: normal; color: var(--teal); animation: blink 2.4s infinite; }
.jarvis-arch { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 10.5px; letter-spacing: .14em; color: rgba(250,246,238,.55); }
.jarvis-arch strong { color: var(--gold); }


/* ── kontakt ──────────────────────────────────────────────────── */
.cta { min-height: 88vh; display: flex; align-items: center; }
#cta-field { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-inner { position: relative; z-index: 3; text-align: center; max-width: 860px; }
.cta-title { margin-inline: auto; }
.cta-lead { font-size: 18px; font-weight: 300; color: rgba(250,246,238,.85); max-width: 640px; margin: 8px auto 18px; }
.cta-lead strong { color: var(--gold); font-weight: 600; }
.cta-body { font-size: 15px; font-weight: 300; color: rgba(250,246,238,.65); max-width: 640px; margin: 0 auto 14px; }
.cta-body strong { color: rgba(250,246,238,.9); }
.cta .btn-xl { margin-top: 26px; }

/* ── footer ───────────────────────────────────────────────────── */
.footer { position: relative; padding: 80px 0 36px; background: var(--abyss-2); border-top: 1px solid var(--line); }
.footer::before { content: ''; position: absolute; top: -1px; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); background-size: 50% 100%; background-repeat: no-repeat;
  animation: foot-beam 7s ease infinite;
}
@keyframes foot-beam { 0%, 100% { background-position: -60% 0; } 50% { background-position: 160% 0; } }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 60px; }
.foot-brand img { height: 30px; margin-bottom: 18px; }
.foot-tag { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(250,246,238,.55); max-width: 380px; }
.foot-col h5 { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.foot-col ul { list-style: none; }
.foot-col li { font-size: 13.5px; font-weight: 300; color: rgba(250,246,238,.65); padding: 4px 0; transition: color .25s, padding-left .3s var(--ease-out); }
.foot-col li:hover { color: var(--gold-hot); padding-left: 6px; }
.foot-bot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); font-size: 10.5px; letter-spacing: .12em; color: rgba(250,246,238,.4); }
.foot-legal { display: flex; gap: 10px; }
.foot-legal a:hover { color: var(--gold); }

/* ── responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .principles-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid, .partner-cols { grid-template-columns: 1fr 1fr; }
  .jarvis { grid-template-columns: 1fr; }
  .jarvis-visual { max-width: 380px; }
  #globe { opacity: .8; right: -16vw; }
  .readout--tr, .readout--br { display: none; }
}
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(13,18,32,.96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line); padding: 12px 24px 22px;
    clip-path: inset(0 0 100% 0); transition: clip-path .5s var(--ease-out); }
  .nav-links.is-open { clip-path: inset(0 0 0 0); }
  .nav-links a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-burger { display: flex; }
  .lang { margin-left: auto; }
  .who-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-layer { grid-template-columns: 56px 1fr; grid-template-rows: auto auto; padding: 24px; }
  .layer-icon { display: none; }
  .layer-info { grid-column: 1 / -1; }
  .layer-points { grid-template-columns: 1fr; }
  .grid-stack { padding-left: 40px; }
  .grid-beam { left: 12px; }
  .grid-stats { grid-template-columns: 1fr 1fr; }
  .partner-feature { grid-template-columns: 1fr; gap: 30px; padding: 40px 32px; }
  .pf-quote { padding-left: 0; }
  .pf-mark { display: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .sec-index { display: none; }
  .section { padding: 90px 0; }
}
@media (max-width: 640px) {
  .principles-grid, .pillar-grid, .partner-cols, .team-grid, .grid-stats { grid-template-columns: 1fr; }
  .hero-eyebrow { letter-spacing: .12em; font-size: 9.5px; max-width: 100%; }
  .hero-eyebrow .mono { white-space: normal; }
  #globe { opacity: .38; width: 130vw; right: -60vw; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .readout { display: none; }
  .who-callout { padding: 28px 24px; }
  .who-people { flex-direction: column; text-align: center; }
  .jarvis { padding: 32px 24px; }
  .marquee-track span { font-size: 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  [data-rv], [data-stagger] > * { opacity: 1 !important; transform: none !important; filter: none !important; }
  .ht-inner { transform: none; }
  .hs-1, .hs-2, .hs-3, .hs-4, .hs-5, .hero-nokia, .hero-eyebrow, .readout, .scroll-hint { opacity: 1; }
}

/* no-anim režim (?noanim=1 — ladění/screenshoty) */
body.no-anim [data-rv], body.no-anim [data-stagger] > * { opacity: 1 !important; transform: none !important; filter: none !important; }
body.no-anim .ht-inner { transform: none; animation: none; }
body.no-anim .hs-1, body.no-anim .hs-2, body.no-anim .hs-3, body.no-anim .hs-4, body.no-anim .hs-5,
body.no-anim .hero-nokia, body.no-anim .hero-eyebrow, body.no-anim .readout, body.no-anim .scroll-hint { opacity: 1; animation: none; }

.foot-sub { display: block; margin-top: 2px; font-size: 11.5px; line-height: 1.5; letter-spacing: .01em; color: rgba(250,246,238,.42); opacity: .72; }

/* ── navigace: delší jazykové mutace (UA/EN) se nesmí lámat na dva řádky ── */
.nav-links a, .nav-cta, .nav-right .lang a { white-space: nowrap; }
html[lang="uk"] .nav-row { gap: 14px; }
html[lang="uk"] .nav-links { gap: 0; }
html[lang="uk"] .nav-links a { padding: 9px 7px; font-size: 12.5px; }
html[lang="uk"] .nav-right { gap: 10px; }
html[lang="en"] .nav-links a { padding: 9px 10px; }
@media (max-width: 1180px) {
  .nav-links a { padding: 9px 8px; font-size: 12.5px; }
  .nav-row { gap: 16px; }
}
