/* ============================================================
   v4 DVA SVĚTY — rozcestník homepage
   2026-05-14
   ============================================================ */

/* Reset base body */
.body-v4 {
  background: #0a1840;
  color: #f8f4ea;
  font-family: 'Inter', 'Calibri', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Top nav (dark) */
.top-v4 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 24, 64, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 196, 74, 0.12);
  padding: 14px 0;
}
.top-v4 .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.top-v4 .row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.top-v4 .logo img { height: 28px; display: block; }
.top-v4 .nav-links {
  display: flex; list-style: none; gap: 28px;
  margin: 0; padding: 0;
}
.top-v4 .nav-links a {
  color: rgba(248, 244, 234, 0.78);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}
.top-v4 .nav-links a:hover { color: #e5c44a; }

/* ╔══════════ CROSSROAD HERO ══════════╗ */
.crossroad-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ch-ambient {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.ch-gradient-left {
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse 80% 70% at 30% 50%, rgba(127, 212, 255, 0.15) 0%, rgba(127, 212, 255, 0) 60%);
}
.ch-gradient-right {
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(229, 196, 74, 0.15) 0%, rgba(229, 196, 74, 0) 60%);
}
.ch-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 15%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 25% 35%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 50% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 75% 40%, rgba(127,212,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 85% 80%, rgba(229,196,74,0.4), transparent),
    radial-gradient(1px 1px at 35% 75%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 60% 90%, rgba(255,255,255,0.4), transparent);
  background-size: 100% 100%;
  opacity: 0.7;
}

.ch-intro {
  position: relative; z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  margin-bottom: 110px;
}
@media (max-width: 768px) {
  .ch-intro { margin-bottom: 64px; }
}
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e5c44a;
  padding: 6px 16px;
  border: 1px solid rgba(229, 196, 74, 0.4);
  border-radius: 100px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e5c44a;
  box-shadow: 0 0 8px rgba(229, 196, 74, 0.8);
  animation: pulse-gold 2.2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ch-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
}
.ch-title em {
  font-style: italic;
  background: linear-gradient(120deg, #c9a730 0%, #e5c44a 35%, #fff3c4 50%, #e5c44a 65%, #c9a730 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ch-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(248, 244, 234, 0.78);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 300;
}
.ch-lead strong { color: rgba(248, 244, 234, 0.95); font-weight: 500; }

/* DVA PORTÁLY */
.ch-portals {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ch-portal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 38px 44px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  cursor: pointer;
}
.ch-portal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.ch-portal:hover {
  transform: translateY(-6px) scale(1.005);
}

/* PORTÁL — TECH (modrá) */
.ch-portal-tech {
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(127, 212, 255, 0.20) 0%, rgba(127, 212, 255, 0) 60%),
    linear-gradient(165deg, rgba(20, 38, 88, 0.92) 0%, rgba(10, 24, 64, 0.96) 100%);
  box-shadow:
    0 24px 64px -28px rgba(127, 212, 255, 0.40),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.ch-portal-tech:hover {
  box-shadow:
    0 36px 88px -28px rgba(127, 212, 255, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* PORTÁL — MZDY (zlatá) */
.ch-portal-mzdy {
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(229, 196, 74, 0.22) 0%, rgba(229, 196, 74, 0) 60%),
    linear-gradient(165deg, rgba(58, 44, 18, 0.94) 0%, rgba(28, 22, 12, 0.97) 100%);
  box-shadow:
    0 24px 64px -28px rgba(229, 196, 74, 0.40),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.ch-portal-mzdy:hover {
  box-shadow:
    0 36px 88px -28px rgba(229, 196, 74, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.ch-portal-globe {
  width: clamp(180px, 24vw, 280px);
  height: clamp(180px, 24vw, 280px);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.ch-portal-globe svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
  animation: globe-float 6s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.ch-portal:hover .ch-portal-globe svg {
  animation-duration: 4s;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.5));
}
@keyframes globe-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* Dýchající halo — tech (modré) */
.ch-halo-tech {
  transform-origin: 120px 120px;
  transform-box: fill-box;
  animation: ch-halo-breathe-tech 4.5s ease-in-out infinite;
}
@keyframes ch-halo-breathe-tech {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: 0.75; }
}

/* Dýchající halo — mzdy (zlaté) */
.ch-halo-mzdy {
  transform-origin: 120px 120px;
  transform-box: fill-box;
  animation: ch-halo-breathe-mzdy 5s ease-in-out infinite;
}
@keyframes ch-halo-breathe-mzdy {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Slunce dýchá (mzdy) */
.ch-sphere-mzdy {
  transform-origin: 120px 120px;
  transform-box: fill-box;
  animation: ch-sphere-breathe 5s ease-in-out infinite;
}
@keyframes ch-sphere-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

/* Hover: zrychlení rotace tech globu + intenzivnější svit */
.ch-portal-tech:hover .ch-halo-tech { animation-duration: 2.4s; }
.ch-portal-mzdy:hover .ch-halo-mzdy { animation-duration: 3s; }
.ch-portal-mzdy:hover .ch-sphere-mzdy { animation-duration: 3s; }

/* Matrix rain canvas — pozadí tech portálu */
.ch-portal-tech { position: relative; overflow: hidden; isolation: isolate; }
.ch-matrix-rain {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0) 18%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.95) 75%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0) 18%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.95) 75%, rgba(0,0,0,1) 100%);
  transition: opacity 600ms ease;
}
.ch-portal-tech:hover .ch-matrix-rain { opacity: 0.28; }
.ch-portal-tech .ch-portal-globe,
.ch-portal-tech .ch-portal-content { position: relative; z-index: 2; }

/* Continenty subtle pulse */
.ch-continents path { transition: fill 200ms ease; }
.ch-portal-tech:hover .ch-continents path { fill: rgba(140,220,255,0.55); }

/* Respektovat reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ch-matrix-rain { display: none; }
  .ch-rotate-tech, .ch-rays-mzdy, .ch-rays-mzdy-bg { animation: none; }
}

.ch-portal-content {
  position: relative; z-index: 2;
  width: 100%;
}
.ch-portal-num {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.ch-portal-tech .ch-portal-num { color: #7fd4ff; }
.ch-portal-mzdy .ch-portal-num { color: #e5c44a; }

.ch-portal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 18px;
}
.ch-portal-title em {
  font-style: italic;
  display: inline-block;
}
.ch-portal-tech .ch-portal-title em {
  background: linear-gradient(120deg, #7fd4ff 0%, #b5e5ff 50%, #7fd4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ch-portal-mzdy .ch-portal-title em {
  background: linear-gradient(120deg, #c9a730 0%, #f0d671 50%, #c9a730 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ch-portal-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(248, 244, 234, 0.78);
  margin: 0 auto 22px;
  max-width: 360px;
  font-weight: 300;
}
.ch-portal-desc strong { color: rgba(248, 244, 234, 0.96); font-weight: 600; }

.ch-portal-tags {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.ch-portal-tags li {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 100px;
  text-transform: uppercase;
}
.ch-portal-tech .ch-portal-tags li {
  background: rgba(127, 212, 255, 0.12);
  border: 1px solid rgba(127, 212, 255, 0.25);
  color: #b5e5ff;
}
.ch-portal-mzdy .ch-portal-tags li {
  background: rgba(229, 196, 74, 0.12);
  border: 1px solid rgba(229, 196, 74, 0.30);
  color: #f0d671;
}

.ch-portal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: gap 0.3s, transform 0.3s;
}
.ch-portal-cta svg { width: 18px; height: 18px; transition: transform 0.3s; }
.ch-portal:hover .ch-portal-cta svg { transform: translateX(4px); }

.ch-portal-tech .ch-portal-cta {
  background: linear-gradient(135deg, #7fd4ff 0%, #2a9fd4 100%);
  color: #0a1840;
  box-shadow: 0 8px 20px -8px rgba(127, 212, 255, 0.55);
}
.ch-portal-mzdy .ch-portal-cta {
  background: linear-gradient(135deg, #f0d671 0%, #c9a730 100%);
  color: #1c160c;
  box-shadow: 0 8px 20px -8px rgba(229, 196, 74, 0.55);
}

.ch-bridge {
  position: relative; z-index: 2;
  margin: 56px auto 0;
  max-width: 1080px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: center;
  justify-content: center;
}
.ch-bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(229,196,74,0.30) 50%, transparent 100%);
  max-width: 200px;
}
.ch-bridge-text {
  font-size: 12px;
  letter-spacing: 0.10em;
  color: rgba(248, 244, 234, 0.55);
  white-space: nowrap;
}
.ch-bridge-text strong {
  color: rgba(248, 244, 234, 0.85);
  font-weight: 600;
}

.ch-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 234, 0.45);
  z-index: 2;
}
.ch-scroll-arrow {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(229, 196, 74, 0.6) 100%);
  position: relative;
}
.ch-scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px; height: 8px;
  border-right: 1.5px solid rgba(229, 196, 74, 0.6);
  border-bottom: 1.5px solid rgba(229, 196, 74, 0.6);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .ch-portals { grid-template-columns: 1fr; gap: 22px; }
  .ch-portal { padding: 36px 26px 32px; }
  .ch-bridge-text { white-space: normal; font-size: 11px; }
}

/* ╔══════════ SVĚTY — sekce ══════════╗ */
.world {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
}
.world-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.world-bg-tech {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(127, 212, 255, 0.10) 0%, rgba(127, 212, 255, 0) 65%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(40, 54, 105, 0.20) 0%, rgba(40, 54, 105, 0) 60%),
    linear-gradient(180deg, #0a1840 0%, #050d28 100%);
}
.world-bg-mzdy {
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(229, 196, 74, 0.10) 0%, rgba(229, 196, 74, 0) 65%),
    linear-gradient(180deg, #faf6ec 0%, #f0e8d0 100%);
}
.world-mzdy { color: #2a2a2a; }
.world-inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.world-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}
.world-num {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: rgba(127, 212, 255, 0.40);
  margin-bottom: 6px;
}
.world-num-gold {
  color: rgba(201, 167, 48, 0.55);
}
.world-kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7fd4ff;
  margin-bottom: 18px;
}
.world-kicker-gold { color: #c9a730; }

.world-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: inherit;
  margin: 0 0 20px;
}
.world-tech .world-title { color: #fff; }
.world-mzdy .world-title { color: #283669; }
.world-title em {
  font-style: italic;
}
.world-tech .world-title em {
  background: linear-gradient(120deg, #7fd4ff 0%, #b5e5ff 50%, #7fd4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.world-mzdy .world-title em {
  background: linear-gradient(120deg, #c9a730 0%, #e5c44a 50%, #c9a730 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.world-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  font-weight: 300;
}
.world-tech .world-lead { color: rgba(248, 244, 234, 0.78); }
.world-mzdy .world-lead { color: #444; }

/* WORLD GRID — 4 karty */
.world-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.world-card {
  position: relative;
  padding: 32px 30px 30px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.world-card:hover { transform: translateY(-4px); }
.world-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}
.world-card-tech {
  background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(127, 212, 255, 0.18);
  color: #f8f4ea;
}
.world-card-tech::before {
  background: linear-gradient(90deg, #7fd4ff 0%, #2a9fd4 100%);
}
.world-card-tech:hover {
  box-shadow: 0 20px 48px -22px rgba(127, 212, 255, 0.35);
  border-color: rgba(127, 212, 255, 0.40);
}
.world-card-mzdy {
  background: #fff;
  border: 1px solid rgba(40, 54, 105, 0.10);
  color: #2a2a2a;
}
.world-card-mzdy::before {
  background: linear-gradient(90deg, #e5c44a 0%, #c9a730 100%);
}
.world-card-mzdy:hover {
  box-shadow: 0 20px 48px -22px rgba(201, 167, 48, 0.35);
  border-color: rgba(229, 196, 74, 0.45);
}

.world-card-icon {
  width: 52px; height: 52px;
  margin-bottom: 18px;
}
.world-card-tech .world-card-icon { color: #7fd4ff; }
.world-card-mzdy .world-card-icon { color: #c9a730; }
.world-card-icon svg { width: 100%; height: 100%; }

.world-card-tag {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.world-card-tech .world-card-tag {
  background: rgba(127, 212, 255, 0.15);
  color: #7fd4ff;
}
.world-card-mzdy .world-card-tag {
  background: rgba(229, 196, 74, 0.18);
  color: #c9a730;
}
.world-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.world-card-tech h3 { color: #fff; }
.world-card-mzdy h3 { color: #283669; }
.world-card p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.world-card-tech p { color: rgba(248, 244, 234, 0.72); }
.world-card-mzdy p { color: #444; }
.world-card p strong {
  font-weight: 600;
}
.world-card-tech p strong { color: rgba(248, 244, 234, 0.95); }
.world-card-mzdy p strong { color: #283669; }
.world-card-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.world-card-points li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 12.5px;
  line-height: 1.4;
}
.world-card-tech .world-card-points li { color: rgba(248, 244, 234, 0.7); }
.world-card-mzdy .world-card-points li { color: #555; }
.world-card-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1.5px;
}
.world-card-tech .world-card-points li::before { background: #7fd4ff; }
.world-card-mzdy .world-card-points li::before { background: #c9a730; }

.world-card-cta {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10px;
}
.world-card-tech .world-card-cta { color: #7fd4ff; }
.world-card-mzdy .world-card-cta { color: #c9a730; }
.world-card-cta:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .world-grid { grid-template-columns: 1fr; }
}

/* NOKIA FEATURE BLOCK */
.world-feature {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 36px;
  align-items: center;
  padding: 40px 36px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(127,212,255,0.10) 0%, transparent 65%),
    linear-gradient(135deg, rgba(40, 54, 105, 0.70) 0%, rgba(28, 39, 80, 0.85) 100%);
  border: 1px solid rgba(127, 212, 255, 0.25);
  border-radius: 18px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.world-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7fd4ff 0%, #2a9fd4 50%, #7fd4ff 100%);
}
.world-feature-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(127, 212, 255, 0.30);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
}
.world-feature-eyebrow {
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7fd4ff;
  margin-bottom: 10px;
}
.world-feature-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.world-feature-area {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.4;
}
.world-feature-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(248, 244, 234, 0.82);
  margin: 0 0 14px;
}
.world-feature-body p strong {
  color: #fff;
  font-weight: 600;
}
@media (max-width: 900px) {
  .world-feature { grid-template-columns: 1fr; padding: 28px 22px; }
}

/* CTA řádek na konci světa */
.world-cta-row {
  text-align: center;
  margin-top: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-tech {
  background: linear-gradient(135deg, #7fd4ff 0%, #2a9fd4 100%);
  color: #0a1840;
  box-shadow: 0 10px 28px -10px rgba(127, 212, 255, 0.55);
}
.btn-mzdy {
  background: linear-gradient(135deg, #f0d671 0%, #c9a730 100%);
  color: #1c160c;
  box-shadow: 0 10px 28px -10px rgba(229, 196, 74, 0.55);
}
.btn-gold {
  background: linear-gradient(135deg, #f0d671 0%, #c9a730 100%);
  color: #1c160c;
  box-shadow: 0 10px 28px -10px rgba(229, 196, 74, 0.55);
}

/* DĚLÍCÍ PRUH MEZI SVĚTY */
.world-divider {
  background: #050d28;
  padding: 30px 0;
}
.world-divider .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.world-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(229, 196, 74, 0.35) 50%, transparent 100%);
}
.world-divider-text {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #e5c44a;
}

/* WORLD STATS row */
.world-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 32px 28px;
  background: rgba(40, 54, 105, 0.04);
  border-radius: 16px;
  margin-bottom: 50px;
}
.world-stat {
  text-align: center;
  border-right: 1px solid rgba(40, 54, 105, 0.10);
  padding: 0 8px;
}
.world-stat:last-child { border-right: none; }
.world-stat strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: #283669;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.world-stat span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6c6f7a;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .world-stats { grid-template-columns: repeat(2, 1fr); }
  .world-stat { border-right: none; border-bottom: 1px solid rgba(40,54,105,0.08); padding-bottom: 16px; }
}

/* REFERENCE V SVĚTĚ MZDY */
.world-refs {
  margin-bottom: 50px;
}
.world-refs-head {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c9a730;
  margin-bottom: 18px;
  text-align: center;
}
.world-refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.world-ref {
  background: #fff;
  border: 1px solid rgba(40, 54, 105, 0.10);
  border-radius: 12px;
  padding: 22px 18px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.world-ref:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(40, 54, 105, 0.30);
}
.world-ref img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}
.world-ref span {
  font-size: 11.5px;
  color: #6c6f7a;
  line-height: 1.3;
}
.world-ref-text { padding: 18px; }
.world-ref-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: #283669;
  line-height: 1;
}
@media (max-width: 900px) {
  .world-refs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ╔══════════ SHARED — TEAM ══════════╗ */
.shared {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(180deg, #faf6ec 0%, #fff 100%);
  color: #2a2a2a;
}
.shared-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 32px;
}
.shared-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c9a730;
  padding: 6px 16px;
  border: 1px solid rgba(229, 196, 74, 0.30);
  border-radius: 100px;
  margin-bottom: 22px;
}
.shared-head .eyebrow.dark { color: #c9a730; border-color: rgba(229,196,74,0.30); }
.shared-head .pulse-dot.dark { background: #c9a730; box-shadow: 0 0 8px rgba(229,196,74,0.6); }
.shared-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: #283669;
  margin: 0 0 16px;
}
.shared-head h2 em {
  font-style: italic;
  background: linear-gradient(120deg, #c9a730 0%, #e5c44a 50%, #c9a730 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shared-head p {
  font-size: 16px;
  color: #555;
  line-height: 1.55;
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.member {
  position: relative;
  background: #fff;
  border: 1px solid rgba(40, 54, 105, 0.12);
  border-radius: 16px;
  padding: 34px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -22px rgba(40, 54, 105, 0.30);
}
.member.highlight {
  background: linear-gradient(165deg, #fff 0%, #fdf8e7 100%);
  border-color: rgba(229, 196, 74, 0.40);
}
.member-avatar {
  width: 160px; height: 160px;
  margin: 0 auto 20px;
  position: relative;
}
.member-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow:
    0 20px 44px -18px rgba(40, 54, 105, 0.40),
    0 0 0 6px rgba(229, 196, 74, 0.08),
    0 0 0 7px rgba(229, 196, 74, 0.15);
  filter: saturate(1.04);
  transition: transform 0.3s;
}
.member:hover .member-photo { transform: scale(1.04); }
.member.highlight .member-photo {
  box-shadow:
    0 22px 50px -18px rgba(40, 54, 105, 0.46),
    0 0 0 6px rgba(229, 196, 74, 0.22),
    0 0 0 7px rgba(229, 196, 74, 0.45);
}
.member-ping {
  position: absolute;
  top: 8px; right: 14px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  80% { box-shadow: 0 0 0 14px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.member-role {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c9a730;
  margin-bottom: 8px;
  line-height: 1.3;
}
.member-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: #283669;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.member-bio {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 16px;
  max-width: 240px;
}
.member-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(40, 54, 105, 0.06);
  color: #283669;
  border-radius: 4px;
}
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* CONTACT (final CTA) */
.cta-final {
  background: linear-gradient(135deg, #283669 0%, #1c2750 100%);
  color: #fff;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(229, 196, 74, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-final .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e5c44a;
  margin-bottom: 22px;
}
.cta-final h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.cta-final h2 em {
  font-style: italic;
  background: linear-gradient(120deg, #c9a730 0%, #e5c44a 50%, #c9a730 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0 auto 16px;
}
.contact-lead strong { color: #f0d671; font-weight: 600; }
.contact-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto 14px;
  font-weight: 300;
}
.contact-cta {
  margin-top: 22px;
  font-size: 16px;
}

/* FOOTER */
footer {
  background: #050d28;
  color: rgba(248, 244, 234, 0.65);
  padding: 60px 0 28px;
  font-size: 13px;
}
footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.foot-brand-wordmark img { height: 26px; margin-bottom: 14px; }
.foot-tag {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(248, 244, 234, 0.55);
  max-width: 360px;
}
.foot-col h5 {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e5c44a;
  margin: 0 0 12px;
}
.foot-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.foot-col li {
  padding: 4px 0;
  font-size: 13px;
  color: rgba(248, 244, 234, 0.65);
}
.foot-bot {
  padding-top: 24px;
  border-top: 1px solid rgba(229, 196, 74, 0.10);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(248, 244, 234, 0.40);
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .foot-bot { flex-direction: column; gap: 8px; }
}

/* Container utility */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.row { display: flex; align-items: center; justify-content: space-between; }

/* Reveal animace (jednoduché — fade in) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Bez JS observeru: fallback show after page load */
@media (prefers-reduced-motion: no-preference) {
  body.body-v4 .reveal { animation: reveal-in 0.8s 0.1s forwards; }
}
@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* MINIMAL FOOTER pro rozcestník */
.footer-minimal {
  background: #050d28;
  padding: 22px 0 22px;
  border-top: 1px solid rgba(229, 196, 74, 0.08);
}
.footer-minimal .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.foot-min-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-min-row .foot-brand-wordmark img {
  height: 22px;
  display: block;
}
.foot-min-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: rgba(248, 244, 234, 0.55);
  letter-spacing: 0.04em;
}
.foot-min-meta .foot-sep { color: rgba(229, 196, 74, 0.35); }
.foot-min-meta a {
  color: #e5c44a;
  text-decoration: none;
  font-weight: 500;
}
.foot-min-meta a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .foot-min-row { flex-direction: column; gap: 14px; text-align: center; }
  .foot-min-meta { flex-wrap: wrap; justify-content: center; }
}

/* Hero rozcestník — víc breath, minimum vh aby footer byl těsně pod */
.crossroad-hero { min-height: calc(100vh - 80px); padding-bottom: 60px; }

/* Subpage nav cross-links */
.nav-back {
  color: rgba(248, 244, 234, 0.55) !important;
  font-size: 12px;
}
.nav-back:hover { color: #e5c44a !important; }
.nav-other {
  color: #e5c44a !important;
  font-weight: 600;
}
.nav-other:hover { text-decoration: underline; }
