/* ============================================================
   Stołowi — wizytówka + podstrony aplikacji
   System wizualny oparty na PNS (light mode, granat #1a3a96)
   ============================================================ */

:root {
  --primary:        #1a3a96;
  --primary-dark:   #0f2a6e;
  --primary-tint:   #eef1fb;
  --bg:             #f7f8fc;
  --surface:        #ffffff;
  --border:         #e2e6f0;
  --border-strong:  #d3d9ea;
  --text:           #1a1c2e;
  --text-soft:      #5a6080;
  --text-faint:     #9099b8;
  --success:        #16a34a;
  --success-tint:   #e9f6ee;

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(26, 28, 46, 0.04);
  --shadow-md: 0 2px 8px rgba(26, 28, 46, 0.06), 0 1px 2px rgba(26, 28, 46, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 42, 110, 0.10), 0 2px 6px rgba(26, 28, 46, 0.05);

  --maxw: 1120px;
}

/* --------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
}

/* --------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 20px; border-radius: var(--r-md);
  border: 1px solid transparent; cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { padding: 10px 15px; font-size: 14px; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary { background: var(--surface); color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-tint); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: #fff; border-color: var(--text-faint); }

.btn-block { width: 100%; }

/* =============================================== TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 248, 252, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  flex: none;
}
.topbar-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px; background: var(--primary);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), var(--shadow-sm); flex: none;
}
.brand-mark .ball { width: 11px; height: 11px; border-radius: 50%; background: #fff; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; color: var(--text); }
.brand-name span { color: var(--text-faint); font-weight: 600; }

.topbar-nav { display: flex; align-items: center; gap: 8px; }
.topbar-link {
  font-size: 14px; font-weight: 500; color: var(--text-soft);
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: color .15s ease, background .15s ease;
  display: inline-flex; align-items: center; gap: 7px;
}
.topbar-link:hover { color: var(--text); background: #fff; }

/* =====================================================================
   STRONA GŁÓWNA — jednoekranowa wizytówka
   ===================================================================== */
.home { min-height: 100vh; display: flex; flex-direction: column; }
.home-main { flex: 1; display: flex; align-items: center; padding: 36px 0; }
.home-inner { width: 100%; }

.home-hero { text-align: center; max-width: 680px; margin: 0 auto 38px; }
.home-hero h1 {
  font-size: clamp(30px, 4.2vw, 44px); font-weight: 800; color: var(--text); margin-top: 14px;
}
.home-hero h1 .accent { color: var(--primary); }
.home-hero p { margin: 16px auto 0; font-size: 17px; color: var(--text-soft); max-width: 520px; }

/* dwie karty obok siebie, zwarte */
.home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }

.app-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 26px 26px 24px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.app-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--border-strong); }

.app-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.app-icon {
  width: 46px; height: 46px; border-radius: 11px; flex: none;
  background: var(--primary-tint); display: grid; place-items: center;
}
.app-icon svg { width: 28px; height: 28px; }
.app-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 11px;
  font-size: 11.5px; font-weight: 600; color: var(--primary); align-self: center;
}
.app-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

.app-name { font-size: 23px; font-weight: 800; margin-top: 18px; }
.app-name small { font-weight: 600; font-size: 13.5px; color: var(--text-faint); margin-left: 8px; letter-spacing: 0; }
.app-tagline { margin-top: 7px; color: var(--text-soft); font-size: 15px; }

.feature-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.feature-list li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--text); }
.feature-list .fi {
  flex: none; width: 19px; height: 19px; border-radius: 6px;
  background: var(--primary-tint); color: var(--primary);
  display: grid; place-items: center;
}
.feature-list .fi svg { width: 11px; height: 11px; }

.app-actions { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.app-actions .btn-primary { flex: 1; }
.app-detaillink {
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  transition: color .15s ease;
}
.app-detaillink:hover { color: var(--primary); }

/* =============================================== FOOTER */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); flex: none; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: 14px; }
.footer-brand .brand-mark { width: 26px; height: 26px; border-radius: 7px; }
.footer-brand .brand-mark .ball { width: 9px; height: 9px; }
.footer-meta { font-size: 13px; color: var(--text-faint); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 13.5px; color: var(--text-soft); transition: color .15s; }
.footer-links a:hover { color: var(--primary); }

/* =====================================================================
   PODSTRONA APLIKACJI (dedykowana)
   ===================================================================== */
.detail-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--border); }
.back-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 500; color: var(--text-soft); margin-bottom: 26px;
  transition: color .15s ease;
}
.back-link:hover { color: var(--primary); }

.detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
.detail-icon {
  width: 56px; height: 56px; border-radius: 13px; background: var(--primary-tint);
  display: grid; place-items: center; margin-bottom: 20px;
}
.detail-icon svg { width: 34px; height: 34px; }
.detail-hero h1 { font-size: clamp(32px, 4.6vw, 48px); font-weight: 800; }
.detail-hero h1 small { display: block; font-size: 16px; font-weight: 600; color: var(--text-faint); margin-top: 8px; letter-spacing: 0; }
.detail-lead { margin-top: 18px; font-size: 18px; color: var(--text-soft); max-width: 520px; }
.detail-who {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
}
.detail-who .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.detail-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.detail-url { font-size: 13px; color: var(--text-faint); display: inline-flex; gap: 7px; align-items: center; }
.detail-url code {
  font-family: "Inter", monospace; font-size: 12.5px; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 3px 8px;
}

.detail-visual {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 28px; position: relative;
}
.detail-visual .visual-label {
  position: absolute; top: 15px; left: 19px;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); font-weight: 600;
}
.detail-visual svg.big { width: 100%; height: auto; margin-top: 12px; }

/* sekcja funkcji */
.detail-features { padding: 54px 0 20px; }
.detail-features .section-head { max-width: 640px; margin-bottom: 32px; }
.detail-features .section-head h2 { font-size: clamp(24px, 3.2vw, 30px); font-weight: 800; margin-top: 10px; }
.detail-features .section-head p { margin-top: 10px; color: var(--text-soft); font-size: 16px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 22px 20px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature-card .fc-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--primary-tint);
  color: var(--primary); display: grid; place-items: center; margin-bottom: 14px;
}
.feature-card .fc-icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 16.5px; font-weight: 700; }
.feature-card p { margin-top: 7px; font-size: 14px; color: var(--text-soft); line-height: 1.5; }

/* lista formatów (Przy Stoliku) */
.format-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.format-item {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 15px 16px;
}
.format-item .fnum {
  flex: none; width: 26px; height: 26px; border-radius: 7px;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 13px;
  display: grid; place-items: center; font-family: var(--font-display);
}
.format-item h4 { font-size: 15px; font-weight: 700; }
.format-item p { font-size: 13px; color: var(--text-soft); margin-top: 3px; }

/* pasek CTA na dole podstrony */
.detail-cta-band { padding: 12px 0 64px; }
.cta-band-inner {
  background: var(--primary); border-radius: var(--r-lg); color: #fff;
  padding: 34px 38px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.cta-band-inner h3 { font-size: 22px; font-weight: 800; color: #fff; }
.cta-band-inner p { margin-top: 6px; color: rgba(255,255,255,0.78); font-size: 15px; }
.btn-on-primary { background: #fff; color: var(--primary); }
.btn-on-primary:hover { background: #eef1fb; }

/* =============================================== RESPONSIVE */
@media (max-width: 900px) {
  .home-grid { grid-template-columns: 1fr; max-width: 460px; }
  .home-main { padding: 28px 0; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-visual { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .format-list { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .app-actions { flex-direction: column; align-items: stretch; }
  .app-actions .app-detaillink { justify-content: center; padding-top: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   NAWIGACJA — przycisk wsparcia + menu mobilne
   ===================================================================== */
.nav-cta { gap: 7px; }
.nav-cta svg { width: 14px; height: 14px; }
.nav-toggle {
  display: none; width: 40px; height: 40px; flex: none;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); cursor: pointer; color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .topbar-nav {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); padding: 12px 24px 18px;
    display: none;
  }
  .topbar-nav.open { display: flex; }
  .topbar-nav .topbar-link { padding: 12px 10px; font-size: 15px; }
  .topbar-nav .nav-cta { margin-top: 8px; justify-content: center; }
}

/* =====================================================================
   STRONY TREŚCIOWE — wspólne
   ===================================================================== */
.page-hero { padding: 56px 0 46px; border-bottom: 1px solid var(--border); }
.page-hero.center { text-align: center; }
.page-hero .ph-inner { max-width: 700px; }
.page-hero.center .ph-inner { margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 46px); font-weight: 800; margin-top: 12px; }
.page-hero .lead { margin-top: 16px; font-size: 18px; color: var(--text-soft); }
.page-hero.center .lead { max-width: 560px; margin-left: auto; margin-right: auto; }

.section { padding: 54px 0; }
.section + .section { padding-top: 6px; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; margin-top: 10px; }
.section-head p { margin-top: 10px; color: var(--text-soft); font-size: 16px; }

/* placeholder graficzny (paski + monospace) */
.ph-box {
  background-color: #eef1f7;
  background-image: repeating-linear-gradient(135deg, #e3e7f1 0 11px, #eef1f7 11px 22px);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  display: grid; place-items: center; min-height: 260px;
  color: var(--text-faint); font-family: "Inter", monospace; font-size: 12.5px;
  letter-spacing: 0.04em; text-align: center; padding: 16px;
}
.ph-box span { background: rgba(255,255,255,0.7); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); }

.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* znaczniki statusu (beta / alfa / rozwój) */
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; border: 1px solid transparent; white-space: nowrap; line-height: 1;
}
.status-pill .sd { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.status-pill.beta { color: var(--primary); background: var(--primary-tint); border-color: #dfe5f8; }
.status-pill.beta .sd { background: var(--primary); }
.status-pill.alpha { color: #985908; background: #fdf3e6; border-color: #f1ddbe; }
.status-pill.alpha .sd { background: #db7e16; }
.status-pill.dev { color: var(--text-soft); background: var(--surface); border-color: var(--border-strong); }
.status-pill.dev .sd { background: var(--success); box-shadow: 0 0 0 3px rgba(22,163,74,0.16); }

.dev-status { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.head-tags { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.stage-line { margin-top: 16px; display: inline-flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.stage-line .txt { font-size: 13.5px; color: var(--text-soft); }

/* statusy ficzerów (roadmapa) */
.status-pill.done { color: #15803d; background: var(--success-tint); border-color: #cdeed7; }
.status-pill.done .sd { background: var(--success); }
.status-pill.prog { color: var(--primary); background: var(--primary-tint); border-color: #dfe5f8; }
.status-pill.prog .sd { background: var(--primary); }
.status-pill.plan { color: var(--text-soft); background: var(--bg); border-color: var(--border-strong); }
.status-pill.plan .sd { background: var(--text-faint); }
.status-pill.idea { color: var(--text-faint); background: transparent; border-style: dashed; border-color: var(--border-strong); }
.status-pill.idea .sd { background: var(--text-faint); }

/* =====================================================================
   WIZJA / ROADMAPA
   ===================================================================== */
.legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 22px; }
.legend .li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); }

.roadmap { position: relative; padding-left: 38px; margin-top: 6px; }
.roadmap::before { content: ""; position: absolute; left: 11px; top: 10px; bottom: 10px; width: 2px; background: var(--border); }

.milestone { position: relative; padding-bottom: 30px; }
.milestone:last-child { padding-bottom: 0; }
.ms-node {
  position: absolute; left: -38px; top: 20px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 12px;
  display: grid; place-items: center; box-shadow: 0 0 0 4px var(--bg); z-index: 1;
}
.milestone.future .ms-node { background: var(--surface); color: var(--text-faint); border: 2px solid var(--border-strong); box-shadow: 0 0 0 4px var(--bg); }

.ms-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 24px 26px;
}
.ms-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.ms-head h3 { font-size: 20px; font-weight: 800; margin-top: 6px; }
.ms-when {
  flex: none; font-size: 12px; font-weight: 600; color: var(--text-soft);
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; white-space: nowrap;
}
.ms-desc { margin-top: 10px; color: var(--text-soft); font-size: 14.5px; max-width: 60ch; }

.feat-list { margin-top: 18px; display: flex; flex-direction: column; }
.feat { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--border); }
.feat:first-child { border-top: none; padding-top: 4px; }
.feat .feat-status { flex: none; margin-top: 1px; min-width: 92px; }
.feat .feat-body { flex: 1; }
.feat .feat-body b { font-size: 15px; font-weight: 600; display: block; }
.feat .feat-body p { font-size: 13.5px; color: var(--text-soft); margin-top: 3px; }
.feat .feat-app {
  flex: none; align-self: center; font-size: 11px; font-weight: 600; color: var(--text-soft);
  background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 4px 9px; white-space: nowrap;
}
.feat .feat-app.pns { color: var(--primary); border-color: #dfe5f8; background: var(--primary-tint); }

.vision-cta { margin-top: 40px; }

@media (max-width: 620px) {
  .ms-head { flex-direction: column; gap: 8px; }
  .feat { flex-wrap: wrap; gap: 8px 12px; }
  .feat .feat-status { min-width: 0; }
  .feat .feat-app { order: 3; }
}

/* =====================================================================
   MENU LOGOWANIA (dropdown wyboru aplikacji)
   ===================================================================== */
.login-menu { position: relative; }
.login-btn { gap: 6px; }
.login-btn .caret { transition: transform .18s ease; }
.login-menu.open .login-btn .caret { transform: rotate(180deg); }
.login-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 252px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 60;
}
.login-menu.open .login-dropdown { display: block; }
.login-dropdown a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: var(--r-md); transition: background .14s ease; }
.login-dropdown a:hover { background: var(--bg); }
.login-dropdown .li-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--primary-tint); display: grid; place-items: center; flex: none; }
.login-dropdown .li-icon svg { width: 20px; height: 20px; }
.login-dropdown .li-txt b { font-size: 14px; display: block; color: var(--text); }
.login-dropdown .li-txt span { font-size: 12px; color: var(--text-soft); }
.nav-heart { display: inline-flex; align-items: center; gap: 6px; }
.nav-heart svg { color: var(--primary); flex: none; }

@media (max-width: 760px) {
  .login-menu { width: 100%; margin-top: 4px; }
  .login-btn { width: 100%; }
  .login-dropdown { position: static; box-shadow: none; border: none; padding: 6px 0 0; min-width: 0; }
  .nav-heart { padding: 12px 10px; }
}

/* =====================================================================
   CENNIK
   ===================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 30px 26px;
}
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.price-soon { background: #fbfcfe; }
.price-badge {
  position: absolute; top: -11px; left: 26px;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.price-badge.soon { background: var(--text-soft); }
.price-name { font-size: 19px; font-weight: 800; font-family: var(--font-display); }
.price-desc { margin-top: 6px; font-size: 14px; color: var(--text-soft); min-height: 40px; }
.price-amount { margin-top: 18px; display: flex; align-items: baseline; gap: 6px; }
.price-amount .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--text); letter-spacing: -0.03em; }
.price-amount .per { font-size: 14px; color: var(--text-faint); }
.price-features { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.price-features .fi { flex: none; width: 19px; height: 19px; border-radius: 6px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; margin-top: 1px; }
.price-features .fi svg { width: 11px; height: 11px; }
.price-features li.muted { color: var(--text-faint); }
.price-features li.muted .fi { background: var(--bg); color: var(--text-faint); }
.price-card .btn { margin-top: 26px; }

/* lista oczekujących */
.waitlist { background: var(--primary-tint); border: 1px solid #dfe5f8; border-radius: var(--r-lg); padding: 38px 32px; text-align: center; }
.waitlist h2 { font-size: 26px; font-weight: 800; }
.waitlist p { margin-top: 10px; color: var(--text-soft); max-width: 480px; margin-left: auto; margin-right: auto; }
.waitlist-form { display: flex; gap: 10px; max-width: 460px; margin: 22px auto 0; }
.waitlist-form input {
  flex: 1; padding: 13px 15px; border: 1px solid var(--border-strong);
  border-radius: var(--r-md); font: inherit; font-size: 15px; background: #fff; color: var(--text);
}
.waitlist-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,150,0.12); }
.waitlist .note { margin-top: 12px; font-size: 12.5px; color: var(--text-faint); }

/* =====================================================================
   O NAS — timeline, wartości, cytat
   ===================================================================== */
.timeline { position: relative; max-width: 660px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 3px solid var(--primary); box-shadow: 0 0 0 4px var(--bg); }
.tl-item .yr { color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }
.tl-item h4 { font-size: 17px; font-weight: 700; margin-top: 4px; }
.tl-item p { margin-top: 5px; color: var(--text-soft); font-size: 14.5px; }

.quote-band { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 38px 40px; }
.quote-band blockquote { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.3; letter-spacing: -0.02em; color: var(--text); }
.quote-band .by { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.quote-band .by .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-tint); border: 1px solid var(--border); flex: none; }
.quote-band .by .who b { display: block; font-size: 14.5px; }
.quote-band .by .who span { font-size: 13px; color: var(--text-soft); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* =====================================================================
   WSPARCIE — darowizny
   ===================================================================== */
.support-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.donate-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 30px; }
.donate-card .dc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.donate-card .dc-head .badge { width: 40px; height: 40px; border-radius: 11px; background: var(--success-tint); color: var(--success); display: grid; place-items: center; flex: none; }
.donate-card .dc-head .badge svg { width: 22px; height: 22px; }
.donate-card h3 { font-size: 19px; font-weight: 800; }
.donate-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.donate-row:last-child { border-bottom: none; }
.donate-row .k { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.donate-row .v { font-weight: 600; font-size: 15px; color: var(--text); margin-top: 3px; }
.donate-row .v.mono { font-family: "Inter", monospace; letter-spacing: 0.02em; }
.copy-btn {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--primary);
  background: var(--primary-tint); border: 1px solid #dfe5f8;
  border-radius: var(--r-sm); padding: 8px 12px; cursor: pointer; transition: background .15s ease;
}
.copy-btn:hover { background: #e3e9fb; }
.support-aside .ph-box { min-height: 180px; margin-bottom: 18px; }
.support-points { display: flex; flex-direction: column; gap: 14px; }
.support-points li { display: flex; gap: 12px; align-items: flex-start; }
.support-points .si { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; }
.support-points .si svg { width: 18px; height: 18px; }
.support-points b { font-size: 15px; }
.support-points p { font-size: 13.5px; color: var(--text-soft); margin-top: 2px; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .support-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 520px) {
  .waitlist-form { flex-direction: column; }
  .donate-row { flex-wrap: wrap; }
}
