:root {
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #aeb3c0;
  --accent: #f0b66c;
  --accent-2: #8e63ff;
  --max: 1440px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #050507 0%, #09090d 50%, #040406 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a,
.footer-links a,
.text-link {
  color: var(--muted);
  transition: color .25s ease, opacity .25s ease;
}

.main-nav a:hover,
.footer-links a:hover,
.text-link:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  padding: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.lang-btn.active {
  color: #111;
  background: linear-gradient(135deg, var(--accent), #ffd6a3);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  margin: 5px auto;
}

.section,
.section-full {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-full {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-grid,
.split-grid,
.contact-grid,
.live-grid,
.legal-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.split-grid,
.contact-grid,
.live-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.hero-text,
.content-card p,
.cookie-inner p,
.timeline-item span,
.contact-list li span {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-actions,
.cookie-actions,
.footer-wrap,
.contact-list li {
  display: flex;
  align-items: center;
}

.hero-actions,
.cookie-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffd6a3);
  color: #121212;
  box-shadow: 0 10px 30px rgba(240, 182, 108, 0.22);
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card,
.cards-grid,
.visual-grid {
  display: grid;
  gap: 20px;
}

.stat-card,
.content-card,
.timeline,
.visual-box {
  border-radius: var(--radius);
  padding: 28px;
}

.stat-card strong,
.timeline-item strong,
.content-card h3 {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.visual-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
  margin-top: 26px;
}

.visual-box {
  min-height: 280px;
  background:
    radial-gradient(circle at 20% 20%, rgba(240,182,108,0.18), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(142,99,255,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.timeline {
  display: grid;
  gap: 22px;
}
.timeline-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.timeline-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list a { font-weight: 700; }

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-wrap {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 1200;
}
.cookie-banner.hidden { display: none; }
.cookie-inner {
  border-radius: 22px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cookie-inner strong { display: block; margin-bottom: 8px; }

.bg-grid,
.bg-orb {
  position: fixed;
  pointer-events: none;
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 85%);
}

.bg-orb {
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}
.orb-1 {
  background: rgba(240, 182, 108, 0.55);
  top: -6vw;
  left: -8vw;
}
.orb-2 {
  background: rgba(142, 99, 255, 0.45);
  right: -10vw;
  top: 18vh;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .live-grid,
  .legal-grid,
  .cards-grid,
  .visual-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 14, 0.96);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .main-nav a:last-child { border-bottom: 0; }

  .menu-toggle { display: inline-block; }

  .split-grid,
  .contact-grid,
  .live-grid,
  .legal-grid,
  .cards-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner,
  .contact-list li,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .section-full {
    padding: 76px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    max-width: 165px;
    line-height: 1;
  }

  .stat-card,
  .content-card,
  .timeline,
  .visual-box,
  .cookie-inner {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }
}
