/* Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #d4a843;
  --gold-light:  #f0cc7a;
  --gold-dim:    #8a6820;
  --navy:        #0b0e2a;
  --navy-mid:    #111433;
  --navy-light:  #1a1f45;
  --black:       #060810;
  --white:       #f5f0e8;
  --muted:       #8a8fa8;
  --border:      rgba(212,168,67,0.18);
  --radius:      12px;
  --nav-h:       110px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
#cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,168,67,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s;
}
a:hover ~ #cursor, button:hover ~ #cursor { width: 20px; height: 20px; }

/* Noise Overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9998;
}

/* Navbar */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 5vw;
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(6, 8, 16, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-logo {
  margin-right: auto;
  z-index: 1;
}

.nav-logo img {
  height: 96px;
  width: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.4s;
  margin: 8px 16px;
}

nav.scrolled .nav-logo img {
  opacity: 1;
}

.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.highlight {
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 40px;
}
.nav-links a.highlight:hover {
  background: var(--gold);
  color: var(--black);
}
.nav-links a.highlight::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); margin: 5px 0; transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,8,16,0.97);
    flex-direction: column; gap: 0;
    padding: 20px 0; border-bottom: 1px solid var(--border);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; text-align: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .nav-links a { font-size: 14px; }
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: var(--nav-h) 5vw 0;
}

#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(53,51,205,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212,168,67,0.12) 0%, transparent 60%),
    var(--black);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0%   { opacity: 1; }
  100% { opacity: 0.7; filter: hue-rotate(15deg); }
}

.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; animation: float linear infinite;
}
.orb-1 { width: 500px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(53,51,205,0.15) 0%, transparent 70%);
  animation-duration: 20s; }
.orb-2 { width: 300px; height: 300px; bottom: 50px; left: -80px;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  animation-duration: 15s; animation-direction: reverse; }

@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 64px;
  width: 100%;
}

.hero-logo-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.hero-logo-left img {
  height: 100%;
  width: auto;
  min-height: 320px;
  object-fit: contain;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
  filter: drop-shadow(0 0 48px rgba(212,168,67,0.25));
}

.hero-content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; flex: 1; height: 1px; background: var(--gold-dim);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
  font-style: italic; color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 520px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}

.hero-desc {
  font-size: 18px;
  color: #e8e0d0;
  margin-top: 20px;
  line-height: 1.6;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.hero-desc-gold {
  color: var(--gold);
  font-weight: 600;
}

.hero-socials {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 1.0s forwards;
  z-index: 1;
}

.hero-social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  background: rgba(212,168,67,0.03);
}

.hero-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; align-items: center; gap: 40px; }
  .hero-logo-left img { height: 140px; max-width: 100%; }
  .hero-socials { bottom: 20px; }
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px; border-radius: 4px;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 0 40px rgba(212,168,67,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,168,67,0.4);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--white); padding: 16px 36px; border-radius: 4px;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

/* Marquee Band */
.marquee-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-word {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-sep {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sections */
section { padding: 100px 5vw; }

.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 16px; display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 20px;
}

.section-title strong { color: var(--gold); font-weight: 600; }

.section-line {
  width: 60px; height: 1px; background: var(--gold);
  margin-bottom: 40px;
}

/* O NAS */
#about {
  background: var(--navy);
  position: relative; overflow: hidden;
  scroll-margin-top: var(--nav-h);
}

#about::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(53,51,205,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-text p {
  color: var(--muted); line-height: 1.8; font-size: 16px;
  margin-bottom: 20px;
}

.about-text p strong { color: var(--white); }

.about-features {
  display: flex; flex-direction: column; gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.04);
  transform: translateX(4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.feature-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* TYP DNIA */
#typ-dnia { background: var(--black); scroll-margin-top: var(--nav-h); }

.typ-dnia-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.typ-dnia-center p {
  color: var(--muted); line-height: 1.8; font-size: 16px; margin-bottom: 20px;
}

.typ-dnia-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  text-align: left;
}
.typ-dnia-list li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  padding: 22px 0 22px 36px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}
.typ-dnia-list li:last-child { border-bottom: none; }
.typ-dnia-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.typ-dnia-list li strong { color: var(--white); }

@media (max-width: 960px) {
  .typ-dnia-list li { white-space: normal; padding: 18px 0 18px 32px; line-height: 1.6; }
  .typ-dnia-list li::before { top: 20px; transform: none; }
}

.disclaimer {
  font-size: 11px; color: var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
  padding-left: 12px; line-height: 1.6;
  margin-top: 24px;
  text-align: left;
}

/* Abonament Blur */
.plans-blur-wrap {
  position: relative;
}

.plans-blur-wrap .plans-grid {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.plans-coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.coming-soon-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(212,168,67,0.4);
}

.coming-soon-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ABONAMENT */
#abonament {
  background: var(--navy);
  text-align: center;
  scroll-margin-top: var(--nav-h);
}

#abonament .section-title { margin-bottom: 12px; }
#abonament .section-sub {
  color: var(--muted); max-width: 500px;
  margin: 0 auto 60px; line-height: 1.7;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}

.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.plan-card.featured {
  border-color: rgba(212,168,67,0.5);
  background: rgba(212,168,67,0.05);
}

.plan-card.featured::before {
  content: 'NAJPOPULARNIEJSZY';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: 9px; letter-spacing: 2px; font-weight: 700;
  padding: 5px 16px; border-radius: 0 0 8px 8px;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(212,168,67,0.4);
}

.plan-name {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
  margin-top: 16px;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; color: var(--gold);
  line-height: 1;
}

.plan-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--muted); font-weight: 400;
}

.plan-divider {
  height: 1px; background: var(--border); margin: 24px 0;
}

.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  font-size: 14px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before {
  content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0;
}
.plan-features li.inactive { opacity: 0.35; }
.plan-features li.inactive::before { content: '×'; color: var(--muted); }

.plan-btn {
  display: block; text-align: center;
  border: 1px solid var(--border); color: var(--white);
  padding: 14px; border-radius: 6px;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.plan-btn:hover { border-color: var(--gold); color: var(--gold); }

.plan-card.featured .plan-btn {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.plan-card.featured .plan-btn:hover { background: var(--gold-light); }

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

/* KONTAKT */
#kontakt { background: var(--black); scroll-margin-top: var(--nav-h); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.kontakt-info p {
  color: var(--muted); line-height: 1.8; margin-bottom: 32px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex; align-items: center; gap: 16px;
}

.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(212,168,67,0.05);
}

.contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-size: 15px; color: var(--white); }

.kontakt-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(212,168,67,0.5);
  background: rgba(212,168,67,0.04);
}

.form-group select option { background: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  background: var(--gold); color: var(--black);
  border: none; padding: 16px 32px;
  border-radius: 6px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.form-note {
  font-size: 11px; color: var(--muted); line-height: 1.6;
}

.form-consent {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold); background: transparent; border: 1px solid var(--border);
}
.form-consent label {
  font-size: 12px; color: var(--muted); text-transform: none !important;
  letter-spacing: 0 !important; line-height: 1.5;
}

@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 40px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}

.footer-left img { height: 60px; opacity: 0.8; }

.footer-links {
  display: flex; gap: 32px; list-style: none;
}
.footer-links a {
  font-size: 12px; color: var(--muted); text-decoration: none;
  letter-spacing: 0.5px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px; color: var(--muted);
  width: 100%; text-align: center; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(11,14,42,0.97);
  border-top: 1px solid var(--border);
  padding: 20px 5vw;
  z-index: 8888;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  backdrop-filter: blur(12px);
  transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }

.cookie-text { flex: 1; min-width: 260px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.cookie-text a { color: var(--gold); }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-ok {
  background: var(--gold); color: var(--black);
  border: none; padding: 10px 24px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.cookie-ok:hover { background: var(--gold-light); }

.cookie-no {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border); padding: 10px 24px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  cursor: pointer; transition: all 0.2s;
}
.cookie-no:hover { border-color: var(--muted); color: var(--white); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }

/* Force custom cursor everywhere */
*, *:hover, *:focus, *:active {
  cursor: none !important;
}
#cursor, #cursor-ring { pointer-events: none; }

/* Floating investor relations button */
#ri-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 5000;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 4px 24px rgba(212,168,67,0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
#ri-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,168,67,0.6);
  color: var(--black);
}
#ri-btn::before {
  content: '📈';
  font-size: 14px;
}

/* Intro Popup */
#intro-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  transition: opacity 0.6s ease;
}
#intro-backdrop.fade-out { opacity: 0; pointer-events: none; }

#intro-popup {
  position: relative;
  width: 100%; max-width: 1290px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.95), 0 0 0 1px rgba(212,168,67,0.3);
  background: #000;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.intro-video-wrap { position: relative; width: 100%; padding-top: 56.25%; }
#intro-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
#intro-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.25s linear; z-index: 2;
}
#intro-skip {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: rgba(0,0,0,0.6); color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 20px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  border-radius: 7px; backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#intro-skip:hover { background: rgba(212,168,67,0.4); border-color: var(--gold); color: var(--gold-light); }
#sound-btn {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  background: rgba(0,0,0,0.6); color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  border-radius: 7px; backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
#sound-btn:hover { background: rgba(212,168,67,0.4); border-color: var(--gold); color: var(--gold-light); }
#intro-play-btn {
  position: absolute; inset: 0; margin: auto;
  width: fit-content; height: fit-content;
  background: rgba(212,168,67,0.15); color: var(--gold-light);
  border: 1px solid rgba(212,168,67,0.5);
  padding: 16px 36px; font-size: 16px; font-family: 'DM Sans', sans-serif;
  letter-spacing: 1.5px; border-radius: 8px;
  backdrop-filter: blur(8px); cursor: pointer; z-index: 4;
  transition: background 0.2s, border-color 0.2s;
}
#intro-play-btn:hover { background: rgba(212,168,67,0.3); border-color: var(--gold); }

.contact-icon-social {
  color: var(--gold);
  background: rgba(212,168,67,0.05);
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-icon-social:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

/* Desktop responsive — 1080p and narrower */
@media (max-height: 1080px) and (min-width: 769px) {
  :root { --nav-h: 72px; }
  .nav-logo img { height: 60px; }
  section { padding: 72px 5vw; }
  #hero { padding: var(--nav-h) 5vw 0; }
  .hero-wrapper { gap: 16px; }
  .hero-inner { gap: 40px; }
  .hero-logo-left img { min-height: 200px; }
  .hero-title { font-size: clamp(48px, 6vw, 82px); margin-bottom: 20px; }
  .hero-sub { margin: 0 auto 28px; font-size: 15px; }
  .hero-socials { bottom: 24px; gap: 10px; }
  .hero-social-link { width: 36px; height: 36px; }
}

@media (max-height: 860px) and (min-width: 769px) {
  :root { --nav-h: 60px; }
  .nav-logo img { height: 48px; }
  section { padding: 56px 5vw; }
  #hero { padding: var(--nav-h) 5vw 0; }
  .hero-wrapper { gap: 12px; }
  .hero-inner { gap: 32px; }
  .hero-logo-left img { min-height: 160px; }
  .hero-title { font-size: clamp(42px, 5.5vw, 68px); margin-bottom: 16px; }
  .hero-sub { margin: 0 auto 20px; font-size: 14px; }
  .hero-socials { bottom: 16px; }
  .hero-social-link { width: 32px; height: 32px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 1280px) and (min-width: 769px) {
  .hero-inner { gap: 40px; }
  .hero-logo-left img { min-height: 220px; }
  .about-grid { gap: 48px; }
  .kontakt-grid { gap: 56px; }
}
