:root{
  --bg: #070B14;
  --panel: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 22px;
  --grad: linear-gradient(90deg, rgba(77,163,255,1) 0%, rgba(124,92,255,1) 45%, rgba(255,93,145,1) 100%);
}

*{box-sizing:border-box}
html,body{height:100%}

html{
  background: var(--bg);
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: transparent;
  overflow-x:hidden;
  position: relative;
}

/* Prawdziwy TOP anchor */
#page-top{ height:0; }

/* OFFSET pod sticky header dla anchorów */
section[id]{
  scroll-margin-top: 140px;
}

/* CIĄGŁE TŁO (fixed) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 500px at 10% 10%, rgba(77,163,255,.14), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(255,93,145,.14), transparent 60%),
    radial-gradient(900px 500px at 80% 70%, rgba(124,92,255,.12), transparent 60%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 0;
}

.brand{
  display:flex; gap:12px; align-items:center;
  user-select:none;
}

/* Tekst obok logo */
.brand__text strong{display:block; font-weight:800; letter-spacing:.2px}
.brand__text small{display:block; color:var(--muted); margin-top:2px; font-weight:500}

/* Nav */
.nav__menu{
  display:flex; align-items:center; gap:16px;
}
.nav__menu a{
  color: var(--muted);
  font-weight:700;
  padding:10px 10px;
  border-radius: 12px;
  transition: background .12s ease, color .12s ease;
}
.nav__menu a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.85);
  margin:4px auto;
  border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid var(--line);
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn--small{padding:10px 14px; border-radius: 12px}
.btn--primary{
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(77,163,255,.12);
}
.btn--ghost{
  background: rgba(255,255,255,.05);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.08);
}

/* Hero */
.hero{
  position:relative;
  padding: 44px 0 12px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: start;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-weight:800;
  letter-spacing:.2px;
  margin: 0 0 14px;
}
h1{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin:0 0 14px;
  letter-spacing:-.6px;
}
.grad{
  background: var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.stat{
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.stat strong{
  display:block;
  font-weight:900;
  letter-spacing:.2px;
}
.stat span{
  display:block;
  margin-top:6px;
  color: var(--muted2);
  font-weight:650;
  font-size: 13px;
}

.hero__note{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted2);
  font-weight:650;
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  background: rgba(77,163,255,.9);
  box-shadow: 0 0 0 6px rgba(77,163,255,.14);
}

.hero__card{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__cardTop{
  padding: 18px 18px 10px;
}
.hero__cardTop h2{
  margin:0 0 6px;
  font-size: 16px;
  letter-spacing:.1px;
}
.hero__cardTop p{
  margin:0;
  color: var(--muted);
  line-height:1.5;
}

.contactQuick{
  padding: 10px 12px 12px;
  display:grid;
  gap:10px;
}
.contactQuick__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.contactQuick__item:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.contactQuick__item .icon{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.contactQuick__item strong{
  display:block; font-weight:900;
}
.contactQuick__item small{
  display:block; color: var(--muted2); margin-top:2px; font-weight:650;
}
.hero__cardBottom{
  padding: 0 18px 16px;
}
.muted{color: var(--muted2)}
.small{font-size: 12px}

/* Sections */
.section{padding: 56px 0}

/* bez pasów */
.section--alt{
  background: transparent;
  border: 0;
}

.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin:0 0 8px;
  font-size: 24px;
  letter-spacing:-.2px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius2);
  padding: 18px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px; font-size: 16px}
.card p{margin:0 0 12px; color: var(--muted); line-height:1.6}
.list{margin:0; padding-left: 18px; color: var(--muted2); line-height:1.7}
.list li{margin: 4px 0}

.noteBox{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius2);
  background: rgba(77,163,255,.08);
  border: 1px solid rgba(77,163,255,.18);
  color: rgba(255,255,255,.88);
  font-weight:800;
}

/* Gallery */
.gallery{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.shot{
  border-radius: 18px;
  overflow:hidden;
  border:  1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}
.shot img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transform: scale(1);
  transition: transform .18s ease;
}
.shot:hover img{transform: scale(1.03)}

/* Timeline */
.timeline{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.tl{
  position:relative;
  padding: 16px 16px 16px 46px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.tl__dot{
  position:absolute;
  left: 16px;
  top: 18px;
  width:14px; height:14px;
  border-radius:50%;
  background: rgba(124,92,255,.95);
  box-shadow: 0 0 0 6px rgba(124,92,255,.14);
}
.tl__content h3{margin:0 0 6px; font-size: 16px}
.tl__content p{margin:0; color: var(--muted); line-height:1.6}

/* CTA strip */
.ctaStrip{
  margin-top: 16px;
  padding: 16px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  display:flex;
  gap: 14px;
  justify-content:space-between;
  align-items:center;
}
.ctaStrip strong{display:block; font-weight:900}
.ctaStrip span{display:block; color: var(--muted2); margin-top:2px; font-weight:650}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.panel h3{margin:0 0 12px; font-size: 16px}

.contactRows{display:grid; gap:10px}
.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.row:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}
.row--static:hover{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
.row__k{color: var(--muted2); font-weight:750}
.row__v{font-weight:900}

.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-weight:800;
  font-size: 12px;
}

/* Form */
.form{display:grid; gap: 12px}
label{display:grid; gap:8px; color: rgba(255,255,255,.86); font-weight:800}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(77,163,255,.45);
  box-shadow: 0 0 0 4px rgba(77,163,255,.14);
}

/* Footer */
.footer{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  gap: 12px;
  justify-content:space-between;
  align-items:center;
}
.footer__left strong{display:block; font-weight:900}
.footer__left span{display:block; color: var(--muted2); margin-top:4px; font-weight:650}
.footer__right a{
  color: var(--muted);
  font-weight:900;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.footer__link{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  opacity: .92;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  place-items:center;
  padding: 24px;
  z-index: 999;
}
.lightbox[aria-hidden="false"]{display:grid}
.lightbox__img{
  width:min(1000px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.lightbox__close{
  position:absolute;
  top: 18px; right: 18px;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 18px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .contactGrid{grid-template-columns: 1fr}
  .hero__stats{grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav__toggle{display:inline-grid; place-items:center}
  .nav__menu{
    position:absolute;
    right: 20px;
    top: 64px;
    width: min(360px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(7,11,20,.92);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 60px rgba(0,0,0,.45);
  }
  .nav__menu a{padding: 12px 12px}
  .nav__menu.is-open{display:flex}
}
@media (max-width: 520px){
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .ctaStrip{flex-direction:column; align-items:flex-start}
}

/* ===== LOGO: delikatne „float” + ognista, pulsująca poświata (2/3 mniejsza) ===== */
.brand__logoWrap{
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  isolation: isolate;
}

@keyframes logoFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-1px); }
}

.brand__logo-img{
  height: 90px;
  width: auto;
  display: block;
  border-radius: 14px;
  animation: logoFloat 3.6s ease-in-out infinite;
}

.brand__logoWrap::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: 20px;
  z-index:-1;

  background: linear-gradient(135deg, #ffb347, #ff6a00, #ffd36a);
  filter: blur(6px);
  opacity: .75;

  animation: glowPulse 3s ease-in-out infinite;
}

.brand__logoWrap::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius: 26px;
  z-index:-2;

  background: radial-gradient(circle, rgba(255,180,80,.65), rgba(255,120,40,.35), transparent 70%);
  filter: blur(14px);
  opacity: .65;

  animation: glowPulseOuter 3s ease-in-out infinite;
}

@keyframes glowPulse{
  0%,100%{ opacity:.55; filter: blur(6px) brightness(1); }
  50%{ opacity:1; filter: blur(9px) brightness(1.35); }
}

@keyframes glowPulseOuter{
  0%,100%{ opacity:.4; transform: scale(1); }
  50%{ opacity:.75; transform: scale(1.03); }
}

@media (max-width: 620px){
  .brand__logo-img{ height: 60px; }
  .brand__logoWrap::before{ inset:-4px; filter: blur(5px); }
  .brand__logoWrap::after{ inset:-9px; filter: blur(12px); }
}

/* ===== Formularz: status wysyłki (Formspree) ===== */
.form-status{
  margin-top: 12px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
}
.form-status.success{
  color: rgba(124,255,178,.95);
}
.form-status.error{
  color: rgba(255,124,124,.95);
}
button[disabled]{
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== Checkbox RODO ===== */
.rodo{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.rodo input{
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #ff6a00;
}
.rodo a{
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* FIX stopki na mobile */
@media (max-width: 620px){
  .footer{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__right{
    width: 100%;
  }

  .footer__right a{
    width: 100%;
    text-align: center;
  }

  .footer__left span{
    line-height: 1.5;
  }
}

