/* Ezostylia — wspólny stylesheet dla stron statycznych HTML (SEO-friendly, no JS) */
:root {
  --bg-0: #08040f;
  --bg-1: #12081e;
  --bg-2: #1d0f2e;
  --card: #1a0e2b;
  --card-hi: #241338;
  --accent: #ec3785;
  --accent-hi: #ff5ba0;
  --gold: #d4af6b;
  --gold-hi: #e7c384;
  --text: #f7f0ff;
  --muted: #a89bc2;
  --border: rgba(212, 175, 107, 0.18);
  --border-hi: rgba(236, 55, 133, 0.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(236,55,133,0.10), transparent 55%),
    radial-gradient(ellipse at 85% 60%, rgba(80,30,140,0.22), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(212,175,107,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 60%, var(--bg-0) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding: 24px 16px 80px;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55), transparent 55%),
    radial-gradient(1px 1px at 78% 30%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(1px 1px at 33% 66%, rgba(255,255,255,0.5), transparent 55%),
    radial-gradient(1.5px 1.5px at 58% 80%, rgba(255,255,255,0.6), transparent 55%),
    radial-gradient(1px 1px at 90% 92%, rgba(255,255,255,0.4), transparent 55%);
  pointer-events: none; opacity: 0.55; z-index: 0;
}
main { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.cover {
  padding: 80px 40px 90px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(236,55,133,0.22), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(212,175,107,0.16), transparent 55%),
    linear-gradient(160deg, #1e0d38 0%, #100722 50%, #240f3f 100%);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: center; margin-bottom: 24px; position: relative;
}
.cover-sm { padding: 60px 30px 70px; }
.eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 30px; opacity: 0.9;
}
.cover h1 {
  font-size: clamp(32px, 5.5vw, 58px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 22px;
  background: linear-gradient(180deg, #fff, #d4af6b 70%, #ec3785);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cover .sub {
  color: var(--muted); font-size: clamp(15px, 1.5vw, 18px);
  max-width: 720px; margin: 0 auto 24px; line-height: 1.7;
}
.date {
  display: inline-block; padding: 10px 22px;
  border: 1px solid var(--gold); border-radius: 100px;
  color: var(--gold-hi); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
}

/* HIT 2026 badge — pulsujący, przyciąga uwagę, sygnalizuje świeżość */
.hit-badge {
  position: absolute;
  top: 22px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff3366, #ffb03a);
  color: #1a0510;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 51, 102, 0.55);
  animation: hit-pulse 2.2s ease-in-out infinite;
  z-index: 3;
}
.hit-badge::before {
  content: "🔥"; font-size: 14px; filter: none;
}
@keyframes hit-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(255, 51, 102, 0.55); }
  50%      { transform: scale(1.06); box-shadow: 0 0 34px rgba(255, 51, 102, 0.85); }
}
@media (max-width: 640px) {
  .hit-badge { top: 14px; right: 14px; padding: 6px 12px; font-size: 10px; }
}
.toolbar {
  position: sticky; top: 12px; z-index: 20;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  padding: 12px 16px; margin-bottom: 30px;
  background: rgba(20, 10, 40, 0.65);
  border: 1px solid var(--border); border-radius: 100px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.tbtn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  background: linear-gradient(135deg, #ec3785, #a01f60);
  color: white; border: none; font-weight: 600; font-size: 13px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(236, 55, 133, 0.35);
}
.tbtn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(236, 55, 133, 0.55); }
.tbtn.ghost {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); box-shadow: none;
}
.tbtn.ghost:hover { background: rgba(212, 175, 107, 0.10); }

section {
  padding: 44px 40px; border-radius: 24px;
  background: linear-gradient(180deg, var(--card) 0%, var(--card-hi) 100%);
  border: 1px solid var(--border); margin-bottom: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3); position: relative;
}
.num {
  display: inline-block; font-family: "SF Mono", ui-monospace, monospace;
  color: var(--gold-hi); font-size: 13px; letter-spacing: 3px;
  margin-bottom: 14px; font-weight: 700;
}
h2 {
  font-size: clamp(22px, 3.2vw, 34px); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 18px;
  background: linear-gradient(90deg, #fff 30%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
h3 {
  color: var(--accent-hi); font-size: 14px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 12px;
}
h4 { color: var(--gold-hi); font-size: 17px; margin-bottom: 6px; font-weight: 700; }
p { color: var(--text); font-size: 15.5px; margin-bottom: 14px; line-height: 1.75; }
p.lead { color: var(--muted); font-size: 17px; margin-bottom: 28px; max-width: 780px; }
p.footnote {
  color: var(--muted); font-size: 12px; margin-top: 22px; font-style: italic;
  padding-top: 16px; border-top: 1px solid var(--border); line-height: 1.6;
}
.card ul, section > ul, .terms ul { list-style: none; padding: 0; }
.card ul li, section > ul li, .terms ul li {
  padding: 8px 0 8px 22px; color: var(--text); font-size: 15px;
  position: relative; line-height: 1.65;
}
.card ul li::before, section > ul li::before, .terms ul li::before {
  content: "◆"; color: var(--gold); position: absolute; left: 0; font-size: 10px; top: 12px;
}
.grid-3, .grid-2 { display: grid; gap: 22px; margin: 18px 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: rgba(29, 15, 46, 0.6); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { border-color: var(--border-hi); transform: translateY(-2px); }

.person-card { text-align: center; }
.avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: "Noto Serif", serif; font-size: 40px; font-weight: 800;
  color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  box-shadow: 0 8px 24px rgba(236, 55, 133, 0.35);
}

.timeline { margin-top: 20px; }
.tl-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: "SF Mono", monospace; color: var(--gold-hi);
  font-size: 13px; letter-spacing: 2px; font-weight: 700;
  padding-top: 4px;
}
@media (max-width: 640px) {
  .tl-item { grid-template-columns: 1fr; gap: 4px; }
}

.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 22px 0;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  padding: 26px 28px; border-radius: 16px;
  background: rgba(29, 15, 46, 0.6); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--border-hi); }
.contact-item .lbl { color: var(--gold-hi); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.contact-item a {
  color: white; font-size: 22px; font-weight: 700; text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent-hi); }
.contact-item .note { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.5; }

.terms h3 { margin-top: 30px; font-size: 12px; }
.terms h4 { color: var(--accent-hi); font-size: 16px; margin: 20px 0 8px; }
.terms p { font-size: 14.5px; color: var(--muted); }
.terms strong { color: var(--gold-hi); }

.cta {
  padding: 60px 40px; border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(236,55,133,0.30), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,107,0.20), transparent 50%),
    linear-gradient(160deg, #2c1146 0%, #100722 60%, #341550 100%);
  border: 1px solid var(--border-hi); text-align: center;
  box-shadow: 0 30px 80px rgba(236, 55, 133, 0.15);
}
.cta .star { font-size: 48px; color: var(--gold); margin-bottom: 20px; filter: drop-shadow(0 0 20px rgba(212, 175, 107, 0.5)); }
.cta h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 22px; }

@media print {
  body { background: white; color: black; padding: 0; }
  body::before { display: none; }
  .toolbar { display: none !important; }
  section, .cover, .cta { background: white !important; color: black !important; border: 1px solid #ccc; box-shadow: none; page-break-inside: avoid; margin-bottom: 20px; }
  h1, h2 { color: #4a1b3d !important; -webkit-text-fill-color: #4a1b3d !important; background: none !important; }
  h3 { color: #a13c6f !important; }
  p, li, td, th { color: #222 !important; }
  .card { background: #faf5ec !important; color: #222 !important; border-color: #d4af6b !important; }
}
@media (max-width: 640px) {
  section, .cover, .cta { padding: 32px 20px; border-radius: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   PAYWALL / PREMIUM UNLOCK (Freemium — wersja demo → pełna)
   ═══════════════════════════════════════════════════════════ */

.paywall-cta {
  position: relative;
  margin: 32px 0;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(232, 158, 46, 0.08) 0%, rgba(215, 68, 138, 0.08) 100%);
  border: 1px solid var(--gold-lo);
  border-radius: 16px;
  text-align: center;
}
.paywall-cta::before {
  content: "🔒";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--gold-lo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.paywall-cta .badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232, 158, 46, 0.15);
  border: 1px solid var(--gold-lo);
  border-radius: 999px;
  color: var(--gold-hi);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.paywall-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-hi);
  margin: 8px 0 12px;
}
.paywall-cta .price {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin: 12px 0;
  font-family: 'Cormorant Garamond', serif;
}
.paywall-cta .price small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}
.paywall-cta .features {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
  color: var(--muted);
  font-size: 15px;
}
.paywall-cta .features li {
  padding: 6px 0 6px 26px;
  position: relative;
}
.paywall-cta .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-hi);
  font-weight: 700;
}

.premium-content {
  position: relative;
  max-height: 220px;
  overflow: hidden;
  margin-top: 16px;
  padding-bottom: 60px;
}
.premium-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 90%);
  pointer-events: none;
}
.premium-content.unlocked { max-height: none; }
.premium-content.unlocked::after { display: none; }

.demo-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(215, 68, 138, 0.12);
  border: 1px solid rgba(215, 68, 138, 0.35);
  color: var(--accent-hi);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
