/* DMFT Premium – GitHub Pages (HTML+CSS+JS) */
:root{
  --bg:#0b0c10;
  --panel:#0f1117;
  --panel2:#0c0d12;
  --text:#f4f6fb;
  --muted:rgba(244,246,251,.72);
  --muted2:rgba(244,246,251,.55);
  --gold:#d6b35a;
  --gold2:#b8943f;
  --line:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: radial-gradient(1200px 800px at 20% 5%, rgba(214,179,90,.16), transparent 60%),
              radial-gradient(900px 700px at 80% 10%, rgba(214,179,90,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

.topline{
  position:fixed; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, transparent, rgba(214,179,90,.65), transparent);
  z-index:9999; filter: blur(.2px);
}

/* Header */
.header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(16px);
  background: rgba(11,12,16,.62);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:42px; height:42px; object-fit:contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.55))}
.brand__text{font-weight:600; letter-spacing:.2px; font-size:14px; color:rgba(244,246,251,.9)}

.menu{display:flex; gap:18px; align-items:center}
.menu__link{
  font-size:13px; color:rgba(244,246,251,.78);
  padding:8px 10px; border-radius:999px;
  transition:.25s ease;
}
.menu__link:hover{color:var(--text); background:rgba(255,255,255,.05)}
.menu__link.active{color:var(--text); background:rgba(214,179,90,.12); border:1px solid rgba(214,179,90,.18)}

.nav__actions{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
  transition:.25s ease;
  border:1px solid transparent;
  user-select:none;
}
.btn--primary{
  background: linear-gradient(180deg, rgba(214,179,90,1), rgba(184,148,63,1));
  color:#141414;
  box-shadow: 0 14px 40px rgba(214,179,90,.22);
}
.btn--primary:hover{transform:translateY(-1px); filter:saturate(1.05)}
.btn--ghost{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(244,246,251,.92);
}
.btn--ghost:hover{border-color: rgba(214,179,90,.25); background: rgba(214,179,90,.06)}
.btn--full{width:100%}

.burger{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{display:block; height:2px; background:rgba(244,246,251,.85); margin:7px 9px; border-radius:4px}

/* Drawer */
.drawer{
  display:none;
  position:fixed;
  inset:0;
  z-index:900; /* under header (1000) */
  padding-top:76px; /* space for sticky header */
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  border-top:1px solid rgba(255,255,255,.06);
}
.drawer.open{display:block}
.drawer__inner{
  padding:16px 18px 24px;
  width:min(var(--max), 100%);
  margin:0 auto;
  height:calc(100vh - 76px);
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.drawer__link{
  display:block;
  padding:14px 12px;
  border-radius:14px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  margin-bottom:10px;
}
.drawer__link:active{transform:translateY(1px)}
.drawer__cta{display:grid; gap:10px; margin-top:14px}
.drawer__social{display:flex; gap:12px; margin-top:14px; flex-wrap:wrap}
.iconlink{display:flex; align-items:center; gap:10px; font-weight:600; font-size:13px; color:rgba(244,246,251,.85)}
.iconlink img{width:18px; height:18px; opacity:.95}

/* Hero */
.hero{position:relative; padding:72px 0 34px}
.hero__bg{
  position:absolute; inset:-200px -100px auto -100px; height:520px;
  background:
    radial-gradient(550px 300px at 20% 50%, rgba(214,179,90,.25), transparent 60%),
    radial-gradient(520px 280px at 80% 60%, rgba(214,179,90,.18), transparent 58%);
  filter: blur(2px);
  pointer-events:none;
}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:28px; align-items:start}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(214,179,90,.20);
  background: rgba(0,0,0,.22);
  color: rgba(244,246,251,.82);
  font-size:12px;
}
.dot{width:10px; height:10px; border-radius:50%; background: rgba(214,179,90,1); box-shadow: 0 0 0 6px rgba(214,179,90,.15)}

.hero__title{
  margin:16px 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.gold{color:var(--gold)}
.hero__text{margin:0; color:rgba(244,246,251,.80); font-size:15px; max-width:58ch}
.hero__cta{display:flex; gap:12px; margin:18px 0 18px; flex-wrap:wrap}

.hero__meta{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.metaCard{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.metaCard__kicker{font-size:11px; color:rgba(244,246,251,.62); margin-bottom:4px}
.metaCard__value{font-weight:700; font-size:14px}

.glassCard{
  border-radius: var(--radius2);
  border:1px solid rgba(214,179,90,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.glassCard:before{
  content:"";
  position:absolute; inset:-40px -50px auto auto;
  width:220px; height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(214,179,90,.28), transparent 60%);
  filter: blur(1px);
  transform: rotate(12deg);
}
.glassCard__top{display:flex; gap:12px; align-items:center; position:relative; z-index:1}
.avatar{width:64px; height:64px; border-radius:20px; position:relative; overflow:hidden}
.avatar img{width:100%; height:100%; object-fit:cover}
.avatar__ring{
  position:absolute; inset:-10px;
  border-radius:24px;
  border:2px solid rgba(214,179,90,.25);
  filter: blur(.2px);
  pointer-events:none;
}
.name{font-weight:800; letter-spacing:.2px}
.role{font-size:13px; color:rgba(244,246,251,.70); margin-top:2px}

.glassCard__list{margin:14px 0 16px; display:grid; gap:10px; position:relative; z-index:1}
.tick{font-weight:600; font-size:13px; color:rgba(244,246,251,.86); position:relative; padding-left:22px}
.tick:before{content:"✓"; position:absolute; left:0; top:0; color:var(--gold); font-weight:800}

.glassCard__buttons{display:grid; gap:10px; position:relative; z-index:1}
.glassCard__social{display:grid; gap:8px; margin-top:14px; position:relative; z-index:1}
.social{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  font-weight:600; font-size:13px; color:rgba(244,246,251,.86);
}
.social img{width:18px; height:18px}

.hero__bottom{margin-top:18px}
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  padding:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.22);
}
.stats__item{padding:10px 12px; border-radius:16px; border:1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.03)}
.stats__num{font-size:22px; font-weight:800; color:rgba(244,246,251,.94)}
.stats__label{font-size:12px; color:rgba(244,246,251,.66)}

/* Sections */
.section{padding:70px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 50%);
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section__head{margin-bottom:24px}
.section__title{margin:0; font-size:32px; letter-spacing:-.4px}
.section__lead{margin:10px 0 0; color:rgba(244,246,251,.76); max-width:78ch; font-size:14px}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.panel{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding:18px;
  box-shadow: var(--shadow2);
}
.panel__title{margin:0 0 10px; font-size:18px}
.panel__text{margin:0; color:rgba(244,246,251,.76); font-size:14px; line-height:1.65}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  font-size:12px;
  font-weight:700;
  color:rgba(244,246,251,.82);
}
.badge--gold{
  border-color: rgba(214,179,90,.22);
  background: rgba(214,179,90,.08);
  color: rgba(214,179,90,.96);
}

.checklist{display:grid; gap:10px}
.check{position:relative; padding-left:22px; color:rgba(244,246,251,.84); font-weight:600; font-size:13px}
.check:before{content:"•"; position:absolute; left:8px; top:-1px; color:var(--gold); font-weight:900}

.cards3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  padding:18px;
  box-shadow: var(--shadow2);
  transition:.25s ease;
}
.card:hover{transform:translateY(-2px); border-color: rgba(214,179,90,.20)}
.card__icon{font-size:22px}
.card__title{margin:10px 0 6px; font-size:17px}
.card__text{margin:0; color:rgba(244,246,251,.74); font-size:13px; line-height:1.6}

.note{
  margin-top:16px;
  border-radius: var(--radius2);
  border:1px solid rgba(214,179,90,.18);
  background: rgba(214,179,90,.06);
  padding:14px 16px;
}
.note__title{font-weight:800; color:rgba(214,179,90,.95); font-size:13px}
.note__text{margin-top:6px; color:rgba(244,246,251,.78); font-size:13px}

.steps{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.step{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.step__num{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  font-weight:900;
  color:rgba(214,179,90,.95);
  background: rgba(214,179,90,.08);
  border:1px solid rgba(214,179,90,.18);
}
.step__title{margin:12px 0 6px; font-size:17px}
.step__text{margin:0; color:rgba(244,246,251,.74); font-size:13px; line-height:1.6}

.quote{
  margin-top:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  padding:18px;
  display:flex; gap:14px;
  align-items:flex-start;
}
.quote__mark{font-size:44px; line-height:1; color:rgba(214,179,90,.9)}
.quote__text{font-weight:800; letter-spacing:-.2px; font-size:18px; color:rgba(244,246,251,.92)}

/* Pricing */
.pricing{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.priceCard{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  padding:18px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.priceCard--featured{
  border-color: rgba(214,179,90,.22);
  background: linear-gradient(180deg, rgba(214,179,90,.08), rgba(0,0,0,.22));
}
.ribbon{
  position:absolute; top:14px; right:-40px;
  transform: rotate(25deg);
  background: rgba(214,179,90,.95);
  color:#141414;
  font-weight:900;
  font-size:11px;
  padding:8px 50px;
  box-shadow: 0 12px 24px rgba(214,179,90,.18);
}
.priceCard__top{display:flex; justify-content:space-between; gap:12px; align-items:flex-start}
.priceCard__title{margin:0; font-size:18px}
.priceCard__price{font-weight:900; font-size:18px; text-align:right}
.muted{color:rgba(244,246,251,.64); font-weight:600; font-size:12px}

.priceCard__list{margin:14px 0 14px; display:grid; gap:10px}
.bullet{position:relative; padding-left:22px; font-weight:700; font-size:13px; color:rgba(244,246,251,.84)}
.bullet:before{content:"✓"; position:absolute; left:0; top:0; color:var(--gold); font-weight:900}

.priceCard__packs{
  margin:12px 0 14px;
  display:grid; gap:10px;
}
.pack{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  font-weight:800; font-size:13px;
}

.extras{margin-top:16px; display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.extras__card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding:18px;
  box-shadow: var(--shadow2);
}
.extras__card--thin{background: rgba(0,0,0,.22)}
.extras__title{margin:0 0 8px; font-size:16px}
.extras__text{margin:0; color:rgba(244,246,251,.76); font-size:13px; line-height:1.6}

/* Contact */
.contact{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.contact__card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  padding:18px;
  box-shadow: var(--shadow2);
}
.contact__title{font-weight:900; font-size:14px; color:rgba(244,246,251,.86)}
.contact__big{font-size:30px; font-weight:900; letter-spacing:-.4px; margin:8px 0}
.contact__small{color:rgba(244,246,251,.72); font-size:13px; line-height:1.6}
.contact__buttons{display:flex; gap:10px; margin:14px 0; flex-wrap:wrap}
.contact__social{display:grid; gap:10px}

.miniFaq{display:grid; gap:12px; margin-top:12px}
.miniFaq__q{font-weight:900; font-size:13px}
.miniFaq__a{margin-top:6px; color:rgba(244,246,251,.74); font-size:13px; line-height:1.6}

.footerMark{margin-top:16px; display:flex; gap:12px; align-items:center}
.footerMark img{width:44px; height:44px; object-fit:contain}
.footerMark__title{font-weight:900}
.footerMark__sub{font-size:12px; color:rgba(244,246,251,.70)}

.footer{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  color:rgba(244,246,251,.62);
  font-size:12px;
}
.toTop{font-weight:900; color:rgba(244,246,251,.82)}

/* Reveal animation */
.reveal{opacity:0; transform:translateY(14px); transition: .7s ease}
.reveal.visible{opacity:1; transform:translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .menu{display:none}
  .burger{display:inline-block}
  .hero__grid{grid-template-columns:1fr}
  .hero__title{font-size:38px}
  .stats{grid-template-columns: repeat(2, 1fr)}
  .grid2{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .extras{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
}


/* Lock page when mobile drawer is open */
body.drawer-open{overflow:hidden;}

/* === Mobile: większy odstęp między białym tytułem a złotą linijką (Hero) === */
@media (max-width: 640px){
  .hero__title .gold{
    display:block;
    margin-top: 14px; /* odstęp między "treningi piłkarskie" a "Skupienie..." */
    line-height: 1.12;
  }
}
