/* ============================================================================
   challengeMe — system designu (dark premium + neonowa limonka)
   Spójny z aplikacją mobilną. Glassmorphism, gradienty, neonowe poświaty.
   ============================================================================ */

:root {
  --bg: #05070A;
  --bg-1: #0A0E0A;
  --bg-2: #0E140C;
  --surface: #10160F;
  --surface-2: #151B14;
  --border: #232E20;
  --border-soft: #1b241a;

  --lime: #C6FF3D;
  --lime-bright: #D4FF57;
  --lime-dim: #9FD62E;
  --lime-glow: rgba(198, 255, 61, 0.35);
  --lime-soft: rgba(198, 255, 61, 0.10);

  --cyan: #38E0D4;
  --violet: #A97BFF;
  --orange: #FF9F45;
  --flame: #FF7A3D;
  --pink: #FF6FB5;
  --gold: #FFCB45;

  --text: #F4FBEF;
  --text-soft: #C2CDBB;
  --text-muted: #7E8B78;
  --text-faint: #586155;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --maxw: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 24px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--lime); color: #05070A; }

/* Tło z aurą */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 40% at 75% -5%, rgba(198,255,61,0.14), transparent 60%),
    radial-gradient(50% 40% at 10% 5%, rgba(56,224,212,0.08), transparent 55%),
    radial-gradient(60% 50% at 50% 110%, rgba(169,123,255,0.08), transparent 60%);
  pointer-events: none; z-index: 0;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 64px 0; }

/* Typografia */
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; }
.display { font-size: clamp(40px, 7vw, 82px); font-weight: 900; letter-spacing: -0.03em; }
h2.title { font-size: clamp(30px, 4.5vw, 52px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--lime-soft); border: 1px solid var(--lime-glow); margin-bottom: 20px;
}
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--text-soft); max-width: 640px; }
.text-lime { color: var(--lime); }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Glass */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

/* Przyciski */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 16px; padding: 15px 26px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(120deg, var(--lime-bright), var(--lime-dim)); color: #05070A; box-shadow: 0 10px 30px rgba(198,255,61,0.28); }
.btn-primary:hover { box-shadow: 0 14px 40px rgba(198,255,61,0.45); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--lime-glow); color: var(--lime); }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* Nawigacja */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(5,7,10,0.6); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(5,7,10,0.85); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; letter-spacing: -0.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--lime-bright), var(--lime-dim)); color: #05070A; }
.brand em { color: var(--lime); font-style: normal; }
.brand-logo { height: 34px; width: auto; display: block; }
.auth-card .brand-logo, .sidebar .brand-logo { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-soft); font-weight: 600; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }

/* Hero */
.hero { padding: 60px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 34px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: var(--radius-pill); background: var(--surface-2); border: 1px solid var(--border); color: var(--text-soft); }
.chip svg { width: 15px; height: 15px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat b { display: block; font-size: 30px; font-weight: 900; color: var(--text); }
.hero-stat span { font-size: 13px; color: var(--text-muted); }

/* Mockup telefonu */
.phone {
  position: relative; width: 300px; margin: 0 auto; aspect-ratio: 300/620;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #1b241a, #0a0e0a);
  border: 1px solid var(--border); box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 60px rgba(198,255,61,0.12);
}
.phone::after { content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #05070A; border-radius: 16px; }
.phone-screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #16210f, #0a0e0a); }
.phone-hero-img { position: absolute; inset: 0; width: 100%; height: 46%; object-fit: cover; opacity: .9; }
.phone-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,10,.2), rgba(5,7,10,.1) 30%, var(--bg-1) 62%); }
.phone-ui { position: absolute; inset: 0; padding: 44px 16px 16px; display: flex; flex-direction: column; }
.pu-greet { font-size: 12px; color: var(--text-soft); }
.pu-title { font-size: 18px; font-weight: 900; margin-top: 2px; }
.pu-card { margin-top: auto; background: rgba(10,14,10,0.7); border: 1px solid var(--border); border-radius: 18px; padding: 14px; backdrop-filter: blur(6px); }
.pu-tag { font-size: 10px; font-weight: 800; color: #05070A; background: var(--lime); padding: 3px 9px; border-radius: 999px; display: inline-block; }
.pu-place { font-size: 15px; font-weight: 800; margin: 8px 0 2px; }
.pu-dist { font-size: 11px; color: var(--text-muted); }
.pu-reward { margin-top: 8px; font-size: 12px; color: var(--lime-bright); font-weight: 700; }
.pu-btn { margin-top: 10px; text-align: center; font-size: 12px; font-weight: 800; color: #05070A; background: linear-gradient(120deg, var(--lime-bright), var(--lime-dim)); padding: 9px; border-radius: 999px; }

/* Timeline "jak działa" */
.timeline { display: grid; gap: 18px; max-width: 760px; margin: 50px auto 0; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: flex-start; }
.tl-num { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-weight: 900; font-size: 20px;
  background: var(--lime-soft); color: var(--lime); border: 1px solid var(--lime-glow); }
.tl-item h3 { font-size: 19px; margin-bottom: 4px; }
.tl-item p { color: var(--text-muted); font-size: 15px; }
.tl-connector { grid-column: 1; width: 56px; display: grid; place-items: center; }
.tl-connector::before { content: ''; width: 2px; height: 22px; background: linear-gradient(var(--lime-glow), transparent); }

/* Karty ficzerów */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); border-color: var(--lime-glow); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--lime-soft); color: var(--lime); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 15px; }

/* Sekcja partnerów: model płatności */
.pay-model { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; }
.pay-x { text-align: center; padding: 22px; border-radius: var(--radius); border: 1px dashed var(--border); color: var(--text-muted); }
.pay-x b { display: block; font-size: 17px; color: var(--text); margin-bottom: 4px; }
.pay-ok { background: var(--lime-soft); border: 1px solid var(--lime-glow); }
.pay-ok b { color: var(--lime); }

/* Karty przykładowych wyzwań (jak ekrany apki) */
.challenge-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(180deg, #16210f, #0d130c); transition: transform .25s, border-color .25s;
}
.challenge-card:hover { transform: translateY(-6px); border-color: var(--lime-glow); }
.cc-media { height: 150px; position: relative; overflow: hidden; }
.cc-media img { width: 100%; height: 100%; object-fit: cover; }
.cc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13,19,12,0.95)); }
.cc-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-weight: 800; color: #05070A; background: var(--lime); padding: 5px 11px; border-radius: 999px; }
.cc-body { padding: 18px; }
.cc-body h3 { font-size: 17px; }
.cc-meta { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 13px; margin-top: 6px; }
.cc-reward { margin-top: 12px; color: var(--lime-bright); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; }

/* Formularz */
.form-card { max-width: 760px; margin: 0 auto; padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--text-soft); }
.field input, .field select, .field textarea {
  background: var(--bg-1); border: 1px solid var(--border); border-radius: 14px; padding: 13px 15px;
  color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px var(--lime-soft); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.alert { padding: 14px 16px; border-radius: 14px; font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.alert-ok { background: rgba(52,227,155,0.12); border: 1px solid rgba(52,227,155,0.4); color: #7ef0be; }
.alert-err { background: rgba(255,90,90,0.12); border: 1px solid rgba(255,90,90,0.4); color: #ff9a9a; }

/* FAQ */
.faq { max-width: 820px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); cursor: pointer;
  font-size: 18px; font-weight: 700; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q span.ic { transition: transform .25s; color: var(--lime); font-size: 24px; }
.faq-item.open .faq-q span.ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 22px; }

/* CTA baner */
.cta-band { text-align: center; padding: 60px 30px; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: linear-gradient(120deg, #1c2a12, #0d130c); border: 1px solid var(--lime-glow); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% 0%, rgba(198,255,61,0.18), transparent 60%); }

/* Sekcja QR / pobierz */
.qr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 300px)); gap: 22px; justify-content: center; margin-top: 44px; }
.qr-card { padding: 26px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: transform .25s, border-color .25s, box-shadow .25s; }
.qr-card:hover { transform: translateY(-6px); border-color: var(--lime-glow); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.qr-os { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 17px; }
.qr-tile { width: 190px; height: 190px; background: #fff; border-radius: 18px; display: grid; place-items: center; padding: 12px; }
.qr-tile canvas, .qr-tile img { width: 100% !important; height: 100% !important; }
.qr-soon { width: 190px; height: 190px; border-radius: 18px; display: grid; place-items: center; text-align: center; padding: 16px;
  background: var(--surface-2); border: 1px dashed var(--border); color: var(--text-muted); font-size: 13px; font-weight: 600; }

/* Stopka */
.footer { border-top: 1px solid var(--border-soft); padding: 60px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.footer a { display: block; color: var(--text-soft); font-size: 15px; padding: 5px 0; }
.footer a:hover { color: var(--lime); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; color: var(--text-muted); font-size: 14px; flex-wrap: wrap; gap: 10px; }
.demo-tag { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--gold); background: rgba(255,203,69,0.12); border: 1px solid rgba(255,203,69,0.35); padding: 2px 8px; border-radius: 999px; text-transform: uppercase; }

/* Animacje reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }

/* Responsywność */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 6px;
    background: rgba(5,7,10,0.97); border-bottom: 1px solid var(--border); padding: 16px 24px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .form-grid, .pay-model, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

/* ============================================================================
   PREMIUM v2 — dopracowanie wizualne (nadpisuje wcześniejsze reguły)
   ============================================================================ */
:root { --nav-h: 86px; }

/* Typografia — więcej oddechu */
body { letter-spacing: -0.01em; }
.section { padding: 128px 0; }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; color: var(--text-soft); }
h2.title { line-height: 1.08; }
.eyebrow { letter-spacing: 0.16em; }

/* Nawigacja + LOGO (znacznie większe) */
.nav-inner { height: var(--nav-h); }
.brand-logo { height: 52px; }
.nav.scrolled .brand-logo { height: 46px; transition: height .3s ease; }
.brand-logo { transition: height .3s ease, filter .3s ease; filter: drop-shadow(0 4px 18px rgba(198,255,61,0.18)); }
.brand:hover .brand-logo { filter: drop-shadow(0 6px 26px rgba(198,255,61,0.4)); }
.nav-links a { position: relative; }
.nav-links a::after { content:''; position:absolute; left:0; right:100%; bottom:-6px; height:2px; border-radius:2px; background:var(--lime); transition:right .28s ease; }
.nav-links a:hover::after { right:0; }

/* Przyciski — premium */
.btn { transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .25s, border-color .25s; }
.btn-primary { position: relative; box-shadow: 0 8px 24px rgba(198,255,61,0.22); }
.btn-primary::before { content:''; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(120deg,#E4FF8A,#B6EE3C); opacity:0; transition:opacity .25s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(198,255,61,0.5); }
.btn-primary:hover::before { opacity:1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost { backdrop-filter: blur(10px); background: rgba(255,255,255,0.035); }
.btn-ghost:hover { transform: translateY(-3px); background: rgba(198,255,61,0.06); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }

/* HERO pełnoekranowy */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 28px) 0 72px; margin-top: calc(-1 * var(--nav-h)); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-img { position: absolute; top: -6%; left: 0; width: 100%; height: 112%; object-fit: cover; object-position: 60% 42%; will-change: transform; }
.hero-fade { position: absolute; inset: 0; background:
   linear-gradient(180deg, rgba(5,7,10,0.55) 0%, rgba(5,7,10,0.18) 26%, rgba(5,7,10,0.45) 62%, rgba(5,7,10,0.9) 88%, var(--bg) 100%); }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(130% 90% at 78% 24%, transparent 38%, rgba(5,7,10,0.55) 100%); }
.hero-light { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.hero-light.a { width: 460px; height: 460px; top: 8%; right: 12%; background: radial-gradient(circle, rgba(198,255,61,0.22), transparent 62%); animation: floatA 12s ease-in-out infinite; }
.hero-light.b { width: 380px; height: 380px; bottom: 6%; left: 4%; background: radial-gradient(circle, rgba(56,224,212,0.14), transparent 60%); animation: floatB 15s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translate(0,0); opacity:.9 } 50% { transform: translate(-24px,26px); opacity:1 } }
@keyframes floatB { 0%,100% { transform: translate(0,0) } 50% { transform: translate(30px,-20px) } }
.hero .container { position: relative; z-index: 2; }
.hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 48px; }
.display { font-size: clamp(44px, 6.4vw, 76px); line-height: 1.02; text-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.hero-copy .lead { color: var(--text); text-shadow: 0 2px 20px rgba(0,0,0,0.55); }
.hero-cta .btn { padding: 17px 30px; }
.hero-stats { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px; }

/* Wejście hero */
.hero-in { opacity: 0; transform: translateY(22px); animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-in.i1 { animation-delay:.05s } .hero-in.i2 { animation-delay:.16s } .hero-in.i3 { animation-delay:.28s } .hero-in.i4 { animation-delay:.4s } .hero-in.i5 { animation-delay:.52s }
@keyframes heroIn { to { opacity:1; transform:none } }

/* Telefon — wierny ekran Start */
.phone { width: 320px; aspect-ratio: 320/660; border-radius: 52px; padding: 13px;
  background: linear-gradient(160deg, #222c1f, #0a0e0a); border: 1px solid #2c3a26;
  box-shadow: 0 50px 110px rgba(0,0,0,0.65), 0 0 80px rgba(198,255,61,0.14); }
.phone::after { width: 128px; height: 30px; top: 22px; }
.phone-screen { border-radius: 42px; }
.ps-hero { position: relative; height: 52%; overflow: hidden; }
.ps-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ps-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,10,.15), rgba(5,7,10,.05) 40%, var(--bg-1) 96%); }
.ps-top { position: absolute; top: 44px; left: 16px; right: 16px; display:flex; justify-content:space-between; align-items:flex-start; z-index:2; }
.ps-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(120deg,var(--lime-bright),var(--lime-dim)); display:grid; place-items:center; font-weight:900; color:#05070A; font-size:14px; border:2px solid rgba(255,255,255,.4); }
.ps-flame { display:inline-flex; align-items:center; gap:5px; background:linear-gradient(120deg,#FFB347,#FF6B35); color:#fff; font-weight:800; font-size:12px; padding:5px 9px; border-radius:11px; }
.ps-greet-wrap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; }
.ps-greet { font-size: 12px; color: var(--text-soft); }
.ps-q { font-size: 17px; font-weight: 900; margin-top: 2px; }
.ps-chips { display:flex; gap:7px; margin-top:9px; }
.ps-chip { font-size:11px; font-weight:800; padding:5px 10px; border-radius:999px; background:rgba(198,255,61,0.12); border:1px solid rgba(198,255,61,0.3); color:var(--lime-bright); display:inline-flex; align-items:center; gap:4px; }
.ps-body { padding: 14px 16px 16px; }
.ps-card { background: linear-gradient(180deg,#1d2a12,#141b10); border:1px solid #2a3626; border-radius:18px; padding:14px; }
.ps-tag { font-size:10px; font-weight:800; color:var(--lime); background:var(--lime-soft); border:1px solid var(--lime-glow); padding:3px 9px; border-radius:999px; display:inline-block; }
.ps-place-row { display:flex; align-items:center; gap:10px; margin-top:10px; }
.ps-pin { width:38px; height:38px; border-radius:999px; background:var(--lime-soft); display:grid; place-items:center; flex:none; }
.ps-place { font-size:15px; font-weight:900; }
.ps-dist { font-size:11px; color:var(--text-muted); margin-top:1px; }
.ps-plogo { width:40px; height:40px; border-radius:999px; background:rgba(52,227,155,0.16); border:1.5px solid rgba(52,227,155,0.4); color:#34E39B; display:grid; place-items:center; font-weight:900; font-size:13px; flex:none; margin-left:auto; }
.ps-reward { margin-top:11px; display:inline-flex; align-items:center; gap:7px; background:var(--lime-soft); border-radius:10px; padding:8px 11px; color:var(--lime-bright); font-weight:800; font-size:12px; }
.ps-btn { margin-top:11px; text-align:center; font-size:13px; font-weight:900; color:#05070A; background:linear-gradient(120deg,var(--lime-bright),var(--lime-dim)); padding:11px; border-radius:999px; }
.ps-streak { margin-top:12px; display:flex; justify-content:space-between; }
.ps-day { display:flex; flex-direction:column; align-items:center; gap:5px; }
.ps-dot { width:22px; height:22px; border-radius:50%; display:grid; place-items:center; }
.ps-dot.on { background:linear-gradient(120deg,var(--lime-bright),var(--lime-dim)); color:#05070A; font-weight:900; font-size:12px; }
.ps-dot.off { background:var(--surface-2); border:1px solid var(--border); }
.ps-day span { font-size:9px; color:var(--text-muted); font-weight:700; }

/* Karty — glassmorphism premium */
.card, .challenge-card, .qr-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
}
.card:hover, .challenge-card:hover, .qr-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime-glow);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(198,255,61,0.25), 0 0 40px rgba(198,255,61,0.12);
}
.card-icon { border: 1px solid var(--lime-glow); box-shadow: 0 0 20px rgba(198,255,61,0.12); }

/* Timeline — subtelny akcent */
.tl-num { box-shadow: 0 0 24px rgba(198,255,61,0.12); }

/* Sekcje — delikatne tła / separacja */
.section + .section { border-top: 1px solid rgba(255,255,255,0.04); }

/* CTA band mocniejszy */
.cta-band { border-color: rgba(198,255,61,0.3); box-shadow: 0 30px 70px rgba(0,0,0,0.4), inset 0 0 60px rgba(198,255,61,0.06); }

/* Responsywność premium */
@media (max-width: 980px) {
  .hero { min-height: auto; padding: calc(var(--nav-h) + 32px) 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy .hero-badges, .hero-copy .hero-cta, .hero-copy .hero-stats { justify-content: center; }
  .hero-visual { order: 2; }
  .hero-stats { border-top: none; padding-top: 8px; }
  .brand-logo { height: 44px; }
}
@media (max-width: 560px) {
  .section { padding: 84px 0; }
  .phone { width: min(300px, 82vw); }
  .display { font-size: clamp(38px, 11vw, 52px); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .qr-grid { grid-template-columns: 1fr; }
}
