/* ============================================================
   NarRacja — landing v2 (world-class)
   Design tokens zgodne z buttondown_template.html
   ============================================================ */

:root {
  --bg: #f0eeea;
  --bg-card: #ffffff;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-soft: #2a2620;
  --ink-muted: #5a5348;
  --ink-faint: #9a9488;
  --line: #e0dcd2;
  --line-strong: #c4beae;
  --accent: #a63226;
  --accent-soft: #c06000;

  --serif: 'Source Serif 4', 'Georgia', 'Times New Roman', serif;
  --display: 'Newsreader', 'Georgia', 'Times New Roman', serif;  /* v3.10 — spójność z masthead maila */
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --w-narrow: 720px;
  --w-wide: 980px;
  --w-cards: 1080px;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  --t: 0.18s cubic-bezier(.4,.0,.2,1);
  --t-slow: 0.5s cubic-bezier(.4,.0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }

body {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   SCROLL PROGRESS — pionowy sidebar (5 kolorów spektrum, statyczny)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 3px;
  height: 240px;
  z-index: 200;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scroll-progress span {
  flex: 1 1 0;
  border-radius: 2px;
  opacity: 0.18;
  transition: opacity 0.4s ease;
}

.scroll-progress span:nth-child(1) { background: #C53052; }
.scroll-progress span:nth-child(2) { background: #5A6470; }
.scroll-progress span:nth-child(3) { background: #1F3878; }
.scroll-progress span:nth-child(4) { background: #1F5634; }
.scroll-progress span:nth-child(5) { background: #5B3F8F; }

.scroll-progress span.active { opacity: 1; }

@media (max-width: 720px) {
  .scroll-progress { display: none; }
}

/* ============================================================
   TOP NAV
   ============================================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 238, 234, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}

.topnav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(240, 238, 234, 0.95);
}

.topnav-spectrum {
  display: flex;
  width: 100%;
  height: 0;
  transition: height var(--t-slow);
}

.topnav.scrolled .topnav-spectrum {
  height: 2px;
}

.topnav-spectrum span {
  flex: 1 1 0;
  height: 100%;
}

.topnav-inner {
  max-width: var(--w-cards);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.topnav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topnav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t);
}

.topnav-links a:hover { color: var(--accent); }

.topnav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: background var(--t);
}

.topnav-cta:hover { background: var(--accent); color: var(--bg) !important; }

@media (max-width: 720px) {
  .topnav-links a:not(.topnav-cta) { display: none; }
  .topnav-inner { padding: 10px 18px; }
}

/* ============================================================
   LAYOUT — main + section base
   ============================================================ */
main {
  max-width: var(--w-cards);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
section:last-of-type { border-bottom: none; }

@media (max-width: 720px) {
  main { padding: 0 18px; }
  section { padding: 64px 0; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: var(--ink);
}

h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 720px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

h4 {
  font-size: 17px;
  font-weight: 600;
}

p {
  color: var(--ink-soft);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

p strong { color: var(--ink); font-weight: 600; }

.section-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-lede {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.55;
  font-style: italic;
}

/* Krótkie kapsułki — bez justify */
.tagline,
.hero-promise,
.form-note,
.form-promise,
.caption,
.section-kicker,
.process-step p,
.card p,
.headline-meta,
.headline-frame,
.counter-label,
.counter-unit,
.cta-final-lede,
.sample-meta-label,
.sample-meta-val,
.sample-tagline,
.sample-kicker,
.footer-tagline,
.footer-col-title {
  hyphens: none;
  -webkit-hyphens: none;
}

/* Hero — wszystko wyśrodkowane */
.hero .tagline,
.hero .hero-promise,
.hero .form-promise,
.hero .form-note { text-align: center; }

/* Pozostałe — left */
.form-note,
.form-promise,
.caption,
.section-kicker,
.process-step p,
.card p,
.headline-meta,
.headline-frame,
.counter-label,
.counter-unit,
.cta-final-lede,
.sample-meta-label,
.sample-meta-val,
.sample-tagline,
.sample-kicker,
.footer-tagline,
.footer-col-title {
  text-align: left;
}

/* ============================================================
   REVEAL ANIMATIONS — scroll-triggered
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot, .merge-bg, .process-icon-mail svg { animation: none !important; }
}

/* ============================================================
   HERO — smukła centrowana kolumna, world-class editorial
   ============================================================ */
.hero {
  text-align: center;
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 16px;
  min-height: calc(100vh - 60px);
  justify-content: center;
}

.hero > * { margin: 0; }
.hero .subscribe-form { width: 100%; max-width: 520px; }

/* Quiet badge — bez ramki, bez akcentu, monospace label */
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.wordmark {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 0.95;
  color: var(--ink);
  white-space: nowrap;
}

.tagline {
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ink-muted);
  white-space: nowrap;
  letter-spacing: -0.1px;
}

/* HERO LEDE — smukła kolumna, lekko justify */
.hero .hero-lede {
  max-width: 520px;
  margin: 4px auto;
  text-align: left;
}

.hero .hero-lede p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
  text-align: justify;
  hyphens: auto;
}

.hero .hero-lede p:last-child { margin-bottom: 0; }
.hero .hero-lede strong { color: var(--ink); font-weight: 600; }
.hero .hero-lede em { color: var(--ink); font-style: italic; font-weight: 600; }

/* Trust strip — jednoliniowa nota z social proof */
.hero-trust {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.1px;
  margin: 0 auto;
}

.hero-trust strong {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 540px) {
  .tagline { white-space: normal; }
}

/* TRUST LIST — social proof + objection handling */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-trust strong {
  color: var(--ink);
  font-weight: 700;
}

.trust-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 720px) {
  .hero-trust { gap: 2px 14px; font-size: 10px; }
}

/* SCROLL HINT */
.scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  margin-top: 12px;
  transition: color var(--t);
}

.scroll-hint:hover { color: var(--accent); }
.scroll-hint svg { animation: bounce 2.4s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* HERO EXTENDED — second screen, lede continued */
.hero-extended {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.hero-lede {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.hero-lede p {
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-lede em { font-style: italic; color: var(--ink); }

/* ===== Counter — prominent, premium box ===== */
.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 8px 24px -16px rgba(10, 10, 10, 0.1);
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
}

.counter-num {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--ink-faint);
  letter-spacing: -1.5px;
  font-variant-numeric: tabular-nums;
}

.counter-item-highlight .counter-num {
  color: var(--accent);
}

.counter-unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
  font-weight: 500;
}

.counter-label {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 6px;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .counter-label { font-size: 11px; }
}

.counter-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}

@media (max-width: 540px) {
  .counter { padding: 22px 14px; gap: 10px; flex-wrap: nowrap; }
  .counter-arrow { padding-bottom: 16px; }
  .counter-arrow svg { width: 28px; height: 12px; }
  .counter-num { font-size: 40px; }
  .counter-unit { font-size: 10px; letter-spacing: 1.2px; }
  .counter-label { font-size: 12px; }
}

@media (max-width: 380px) {
  .counter { padding: 18px 12px; gap: 8px; }
  .counter-num { font-size: 34px; }
  .counter-arrow svg { width: 22px; height: 10px; }
}

/* ============================================================
   SUBSCRIBE FORM — mega CTA
   ============================================================ */
.subscribe-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.form-promise {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.5;
}

.form-promise strong { color: var(--accent); font-weight: 600; }

.subscribe-row {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: border-color var(--t), box-shadow var(--t);
  box-shadow: 0 8px 24px -16px rgba(10, 10, 10, 0.15);
}

.subscribe-row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 8px 28px -12px rgba(10, 10, 10, 0.18);
}

.subscribe-form input[type="email"] {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--serif);
  font-size: 17px;
  padding: 14px 22px;
  background: transparent;
  border: none;
  color: var(--ink);
  outline: none;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.subscribe-form input[type="email"]::placeholder { color: var(--ink-faint); }

.subscribe-form input[type="submit"] {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--t);
  letter-spacing: 0.1px;
}

.subscribe-form input[type="submit"]:hover {
  background: var(--accent);
}

/* CTA without pulse — editorial calm */

.form-note {
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 540px) {
  .subscribe-row {
    flex-direction: column;
    border-radius: var(--r-md);
    padding: 8px;
  }
  .subscribe-form input[type="email"] { padding: 14px 18px; }
  .subscribe-form input[type="submit"] {
    border-radius: var(--r-sm);
    padding: 14px 18px;
    width: 100%;
  }
}

/* ============================================================
   THE REVEAL SECTION — 6 nagłówków
   ============================================================ */
.reveal-section { padding: 100px 0; }

.headlines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.headlines-three {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 40px auto;
}
@media (max-width: 680px) {
  .headlines-three { grid-template-columns: 1fr; max-width: 640px; }
}

/* 2.5 — mikro-animacje (oszczędnie; szanują reduced-motion) */
.headline,
.sample-edition {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.headline:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.09);
}
.sample-edition:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
}
.headline-pill {
  transition: transform 0.2s ease;
}
.headline:hover .headline-pill {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .headline, .sample-edition, .headline-pill { transition: none; }
  .headline:hover, .sample-edition:hover { transform: none; box-shadow: none; }
}

/* 7 — efekt WOW na wejściu (hero), klasa premium bez cyrku */
@keyframes nrFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes nrPillPop {
  0%   { opacity: 0; transform: translateY(10px) scale(0.85); }
  70%  { opacity: 1; transform: translateY(-2px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}
@keyframes nrGlow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 22px rgba(166, 50, 38, 0.35); }
}
.hero .wordmark   { animation: nrFadeUp 0.7s ease both; }
.hero .tagline    { animation: nrFadeUp 0.7s 0.12s ease both; }
.hero .hero-lede  { animation: nrFadeUp 0.7s 0.24s ease both; }
.hero .counter,
.hero .subscribe-form,
.hero .hero-trust { animation: nrFadeUp 0.7s 0.36s ease both; }
.hero-pill {
  opacity: 0;
  animation: nrPillPop 0.5s ease forwards;
  transition: transform 0.2s ease;
  display: inline-block;
}
.hero-pill:hover { transform: translateY(-2px) scale(1.06); }
.hero-media-pills .hero-pill:nth-child(1) { animation-delay: 0.45s; }
.hero-media-pills .hero-pill:nth-child(2) { animation-delay: 0.55s; }
.hero-media-pills .hero-pill:nth-child(3) { animation-delay: 0.65s; }
.hero-media-pills .hero-pill:nth-child(4) { animation-delay: 0.75s; }
.hero-media-pills .hero-pill:nth-child(5) { animation-delay: 0.85s; }
.counter-item-highlight .counter-num { animation: nrGlow 2.2s 1.1s ease 2; }
@media (prefers-reduced-motion: reduce) {
  .hero .wordmark, .hero .tagline, .hero .hero-lede, .hero .counter,
  .hero .subscribe-form, .hero .hero-trust, .hero-pill,
  .counter-item-highlight .counter-num { animation: none; opacity: 1; }
}

@media (max-width: 720px) {
  .headlines { grid-template-columns: 1fr; }
}

.headline {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px 24px;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), border-color var(--t), box-shadow 0.32s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.headline::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--line-strong);
  transition: width 0.32s cubic-bezier(.2,.8,.2,1);
}

.headline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 0%, var(--spectrum-color, transparent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.headline[data-spectrum="lewicowo-liberalna"]      { --spectrum-color: rgba(197, 48, 82, 0.08);  }
.headline[data-spectrum="centrum"]                  { --spectrum-color: rgba(90, 100, 112, 0.08); }
.headline[data-spectrum="konserwatywno-prawicowa"]  { --spectrum-color: rgba(31, 56, 120, 0.08);  }
.headline[data-spectrum="biznesowa"]                { --spectrum-color: rgba(31, 86, 52, 0.08);   }
.headline[data-spectrum="prawno-medialna"]          { --spectrum-color: rgba(91, 63, 143, 0.08);  }

.headline[data-spectrum="lewicowo-liberalna"]::before { background: #C53052; }
.headline[data-spectrum="centrum"]::before              { background: #5A6470; }
.headline[data-spectrum="konserwatywno-prawicowa"]::before { background: #1F3878; }
.headline[data-spectrum="biznesowa"]::before            { background: #1F5634; }
.headline[data-spectrum="prawno-medialna"]::before      { background: #5B3F8F; }

.headline:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px -12px rgba(10, 10, 10, 0.12);
}

.headline:hover::before { width: 6px; }
.headline:hover::after  { opacity: 1; }

.headline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}

.headline-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 600;
  white-space: nowrap;
}

.headline-frame {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.headline h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.headline p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

.reveal-conclusion {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 24px 0 0;
  line-height: 1.55;
  font-style: italic;
}

.reveal-conclusion strong { color: var(--ink); font-style: normal; }

/* ============================================================
   SPECTRUM
   ============================================================ */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
}

.pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  font-weight: 500;
  transition: transform var(--t);
  white-space: nowrap;
}

.pill:hover { transform: translateY(-1px); }

.caption {
  font-size: 15px;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 720px;
  line-height: 1.55;
}

.caption em { color: var(--ink); font-style: italic; }

/* ============================================================
   PROCESS — Jak powstaje twój poranny mail
   ============================================================ */
.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
  margin-top: 32px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  transition: transform var(--t), box-shadow var(--t);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
}

.process-step h3 {
  margin: 4px 0 10px;
  font-size: 17px;
  letter-spacing: -0.2px;
  text-align: center;
}

.process-step p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

.process-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 4px;
  font-weight: 600;
}

.process-icon {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

/* Krok 1 — pulsujące kolorowe kropki */
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.dot-red    { background: #C53052; animation-delay: 0s;   }
.dot-grey   { background: #5A6470; animation-delay: 0.2s; }
.dot-blue   { background: #1F3878; animation-delay: 0.4s; }
.dot-green  { background: #1F5634; animation-delay: 0.6s; }
.dot-purple { background: #5B3F8F; animation-delay: 0.8s; }

@keyframes dot-pulse {
  0%, 100% { transform: scale(1);    opacity: 1;    }
  50%      { transform: scale(0.85); opacity: 0.55; }
}

/* Krok 2 — okrąg „NR" z conic gradient */
.process-icon-merge { position: relative; }

.merge-bg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #C53052 0deg,
    #5A6470 72deg,
    #1F3878 144deg,
    #1F5634 216deg,
    #5B3F8F 288deg,
    #C53052 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: merge-rotate 14s linear infinite;
}

.merge-bg::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--bg-card);
  border-radius: 50%;
}

.merge-text {
  position: absolute;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.5px;
}

@keyframes merge-rotate {
  to { transform: rotate(360deg); }
}

/* Krok 3 — koperta */
.process-icon-mail svg { animation: mail-float 3.4s ease-in-out infinite; }

@keyframes mail-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

@media (max-width: 720px) {
  .process-flow { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW (Co znajdziesz) — cards
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  padding: 26px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.05);
}

.card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.card h3 { margin-bottom: 10px; }

.card p {
  font-size: 15px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   SAMPLE EDITION — fragment prawdziwego newslettera
   ============================================================ */
.sample-edition {
  max-width: 580px;
  margin: 36px auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 10, 10, 0.12),
              0 12px 24px -8px rgba(10, 10, 10, 0.06);
  transition: transform var(--t-slow);
}

.sample-edition:hover { transform: translateY(-2px); }

.sample-header {
  padding: 32px 40px 28px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.sample-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: var(--mono);
}

.sample-meta > div { text-align: center; }
.sample-meta div:first-child { text-align: left; }
.sample-meta div:last-child { text-align: right; }

.sample-meta-label {
  display: block;
  font-size: 9px;
  color: var(--line-strong);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.sample-meta-val {
  display: block;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
}

.sample-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 14px 0 12px;
}

.sample-wordmark {
  font-family: var(--display);
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.sample-tagline {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.2px;
}

.sample-body {
  padding: 32px 40px;
  border-left: 4px solid var(--accent-soft);
  background: linear-gradient(to bottom, rgba(192, 96, 0, 0.02), transparent 60%);
}

.sample-title {
  color: var(--accent-soft);
  margin-bottom: 18px;
  letter-spacing: -0.2px;
  font-size: 18px;
  font-weight: 600;
}

.sample-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  text-align: justify;
  hyphens: auto;
}

.sample-puenta {
  font-style: italic;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  text-align: left !important;
  hyphens: none !important;
}

.sample-footer {
  padding: 18px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 8px;
}

.sample-cta {
  max-width: 580px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--ink-muted);
  text-align: center !important;
  font-style: italic;
}

.sample-cta em { color: var(--ink); }

@media (max-width: 540px) {
  .sample-header { padding: 24px 24px 20px; }
  .sample-body { padding: 24px 24px; }
  .sample-footer { padding: 14px 24px; }
  .sample-wordmark { font-size: 38px; }
  .sample-meta { font-size: 10px; }
}

/* ============================================================
   AI-FIRST
   ============================================================ */
.ai-first { padding: 100px 0; }

.ai-first-body {
  max-width: 660px;
  margin-top: 28px;
}

.ai-first-body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.ai-first-body em { color: var(--ink); font-style: italic; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  cursor: pointer;
  max-width: 720px;
}

.faq-item:last-of-type { border-bottom: 1px solid var(--line); }

.faq-item summary {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.2px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  transition: transform var(--t);
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 660px;
}

.faq-item em { color: var(--ink); font-style: italic; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  text-align: center;
  padding: 100px 0;
  border-bottom: none;
}

.cta-final h2 {
  margin: 0 auto 20px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.cta-final-lede {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cta-final-lede strong { color: var(--accent); font-weight: 600; }

.cta-final .subscribe-form { margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  margin-top: 0;
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--ink);
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--t);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 540px) {
  .footer-bottom { flex-direction: column; }
}

/* MINIMALISTYCZNY FOOTER */
.footer-min {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer-min .footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer-min .footer-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0 0 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--t);
}

.footer-links a:hover { color: var(--accent); }

.footer-links span {
  color: var(--ink-faint);
}

.footer-bottom-min {
  font-size: 11px;
  color: var(--ink-faint);
  font-style: italic;
}

/* ============================================================
   v25 — UPGRADES: process center-dominant, sample prominent,
   method list, for-whom grid
   ============================================================ */

/* HERO — desktop line break helper */
.br-desktop { display: inline; }
@media (max-width: 720px) { .br-desktop { display: none; } }

/* PROCESS — kompozycja 2+1, środkowa karta dominuje */
.process-flow--center-dominant {
  grid-template-columns: 1fr 1.45fr 1fr;
  align-items: stretch;
  gap: 20px;
}

.process-step--center {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  padding: 36px 28px 32px;
  position: relative;
  box-shadow: 0 14px 38px rgba(10, 10, 10, 0.08);
  z-index: 2;
}

.process-step--center h3 {
  font-size: 20px;
  letter-spacing: -0.3px;
}

.process-step--center p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.6;
}

.process-step--center p strong {
  color: var(--accent);
  font-weight: 600;
}

.process-step-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.process-step--side {
  background: var(--bg-card);
  opacity: 0.92;
}

.process-step--side:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .process-flow--center-dominant {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-step--center {
    padding: 32px 22px 28px;
  }
  .process-step-badge {
    top: -10px;
    font-size: 9px;
  }
}

/* SAMPLE — premium upgrade */
.sample--prominent {
  padding: 100px 0 110px;
}

.sample-edition--prominent {
  max-width: 760px;
  margin: 48px auto 0;
  border: 1px solid var(--line-strong, #d4d0c8);
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.10), 0 6px 20px rgba(10, 10, 10, 0.04);
  position: relative;
}

.sample-edition--prominent::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg,
    #C53052 0%, #C53052 20%,
    #5A6470 20%, #5A6470 40%,
    #1F3878 40%, #1F3878 60%,
    #1F5634 60%, #1F5634 80%,
    #5B3F8F 80%, #5B3F8F 100%
  );
}

.sample-edition--prominent .sample-header {
  padding: 36px 44px 28px;
}

.sample-edition--prominent .sample-body {
  padding: 32px 44px 36px;
}

.sample-edition--prominent .sample-body p {
  font-size: 17px;
  line-height: 1.65;
}

.sample-edition--prominent .sample-puenta {
  font-style: italic;
  font-size: 18px !important;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 28px !important;
}

.sample-edition--prominent .sample-wordmark {
  font-size: 48px;
}

.sample-edition--prominent .sample-footer {
  padding: 18px 44px;
  font-size: 12px;
}

@media (max-width: 720px) {
  .sample-edition--prominent .sample-header,
  .sample-edition--prominent .sample-body,
  .sample-edition--prominent .sample-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sample-edition--prominent .sample-wordmark { font-size: 36px; }
  .sample-edition--prominent .sample-body p { font-size: 16px; }
  .sample-edition--prominent .sample-puenta { font-size: 17px !important; }
}

/* METHOD LIST — w sekcji Autor */
.method-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method-list li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
}

.method-list li::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: -3px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
}

.method-list li strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 720px) {
  .method-list li { font-size: 15px; }
}

/* FOR-WHOM — co po tygodniu */
.for-whom {
  padding: 100px 0 110px;
  background: var(--bg);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.for-whom-item {
  background: transparent;
  padding: 0 4px;
  position: relative;
}

.for-whom-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.for-whom-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin: 0 0 12px;
  color: var(--ink);
}

.for-whom-item p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   v26 — SINGLE COLUMN FLOW (minimalist, intuitive)
   Wszystko jedna pod drugą, wycentrowane, spójna struktura.
   ============================================================ */

/* Container — wąska centralna kolumna */
main {
  max-width: 720px;
  padding: 0 24px;
}

/* Sekcje — spójne spacing + center alignment */
section {
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 720px) {
  main { padding: 0 20px; }
  section { padding: 56px 0; }
}

/* Wszystkie h2, lede, kicker — wycentrowane, spójne max-width */
section > h2,
.section-kicker,
.section-lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section > h2 {
  max-width: 560px;
}

.section-lede {
  max-width: 560px;
  text-align: center;
}

/* Treść body — left aligned dla czytelności, ale w wąskiej wyśrodkowanej kolumnie */
section p {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

/* Reveal-conclusion (Dowód) — wycentrowane */
.reveal-conclusion {
  max-width: 560px;
  margin: 32px auto 0;
  text-align: center !important;
  font-size: 15px;
  line-height: 1.6;
}

/* ----- DOWÓD: 6 nagłówków, siatka 2×3 (od 2026-07-06) ----- */
.headlines.headlines-three {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 32px auto 0;
}
@media (max-width: 680px) {
  .headlines.headlines-three { grid-template-columns: 1fr; max-width: 560px; }
}

.headlines-three .headline {
  text-align: left;
  width: 100%;
}

/* ----- PROCESS: 3 kroki, single column, równe ----- */
.process-flow.process-flow--center-dominant {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-template-columns: none;
  max-width: 560px;
  margin: 40px auto 0;
}

/* Wszystkie process-step jednakowe — zero dominacji */
.process-step--side,
.process-step--center {
  background: var(--bg-card);
  border: 1px solid var(--line);
  opacity: 1;
  box-shadow: none;
  padding: 28px 24px;
  text-align: center;
}

.process-step--center {
  border-color: var(--ink);
  /* Środkowy delikatnie wyróżniony, ale w spójnym layoucie */
}

.process-step--center h3 {
  font-size: 17px;
}

.process-step--center p {
  font-size: 14.5px;
  color: var(--ink-muted);
  text-align: center;
}

.process-step-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- SAMPLE: wycentrowane, wąsze ----- */
.sample-edition--prominent {
  max-width: 600px;
}

.sample-edition--prominent .sample-header {
  padding: 32px 32px 24px;
  text-align: center;
}

.sample-edition--prominent .sample-body {
  padding: 28px 32px 32px;
}

.sample-edition--prominent .sample-body p {
  text-align: left;
  font-size: 16px;
}

.sample-edition--prominent .sample-puenta {
  text-align: center !important;
  border-left: none;
  padding-left: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.sample-meta {
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sample-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sample-edition--prominent .sample-footer {
  padding: 16px 32px;
  text-align: center;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 720px) {
  .sample-edition--prominent .sample-header,
  .sample-edition--prominent .sample-body,
  .sample-edition--prominent .sample-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ----- AUTOR / METODA: wąska kolumna, center ----- */
.ai-first {
  padding: 80px 0;
}

.ai-first-body {
  max-width: 560px;
  margin: 0 auto;
}

.ai-first-body p {
  text-align: center;
  margin-bottom: 0;
}

.method-list {
  max-width: 480px;
  margin: 32px auto 0;
  text-align: left;
}

.method-list li {
  font-size: 15.5px;
}

/* ----- FOR-WHOM: 3 punkty, single column, numbered ----- */
.for-whom {
  padding: 80px 0;
}

.for-whom-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  grid-template-columns: none;
  max-width: 480px;
  margin: 40px auto 0;
}

.for-whom-item {
  text-align: center;
  padding: 0;
}

.for-whom-item h3 {
  text-align: center;
}

.for-whom-item p {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

/* ----- HERO — center wszystko ----- */
.hero {
  text-align: center;
}

.hero .hero-lede p {
  text-align: center;
}

/* ----- CTA-final: wycentrowane ----- */
.cta-final {
  padding: 80px 0;
  text-align: center;
}

.cta-final-lede {
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: center;
}

/* Subskrypcja — środek */
.subscribe-form {
  max-width: 480px;
  margin: 0 auto;
}

.hero-trust {
  text-align: center;
  margin: 16px auto 0;
}

/* Remove section borders dla minimalistycznego flow — separator tylko między różnymi "rozdziałami" */
section { border-bottom: none; }

/* Subtelny separator między sekcjami */
section + section::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 40px;
}

/* Hero nie ma separatora przed sobą */
.hero { padding-top: 100px; }
.hero + section::before { display: none; }

/* ============================================================
   v28 — DIAMOND POLISH
   Micro-interactions, psychological details, premium feel
   ============================================================ */

html { scroll-behavior: smooth; }

/* ----- Hero: lepszy oddech, subtelna entrance ----- */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.wordmark {
  /* subtelnie większy, mocniejszy puls otwarcia */
  animation: wordmark-in 1.1s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes wordmark-in {
  from { opacity: 0; transform: translateY(8px); letter-spacing: -1px; }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .wordmark { animation: none; }
}

.tagline {
  position: relative;
  padding: 18px 0 0;
  margin-top: 4px;
}

/* Subtelna linijka pod tagline — editorial detail */
.tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--ink-faint);
  opacity: 0.6;
}

.hero .hero-lede p {
  text-align: center !important;
  hyphens: none;
}

/* ----- Email input + button: focus state premium ----- */
.subscribe-form input[type="email"] {
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ink) !important;
  background: var(--bg-card);
}

.subscribe-form input[type="submit"] {
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
  cursor: pointer;
}

.subscribe-form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.14);
}

.subscribe-form input[type="submit"]:active {
  transform: translateY(0);
}

/* ----- Headlines (Dowód) hover lift ----- */
.headline {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.headline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
}

/* ----- Sample edition: premium hover + cursor ----- */
.sample-edition--prominent {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.sample-edition--prominent:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 90px rgba(10, 10, 10, 0.13), 0 8px 24px rgba(10, 10, 10, 0.06);
}

/* "Zobacz pełne wydanie" link pod sample */
.sample-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 4px;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.sample-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateX(2px);
}

.sample-cta-arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}

.sample-cta:hover .sample-cta-arrow {
  transform: translateX(3px);
}

/* ----- Process cards: subtle lift ----- */
.process-step {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.06);
}

.process-step--center:hover {
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.10);
}

/* ----- For-whom numery: kapsułki ----- */
.for-whom-num {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  background: transparent;
}

/* ----- CTA final: urgency element ----- */
.cta-countdown {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
}

.cta-countdown-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: dot-blink 1.6s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ----- Method list: pierwsze numerki bardziej widoczne ----- */
.method-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0;
}

.method-list li {
  padding-left: 22px;
}

/* ----- Subtle dropcap dla pierwszego paragrafu hero ----- */
/* (świadomy detal — tylko desktop, tylko hero) */

/* ----- Section separator: bardziej elegancki ----- */
section + section::before {
  width: 32px;
  height: 1px;
  background: var(--ink-faint);
  opacity: 0.4;
  margin: 0 auto 56px;
}

/* ----- Selection color (premium) ----- */
::selection {
  background: var(--accent);
  color: var(--bg);
}

::-moz-selection {
  background: var(--accent);
  color: var(--bg);
}

/* ----- Focus outline globalnie ----- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus-visible {
  outline-offset: 4px;
}

/* ----- Footer: subtelne hover na linkach ----- */
.footer-links a {
  position: relative;
  transition: color 0.15s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ----- Hero trust strip: kontekst dnia ----- */
.hero-trust-context {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

/* ----- Mobile fine-tunes ----- */
@media (max-width: 720px) {
  .hero { padding-top: 80px; padding-bottom: 40px; }
  .wordmark { font-size: 56px; }
  .tagline { font-size: 14px; padding-top: 14px; }
}

/* ============================================================
   v29 — LIVELY DESIGN, spójność z newsletterem
   Pomarańczowy ★ accent #c06000, pigułki mediów inline,
   5-kolorowy spektrum separator, numerki w akcentach
   ============================================================ */

/* ----- Section separator: 5-kolorowy spektrum punktów ----- */
section + section::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0 auto 64px;
  background: linear-gradient(90deg,
    #C53052 0%, #C53052 20%,
    #5A6470 20%, #5A6470 40%,
    #1F3878 40%, #1F3878 60%,
    #1F5634 60%, #1F5634 80%,
    #5B3F8F 80%, #5B3F8F 100%
  );
  border-radius: 2px;
  opacity: 0.85;
}

/* ----- Hero: inline pigułki mediów ----- */
.hero-media-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
  vertical-align: middle;
}

.hero-pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.hero-pill--lew { background: #C53052; }
.hero-pill--cen { background: #5A6470; }
.hero-pill--kon { background: #1F3878; }
.hero-pill--biz { background: #1F5634; }
.hero-pill--prw { background: #5B3F8F; }

/* ----- Sample puenta: pomarańczowy akcent z ★ (jak w newsletterze) ----- */
.sample-edition--prominent .sample-puenta {
  color: var(--accent-soft) !important;
  border-top: 2px solid var(--accent-soft);
  position: relative;
  padding-top: 24px !important;
  margin-top: 28px !important;
}

.sample-edition--prominent .sample-title {
  color: var(--accent-soft);
}

/* "★ Co z tego wynika" — pomarańczowa ramka jak Jan w mailu */
.sample-edition--prominent .sample-body {
  border-left: 4px solid var(--accent-soft);
  margin-left: 0;
}

/* ----- Process times w akcent kapsułkach ----- */
.process-time {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 auto 14px;
}

.process-step--center .process-time {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ----- For-whom numery: większe, w akcent kapsułkach ----- */
.for-whom-num {
  padding: 6px 16px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  margin-bottom: 16px;
}

/* ----- CTA-final: pomarańczowa subtelna otoczka (jak Z perspektywy Jana) ----- */
.cta-final {
  position: relative;
}

.cta-final h2 {
  position: relative;
  display: inline-block;
}

.cta-final h2::before {
  content: "★";
  position: absolute;
  left: -28px;
  top: 2px;
  font-size: 18px;
  color: var(--accent-soft);
  font-style: normal;
}

@media (max-width: 720px) {
  .cta-final h2::before {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
  }
}

/* CTA badge: subtelnie cieplejszy */
.cta-countdown {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-countdown::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: countdown-shimmer 3.6s ease-in-out infinite;
}

@keyframes countdown-shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}

/* ----- Hero subtle ★ przed counter (cieplejszy moment) ----- */
.counter {
  position: relative;
}

/* ----- Headline pills jako pełne kolory (spektrum) ----- */
.headline-pill {
  font-weight: 700;
}

/* ----- Method-list bullets: większe accent kropki ----- */
.method-list li::before {
  width: 7px;
  height: 7px;
  background: var(--accent-soft);
  top: 10px;
}

/* ----- Hero-trust-context: bardziej żywy ----- */
.hero-trust-context {
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
  display: inline-block;
  padding: 0 12px;
}

.hero-trust-context::before,
.hero-trust-context::after {
  content: "·";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  font-size: 18px;
  line-height: 1;
}

.hero-trust-context::before { left: -6px; }
.hero-trust-context::after  { right: -6px; }

/* ----- Sample-cta: cieplejszy hover ----- */
.sample-cta:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

/* ----- Subtle kolorowe akcenty na :focus ----- */
.subscribe-form input[type="email"]:focus {
  border-color: var(--accent-soft) !important;
  box-shadow: 0 0 0 3px rgba(192, 96, 0, 0.08);
}

/* ----- For-whom items: subtelny lewy akcent na hover ----- */
.for-whom-item {
  position: relative;
  padding-top: 0;
  transition: transform 0.2s ease;
}

.for-whom-item:hover {
  transform: translateY(-2px);
}

/* ----- Sample-meta-val: numerki w akcent ----- */
.sample-meta-val {
  color: var(--ink);
  font-weight: 600;
}

/* ----- Topnav-spectrum: 5 kolorów ożywia top ----- */
.topnav-spectrum {
  height: 3px;
  display: flex;
}

.topnav-spectrum span {
  flex: 1;
  display: block;
}

/* ----- Top-of-page subtelny pasek spektrum (jak w newsletterze) ----- */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    #C53052 0%, #C53052 20%,
    #5A6470 20%, #5A6470 40%,
    #1F3878 40%, #1F3878 60%,
    #1F5634 60%, #1F5634 80%,
    #5B3F8F 80%, #5B3F8F 100%
  );
  z-index: 100;
  opacity: 0.9;
}

/* ===== Status zapisu (inline, bez wychodzenia na Buttondown) ===== */
.subscribe-status {
  margin: 12px 4px 0;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
}
.subscribe-status.is-success { color: #1F5634; }
.subscribe-status.is-error   { color: #C53052; }
.subscribe-status.is-pending { color: #5A6470; opacity: 0.9; }
@media (prefers-color-scheme: dark) {
  .subscribe-status.is-success { color: #6FCF97; }
  .subscribe-status.is-error   { color: #EB6F92; }
  .subscribe-status.is-pending { color: #9AA4B2; }
}

/* ============================================================
   SCENA TELEFONU — mail wpada o 7:00 (v35)
   ============================================================ */
.phone-scene { overflow: hidden; }

.phone-layout {
  max-width: 640px;
  margin: 0 auto;
}
.phone-copy { margin-bottom: 34px; }
.phone-copy h2 { max-width: 15em; margin-left: auto; margin-right: auto; }
.phone-copy .section-lede { margin-bottom: 18px; }

.phone-sig {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.phone-sig-dots { display: inline-flex; gap: 5px; }
.phone-sig-dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c);
  display: inline-block;
}

/* ---- Scena + poświata ---- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.phone-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(166,50,38,0.20), transparent 62%),
    radial-gradient(circle at 62% 72%, rgba(31,56,120,0.16), transparent 60%);
  filter: blur(28px);
  z-index: 0;
  animation: phoneGlow 7s ease-in-out infinite alternate;
}

/* ---- Obudowa ---- */
.phone {
  position: relative;
  z-index: 1;
  width: 272px;
  height: 556px;
  border-radius: 46px;
  padding: 13px;
  background: linear-gradient(155deg, #26262c 0%, #131317 46%, #0a0a0c 100%);
  box-shadow:
    0 2px 3px rgba(0,0,0,0.5) inset,
    0 0 0 2px rgba(255,255,255,0.04) inset,
    0 30px 60px -24px rgba(10,10,12,0.55),
    0 12px 26px -18px rgba(10,10,12,0.5);
}
.phone-island {
  position: absolute;
  top: 24px; left: 50%; transform: translateX(-50%);
  width: 98px; height: 27px;
  background: #000;
  border-radius: 15px;
  z-index: 4;
}
.phone-btn {
  position: absolute;
  background: #17171b;
  border-radius: 3px;
}
.phone-btn--power { right: -3px; top: 168px; width: 3px; height: 62px; }
.phone-btn--vol1  { left: -3px; top: 132px; width: 3px; height: 40px; }
.phone-btn--vol2  { left: -3px; top: 184px; width: 3px; height: 40px; }

/* ---- Ekran / tapeta ---- */
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(120% 70% at 50% -6%, #2a2622 0%, #17151a 42%, #0b0a0c 78%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 62px 16px 20px;
}
.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 46%;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(166,50,38,0.14), transparent 70%),
    radial-gradient(70% 60% at 78% 8%, rgba(91,63,143,0.12), transparent 72%);
  pointer-events: none;
}

.lock-clockwrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 30px;
}
.lock-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 5px;
}
.lock-clock {
  font-family: var(--display);
  font-weight: 500;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
}

/* ---- Stos powiadomień ---- */
.notif-stack {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  margin-bottom: 14px;
}
.notif-card {
  border-radius: 18px;
  background: rgba(247,246,243,0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.5);
}
.notif-card--ghost {
  position: absolute;
  left: 8px; right: 8px; top: -12px;
  height: 46px;
  background: rgba(240,238,234,0.5);
  z-index: 0;
  transform: scale(0.96);
}
.notif-card--main {
  position: relative;
  z-index: 1;
  padding: 12px 13px 13px;
  text-align: left;
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  transform-origin: 50% 0;
}
.notif-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.notif-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(140deg, #C53052 0%, #5A6470 30%, #1F3878 55%, #1F5634 78%, #5B3F8F 100%);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 0 0 0.5px rgba(0,0,0,0.15) inset;
  flex: none;
}
.notif-app {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  letter-spacing: -0.1px;
}
.notif-time {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
}
.notif-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.32;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.1px;
  hyphens: none;
}
.notif-preview {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  hyphens: none;
}
.lock-home {
  position: relative;
  z-index: 2;
  width: 116px; height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.phone-shine {
  position: absolute;
  inset: 13px;
  border-radius: 34px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 30%);
  z-index: 5;
}

/* ---- Animacje wejścia (odpalane, gdy scena widoczna) ---- */
.phone-stage.visible .notif-card--main {
  animation: notifDrop 820ms cubic-bezier(.34,1.5,.5,1) 640ms forwards;
}
.phone-stage.visible .phone {
  animation: phoneBuzz 640ms ease 620ms 1;
}
.phone-stage.visible .notif-icon {
  animation: iconPop 420ms cubic-bezier(.34,1.6,.5,1) 900ms both;
}
@keyframes notifDrop {
  0%   { opacity: 0; transform: translateY(-30px) scale(0.95); }
  55%  { opacity: 1; transform: translateY(5px)   scale(1.015); }
  100% { opacity: 1; transform: translateY(0)     scale(1); }
}
@keyframes phoneBuzz {
  0%,100% { transform: translate(0,0) rotate(0); }
  20% { transform: translate(-1.2px,0) rotate(-0.35deg); }
  40% { transform: translate(1.2px,0)  rotate(0.35deg); }
  60% { transform: translate(-0.9px,0) rotate(-0.22deg); }
  80% { transform: translate(0.7px,0)  rotate(0.14deg); }
}
@keyframes iconPop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes phoneGlow {
  0%   { opacity: 0.7; transform: scale(0.96); }
  100% { opacity: 1;   transform: scale(1.06); }
}

/* ---- Responsywność ---- */
@media (max-width: 720px) {
  .phone-layout { max-width: 100%; }
  .phone-stage { min-height: 520px; }
}
@media (max-width: 360px) {
  .phone { transform: scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-glow { animation: none; opacity: 0.9; }
  .phone-stage .notif-card--main { opacity: 1; transform: none; animation: none; }
  .phone-stage .phone { animation: none; }
  .phone-stage .notif-icon { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE POLISH (v37) — twardy stop poziomego scrolla + drobne wyrównania
   ============================================================ */
html, body { overflow-x: hidden; }

@media (max-width: 680px) {
  /* Dowód: etykieta ramy zawija się, nie jest ucinana wielokropkiem */
  .headline-meta { flex-wrap: wrap; overflow: visible; white-space: normal; row-gap: 6px; }
  .headline-frame { white-space: normal; overflow: visible; text-overflow: clip; }
}

@media (max-width: 560px) {
  /* Podpis sceny telefonu: kropki spektrum NAD tekstem, wszystko wyśrodkowane */
  .phone-sig { flex-direction: column; gap: 8px; text-align: center; }
  /* Telefon trochę mniejszy na wąskich ekranach, więcej powietrza */
  .phone-stage { min-height: 500px; }
}

/* ============================================================
   TRYB CIEMNY — auto od zachodu słońca (JS ustawia data-theme na <html>).
   Fallback bez JS = ustawienie systemu (prefers-color-scheme).
   Motyw = odwrócenie zmiennych: „nocna edycja" — ciepła czerń + kremowy tekst.
   ============================================================ */
:root[data-theme="dark"] {
  --bg: #14120f;
  --bg-card: #1e1b16;
  --ink: #f0eeea;
  --ink-soft: #d7d2c8;
  --ink-muted: #a49e92;
  --ink-faint: #6d675d;
  --line: #302c26;
  --line-strong: #48423a;
  --accent: #d9695c;
  --accent-soft: #e0a24a;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #14120f; --bg-card: #1e1b16; --ink: #f0eeea; --ink-soft: #d7d2c8;
    --ink-muted: #a49e92; --ink-faint: #6d675d; --line: #302c26;
    --line-strong: #48423a; --accent: #d9695c; --accent-soft: #e0a24a;
  }
}

/* Płynne przejście dnia w noc (przy zmianie motywu na żywo) */
html, body { transition: background-color .5s ease, color .5s ease; }

/* Poprawki w ciemności: czarne stroke'i SVG + separacja sceny telefonu od tła */
:root[data-theme="dark"] .process-icon-mail svg rect { stroke: var(--ink); }
:root[data-theme="dark"] .counter-arrow svg path { stroke: var(--accent); }
:root[data-theme="dark"] .phone {
  box-shadow: 0 0 0 1px rgba(240,238,234,0.07), 0 30px 60px -24px rgba(0,0,0,0.75);
}
:root[data-theme="dark"] .sample-edition {
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.7);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .process-icon-mail svg rect { stroke: var(--ink); }
  :root:not([data-theme="light"]) .counter-arrow svg path { stroke: var(--accent); }
}

/* ============================================================
   KARUZELA REDAKCJI — nieskończony marquee, pełna szerokość
   Bezszwowa pętla: track = 2× ten sam zestaw, translateX(-50%).
   ============================================================ */
.media-marquee {
  width: 100%;
  max-width: 640px;
  margin: 16px auto 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.track-a { animation: marqueeLeft  40s linear infinite; }
.track-b { animation: marqueeRight 46s linear infinite; }
.track-c { animation: marqueeLeft  36s linear infinite; }
.media-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.mq-pill {
  flex: 0 0 auto;
  margin-right: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 7px 15px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.14);
}
.mq-lew { background: #C53052; }
.mq-cen { background: #5A6470; }
.mq-kon { background: #1F3878; }
.mq-biz { background: #1F5634; }
.mq-prw { background: #5B3F8F; }

@media (max-width: 720px) {
  .mq-pill { font-size: 11px; padding: 6px 13px; }
  .media-marquee { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 8px; }
  .marquee-track .mq-pill { margin-right: 0; }
  .marquee-track [aria-hidden="true"] { display: none; }
  .media-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* Disclaimer o braku afiliacji (znaki redakcji = użycie referencyjne) */
.footer-disclaimer {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-faint);
  text-align: center;
}

/* ============================================================
   PANELE — każda część strony w cienkiej ramce z zaokrągleniem
   ============================================================ */
main > section {
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  padding: 48px 40px !important;
  margin: 0 0 20px !important;
}
main > section:last-of-type { margin-bottom: 10px !important; }
section + section::before { display: none !important; }
/* panel odsłania się samą przezroczystością (bez przesunięcia — zawartość slide'uje w środku) */
main > section.reveal { transform: none !important; }
@media (max-width: 720px) {
  main > section { padding: 32px 20px !important; border-radius: 16px !important; }
}

/* ============================================================
   DOWÓD — „ten sam fakt" jako czysta lista (koniec kafelków):
   płaskie wiersze z hairline, cienki akcent koloru spektrum po lewej.
   ============================================================ */
.headlines.headlines-three {
  display: block;
  max-width: 620px;
  margin: 24px auto 0;
  text-align: left;
}
.headlines.headlines-three .headline {
  background: none !important;
  border: none !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 18px 0 18px 16px !important;
  margin: 0 !important;
  position: relative;
  transform: none !important;
}
.headlines.headlines-three .headline:first-child { border-top: none !important; }
.headlines.headlines-three .headline::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important; top: 20px !important; bottom: 20px !important;
  width: 3px !important; height: auto !important;
  border-radius: 2px !important;
}
.headlines.headlines-three .headline::after { display: none !important; }
.headlines.headlines-three .headline:hover { transform: none !important; box-shadow: none !important; background: none !important; }
.headlines.headlines-three .headline:hover::before { width: 3px !important; }
.headlines.headlines-three .headline[data-spectrum="lewicowo-liberalna"]::before { background: #C53052 !important; }
.headlines.headlines-three .headline[data-spectrum="centrum"]::before { background: #5A6470 !important; }
.headlines.headlines-three .headline[data-spectrum="konserwatywno-prawicowa"]::before { background: #1F3878 !important; }
.headlines.headlines-three .headline[data-spectrum="biznesowa"]::before { background: #1F5634 !important; }
.headlines.headlines-three .headline[data-spectrum="prawno-medialna"]::before { background: #5B3F8F !important; }
.headlines.headlines-three .headline-meta {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 7px; overflow: visible;
}
.headlines.headlines-three .headline-frame {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--ink-faint); white-space: normal;
}
.headlines.headlines-three .headline h3 {
  font-family: var(--display);
  font-size: 18px; line-height: 1.38; font-weight: 500;
  color: var(--ink); margin: 0; letter-spacing: -0.2px;
}
@media (max-width: 680px) {
  .headlines.headlines-three { max-width: 100%; }
  .headlines.headlines-three .headline h3 { font-size: 16px; }
}
