:root{
  --bg:#0b1220;
  --panel:#101a2f;
  --panel2:#0e1730;
  --text:#e6edf7;
  --muted:#9bb0d1;
  --brand:#5aa2ff;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% -10%, rgba(90,162,255,.25), transparent 60%),
              radial-gradient(1000px 700px at 90% 0%, rgba(127,90,255,.22), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{color:var(--text); text-decoration:none}
a:hover{color:white}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--border);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.logo{display:flex; align-items:center; gap:10px; font-weight:700}
.logo__mark{
  background: linear-gradient(135deg, var(--brand), #a78bfa);
  padding:6px 10px; border-radius:999px; color:#061225;
}
.logo__text{letter-spacing:.2px}

.logo__img{
  height: 55px;         /* dopasuj: 28–34px wygląda zwykle dobrze */
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  color:#071224;
  font-weight:700;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.btn--ghost{
  background: transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.btn--ghost:hover{border-color:rgba(255,255,255,.22)}

.hero{padding:54px 0 26px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
h1{font-size:42px; line-height:1.1; margin:0 0 14px}
.lead{font-size:18px; color:var(--muted); margin:0 0 18px}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 14px}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.badge{
  font-size:13px; color:var(--muted);
  padding:7px 10px; border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.03);
}

.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 10px}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:7px 0}

.note{
  margin-top:14px;
  padding:12px;
  border-radius: 14px;
  border:1px dashed rgba(90,162,255,.35);
  background: rgba(90,162,255,.08);
  color: var(--muted);
}

.section{padding:34px 0}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
h2{margin:0 0 14px; font-size:28px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.tile{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.tile h3{margin:0 0 8px}
.tile p{margin:0; color:var(--muted)}

.contact{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:12px}
.contact__card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.contact__row{display:flex; justify-content:space-between; gap:12px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06)}
.contact__row:last-child{border-bottom:0}
.muted{color:var(--muted)}
.contact__hint{border:1px solid var(--border); background: rgba(255,255,255,.02); border-radius: var(--radius); padding:16px}
.footer{margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08)}

@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr}
  h1{font-size:34px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .nav{gap:12px}
}

/* ===== COMING SOON (blur + blokada kliknięć + animowane światło) ===== */

body.coming-soon-on{
  overflow: hidden; /* blok scrolla */
}

/* rozmyj wszystko poza overlay */
body.coming-soon-on > *:not(#comingSoonOverlay){
  filter: blur(4px) saturate(.95) brightness(.9);
  transform: scale(1.01);
  pointer-events: none; /* blok kliknięć */
  user-select: none;
}

/* overlay nad całą stroną */
#comingSoonOverlay{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  pointer-events: all;
  user-select: none;

  background:
    radial-gradient(1200px 600px at 50% 40%, rgba(120,140,255,.18), rgba(0,0,0,.70)),
    rgba(0,0,0,.25);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cs-wrap{
  text-align: center;
  padding: 0 18px;
}

.cs-title{
  font-family: "Orbitron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;

  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.05;

  color: rgba(230,235,255,.92);
  text-shadow:
    0 0 12px rgba(120,140,255,.25),
    0 0 32px rgba(120,140,255,.18);

  position: relative;
  padding: 22px 28px;
  border-radius: 18px;

  border: 1px solid rgba(140,160,255,.18);
  background: rgba(8,12,22,.35);
  box-shadow:
    0 16px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);

  overflow: hidden;
}

/* „światło” idzie lewo->prawo i odbija (alternate) */
.cs-title::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.05),
    rgba(170,190,255,.55),
    rgba(255,255,255,.10),
    transparent
  );
  animation: cs-sweep 2.8s ease-in-out infinite alternate;
}

@keyframes cs-sweep{
  from{ left:-60%; }
  to  { left:110%; }
}

.cs-sub{
  margin-top: 14px;
  font: 500 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(210,220,255,.72);
  letter-spacing: .02em;
}

/* na wszelki wypadek: overlay przechwytuje klik */
#comingSoonOverlay, #comingSoonOverlay *{
  -webkit-user-drag: none;
}

/* Logo w prawym dolnym rogu */
.cs-logo-corner{
  position: fixed;
  right: 28px;
  bottom: 14px;
  width: 200px;
  height: auto;
  opacity: .92;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.55));
  pointer-events: none;
  user-select: none;
}

/* Na telefonie trochę mniejsze i bliżej krawędzi */
@media (max-width: 560px){
  .cs-logo-corner{
    right: 14px;
    bottom: 14px;
    width: 175px;
    opacity: .88;
  }
}

