:root {
  --bg: #071426;
  --bg-soft: #102d47;
  --panel: rgba(31, 92, 133, 0.72);
  --panel-strong: rgba(33, 103, 148, 0.9);
  --line: rgba(207, 236, 255, 0.34);
  --line-cyan: rgba(125, 225, 255, 0.58);
  --cyan: #22d3ee;
  --cyan-2: #38bdf8;
  --gold: #fbbf24;
  --gold-2: #f59e0b;
  --green: #7ddf64;
  --text: #f8fafc;
  --muted: #deedf8;
  --muted-2: #b7d2e5;
  --danger: #fb7185;
  --brand-line: rgba(150, 228, 255, 0.42);
  --brand-line-strong: rgba(185, 242, 255, 0.72);
  --brand-gold-line: rgba(251, 214, 93, 0.56);
  --brand-panel: linear-gradient(180deg, rgba(50, 128, 176, 0.82), rgba(24, 86, 134, 0.76));
  --brand-panel-soft: linear-gradient(180deg, rgba(67, 153, 205, 0.66), rgba(29, 103, 154, 0.7));
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --radius-lg: 10px;
  --header-h: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(80, 199, 239, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(251, 214, 93, 0.13), transparent 24rem),
    linear-gradient(180deg, #071426 0%, #123451 42%, #0a2038 100%);
  color: var(--text);
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

body.is-hero-booting .site-header,
body.is-hero-booting .floating-telegram,
body.is-hero-booting .cookie-banner {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

main {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020617;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
  visibility: hidden;
}

.site-intro.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-intro.is-done {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-intro__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.76)),
    radial-gradient(circle at 50% 54%, rgba(34, 211, 238, 0.22), transparent 24rem),
    url("../images/prague-digital-bg.jpg") center bottom / cover no-repeat;
  transform: scale(1.03);
}

.site-intro__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text);
  text-align: center;
}

.site-intro__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  color: #021124;
  font-weight: 950;
  box-shadow: 0 0 38px rgba(34, 211, 238, 0.28);
}

.site-intro__content strong {
  min-height: 1.1em;
  font-size: clamp(2.4rem, 13vw, 5rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 34px rgba(34, 211, 238, 0.34);
}

.site-intro__content strong::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.06em;
  border-radius: 999px;
  background: var(--cyan);
  animation: caretBlink 760ms steps(2, end) infinite;
}

.site-intro.is-done .site-intro__content strong::after {
  display: none;
}

.site-intro__content small {
  color: var(--muted);
  font-weight: 800;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  background: #020617;
  color: var(--text);
  padding: 10px 14px;
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  opacity: 1;
  padding: 14px max(16px, env(safe-area-inset-left)) 14px max(16px, env(safe-area-inset-right));
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(15, 45, 72, 0.96), rgba(8, 25, 44, 0.94));
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(34, 211, 238, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__mark {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(145deg, #67e8f9 0%, #38bdf8 42%, #2563eb 76%, #fbbf24 140%);
  color: #021124;
  font-weight: 950;
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.34), 0 12px 28px rgba(59, 130, 246, 0.18);
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  pointer-events: none;
}

.brand__name {
  font-size: 1.06rem;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.2);
  white-space: nowrap;
}

.top-nav {
  display: none;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transition: transform 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
}

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

.header-cta {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1b1200;
  font-weight: 900;
  padding: 0 18px;
  box-shadow: 0 14px 32px rgba(251, 191, 36, 0.26);
}

.burger {
  width: 46px;
  height: 46px;
  display: inline-grid;
  align-content: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: var(--radius);
  background: rgba(13, 35, 58, 0.78);
  color: var(--text);
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  box-shadow: none;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(1, 8, 18, 0.5);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease;
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: calc(var(--header-h) + 10px);
  right: 12px;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100svh - var(--header-h) - 28px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(15, 45, 72, 0.97), rgba(7, 24, 43, 0.98)),
    var(--bg);
  box-shadow: var(--shadow);
  transform: translateX(22px) scale(0.98);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.drawer__label {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(174, 204, 226, 0.2);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  color: var(--text);
  font-size: 1.42rem;
  line-height: 1;
  cursor: pointer;
}

.drawer__nav {
  display: grid;
  gap: 7px;
  overflow-y: auto;
  padding: 12px 14px;
}

.drawer__nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(174, 204, 226, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 31, 52, 0.54);
  padding: 9px 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.drawer__cta {
  min-height: 44px;
  margin: 6px 14px 14px;
}

.hero-video {
  position: relative;
  min-height: 100svh;
  width: 100%;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: #020817;
}

.hero-video__media,
.hero-video__fallback,
.hero-video__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video__media {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-video__media.is-ready {
  opacity: 1;
}

.hero-video__fallback {
  z-index: -5;
  background: url("../images/hero-prague-poster.jpg") center / cover no-repeat;
}

.hero-video__shade {
  z-index: -2;
  display: none;
  background: transparent;
}

.hero-video__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  opacity: 0;
  padding: calc(var(--header-h) + 26px) 0 calc(32px + env(safe-area-inset-bottom));
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.hero-video.is-intro-live .hero-video__content,
.hero-video.is-intro-live .hero-video__rail {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-video__status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
}

.hero-video__copy {
  width: min(980px, 100%);
  margin-top: auto;
  min-height: 29svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 clamp(14px, 3.5svh, 46px);
}

.hero-video__kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-typewriter {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.88rem, 3.1vw, 2.55rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.46), 0 0 34px rgba(34, 211, 238, 0.16);
}

.hero-line {
  display: block;
  min-height: 1.08em;
  text-wrap: balance;
}

.hero-line--brand {
  color: #ffffff;
}

.hero-line--main {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.34);
}

.hero-line--soft {
  max-width: 760px;
  color: #dbeafe;
  font-size: 0.3em;
  font-weight: 850;
  line-height: 1.2;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

.hero-video.is-type-ready .hero-line.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  border-radius: 999px;
  background: currentColor;
  vertical-align: -0.06em;
  animation: caretBlink 780ms steps(2, end) infinite;
}

.hero-video.is-type-ready [data-hero-cta] {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.hero-video.is-type-complete [data-hero-cta] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-video__actions,
.hero-video__note {
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-video__note {
  max-width: 600px;
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 0.94rem;
  font-weight: 750;
}

.hero-video__rail {
  display: none;
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h) + 42px);
  bottom: 42px;
  width: 54px;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid rgba(103, 232, 249, 0.18);
  color: rgba(103, 232, 249, 0.82);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  padding: 8px 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 560ms ease 90ms, transform 560ms ease 90ms;
}

.hero-video__rail--left {
  left: 24px;
}

.hero-video__rail--right {
  right: 24px;
  color: rgba(251, 191, 36, 0.78);
}

.section-entry {
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(8, 23, 41, 0.88), rgba(10, 32, 54, 0.42));
}

.section-entry--hook {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(34, 211, 238, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(251, 191, 36, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(5, 18, 34, 0.96), rgba(12, 40, 66, 0.84) 58%, rgba(7, 20, 38, 0.92));
}

.section-entry--hook .section-head {
  max-width: 930px;
}

.entry-grid {
  display: grid;
  gap: 14px;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.section-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 28px) 0 42px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.24), rgba(7, 20, 38, 0.62) 62%, #081729 100%),
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.24), transparent 24rem),
    url("../images/prague-digital-bg.jpg") center bottom / cover no-repeat;
  opacity: 1;
}

.section-hero::before,
.section-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(34, 211, 238, 0.14);
  transform: rotate(-12deg);
}

.section-hero::before {
  width: 44rem;
  height: 44rem;
  right: -24rem;
  top: 4rem;
  border-radius: 50%;
}

.section-hero::after {
  width: 52rem;
  height: 52rem;
  left: -34rem;
  bottom: -24rem;
  border-radius: 50%;
  border-color: rgba(251, 191, 36, 0.1);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 700px;
}

.mobile-rails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  scrollbar-width: none;
}

.mobile-rails::-webkit-scrollbar {
  display: none;
}

.mobile-rails span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  background: rgba(11, 35, 58, 0.7);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 11px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.status-pill--live::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 780px;
  color: var(--text);
  font-size: clamp(2.18rem, 9.1vw, 5.6rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.32);
}

.hero__lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: #c4ccdb;
  font-size: clamp(1.02rem, 2.7vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__mobile-map {
  position: relative;
  display: none;
  overflow: hidden;
  min-height: clamp(230px, 61vw, 342px);
  margin: -2px 0 20px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 52%, rgba(34, 211, 238, 0.28), transparent 46%),
    rgba(10, 31, 52, 0.62);
  box-shadow: 0 18px 58px rgba(34, 211, 238, 0.12);
}

.hero__mobile-map::before,
.map-panel::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 34%, rgba(34, 211, 238, 0.16) 48%, transparent 62%),
    radial-gradient(circle at 30% 44%, rgba(34, 211, 238, 0.18), transparent 18%),
    radial-gradient(circle at 68% 58%, rgba(251, 191, 36, 0.12), transparent 16%);
  mix-blend-mode: screen;
  animation: mapSweep 8s ease-in-out infinite;
}

.hero__mobile-map span {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 2;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 999px;
  background: rgba(7, 22, 39, 0.82);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 9px;
}

.hero__mobile-map img {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: clamp(230px, 61vw, 342px);
  object-fit: cover;
  object-position: center;
  filter: brightness(1.16) saturate(1.08) drop-shadow(0 0 24px rgba(34, 211, 238, 0.22));
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.mini-cta:hover,
.mini-cta:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  color: #170f00;
  background: linear-gradient(135deg, #fde047, var(--gold-2));
  box-shadow: 0 18px 40px rgba(251, 191, 36, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(13, 35, 58, 0.64);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.14);
}

.btn--small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.icon--telegram::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: polygon(0 44%, 100% 0, 70% 100%, 45% 66%, 26% 83%);
  background: currentColor;
}

.icon--target {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon--target::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 14px;
}

.map-panel,
.product-board,
.glass-card,
.console-item,
.role-card,
.team-card,
.accordion__item,
.final-cta__panel {
  border: 1px solid var(--brand-line);
  background:
    var(--brand-panel),
    rgba(56, 141, 190, 0.58);
  box-shadow: 0 16px 46px rgba(2, 15, 30, 0.18), inset 0 1px 0 rgba(222, 247, 255, 0.18);
  backdrop-filter: blur(14px);
}

.map-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.map-panel__top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.map-panel__tag {
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.76);
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 9px;
}

.map-panel__tag--gold {
  border-color: rgba(251, 191, 36, 0.34);
  color: var(--gold);
}

.map-panel img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(2, 6, 23, 0.42);
  filter: brightness(1.14) saturate(1.08);
}

.map-panel__top {
  z-index: 3;
}

.typewrite-caret::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.07em;
  border-radius: 999px;
  background: currentColor;
  vertical-align: -0.08em;
  animation: caretBlink 900ms steps(2, end) infinite;
}

.product-board {
  border-radius: var(--radius-lg);
  padding: 16px;
}

.product-board__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-board__head strong {
  color: var(--green);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
}

.module-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.38);
  color: #dbeafe;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0 10px;
}

.module-grid span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.rail {
  display: none;
  position: absolute;
  z-index: 3;
  top: 118px;
  bottom: 50px;
  width: 54px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  padding: 16px 0;
  background: rgba(11, 35, 58, 0.52);
}

.rail--left {
  left: 16px;
}

.rail--right {
  right: 16px;
  color: var(--gold);
}

.section {
  position: relative;
  padding: 74px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(125, 225, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(24, 82, 127, 0.22), rgba(12, 41, 72, 0.14));
  box-shadow: inset 0 1px 0 rgba(125, 225, 255, 0.12);
}

.section-proof {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(125, 225, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 28%, rgba(251, 214, 93, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(28, 91, 137, 0.28), rgba(17, 57, 96, 0.2));
}

.proof-layout {
  position: relative;
  display: grid;
  gap: 14px;
}

.proof-card,
.collab-flow {
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  background:
    var(--brand-panel),
    rgba(56, 141, 190, 0.58);
  box-shadow: 0 18px 62px rgba(2, 15, 30, 0.22), inset 0 1px 0 rgba(222, 247, 255, 0.18);
  backdrop-filter: blur(14px);
}

.proof-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.proof-card:hover,
.proof-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 22px 70px rgba(34, 211, 238, 0.12);
}

.proof-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.14);
  background: #020617;
  color: inherit;
}

.proof-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 6, 23, 0.34)),
    radial-gradient(circle at 82% 12%, rgba(34, 211, 238, 0.16), transparent 26%);
}

.proof-card__media img {
  width: 100%;
  height: clamp(420px, 112vw, 720px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  background:
    radial-gradient(circle at 50% 18%, rgba(34, 211, 238, 0.12), transparent 32%),
    #020617;
}

.proof-card__open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 900;
  padding: 0 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 5, 15, 0.86);
  backdrop-filter: blur(10px);
}

.image-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100svh - 36px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius-lg);
  background: #020617;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
}

.image-lightbox__panel img {
  width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
  background: #020617;
}

.image-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.82);
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.image-lightbox__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid rgba(34, 211, 238, 0.16);
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.96), rgba(3, 7, 18, 0.96));
}

.image-lightbox__cta span {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-lightbox__cta strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.proof-card__body {
  padding: 18px;
}

.proof-card__body span,
.collab-flow__head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card__body h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.12;
}

.proof-card__body p {
  margin: 0;
  color: var(--muted);
}

.readable-proof-grid,
.cooperation-format-grid,
.product-screens-grid {
  display: grid;
  gap: 14px;
}

.readable-proof-grid {
  margin-top: 18px;
}

.cooperation-format-grid {
  margin-top: 16px;
}

.section-head--compact {
  margin-top: 34px;
}

.section-head--compact h2 {
  font-size: clamp(1.7rem, 5vw, 3.1rem);
}

.section-live-product {
  background:
    radial-gradient(circle at 14% 12%, rgba(125, 225, 255, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(39, 115, 165, 0.26), rgba(28, 90, 136, 0.24));
}

.product-screens-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-screen {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  background: var(--brand-panel);
  cursor: zoom-in;
  padding: 0;
  box-shadow: 0 18px 52px rgba(2, 15, 30, 0.24), 0 0 34px rgba(125, 225, 255, 0.12);
}

.product-screen img {
  width: 100%;
  height: clamp(260px, 82vw, 560px);
  object-fit: cover;
  object-position: top center;
}

.product-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(2, 6, 23, 0.72));
}

.product-screen span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.84);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.snap-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 0;
}

.snap-dots button {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
  cursor: pointer;
  padding: 0;
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.snap-dots button.is-active {
  width: 26px;
  border-color: var(--brand-gold-line);
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.2);
}

.collab-flow {
  padding: 18px;
}

.collab-flow__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}

.collab-flow__head strong {
  color: var(--text);
  font-size: clamp(1.2rem, 4vw, 2rem);
  line-height: 1.05;
}

.collab-flow__steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collab-flow__steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.42);
  padding: 10px 12px;
}

.collab-flow__steps li::after {
  content: "";
  position: absolute;
  left: 29px;
  bottom: -11px;
  width: 1px;
  height: 11px;
  background: linear-gradient(180deg, var(--cyan), transparent);
}

.collab-flow__steps li:last-child::after {
  display: none;
}

.collab-flow__steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(251, 191, 36, 0.34);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.78rem;
}

.collab-flow__steps span {
  color: #dbeafe;
  font-weight: 800;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.06), transparent 28%, transparent 72%, rgba(251, 191, 36, 0.04)),
    linear-gradient(rgba(148, 163, 184, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.018) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

.section-head {
  position: relative;
  max-width: 790px;
  margin-bottom: 28px;
  border: 1px solid var(--brand-line);
  border-radius: clamp(18px, 5vw, 34px);
  background:
    radial-gradient(circle at 20% 0%, rgba(169, 235, 255, 0.22), transparent 52%),
    var(--brand-panel-soft);
  box-shadow: 0 22px 62px rgba(2, 15, 30, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  padding: clamp(20px, 5vw, 34px);
}

.section-head::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  opacity: 0.72;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5.8vw, 4.4rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.section-head p,
.final-cta p,
.europe-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.benefit-grid,
.scale-cards,
.roles-grid,
.team-grid,
.trust-grid,
.console-grid {
  position: relative;
  display: grid;
  gap: 14px;
}

.benefit-grid,
.scale-cards {
  grid-template-columns: 1fr;
}

.glass-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.glass-card:hover,
.console-item:hover,
.role-card:hover,
.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 18px 58px rgba(34, 211, 238, 0.11);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius);
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  font-size: 1.16rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.glass-card h3,
.role-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.18;
}

.glass-card p,
.console-item p,
.role-card p,
.team-card span,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.section-console {
  background:
    radial-gradient(circle at 74% 18%, rgba(125, 225, 255, 0.22), transparent 26rem),
    linear-gradient(180deg, rgba(24, 82, 127, 0.18), rgba(35, 110, 158, 0.3), rgba(14, 53, 90, 0.16));
}

.console-grid {
  grid-template-columns: 1fr;
}

.console-item {
  border-radius: var(--radius-lg);
  padding: 18px;
}

.console-item span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 16px;
}

.console-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.section-europe {
  overflow: hidden;
}

.section-europe::after {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: 42rem;
  height: 42rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14), transparent 58%);
}

.europe-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: center;
}

.route-line {
  display: inline-flex;
  max-width: 100%;
  margin-top: 22px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: var(--radius);
  background: rgba(251, 191, 36, 0.08);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 950;
  padding: 12px 14px;
}

.europe-map {
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.europe-map img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.scale-cards {
  margin-top: 16px;
}

.roles-grid {
  grid-template-columns: 1fr;
}

.role-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius-lg);
  padding: 18px;
}

.role-tag {
  align-self: flex-start;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.role-card p b {
  color: #e5eefb;
}

.mini-cta {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: var(--radius);
  color: var(--cyan);
  font-weight: 900;
  padding: 0 13px;
}

.mini-cta::after {
  content: "→";
}

.section-gains {
  background:
    linear-gradient(135deg, rgba(125, 225, 255, 0.16), rgba(251, 214, 93, 0.08)),
    rgba(32, 102, 150, 0.18);
}

.gains-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gains-strip span,
.principles span,
.trust-item {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: rgba(49, 126, 176, 0.6);
  color: #e5eefb;
  font-weight: 900;
  padding: 14px;
}

.team-grid {
  grid-template-columns: 1fr;
}

.team-card {
  border-radius: var(--radius-lg);
  padding: 18px;
}

.team-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.08rem;
}

.section-steps {
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 214, 93, 0.1), transparent 24rem),
    rgba(25, 83, 128, 0.18);
}

.steps-layout {
  display: grid;
  gap: 22px;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(34, 211, 238, 0.24);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 0 0 24px 18px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.trust-grid {
  grid-template-columns: 1fr;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item::before {
  content: "✓";
  color: var(--green);
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.principles span {
  color: var(--cyan);
  font-size: 0.88rem;
}

.accordion,
.faq-list {
  display: grid;
  gap: 10px;
}

.accordion__item {
  overflow: hidden;
  border-radius: var(--radius);
}

.accordion__item > button {
  width: 100%;
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  padding: 0 16px;
}

.accordion__item > button span {
  color: var(--cyan);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.accordion__item.is-open > button span {
  transform: rotate(45deg);
}

.accordion__item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.accordion__item.is-open > div {
  grid-template-rows: 1fr;
}

.accordion__item p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  padding: 0 16px;
}

.accordion__item.is-open p {
  padding-bottom: 16px;
}

.final-cta {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 42, 0.28), #081729),
    url("../images/prague-digital-bg.jpg") center bottom / cover no-repeat;
}

.final-cta__panel {
  max-width: 900px;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.final-cta__panel p {
  margin-bottom: 24px;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: #0d2942;
  padding: 34px 0 88px;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.site-footer p,
.footer-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--cyan);
  font-weight: 800;
}

.floating-telegram {
  position: fixed;
  z-index: 110;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(251, 191, 36, 0.48);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fde047, var(--gold-2));
  color: #170f00;
  font-weight: 950;
  padding: 0 16px;
  box-shadow: 0 14px 38px rgba(251, 191, 36, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.has-scrolled-past-hero .floating-telegram {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.has-cookie-banner .floating-telegram {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 180;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(61, 142, 190, 0.96), rgba(28, 91, 137, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 14px;
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--cyan);
  text-decoration: underline;
}

.cookie-banner .btn {
  text-decoration: none;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reveal {
  transform: translateY(34px) scale(0.975);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@keyframes mapSweep {
  0% {
    transform: translate3d(-8%, -4%, 0) rotate(0deg);
    opacity: 0.28;
  }

  45% {
    opacity: 0.72;
  }

  100% {
    transform: translate3d(8%, 4%, 0) rotate(2deg);
    opacity: 0.28;
  }
}

@keyframes heroFallbackDrift {
  from {
    transform: scale(1.04) translate3d(-0.6%, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(0.8%, -0.4%, 0);
  }
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.72);
  outline-offset: 3px;
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand__name {
    font-size: 1rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 14px;
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .hero-video__content {
    width: min(100% - 28px, 1180px);
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .hero-video__status {
    gap: 7px;
  }

  .hero-video__copy {
    min-height: 29svh;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .hero-video__kicker {
    font-size: 0.58rem;
    margin-bottom: 5px;
  }

  .hero-typewriter {
    font-size: clamp(1.24rem, 6.6vw, 1.72rem);
    line-height: 1.02;
  }

  .hero-line--soft {
    font-size: 0.4em;
    line-height: 1.14;
  }

  .hero-video__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 9px;
  }

  .hero-video__actions .btn {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .hero-video__note {
    margin-top: 6px;
    font-size: 0.66rem;
    line-height: 1.18;
  }

  .section-hero {
    padding-top: calc(var(--header-h) + 22px);
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.1vw, 2.72rem);
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__mobile-map {
    display: block;
    min-height: clamp(238px, 66vw, 300px);
    margin-bottom: 18px;
  }

  .hero__mobile-map img {
    height: clamp(238px, 66vw, 300px);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    display: none;
  }

  .map-panel img {
    aspect-ratio: 1 / 0.78;
  }

  .product-board {
    padding: 13px;
  }

  .proof-card__media img {
    height: min(105vw, 440px);
  }

  .image-lightbox {
    padding: 10px;
  }

  .image-lightbox__panel {
    max-height: calc(100svh - 20px);
  }

  .image-lightbox__panel img {
    max-height: calc(100svh - 152px);
  }

  .image-lightbox__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .image-lightbox__cta .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .final-cta__panel {
    padding: 20px;
  }
}

@media (max-width: 819px) {
  .hero-video__media {
    object-position: center bottom;
  }

  .hero-video__fallback {
    background-image: url("../images/hero-prague-poster-mobile.jpg");
    background-position: center;
  }

  .hero-video__shade {
    display: none;
    background: transparent;
  }

  .hero-video__status .status-pill {
    min-height: 28px;
    font-size: 0.66rem;
    padding: 0 9px;
  }

  .section-hero {
    min-height: 100svh;
    padding-bottom: 34px;
  }

  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero__inner {
    min-height: calc(100svh - var(--header-h) - 58px);
    align-content: start;
  }

  .hero__copy {
    max-width: 100%;
  }

  .mobile-rails,
  .status-row,
  .hero__actions {
    max-width: 100%;
  }

  .mobile-rails {
    flex-wrap: wrap;
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
  }

  .hero__mobile-map {
    display: block;
  }

  .hero__visual {
    display: none;
  }

  .map-panel {
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .map-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 58% 48%, transparent 18%, rgba(3, 7, 18, 0.62) 76%);
  }

  .map-panel__top,
  .product-board {
    display: none;
  }

  .map-panel img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .europe-map {
    padding: 8px;
    background: rgba(2, 6, 23, 0.54);
  }

  .europe-map img {
    min-height: auto;
    aspect-ratio: 820 / 620;
    object-fit: contain;
  }

  .snap-track {
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    padding: 2px 2px 14px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
  }

  .snap-track::-webkit-scrollbar {
    display: none;
  }

  .snap-track > * {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: center;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, opacity 260ms ease;
    opacity: 0.78;
  }

  .snap-track > .is-snap-active {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--brand-line-strong);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28), 0 0 28px rgba(34, 211, 238, 0.12);
  }

  .snap-track.product-screens-grid > * {
    flex-basis: min(72vw, 320px);
  }

  .snap-track.console-grid > *,
  .snap-track.scale-cards > *,
  .snap-track.readable-proof-grid > *,
  .snap-track.cooperation-format-grid > * {
    min-height: 100%;
  }
}

@media (min-width: 560px) {
  .benefit-grid,
  .scale-cards,
  .team-grid,
  .trust-grid,
  .readable-proof-grid,
  .entry-grid,
  .cooperation-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .console-grid,
  .roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cookie-banner {
    left: auto;
    width: min(680px, calc(100% - 28px));
  }
}

@media (min-width: 820px) {
  .snap-dots {
    display: none;
  }

  .top-nav,
  .header-cta {
    display: flex;
  }

  .top-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .site-header {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-video__rail {
    display: flex;
  }

  .hero-video__content {
    padding-left: 72px;
    padding-right: 72px;
  }

  .hero__inner {
    min-height: calc(100svh - var(--header-h) - 70px);
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    align-items: center;
  }

  .mobile-rails {
    display: none;
  }

  .hero__mobile-map {
    display: none;
  }

  .section-hero {
    padding-left: 72px;
    padding-right: 72px;
  }

  .rail {
    display: flex;
  }

  .map-panel {
    transform: translateY(4px);
  }

  .benefit-grid,
  .entry-grid,
  .scale-cards,
  .cooperation-format-grid,
  .product-screens-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .readable-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(300px, 0.84fr);
    align-items: stretch;
  }

  .proof-card,
  .collab-flow {
    min-height: 100%;
  }

  .proof-card__media img {
    height: clamp(360px, 38vw, 540px);
    aspect-ratio: auto;
  }

  .collab-flow {
    display: flex;
    flex-direction: column;
  }

  .collab-flow__steps {
    flex: 1;
  }

  .scale-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .console-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .roles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .europe-layout,
  .steps-layout,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
  }

  .final-cta {
    padding: 116px 0;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 5.85rem;
  }
}

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

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