:root {
  --bg: #e8e4e1;
  --bg-alt: #ede9e7;
  --white: #ffffff;
  --ink: #0d0d0d;
  --ink-dark: #161a28;
  --ink-muted: #424242;
  --ink-secondary: #636363;
  --ink-gray: #757575;
  --orange: #ff4800;
  --orange-dark: #e04000;
  --teal: #368786;
  --teal-dark: #2d7372;
  --teal-light: rgba(54, 135, 134, 0.08);
  --yellow: #ffc84a;
  --line: rgba(13, 13, 13, 0.1);
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 24px 70px rgba(22, 26, 40, 0.1);
  --radius: 16px;
  --radius-lg: 20px;
  --header-h: 82px;
  --font-heading: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink-dark);
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ink-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.25rem; }
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1, h2 { font-family: var(--font-heading); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 1050px; text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
ul, ol { margin: 0; padding: 0; }

.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(720px, calc(100% - 48px)); }
.section { position: relative; padding: 100px 0; }

.section-label {
  display: block;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink-gray);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink-dark);
  border-radius: 10px;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.35s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 243, 241, 0.14);
  backdrop-filter: blur(7px) saturate(125%);
  -webkit-backdrop-filter: blur(7px) saturate(125%);
  border-color: rgba(13, 13, 13, 0.05);
  box-shadow: none;
}
.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav a,
.site-header.is-scrolled .nav-toggle { text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: flex-end; gap: 11px; text-decoration: none; font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; }
.brand-mark { display: inline-flex; }
.brand-mark img { height: 38px; width: auto; display: block; image-rendering: pixelated; }
.brand-fire { font-size: 1.15em; letter-spacing: 3px; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a { text-decoration: none; font-size: 0.93rem; font-weight: 700; }
.nav a:hover { color: var(--orange); }
.nav-extra { display: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle svg line { transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease; transform-box: fill-box; transform-origin: center; }
.nav-toggle[aria-expanded="true"] svg line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] svg line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 25px;
  border: 2px solid transparent;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 4px solid rgba(255, 72, 0, 0.24); outline-offset: 4px; }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 14px 34px rgba(255, 72, 0, 0.22); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 18px 40px rgba(255, 72, 0, 0.3); }
.button-dark { color: #fff; background: var(--ink-dark); }
.button-dark:hover { box-shadow: 0 14px 34px rgba(22, 26, 40, 0.2); }
.button-light { color: var(--ink-dark); background: var(--white); }
.button-light:hover { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14); }
.button-teal { color: #fff; background: var(--teal); }
.button-teal:hover { background: var(--teal-dark); box-shadow: 0 14px 34px rgba(54, 135, 134, 0.25); }
.button-small { min-height: 44px; padding: 11px 19px; font-size: 0.9rem; }
.button-large { min-height: 64px; padding: 18px 34px; }
.button-full { width: 100%; }
.text-link { font-weight: 700; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 5px; }

/* HERO */
.hero { position: relative; overflow: hidden; min-height: 720px; display: grid; align-items: center; margin-top: calc(var(--header-h) * -1); padding: calc(var(--header-h) + 76px) 0 88px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 100% 40%; z-index: 0; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(8, 26, 54, 0.62) 0%, rgba(8, 26, 54, 0.34) 44%, rgba(8, 26, 54, 0) 72%);
}
.hero-inner { position: relative; z-index: 2; text-align: left; display: flex; flex-direction: column; align-items: flex-start; color: #fff; }
.hero h1 { color: #fff; max-width: 640px; }
.hero .eyebrow {
  align-self: flex-start;
  margin-bottom: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.04em;
}
.accent-underline { position: relative; display: inline-block; z-index: 1; }
.accent-underline::after {
  content: "";
  position: absolute;
  left: 2%; right: -1%; bottom: 0.06em;
  height: 0.18em;
  background: var(--orange);
  border-radius: 50% 45% 55% 45%;
  transform: rotate(-1deg);
  z-index: -1;
  opacity: 0.9;
}
.hero-lead { max-width: 560px; margin: 26px 0 0; font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: rgba(255, 255, 255, 0.92); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero .text-link { color: #fff; text-decoration-color: var(--orange); }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 16px 44px rgba(8, 20, 44, 0.2);
}
.hero-meta-schedule {
  display: grid;
  gap: 6px;
}
.hero-meta-row {
  display: grid;
  grid-template-columns: 58px 56px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}
.hero-meta-format {
  display: grid;
  align-self: stretch;
  align-content: center;
  min-width: 118px;
  padding: 10px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-meta-label { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.72); }
.hero-meta-row strong,
.hero-meta-format strong { font-size: 1rem; line-height: 1.15; font-weight: 800; }
.hero-meta-row span:last-child { font-size: 1rem; line-height: 1.15; font-weight: 800; color: rgba(255, 255, 255, 0.94); }

/* SECTION 2 — MANIFEST */
.section-manifesto { background: linear-gradient(180deg, #eaf3fd 0%, #dcecfb 100%); color: var(--ink); text-align: center; }
.manifesto-head { position: relative; z-index: 20; max-width: 900px; margin: 0 auto; }
.section-manifesto h2 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); line-height: 1.05; }
.section-manifesto h2 .accent { color: var(--orange); }
.easter-trigger { position: relative; z-index: 21; display: inline-block; }
.easter-image {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 22;
  width: min(300px, 72vw);
  max-width: none;
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(16, 35, 61, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(0.98);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
@media (hover: hover) and (pointer: fine) {
  .easter-trigger:hover .easter-image { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
.manifesto-copy { position: relative; z-index: 1; max-width: 660px; margin: 40px auto 0; color: var(--ink); }
.manifesto-copy p { margin: 0 0 1.35rem; font-size: 1.32rem; line-height: 1.72; }
.manifesto-copy .lede { font-size: 1.32rem; line-height: 1.5; font-weight: 500; color: var(--ink); }
.manifesto-copy strong { color: var(--ink); font-weight: 700; }
.manifesto-kicker { margin: 76px 0 16px; font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.manifesto-gains { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.manifesto-gains li { padding: 34px 26px; border-radius: 18px; background: rgba(255, 255, 255, 0.72); box-shadow: 0 20px 50px rgba(16, 35, 61, 0.08); border: 1px solid rgba(255, 255, 255, 0.9); }
.manifesto-gains .g-t { font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; margin: 0 0 5px; color: var(--ink); }
.manifesto-gains .g-d { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--ink); }
.manifesto-closer { max-width: 760px; margin: 56px auto 44px; font-family: var(--font-heading); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); }

/* PDF DIAGNOSIS */
.section-pdf-diagnosis { background: #fff; color: var(--ink); }
.pdf-diagnosis-grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); gap: 72px; align-items: start; }
.pdf-diagnosis-copy { position: sticky; top: 112px; padding-top: 6px; }
.pdf-diagnosis-copy h2 { font-size: clamp(2.4rem, 4.8vw, 4.1rem); line-height: 1.05; }
.pdf-diagnosis-copy p { margin: 24px 0 0; color: var(--ink-muted); font-size: 1.12rem; line-height: 1.65; }
.pdf-diagnosis-list { border-top: 1px solid var(--line); }
.pdf-diagnosis-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.pdf-diagnosis-num { font-family: var(--font-heading); font-size: 2.8rem; line-height: 0.9; color: var(--orange); }
.pdf-diagnosis-item h3 { margin: 0; font-size: 1.24rem; }
.pdf-diagnosis-item p { margin: 10px 0 0; color: var(--ink-muted); line-height: 1.62; }
.pdf-diagnosis-cta { display: flex; justify-content: center; margin-top: 46px; }

/* SCROLL REVEAL (fallback: bez JS treść widoczna; wyłączone przy reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--rd, 0s);
    will-change: opacity, transform;
  }
  .js-reveal [data-reveal].is-in { opacity: 1; transform: none; }
}

/* SECTION HEADINGS */
.section-heading { margin-bottom: 52px; }
.stack-heading { max-width: 780px; }
.section-lead { margin: 22px 0 0; font-size: 1.1rem; line-height: 1.65; }
.centered-heading { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 660px; margin: 18px auto 0; color: var(--ink-muted); }

/* PROBLEM + SHIFT (jedna narracja: problem → teza → przed/po → efekt) */
.section-problem { background: var(--ink-dark); color: #fff; }
.section-problem .section-label { color: var(--yellow); }
.section-problem .section-lead { color: rgba(255, 255, 255, 0.74); }
.statement-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
}
.statement-card p { margin: 0; font-size: 1.08rem; line-height: 1.5; }
.statement-icon { font-size: 1.6rem; font-weight: 900; flex-shrink: 0; }

.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.comparison-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}
.comparison-card-after { background: rgba(54, 135, 134, 0.16); border-color: rgba(54, 135, 134, 0.45); }
.comparison-card h3 { margin: 18px 0 10px; font-size: 1.4rem; }
.comparison-card p { margin: 0; color: rgba(255, 255, 255, 0.7); }
.comparison-label { display: inline-flex; padding: 6px 11px; border-radius: 100px; background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-card-after .comparison-label { background: var(--teal); }
.comparison-arrow { align-self: center; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.4rem; font-weight: 800; flex-shrink: 0; }

.outcome-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.outcome-block .section-label { margin-bottom: 26px; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.outcome-grid article { padding-top: 20px; border-top: 2px solid var(--orange); }
.outcome-grid h3 { margin: 0 0 10px; }
.outcome-grid p { margin: 0; color: rgba(255, 255, 255, 0.68); }

/* DEMO */
.section-demo { background: var(--ink-dark); color: #fff; overflow: hidden; }
.section-demo .section-label { color: var(--yellow); }
.demo-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 76px; align-items: center; }
.demo-copy h2 { max-width: 540px; }
.demo-subhead { margin-top: 20px; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; color: #fff; }
.demo-body { max-width: 560px; margin-top: 22px; color: rgba(255, 255, 255, 0.9); line-height: 1.68; }
.demo-body + .demo-body { margin-top: 14px; }
.slack-shell {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 540px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  color: #1d1c1d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}
.slack-sidebar { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 18px 0; background: #3f0f3f; }
.slack-workspace { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: #611f69; color: #fff; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22); }
.slack-side-dot { width: 34px; height: 34px; border-radius: 9px; background: rgba(255, 255, 255, 0.18); }
.slack-side-dot.is-active { background: #2eb67d; }
.slack-panel { display: grid; grid-template-rows: auto 1fr auto; min-width: 0; background: #fff; }
.slack-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-bottom: 1px solid #ddd; }
.slack-header div { display: grid; gap: 2px; }
.slack-header strong { font-size: 1.04rem; }
.slack-header span { color: #616061; font-size: 0.82rem; }
.slack-header-action { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; background: #f8f8f8; color: #616061; font-size: 1.1rem; }
.slack-thread { display: grid; align-content: start; gap: 22px; padding: 24px 24px 18px; }
.slack-message { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.slack-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; color: #fff; font-weight: 800; }
.slack-avatar-user { background: #1264a3; }
.slack-avatar-agent { background: #2eb67d; }
.slack-author { margin: 0 0 5px; font-weight: 800; line-height: 1.2; }
.slack-author span { margin-left: 7px; color: #616061; font-size: 0.78rem; font-weight: 500; }
.slack-message p:not(.slack-author) { margin: 0; line-height: 1.48; color: #1d1c1d; }
.slack-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.slack-actions span { padding: 8px 11px; border: 1px solid #bbb; border-radius: 6px; background: #fff; color: #1264a3; font-size: 0.82rem; font-weight: 800; }
.slack-input { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 24px 24px; padding: 14px 16px; border: 1px solid #bbb; border-radius: 10px; color: #616061; }
.slack-input div { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 6px; background: #007a5a; color: #fff; font-weight: 800; font-size: 0.95rem; line-height: 1; transform: translateY(1px); }

/* AUTHOR */
.author-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.author-portrait { position: relative; }
.author-photo { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.section-author { background: #fff; }
.author-copy h2 { margin-bottom: 20px; }
.author-role { color: var(--ink-muted); }
.author-copy p { color: var(--ink-muted); }
blockquote {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(54, 135, 134, 0.06);
  border: 1px solid rgba(54, 135, 134, 0.12);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-dark);
}
blockquote strong { color: var(--orange); font-weight: 700; }

/* STEPS — trzy równorzędne kroki, żaden nie jest "wyróżniony" */
.section-steps { position: relative; overflow: hidden; background: #0c1830; color: #fff; }
.steps-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #0c1830 url("clouds-poster.jpg") center/cover no-repeat;
}
.section-steps::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8, 20, 44, 0.82) 0%, rgba(8, 20, 44, 0.68) 45%, rgba(8, 20, 44, 0.88) 100%);
}
.section-steps > .container { position: relative; z-index: 2; }

.section-steps .centered-heading h2 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; }
.steps-flow { margin: 12px 0 0; font-weight: 700; font-size: clamp(1.05rem, 1.7vw, 1.3rem); letter-spacing: -0.01em; color: #fff; }
.steps-flow span { color: var(--orange); margin: 0 6px; font-weight: 700; }
.section-steps .centered-heading > p:last-child { color: rgba(255, 255, 255, 0.78); }

.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; counter-reset: none; }
.step-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  color: #fff;
  box-shadow: 0 26px 60px rgba(4, 12, 30, 0.42);
}
.step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
}
.step-topline { border-bottom-color: rgba(255, 255, 255, 0.16); }
.step-topline span:first-child { color: rgba(255, 255, 255, 0.6); }
.step-topline span:last-child { color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.step-card h3 { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 400; line-height: 1.15; margin-bottom: 14px; color: #fff; }
.step-card > p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }
.section-steps .check-list li { color: rgba(255, 255, 255, 0.82); }
.section-steps .check-list li strong { color: #fff; }
.section-steps .card-note { border-top-color: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.62) !important; }

.section-steps .check-list { gap: 14px; margin-top: 26px; }
.check-list, .cross-list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.check-list li, .cross-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--orange); font-weight: 700; }
.cross-list li::before { content: "×"; position: absolute; left: 1px; top: -2px; color: var(--ink-gray); font-size: 1.2rem; font-weight: 700; }
.card-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-secondary) !important; }
.step-card .check-list + .card-note { margin-top: auto; }

/* QUALIFY STRIP — "dla kogo" jako kwalifikator, nie osobna sekcja */
.qualify-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.qualify-col { padding: 30px 32px; border-radius: var(--radius-lg); background: var(--bg); }
.qualify-col:first-child { background: var(--teal-light); border: 1px solid rgba(54, 135, 134, 0.16); }
.qualify-col:last-child { border: 1px solid var(--line); }
.qualify-label { display: block; margin-bottom: 4px; font-weight: 800; font-size: 1.05rem; }
.qualify-label-yes { color: var(--teal-dark); }
.qualify-label-no { color: var(--ink-gray); }
.qualify-col .check-list li, .qualify-col .cross-list li { color: var(--ink-muted); font-size: 0.97rem; }

/* AGENDA */
.section-agenda { background: var(--white); }
.agenda-columns { display: grid; grid-template-columns: 1fr; gap: 56px; max-width: 920px; margin: 0 auto; }
.agenda-part { min-width: 0; }
.agenda-part-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 0 0 18px; }
.agenda-part-head h3 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--ink-dark); }
.agenda-part-head span { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-gray); }
.agenda-list { border-top: 1px solid var(--line); }
.agenda-item { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.agenda-num { font-family: var(--font-heading); font-size: 2.25rem; line-height: 0.9; color: var(--orange); }
.agenda-item h3 { margin-bottom: 8px; font-size: 1.15rem; }
.agenda-item p { max-width: 720px; margin: 0; color: var(--ink-muted); }
.agenda-item .check-list { max-width: 760px; gap: 8px; margin-top: 14px; color: var(--ink-muted); }
.agenda-item .check-list li { padding-left: 24px; }

/* PRICING */
.section-pricing { overflow: hidden; background: linear-gradient(180deg, #eaf3fd 0%, #dcecfb 100%); color: #10233d; }
.pricing-glow { position: absolute; width: 520px; height: 520px; left: 50%; top: -260px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255, 72, 0, 0.14), transparent 68%); }
.pricing-heading { position: relative; z-index: 1; }
.pricing-heading .section-label { color: #5878a0; }
.pricing-heading > p:last-child { color: #3a5170; }
.pricing-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 960px; margin: 0 auto; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 36px; border-radius: var(--radius-lg); color: #10233d; backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%); box-shadow: 0 24px 60px rgba(16, 35, 61, 0.12); }
.price-card .button-full { margin-top: auto; }
.price-card-main { background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(255, 72, 0, 0.35); }
.price-card-plus { background: rgba(255, 255, 255, 0.42); border: 1px solid rgba(255, 255, 255, 0.85); }
.price-badge { position: absolute; top: -14px; left: 28px; padding: 8px 13px; border-radius: 100px; background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.price-badge-dark { color: #fff; background: var(--ink-dark); }
.price-card-header { display: flex; justify-content: space-between; gap: 20px; margin: 16px 0 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(16, 35, 61, 0.14); }
.price-name { margin: 0; font-size: 1.1rem; font-weight: 800; }
.price-slots { margin: 4px 0 0; font-size: 0.85rem; color: #5878a0; }
.price { display: grid; text-align: right; }
.price strong { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; line-height: 1; white-space: nowrap; }
.price span { font-size: 0.78rem; color: #5878a0; }
.price-card-lead { min-height: 86px; margin: 0 0 22px; padding: 0 0 22px; border-bottom: 1px solid rgba(16, 35, 61, 0.1); color: #2e4868; font-size: 1.05rem; line-height: 1.55; font-weight: 600; }
.price-section-title { margin: 0 0 10px; color: #10233d; font-size: 0.8rem; line-height: 1.2; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.price-list { margin-top: 0; margin-bottom: 26px; }
.price-list-main { min-height: 188px; }
.price-list-materials { min-height: 138px; }
.section-pricing .check-list li { color: #3a5170; }
.section-pricing .check-list li::before { color: var(--orange); }
.price-intro { color: #3a5170; }
.price-note { margin: 12px 0 0; text-align: center; font-size: 0.8rem; color: #5878a0; }
.price-note-light { color: #5878a0; }
.pricing-footnote { margin: 28px 0 0; text-align: center; color: #3a5170; font-size: 0.9rem; }
.pricing-footnote a { color: var(--orange); }

/* FAQ */
.section-faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 80px; }
.faq-intro { margin-top: 18px; color: var(--ink-muted); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 22px 52px 22px 0; list-style: none; cursor: pointer; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 16px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-alt); font-size: 1.3rem; font-family: var(--font-body); }
details[open] summary::after { content: "−"; background: var(--teal); color: #fff; }
details p { padding: 0 50px 22px 0; margin: 0; color: var(--ink-muted); }

/* FINAL CTA */
.final-cta { padding: 100px 0; text-align: center; overflow: hidden; background: var(--ink-dark); color: #fff; }
.final-cta-inner { max-width: 720px; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { text-wrap: balance; color: #fff; }
.final-cta .button { margin-top: 34px; }
.final-cta-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.final-cta p:not(.final-cta-lead) { max-width: 600px; margin: 22px auto 28px; color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; }
.final-flame { width: 48px; margin-bottom: 20px; color: var(--orange); }

/* FOOTER */
.site-footer { padding: 34px 0 100px; border-top: 1px solid rgba(255, 255, 255, 0.1); background: var(--ink-dark); color: rgba(255, 255, 255, 0.55); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand-text { display: grid; }
.footer-mark { height: 42px; width: auto; display: block; image-rendering: pixelated; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-inner p { margin: 0; }

/* MOBILE BUYBAR */
.mobile-buybar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 11px 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(22, 26, 40, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(22, 26, 40, 0.3);
  transform: translateY(120px);
  transition: transform 0.25s ease;
}
.mobile-buybar.is-visible { transform: translateY(0); }
.mobile-buybar div { display: grid; line-height: 1.15; }
.mobile-buybar span { font-size: 0.75rem; opacity: 0.6; }

/* THANK YOU */
.thank-you-page {
  min-height: 100vh;
  background: var(--ink-dark);
  color: #fff;
}
.thank-you-main {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  overflow: hidden;
}
.thank-you-bg,
.thank-you-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.thank-you-bg {
  object-fit: cover;
  object-position: 78% 44%;
  z-index: -3;
}
.thank-you-scrim {
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(8, 20, 43, 0.86), rgba(8, 20, 43, 0.55) 52%, rgba(8, 20, 43, 0.7)),
    radial-gradient(circle at 32% 24%, rgba(255, 72, 0, 0.24), transparent 34%);
}
.thank-you-panel {
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(11, 18, 32, 0.62);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
.thank-you-brand {
  display: inline-flex;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.thank-you-kicker {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.thank-you-panel h1 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(2.35rem, 7vw, 4.2rem);
}
.thank-you-copy {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.16rem);
}
.thank-you-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.thank-you-date {
  display: grid;
  gap: 4px;
  min-height: 130px;
  align-content: center;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}
.thank-you-date[hidden] { display: none; }
.thank-you-date span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}
.thank-you-date strong,
.thank-you-date time {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.1;
}
.thank-you-date time {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}
.thank-you-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}
.thank-you-actions .text-link {
  color: rgba(255, 255, 255, 0.86);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 980px) {
  /* Pływający szklany hamburger zamiast belki */
  .site-header.is-scrolled { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; box-shadow: none; }
  .site-header.is-hidden { transform: none; }
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(14, 18, 32, 0.5);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(6, 10, 24, 0.4);
    color: #fff;
    z-index: 130;
  }
  .nav {
    display: flex;
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    z-index: 120;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(14, 18, 32, 0.72);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 60px rgba(6, 10, 24, 0.45);
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav a {
    align-self: stretch;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #fff;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav.is-open a { opacity: 1; transform: none; }
  .nav.is-open a:nth-child(1) { transition-delay: 0.05s; }
  .nav.is-open a:nth-child(2) { transition-delay: 0.10s; }
  .nav.is-open a:nth-child(3) { transition-delay: 0.15s; }
  .nav.is-open a:nth-child(4) { transition-delay: 0.20s; }
  .nav.is-open a:nth-child(5) { transition-delay: 0.25s; }
  .nav a:hover, .nav a:active { color: var(--orange); }
  .nav-extra { display: block; }
  .header-cta { display: none; }
  .pdf-diagnosis-grid { grid-template-columns: 1fr; gap: 44px; }
  .pdf-diagnosis-copy { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card .check-list + .card-note { margin-top: 22px; }
  .demo-grid { grid-template-columns: 1fr; }
  .slack-shell { max-width: 720px; transform: none; }
  .qualify-strip, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 620px; }
  .price-list { min-height: 0; }
  .price-card-lead, .price-list-main, .price-list-materials { min-height: 0; }
  .author-grid { grid-template-columns: 250px 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  html { scroll-padding-top: 72px; }
  body { font-size: 16px; }
  .container, .narrow { width: min(100% - 28px, 1200px); }
  .section { padding: 72px 0; }
  .header-inner { height: 68px; }
  .brand { font-size: 0.9rem; }
  .brand-mark img { height: 32px; }
  .hero { min-height: 560px; padding: calc(var(--header-h) + 40px) 0 52px; }
  .hero::before { background: linear-gradient(165deg, rgba(6, 18, 40, 0.7) 0%, rgba(6, 18, 40, 0.62) 48%, rgba(6, 18, 40, 0.82) 100%); }
  .hero-inner { max-width: 100%; }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero .text-link { text-align: center; }
  .hero-meta { width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: stretch; gap: 8px; margin-top: 30px; padding: 8px; }
  .hero-meta-row { grid-template-columns: 50px 48px 1fr; gap: 8px; padding: 7px 9px; }
  .hero-meta-format { min-width: 92px; padding: 8px 10px; }
  .hero-meta-row strong, .hero-meta-format strong, .hero-meta-row span:last-child { font-size: 0.9rem; }
  .hero-meta-label { font-size: 0.68rem; }
  .manifesto-gains { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .outcome-grid { grid-template-columns: 1fr; gap: 24px; }
  .outcome-block { margin-top: 40px; padding-top: 32px; }
  .before-after { grid-template-columns: 1fr; }
  .comparison-arrow { transform: rotate(90deg); margin: -8px auto; }
  .statement-card { align-items: flex-start; }
  .pdf-diagnosis-item { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .pdf-diagnosis-num { font-size: 2.2rem; }
  .step-card, .qualify-col, .price-card { padding: 26px 22px; }
  .agenda-part-head { padding: 0 8px 14px; align-items: start; flex-direction: column; gap: 2px; }
  .agenda-item { grid-template-columns: 1fr; gap: 8px; padding: 24px 8px; }
  .agenda-num { font-size: 2rem; color: var(--orange); }
  .qualify-strip { margin-top: 44px; }
  .price-card-header { flex-direction: column; }
  .price { text-align: left; }
  .author-grid { grid-template-columns: 1fr; }
  .author-portrait { max-width: 210px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-links { flex-wrap: wrap; }
  .mobile-buybar { display: flex; }
  .site-footer { padding-bottom: 105px; }
  .thank-you-main { align-items: stretch; padding: 14px; }
  .thank-you-panel { display: grid; align-content: center; min-height: calc(100vh - 28px); padding: 30px 22px; }
  .thank-you-brand { margin-bottom: 38px; }
  .thank-you-dates { grid-template-columns: 1fr; }
  .thank-you-date { min-height: 108px; }
  .thank-you-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .thank-you-actions .button { width: 100%; }
  .thank-you-actions .text-link { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
