    /* ═══════════════════════════════════════════════════════
       FONTS – self-hosted, latin + latin-ext (polskie znaki)
       ═══════════════════════════════════════════════════════ */
    /* Inter Tight – Variable (jeden plik, wagi 100-900, latin+latin-ext combined - poprawne polskie znaki) */
    @font-face { font-family: 'Inter Tight'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('../fonts/inter-tight-pl.woff2') format('woff2'); }

    /* Instrument Serif – normal + italic, latin+latin-ext combined */
    @font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/instrument-serif-pl.woff2') format('woff2'); }
    @font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/instrument-serif-italic-pl.woff2') format('woff2'); }

    /* JetBrains Mono – Variable normal + italic, latin+latin-ext combined */
    @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 100 800; font-display: swap; src: url('../fonts/jetbrains-mono-pl.woff2') format('woff2'); }
    @font-face { font-family: 'JetBrains Mono'; font-style: italic; font-weight: 100 800; font-display: swap; src: url('../fonts/jetbrains-mono-italic-pl.woff2') format('woff2'); }


    /* ═══════════════════════════════════════════════════════
       TOKENS – soft warm light
       ═══════════════════════════════════════════════════════ */
    :root {
      --bg: #EFE8DA;
      --bg-deep: #E7DECC;
      --paper: #FBF8F2;
      --ink: #1A1814;
      --ink-soft: #3D3833;
      --ink-mid: #6B6259;
      --ink-dim: #948B80;
      --ink-faint: #BCB2A4;
      --rule: rgba(26, 24, 20, 0.08);
      --rule-strong: rgba(26, 24, 20, 0.14);

      --accent: #2C5446;
      --accent-soft: #DDEAE2;
      --amber: #E8A33D;
      --amber-soft: #FBEAD0;
      --green: #2C5446;
      --green-soft: #DDEAE2;

      --shadow-xs: 0 1px 2px rgba(60, 40, 20, 0.04);
      --shadow-sm: 0 1px 2px rgba(60, 40, 20, 0.03), 0 2px 5px -1px rgba(60, 40, 20, 0.04);
      --shadow-md: 0 1px 2px rgba(60, 40, 20, 0.03), 0 3px 8px -2px rgba(60, 40, 20, 0.04), 0 8px 18px -6px rgba(60, 40, 20, 0.05);
      --shadow-lg: 0 1px 2px rgba(60, 40, 20, 0.03), 0 5px 12px -4px rgba(60, 40, 20, 0.04), 0 14px 28px -10px rgba(60, 40, 20, 0.05);

      --r-sm: 10px;
      --r-md: 14px;
      --r-lg: 20px;

      --font-sans: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
      --font-mono: 'JetBrains Mono', ui-monospace, monospace;

      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    *::selection { background: color-mix(in srgb, var(--accent) 22%, transparent); color: var(--ink); }

    html {
      color-scheme: light;
      scroll-behavior: smooth;
      scroll-padding-top: 5.5rem;
      -webkit-text-size-adjust: 100%;
      text-rendering: optimizeLegibility;
      accent-color: var(--accent);
    }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-sans);
      font-size: 15.5px;
      line-height: 1.65;
      /* tnum: tabular cyfry · ss01: open digits (nowoczesne). Spójne z main.css. */
      font-feature-settings: "tnum", "ss01";
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      letter-spacing: -0.005em;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        radial-gradient(ellipse at 20% 0%, rgba(232, 163, 61, 0.08), transparent 50%),
        radial-gradient(ellipse at 100% 30%, rgba(44, 84, 70, 0.05), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    :where(a, button, summary, [tabindex]):focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 4px;
      box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 18%, transparent);
    }

    /* ═══════════════════════════════════════════════════════
       LAYOUT
       ═══════════════════════════════════════════════════════ */
    .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 3vw, 2rem);
      position: relative;
      z-index: 1;
    }
    .wrap--narrow { max-width: 920px; }

    /* ═══════════════════════════════════════════════════════
       NAV (sticky pill, premium)
       ═══════════════════════════════════════════════════════ */
    .nav {
      position: sticky;
      top: 0.85rem;
      z-index: 100;
      padding: 0 clamp(1.25rem, 3vw, 2rem);
      pointer-events: none;
    }
    .nav__inner {
      max-width: 1240px;
      margin: 0 auto;
      /* Grid 1fr/auto/1fr — brand EXACT 50% viewport,
         niezależnie od szerokości skrajnych elementów (back/cta) */
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
      padding: 0.55rem 0.7rem 0.55rem 1.1rem;
      background: rgba(251, 248, 242, 0.78);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      border: 1px solid var(--rule);
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
      pointer-events: auto;
    }
    .nav__inner > :first-child { justify-self: start; }
    .nav__inner > .brand { justify-self: center; }
    .nav__inner > :last-child { justify-self: end; }
    .brand {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.4rem 0.25rem 0.55rem;
      transform: translateY(1px);
    }
    .brand__name {
      font-size: 16.5px;
      font-weight: 700;
      letter-spacing: -0.022em;
      color: var(--ink);
    }
    .brand__name em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0;
      margin: 0 0.08em;
      color: var(--ink-mid);
    }
    .brand__ai {
      font-family: var(--font-mono);
      font-size: 0.78em;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--ink);
      text-transform: uppercase;
      margin-left: 0.1em;
    }
    .nav__back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 0.95rem;
      color: var(--ink-soft);
      font-size: 13.5px;
      font-weight: 500;
      line-height: 1;
      border-radius: 999px;
      background: rgba(26, 24, 20, 0.04);
      transition: color 0.2s var(--ease);
    }
    .nav__back:hover { color: var(--ink); }
    .nav__back-arrow {
      display: inline-grid;
      place-items: center;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #FCF8F2;
      font-size: 11px;
      transition: transform 0.25s var(--ease-snap);
    }
    .nav__back:hover .nav__back-arrow { transform: translateX(-3px); }
    .nav__cta {
      --lift: 0px; --press: 1;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 0.95rem;
      background: var(--ink);
      color: var(--paper);
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 8px rgba(26,24,20,0.18);
      transform: translateY(var(--lift)) scale(var(--press));
      transition: transform 0.18s var(--ease), background 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .nav__cta:hover { --lift: -1px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 6px 18px rgba(26,24,20,0.25); }
    .nav__cta:active { --lift: 0px; --press: 0.97; transition-duration: 80ms; }

    /* Scroll-shrink: nav się zwęża przy scroll > 32px (jak na index) */
    .nav__inner { transition: padding 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease); }
    .nav.is-scrolled .nav__inner {
      padding: 0.4rem 0.6rem 0.4rem 0.95rem;
      box-shadow: var(--shadow-md);
      background: rgba(251, 248, 242, 0.92);
    }

    @media (max-width: 720px) {
      /* Grid 1fr/auto/1fr — logo zawsze idealnie wyśrodkowane niezależnie od szerokości skrajnych slotów */
      .nav__inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0.5rem;
      }
      .nav__back {
        justify-self: start;
        padding: 0;
        width: 36px; height: 36px;
        display: inline-grid;
        place-items: center;
        background: rgba(26, 24, 20, 0.04);
        border-radius: 50%;
      }
      .nav__back span:not(.nav__back-arrow) { display: none; }
      .nav__back-arrow {
        width: auto; height: auto;
        background: transparent;
        font-size: 0;
        line-height: 1;
        display: inline-grid;
        place-items: center;
      }
      .nav__back-arrow::after {
        content: '';
        display: block;
        width: 14px; height: 14px;
        background: var(--ink);
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 8H3m4-4L3 8l4 4'/%3E%3C/svg%3E") center/contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 8H3m4-4L3 8l4 4'/%3E%3C/svg%3E") center/contain no-repeat;
      }
      .nav__back:hover .nav__back-arrow { transform: none; }
      .brand { justify-self: center; padding: 0.25rem; }
      .nav__cta { justify-self: end; }
    }

    /* ═══════════════════════════════════════════════════════
       SECTION HEAD
       ═══════════════════════════════════════════════════════ */
    section { padding: clamp(3.4rem, 6.5vw, 5.6rem) 0; position: relative; }

    .section__head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto clamp(2.5rem, 5vw, 4rem);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    .section__head .section__title { margin: 0 auto; max-width: 22ch; }
    .section__head .section__lead { max-width: 52ch; margin: 0.2rem auto 0; }
    .section__head:not(:has(.section__lead)) { margin-bottom: clamp(1.5rem, 3vw, 2.4rem); }
    .section__art {
      display: block;
      width: 100%;
      max-width: 260px;
      height: auto;
      margin-top: -2rem;
      margin-bottom: 1.8rem;
    }
    .section__label {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }
    .section__label::before,
    .section__label::after {
      content: '';
      width: 24px; height: 1px;
      background: var(--ink-faint);
    }
    .section__title {
      font-family: var(--font-sans);
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--ink);
      text-wrap: balance;
      max-width: 22ch;
    }
    .section__title em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--ink-soft);
    }
    .section__lead {
      font-size: clamp(16px, 1.7vw, 19px);
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 56ch;
      text-wrap: pretty;
    }

    /* ═══════════════════════════════════════════════════════
       HERO
       ═══════════════════════════════════════════════════════ */
    .hero {
      padding: clamp(6.5rem, 11vw, 10rem) 0 clamp(3.4rem, 6.5vw, 5.6rem);
      position: relative;
      overflow: hidden;
    }
    .hero__copy {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      align-items: center;
    }
    /* Polityka: zwęża padding-bottom hero, sub bez dodatkowego marginu */
    .hero--legal { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
    .hero--legal .hero__sub { margin-bottom: 0; }
    .hero__title {
      font-size: clamp(38px, 6.5vw, 76px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.02;
      color: var(--ink);
      text-wrap: balance;
      margin-top: 0.85rem;
    }
    .hero__title em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--ink-soft);
      letter-spacing: -0.005em;
    }
    .hero__lead {
      font-size: clamp(17px, 1.9vw, 21px);
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 54ch;
      text-wrap: pretty;
    }
    .hero__lead strong { color: var(--ink); font-weight: 600; }
    .hero__lead-break { display: block; }

    /* hero--centered – identyczny rendering jak index (płynny przeskok) */
    .hero--centered { text-align: center; }
    .hero--centered .hero__copy {
      display: block;
      max-width: 760px;
      margin: 0 auto;
      padding-top: 0;
      gap: 0;
    }
    .hero--centered .hero__title {
      font-family: var(--font-sans);
      font-size: clamp(42px, 5.2vw, 64px);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin: 1.6rem auto 1.4rem;
      max-width: 22ch;
      text-wrap: balance;
    }
    @media (max-width: 540px) {
      .hero--centered .hero__title { font-size: clamp(40px, 9vw, 52px); margin: 1.4rem auto 1.1rem; line-height: 1.02; }
    }
    .hero--centered .hero__sub {
      font-size: clamp(17px, 1.8vw, 19.5px);
      line-height: 1.5;
      color: var(--ink-soft);
      max-width: 60ch;
      margin: 0 auto 2.5rem;
      text-wrap: pretty;
      font-weight: 400;
      letter-spacing: -0.012em;
    }
    @media (max-width: 540px) {
      .hero--centered .hero__sub { font-size: 17px; line-height: 1.55; margin-bottom: 1.875rem; }
    }
    .hero--centered .hero__sub strong { color: var(--ink); font-weight: 600; }
    /* Na desktopie łamie linię, na mobile zostaje w ciągu zdania –
       inaczej końcówka wisi samotnie pod spodem. */
    .hero__sub-break { display: inline; }
    @media (min-width: 720px) {
      .hero__sub-break { display: block; }
    }
    .hero__meta {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 0.4rem;
    }
    .hero__chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.95rem;
      background: var(--paper);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    .hero__chip strong { color: var(--ink); font-weight: 700; }
    .hero__chip-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
    }

    /* Eyebrow badge – zgodny z index (płynny przeskok między stronami) */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.5rem 1rem;
      background: var(--paper);
      border: 1px solid var(--rule-strong);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-soft);
      letter-spacing: -0.005em;
      box-shadow: var(--shadow-xs);
    }
    .eyebrow__dot {
      width: 8px; height: 8px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 0 3px var(--green-soft);
      flex-shrink: 0;
      animation: pulse 2.4s var(--ease) infinite;
    }

    /* ═══════════════════════════════════════════════════════
       KONSOLA (terminal-style block over title)
       ═══════════════════════════════════════════════════════ */
    .konsola {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.6rem calc(1.1rem - 2px) 0.6rem 1.1rem;
      background: var(--ink);
      color: var(--paper);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.02em;
      box-shadow: var(--shadow-md);
    }
    .konsola__synth { color: var(--amber); font-weight: 600; }
    .konsola__path { color: var(--ink-faint); }
    .konsola__cmd { color: var(--paper); font-weight: 500; }
    .konsola__cursor {
      display: inline-block;
      width: 2.5px; height: 12px;
      background: var(--paper);
      margin-left: calc(0.3rem - 5px);
      position: relative;
      top: -1px;
      opacity: 0.85;
      animation: blink 1.1s steps(2) infinite;
    }
    @keyframes blink { 50% { opacity: 0; } }
    @media (prefers-reduced-motion: reduce) {
      .konsola__cursor { animation: none; opacity: 0.6; }
    }

    /* ═══════════════════════════════════════════════════════
       BTN (primary CTA)
       ═══════════════════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 1rem 1.6rem;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.005em;
      transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
      transform: translateY(var(--lift, 0)) scale(var(--press, 1));
    }
    .btn--primary {
      background: var(--ink);
      color: var(--paper);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 6px 16px rgba(26,24,20,0.22);
    }
    .btn--primary:hover { --lift: -2px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 12px 28px rgba(26,24,20,0.32); }
    .btn--primary:active { --lift: 0px; --press: 0.97; transition-duration: 80ms; }
    .arrow-circle {
      display: inline-grid;
      place-items: center;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--paper);
      color: var(--ink);
      flex-shrink: 0;
      transition: transform 0.35s var(--ease-snap);
    }
    .arrow-circle svg { width: 11px; height: 11px; display: block; }
    .arrow-circle--sm { width: 20px; height: 20px; }
    .arrow-circle--sm svg { width: 9.5px; height: 9.5px; }
    .arrow-circle--lg { width: 32px; height: 32px; }
    .arrow-circle--lg svg { width: 13px; height: 13px; }
    .btn--primary:hover .arrow-circle,
    .nav__cta:hover .arrow-circle,
    .cta__primary:hover .arrow-circle { transform: rotate(-30deg); }

    /* ═══════════════════════════════════════════════════════
       BULLETS – styl spójny z .card z głównej (main.css)
       ═══════════════════════════════════════════════════════ */
    .bullets {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      max-width: 980px;
      margin-inline: auto;
    }
    @media (max-width: 820px) {
      .bullets { grid-template-columns: 1fr; }
    }
    .bullet {
      position: relative;
      background: linear-gradient(155deg, #FBF8F0 0%, #F4EEDF 100%);
      border: 1px solid rgba(26, 24, 20, 0.04);
      border-radius: var(--r-lg);
      padding: 1.6rem 1.6rem 1.5rem;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        var(--shadow-xs);
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.35s var(--ease);
      display: grid;
      grid-template-columns: 1fr auto;
      align-content: start;
      gap: 0.85rem;
      overflow: hidden;
    }
    .bullet:hover {
      transform: translateY(-3px);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        var(--shadow-md);
      border-color: rgba(26, 24, 20, 0.08);
    }
    /* Numer 01/02/03 jako pill identyczny z .card__time z głównej */
    .bullet__icon {
      grid-column: 2;
      grid-row: 1;
      align-self: start;
      margin-top: 2px;
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0.75rem;
      background: var(--paper);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink-soft);
      letter-spacing: 0.06em;
      text-align: center;
      line-height: 1;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    .bullet__title {
      grid-column: 1;
      grid-row: 1;
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: clamp(16.5px, 1.7vw, 19px);
      line-height: 1.35;
      letter-spacing: -0.02em;
      color: var(--ink);
      max-width: 22ch;
      text-wrap: balance;
    }
    .bullet__desc {
      grid-column: 1 / -1;
      grid-row: 2;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 46ch;
      text-wrap: pretty;
      letter-spacing: -0.005em;
    }

    /* ═══════════════════════════════════════════════════════
       TIMELINE (3 steps + delivers + price) – w stylu .card z głównej
       ═══════════════════════════════════════════════════════ */
    .timeline {
      max-width: 980px;
      margin: 0 auto;
      background: transparent;
      border: 0;
      padding: 0;
      box-shadow: none;
    }
    .timeline__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      counter-reset: step;
    }
    .timeline__steps--two {
      grid-template-columns: minmax(0, 1fr) clamp(120px, 14vw, 180px) minmax(0, 1fr);
    }
    @media (max-width: 820px) {
      .timeline__steps { grid-template-columns: 1fr; gap: 0.8rem; }
    }
    /* Krok = identyczna karta jak .bullet (Premium Cream gradient + inner glow) */
    .timeline__step {
      position: relative;
      background: linear-gradient(155deg, #FBF8F0 0%, #F4EEDF 100%);
      border: 1px solid rgba(26, 24, 20, 0.04);
      border-radius: var(--r-lg);
      padding: 1.6rem 1.6rem 1.5rem;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        var(--shadow-xs);
      display: grid;
      grid-template-columns: 1fr auto;
      align-content: start;
      gap: 0.85rem;
      overflow: hidden;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    }
    .timeline__step:hover {
      transform: translateY(-3px);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        var(--shadow-md);
      border-color: rgba(26, 24, 20, 0.08);
    }
    /* Pill numeru kroku – identyczny jak .card__time z głównej */
    .timeline__step-num {
      grid-column: 2;
      grid-row: 1;
      align-self: start;
      margin-top: 2px;
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0.75rem;
      background: var(--paper);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink-soft);
      letter-spacing: 0.06em;
      text-align: center;
      line-height: 1;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    .timeline__step-title {
      grid-column: 1;
      grid-row: 1;
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: clamp(16.5px, 1.7vw, 19px);
      line-height: 1.35;
      letter-spacing: -0.02em;
      color: var(--ink);
      max-width: 22ch;
      text-wrap: balance;
    }
    .timeline__step-desc {
      grid-column: 1 / -1;
      grid-row: 2;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 46ch;
      text-wrap: pretty;
      letter-spacing: -0.005em;
    }

    /* Strzałka-łącznik między krokami (jak flow na index) */
    .timeline__bridge {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .timeline__bridge-arrow {
      width: 100%;
      height: auto;
      overflow: visible;
      display: block;
    }
    .timeline__bridge-path {
      stroke: var(--ink);
      stroke-width: 1.4;
      stroke-dasharray: 4 7;
      stroke-linecap: round;
      fill: none;
      animation: timeline-bridge-dash 1.6s linear infinite;
    }
    @keyframes timeline-bridge-dash {
      to { stroke-dashoffset: -22; }
    }
    @media (max-width: 820px) {
      .timeline__bridge { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .timeline__bridge-path { animation: none; }
    }

    /* Delivers oraz price-card – wewnątrz transparentnego .timeline */
    .timeline > .delivers,
    .timeline > .price-card {
      max-width: none;
      width: 100%;
    }

    /* ═══════════════════════════════════════════════════════
       DELIVERS (co otrzymasz – numerowany manifest, szyjka lejka)
       ═══════════════════════════════════════════════════════ */
    .delivers {
      max-width: 560px;
      margin: 2.6rem auto 0;
      padding-top: 2rem;
    }
    .delivers__label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }
    .delivers__label::before,
    .delivers__label::after {
      content: '';
      width: 14px; height: 1px;
      background: var(--ink-mid);
    }
    .delivers__grid {
      list-style: none;
      width: 100%;
      max-width: 640px;
      margin-inline: auto;
      counter-reset: deliver;
    }
    .delivers__grid li {
      display: grid;
      grid-template-columns: 1.7rem 1fr;
      align-items: baseline;
      column-gap: 0.7rem;
      padding: 0.8rem 0;
      font-size: 14.5px;
      line-height: 1.45;
      letter-spacing: -0.005em;
      color: var(--ink);
      text-align: left;
      text-wrap: pretty;
    }
    .delivers__grid li:not(:last-child) {
      border-bottom: 1px solid var(--rule);
    }
    .delivers__grid li:not(.delivers__opt) {
      counter-increment: deliver;
    }
    .delivers__grid li:not(.delivers__opt)::before {
      content: counter(deliver, decimal-leading-zero);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--ink-mid);
      transform: translateY(-2px);
    }
    /* wiersz opcjonalny – płatny add-on, poza ceną pakietu */
    .delivers__grid li.delivers__opt {
      grid-template-columns: 1.7rem 1fr auto;
      color: var(--ink-soft);
    }
    .delivers__opt::before {
      content: '+';
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      color: var(--accent);
    }
    .delivers__opt-price {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.03em;
      color: var(--ink-soft);
      padding: 0.3rem 0.55rem;
      background: var(--paper);
      border-radius: 999px;
      white-space: nowrap;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* ═══════════════════════════════════════════════════════
       PRICE CARD – uporządkowana hierarchia (label → cena → sub | terms)
       ═══════════════════════════════════════════════════════ */
    .price-card {
      max-width: 980px;
      margin: 80px auto 0;
      padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1.6rem, 2.5vw, 2.2rem);
      background: linear-gradient(135deg, var(--paper) 0%, color-mix(in srgb, var(--accent-soft) 35%, var(--paper)) 100%);
      border: 1px solid var(--rule);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(1.5rem, 3vw, 2.8rem);
      flex-wrap: wrap;
      position: relative;
    }
    .price-card__left {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      align-items: flex-start;
    }
    .price-card__label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .price-card__price {
      display: flex;
      align-items: baseline;
      gap: 0.35rem;
      font-family: var(--font-sans);
      font-weight: 800;
      letter-spacing: -0.028em;
      line-height: 0.95;
    }
    .price-card__num {
      font-size: clamp(44px, 6.2vw, 64px);
      color: var(--ink);
      font-variant-numeric: tabular-nums;
    }
    .price-card__cur {
      font-size: clamp(20px, 2vw, 24px);
      color: var(--ink-soft);
      font-weight: 700;
    }
    /* prefix "od" przed liczbą — taki sam rozmiar/kolor jak waluta */
    .price-card__from {
      font-size: clamp(20px, 2vw, 24px);
      color: var(--ink-soft);
      font-weight: 700;
    }
    .price-card__sub {
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-mid);
      margin-top: 0.1rem;
    }
    .price-card__terms {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      margin: 0;
      padding: 0;
    }
    .price-card__terms li {
      font-size: 14.5px;
      color: var(--ink-soft);
      font-weight: 500;
      letter-spacing: -0.005em;
      position: relative;
      padding-left: 1.3rem;
    }
    .price-card__terms li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }
    @media (max-width: 640px) {
      .price-card { padding: 1.4rem 1.4rem 1.5rem; gap: 1.2rem; }
      .price-card__terms {
        width: 100%;
        padding-top: 1rem;
        border-top: 1px dashed var(--rule);
      }
    }
    /* Wycofujemy starą klasę .price-card__note (nie używana w nowym HTML) */
    .price-card__note { display: none; }

    /* ═══════════════════════════════════════════════════════
       FAQ – 1:1 z main.css (index)
       ═══════════════════════════════════════════════════════ */
    .faq {
      max-width: 720px;
      margin: 0 auto;
    }
    .faq__list {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .faq__item {
      background: var(--paper);
      border: 1px solid rgba(26, 24, 20, 0.1);
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow:
        0 2px 2px rgba(26, 24, 20, 0.04),
        inset 0 0 40px 2px var(--paper);
      transition: box-shadow 0.25s var(--ease);
    }
    .faq__item:hover:not([open]) {
      box-shadow:
        0 4px 10px -2px rgba(26, 24, 20, 0.08),
        inset 0 0 40px 2px var(--paper);
    }
    .faq__item[open] {
      box-shadow:
        0 6px 16px -4px rgba(26, 24, 20, 0.1),
        inset 0 0 40px 2px var(--paper);
    }
    .faq__item[open] .faq__q { border-bottom: 1px solid var(--rule); }
    .faq__q {
      list-style: none;
      cursor: pointer;
      padding: 1.2rem 1.35rem;
      font-size: 16.5px;
      font-weight: 500;
      letter-spacing: -0.012em;
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .faq__q::-webkit-details-marker { display: none; }
    .faq__icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--bg-deep);
      flex-shrink: 0;
      position: relative;
      transition: background 0.2s var(--ease), transform 0.3s var(--ease-snap);
    }
    .faq__icon::before, .faq__icon::after {
      content: '';
      position: absolute;
      background: var(--ink);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .faq__icon::before { width: 9px; height: 1.5px; }
    .faq__icon::after { width: 1.5px; height: 9px; transition: transform 0.25s var(--ease); }
    .faq__item[open] .faq__icon { background: var(--ink); }
    .faq__item[open] .faq__icon::before,
    .faq__item[open] .faq__icon::after { background: var(--paper); }
    .faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
    .faq__a {
      padding: 1.25rem 1.5rem 1.5rem;
      font-size: 16.5px;
      color: var(--ink-soft);
      line-height: 1.7;
      letter-spacing: -0.005em;
      text-wrap: pretty;
    }
    .faq__a p { margin: 0; }
    .faq__a p + p { margin-top: 0.85rem; }
    .faq__a strong {
      color: var(--ink);
      font-weight: 600;
    }
    .faq__a code {
      font-family: var(--font-mono);
      font-size: 0.92em;
      background: var(--bg-deep);
      padding: 1px 6px;
      border-radius: 4px;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    /* ═══════════════════════════════════════════════════════
       CTA STRIP – jasna kompozycja kontaktowa (premium)
       ═══════════════════════════════════════════════════════ */
    .cta {
      position: relative;
      color: var(--ink);
      padding: 0;
    }
    .cta__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2.5rem, 5vw, 4.5rem);
      align-items: center;
    }
    .cta__left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      width: 100%;
    }
    @media (max-width: 820px) {
      .cta__grid { grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 2.8rem); }
      .cta__left { align-items: center; text-align: center; }
    }
    .cta__head-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.4rem 0.95rem;
      background: var(--bg);
      border: 1px solid var(--rule-strong);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 1.5rem;
    }
    .cta__head-eyebrow-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px var(--green-soft);
      animation: pulse 2.4s var(--ease) infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 3px var(--green-soft); }
      50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--green) 18%, transparent); }
    }
    @media (prefers-reduced-motion: reduce) {
      .cta__head-eyebrow-dot { animation: none; }
    }
    .cta__title {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: clamp(34px, 4.4vw, 56px);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 1.1rem;
      text-wrap: balance;
    }
    .cta__title em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--ink-soft);
      letter-spacing: -0.005em;
    }
    .cta__card {
      background: linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
      border: 1px solid var(--rule-strong);
      border-radius: var(--r-lg);
      padding: 2.2rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.6);
      width: 100%;
      max-width: 580px;
      margin: 0 auto;
      text-align: left;
    }
    .cta__card-h {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px dashed var(--rule);
    }
    .cta__card-h-l {
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }
    .cta__card-h-l::before {
      content: '✉';
      display: inline-grid;
      place-items: center;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--amber-soft);
      color: #8C5C00;
      font-size: 12px;
    }
    .cta__card-h-r {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--ink-dim);
      letter-spacing: 0.04em;
    }
    .cta__rows {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .cta__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
      padding: 0.65rem 0.9rem;
      background: var(--bg);
      border: 1px solid var(--rule);
      border-radius: var(--r-sm);
      font-size: 13.5px;
      transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
    }
    .cta__row:hover { background: var(--bg-deep); border-color: var(--rule-strong); }
    .cta__row-l {
      color: var(--ink);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .cta__row-r {
      color: var(--ink);
      font-weight: 500;
      letter-spacing: -0.005em;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-align: right;
    }
    .cta__row-r--link {
      color: var(--ink);
      font-family: var(--font-mono);
      font-weight: 600;
      font-size: 12.5px;
      text-decoration: none;
    }
    .cta__row-r--status::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px var(--green-soft);
      flex-shrink: 0;
    }
    .cta__primary {
      --lift: 0px; --press: 1;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0.95rem 0.85rem 1.4rem;
      background: var(--ink);
      color: var(--paper);
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.015em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 2px 8px rgba(26,24,20,0.18);
      transform: translateY(var(--lift)) scale(var(--press));
      transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease);
      margin-top: 0.2rem;
    }
    .cta__primary:hover { --lift: -1px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 6px 16px rgba(26,24,20,0.22); }
    .cta__primary:active { --lift: 0px; --press: 0.97; transition-duration: 80ms; }
    .cta__primary-arrow {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--paper);
      color: var(--ink);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-snap);
    }
    .cta__primary-arrow svg { width: 14px; height: 14px; }
    .cta__primary:hover .cta__primary-arrow { transform: rotate(-30deg); }
    .cta__hint {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--ink-dim);
      text-align: center;
      margin-top: 0.5rem;
    }

    /* ═══════════════════════════════════════════════════════
       FOOTER – jak na stronie głównej (premium hierarchy)
       ═══════════════════════════════════════════════════════ */
    .footer {
      padding: 5rem 0 1.3rem;
      color: var(--ink-mid);
      font-size: 13px;
      position: relative;
    }
    .footer__rule {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--rule-strong) 30%, var(--rule-strong) 70%, transparent);
      margin-bottom: 3.5rem;
    }
    .footer__inner {
      display: flex;
      gap: clamp(2rem, 4vw, 3.5rem);
      padding-bottom: 2.25rem;
    }
    .footer__brand {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      max-width: 520px;
    }
    .footer__brand .brand {
      align-self: flex-start;
    }
    .footer__pitch {
      max-width: 38ch;
      color: var(--ink-soft);
      line-height: 1.6;
      font-size: 14px;
    }
    .footer__sig {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.55rem 1.1rem 0.55rem 0.55rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 999px;
      align-self: flex-start;
      box-shadow: var(--shadow-xs);
      transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .footer__sig:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-sm);
    }
    .footer__sig-pic {
      width: 40px; height: 40px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      flex-shrink: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    }
    .footer__sig-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .footer__sig-meta {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .footer__sig-role {
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-dim);
      line-height: 1;
    }
    .footer__sig-name {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.012em;
      line-height: 1.1;
    }
    .footer__email-link {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.5rem 0.95rem 0.5rem 0.85rem;
      color: var(--accent);
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: -0.005em;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 999px;
      box-shadow: var(--shadow-xs);
      transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), transform 0.18s var(--ease);
    }
    .footer__email-link::before {
      content: '✉';
      display: inline-grid;
      place-items: center;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--amber-soft);
      color: #8C5C00;
      font-size: 10.5px;
      flex-shrink: 0;
    }
    .footer__email-link:hover {
      border-color: var(--rule-strong);
      background: #FFFFFF;
      transform: translateY(-1px);
    }
    .footer__email-link:active { transform: translateY(0) scale(0.97); transition-duration: 80ms; }

    .footer__bottom {
      margin-top: 1.5rem;
      padding-top: 1.4rem;
      border-top: 1px solid rgba(26, 24, 20, 0.08);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }
    .footer__bottom-year {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-variant-numeric: tabular-nums;
      justify-self: start;
    }
    .footer__bottom-credits {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.15rem;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.8;
      text-align: center;
    }
    .footer__bottom-credits-eyebrow {
      color: var(--ink-dim);
      font-weight: 500;
    }
    .footer__bottom-credits-main {
      color: var(--ink);
      font-weight: 600;
    }
    .footer__bottom-meta {
      list-style: none;
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      align-items: center;
      margin: 0;
      padding: 0;
      justify-self: end;
    }
    .footer__bottom-meta li {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      background: var(--paper);
      line-height: 1;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .footer__bottom-meta li:hover {
      transform: translateY(-1px);
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 4px rgba(26, 24, 20, 0.06);
    }

    /* Footer minimalny (audyt/agenci/polityka): tylko bottom strip z kreską */
    .footer--minimal {
      padding: 2rem 0 1.3rem;
    }
    .footer--minimal .footer__bottom {
      margin-top: 0;
    }

    @media (max-width: 720px) {
      .footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
      }
      .footer__bottom-meta {
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    /* ═══════════════════════════════════════════════════════
       REVEAL · scroll-driven (IntersectionObserver) – jak strona główna
       ═══════════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    }
    .reveal.is-in {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal[data-stagger] { transition-delay: calc(var(--stagger, 0) * 70ms); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* Anti-FOUT */
    html:not(.fonts-ready) body { opacity: 0; }
    html.fonts-ready body { transition: opacity 0.3s var(--ease); }
  </style>

    /* ═══════════════════════════════════════════════════════
       LEGAL – polityka prywatności (długi dokument tekstowy)
       ═══════════════════════════════════════════════════════ */
       LEGAL – polityka prywatności (długi dokument tekstowy)
       ═══════════════════════════════════════════════════════ */
    .legal {
      padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
    }
    .legal__content {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.65;
      max-width: 680px;
      margin-inline: auto;
    }
    .legal__content > * + * { margin-top: 1rem; }
    .legal__content h2,
    .legal__content h3 {
      color: var(--ink);
      font-family: var(--font-sans);
      letter-spacing: -0.012em;
      line-height: 1.3;
      text-wrap: balance;
    }
    .legal__h2 {
      margin-top: 2.5rem !important;
      font-size: clamp(20px, 2.2vw, 24px);
      font-weight: 700;
      padding-top: 1.6rem;
      border-top: 1px solid var(--rule);
    }
    .legal__content > .legal__h2:first-child { margin-top: 0 !important; padding-top: 0; border-top: 0; }
    .legal__h3 {
      margin-top: 1.2rem !important;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
    }
    .legal__content p { color: var(--ink-soft); }
    .legal__content strong { color: var(--ink); font-weight: 600; }
    .legal__content a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
      text-decoration-color: rgba(44, 84, 70, 0.35);
      transition: text-decoration-color 0.2s var(--ease);
    }
    .legal__content a:hover { text-decoration-color: var(--accent); }
    .legal__content ul {
      list-style: none;
      padding-left: 0;
      margin-top: 0.6rem !important;
    }
    .legal__content ul li {
      position: relative;
      padding-left: 0.95rem;
      margin-top: 0.55rem;
      color: var(--ink-soft);
    }
    .legal__content ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--ink-dim);
      font-size: 0.85em;
      line-height: 1.75;
    }
    .legal__admin {
      padding: 1rem 1.2rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      font-family: var(--font-mono);
      font-size: 13px;
      line-height: 1.7;
      color: var(--ink);
    }
    .legal__admin a {
      color: var(--accent);
      font-weight: 600;
    }

    /* Skip-link reused (po wcięciu, jak na index) */
    .skip-link {
      position: fixed;
      top: 0.85rem;
      left: 50%;
      transform: translate(-50%, -200%);
      z-index: 1000;
      padding: 0.65rem 1.1rem;
      background: var(--ink);
      color: var(--paper);
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      box-shadow: var(--shadow-md);
      transition: transform 0.25s var(--ease-snap);
    }
    .skip-link:focus, .skip-link:focus-visible { transform: translate(-50%, 0); }

    /* Visually hidden – semantyczne ukrycie, dostępne dla SR */
    .visually-hidden {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ═══════════════════════════════════════════════════════
       ARTICLE – długie publikacje (artykuły, materiały)
       Szerokość zachowana ze stylu legal (max 680px) – zoptymalizowana czytelność.
       ═══════════════════════════════════════════════════════ */
    .article h1, .article h2, .article h3, .article [id] { scroll-margin-top: 6rem; }
    .article {
      padding: clamp(1rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 4rem);
    }
    .article__body {
      max-width: 680px;
      margin-inline: auto;
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.72;
      font-feature-settings: "tnum", "ss01";
    }
    .article__body > p { color: var(--ink-soft); margin-top: 1.1rem; text-wrap: pretty; }
    .article__body > p:first-child { margin-top: 0; }
    .article__body strong { color: var(--ink); font-weight: 600; }
    .article__body em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-soft); }
    .article__body a {
      color: var(--accent);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
      text-decoration-color: rgba(44, 84, 70, 0.4);
      transition: text-decoration-color 0.2s var(--ease), color 0.2s var(--ease);
    }
    .article__body a:hover { text-decoration-color: var(--accent); }

    .article__lead {
      font-size: 21px;
      line-height: 1.55;
      color: var(--ink);
      letter-spacing: -0.012em;
      margin-bottom: 2rem !important;
      text-wrap: pretty;
      font-weight: 400;
    }
    @media (max-width: 540px) { .article__lead { font-size: 19px; } }

    .article__h2 {
      font-family: var(--font-sans);
      font-size: clamp(24px, 3vw, 30px);
      font-weight: 700;
      letter-spacing: -0.022em;
      color: var(--ink);
      line-height: 1.18;
      text-wrap: balance;
      margin-top: 3rem !important;
      padding-top: 2rem;
      border-top: 1px solid var(--rule);
    }
    .article__h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-soft); }
    .article__body > .article__h2:first-of-type { margin-top: 1rem !important; padding-top: 0; border-top: 0; }
    .article__h3 {
      font-family: var(--font-sans);
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -0.014em;
      color: var(--ink);
      line-height: 1.3;
      margin-top: 1.8rem !important;
    }

    .article__body ul,
    .article__body ol {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem !important;
    }
    .article__body ul li,
    .article__body ol li {
      position: relative;
      padding-left: 1.5rem;
      margin-top: 0.65rem;
      color: var(--ink-soft);
    }
    .article__body ul li::before {
      content: '';
      position: absolute;
      left: 0.1rem; top: 0.7em;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }
    .article__body ol { counter-reset: artol; }
    .article__body ol li {
      counter-increment: artol;
    }
    .article__body ol li::before {
      content: counter(artol);
      position: absolute;
      left: 0;
      top: 0;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: 0.02em;
      width: 1.2rem;
      line-height: 1.85;
    }

    .article__quote {
      margin: 2.2rem 0 !important;
      padding: 0.4rem 0 0.4rem 1.4rem;
      border-left: 3px solid var(--accent);
      color: var(--ink);
    }
    .article__quote p {
      font-family: var(--font-serif);
      font-size: 22px;
      font-style: italic;
      line-height: 1.4;
      color: var(--ink);
      letter-spacing: -0.005em;
      margin: 0 !important;
    }
    .article__quote-cite {
      display: block;
      margin-top: 0.6rem;
      font-family: var(--font-mono);
      font-size: 11.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-mid);
      font-style: normal;
    }

    /* Pełnoszerokościowe wizualizacje (hero-image i sekcyjne) */
    .article__visual {
      width: 100%;
      max-width: 1080px;
      margin: 2.4rem auto !important;
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--paper);
      border: 1px solid var(--rule);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .article__visual--full {
      max-width: min(100%, 1240px);
    }
    .article__visual img {
      width: 100%;
      height: auto;
      display: block;
    }
    .article__visual-caption {
      padding: 0.85rem 1.2rem 1rem;
      font-family: var(--font-mono);
      font-size: 11.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-mid);
      border-top: 1px solid var(--rule);
      background: linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
    }

    /* Mock UI w artykule – elegancki "wizualny przerywnik" zamiast obrazów stocków */
    .mock {
      padding: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.6rem);
      background: linear-gradient(155deg, #1A1814 0%, #2A2620 70%, #3D3833 100%);
      color: #FBF8F2;
      display: grid;
      gap: 1.4rem;
      grid-template-columns: minmax(0, 1fr);
      position: relative;
      isolation: isolate;
    }
    .mock::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 100% 0%, rgba(232, 163, 61, 0.18), transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(44, 84, 70, 0.22), transparent 55%);
      z-index: -1;
    }
    .mock__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mock__brand {
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .mock__brand-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 3px rgba(232,163,61,0.18);
    }
    .mock__title {
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: #FBF8F2;
      text-wrap: balance;
    }
    .mock__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: rgba(251,248,242,0.72); }
    .mock__sub { font-size: 14px; color: rgba(251,248,242,0.65); max-width: 56ch; line-height: 1.55; }
    .mock__row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.7rem;
    }
    @media (max-width: 600px) {
      .mock__row { grid-template-columns: 1fr; }
    }
    .mock__tile {
      padding: 0.95rem 1rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      min-height: 96px;
    }
    .mock__tile-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(251,248,242,0.5);
    }
    .mock__tile-h {
      font-size: 14px;
      font-weight: 600;
      color: #FBF8F2;
      letter-spacing: -0.01em;
    }
    .mock__tile-p {
      font-size: 12.5px;
      color: rgba(251,248,242,0.55);
      line-height: 1.5;
    }

    /* Karta narzędzia (compact) */
    .tool {
      margin: 1.2rem 0 !important;
      padding: 1.4rem 1.4rem 1.3rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      box-shadow: var(--shadow-xs);
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 1.1rem;
      align-items: start;
    }
    @media (max-width: 540px) {
      .tool { grid-template-columns: 48px 1fr; gap: 0.85rem; padding: 1.1rem 1.1rem 1rem; }
    }
    .tool__mark {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: var(--bg-deep);
      display: grid;
      place-items: center;
      font-family: var(--font-mono);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      box-shadow: inset 0 0 0 1px rgba(26,24,20,0.06);
    }
    @media (max-width: 540px) { .tool__mark { width: 48px; height: 48px; font-size: 15px; border-radius: 12px; } }
    .tool__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 0.45rem;
    }
    .tool__name {
      font-family: var(--font-sans);
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.012em;
      color: var(--ink);
      line-height: 1.2;
      text-wrap: balance;
    }
    .tool__tag {
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-mid);
      padding: 0.3rem 0.6rem;
      background: var(--bg);
      border-radius: 6px;
      flex-shrink: 0;
    }
    .tool__desc {
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.55;
      margin-top: 0 !important;
    }
    .tool__use {
      margin-top: 0.6rem !important;
      font-size: 13px;
      color: var(--ink-mid);
      line-height: 1.5;
    }
    .tool__use strong { color: var(--ink); font-weight: 600; }
    .tool__link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.7rem;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--accent) !important;
      text-decoration: none !important;
    }
    .tool__link::after {
      content: '↗';
      transition: transform 0.25s var(--ease-snap);
    }
    .tool__link:hover::after { transform: translate(2px, -2px); }

    /* Komparator – mała tabelka porównawcza w artykule */
    .compare {
      margin: 2rem 0 !important;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      overflow: hidden;
      box-shadow: var(--shadow-xs);
    }
    .compare__row {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      align-items: stretch;
    }
    @media (max-width: 720px) {
      .compare__row { grid-template-columns: 1.2fr 1fr 1fr; }
      .compare__cell:nth-child(5n) { display: none; }
    }
    .compare__cell {
      padding: 0.85rem 1rem;
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.45;
      border-bottom: 1px solid var(--rule);
      border-right: 1px solid var(--rule);
    }
    .compare__cell:last-child { border-right: 0; }
    .compare__row:last-child .compare__cell { border-bottom: 0; }
    .compare__cell--head {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--bg);
    }
    .compare__cell--first {
      font-weight: 600;
      color: var(--ink);
      background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 60%, transparent);
    }
    .compare__cell strong { color: var(--ink); font-weight: 600; }

    /* Pull quote / takeaway */
    .takeaway {
      margin: 2rem 0 !important;
      padding: 1.4rem 1.4rem 1.3rem;
      background: linear-gradient(160deg, var(--accent-soft) 0%, var(--paper) 100%);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 0.9rem;
      align-items: start;
    }
    .takeaway__mark {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--paper);
      display: grid;
      place-items: center;
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      box-shadow: 0 0 0 4px var(--accent-soft);
    }
    .takeaway__h {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-mid);
      margin-bottom: 0.4rem;
      text-wrap: balance;
    }
    .takeaway__p {
      color: var(--ink) !important;
      font-weight: 500 !important;
      font-size: 15.5px !important;
      line-height: 1.55 !important;
      letter-spacing: -0.01em !important;
      margin: 0 !important;
    }

    /* TOC – sticky table of contents (desktop only) */
    .article__toc {
      position: sticky;
      top: 5.5rem;
      max-height: calc(100vh - 7rem);
      overflow-y: auto;
      padding: 1rem 0.4rem 1rem 0;
      align-self: start;
    }
    .article__toc-h {
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-dim);
      margin-bottom: 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .article__toc-h::before {
      content: '';
      width: 14px; height: 1px;
      background: var(--ink-mid);
    }
    .article__toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      border-left: 1px solid var(--rule);
      padding-left: 0.85rem;
    }
    .article__toc-list a {
      display: block;
      padding: 0.45rem 0.6rem;
      margin-left: -0.85rem;
      padding-left: 0.85rem;
      border-left: 2px solid transparent;
      font-size: 13.5px;
      color: var(--ink-mid);
      letter-spacing: -0.005em;
      line-height: 1.4;
      transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
    }
    .article__toc-list a:hover { color: var(--ink); }
    .article__toc-list a.is-active {
      color: var(--ink);
      font-weight: 600;
      border-left-color: var(--accent);
    }

    /* Layout: TOC + body (3-col) – tylko na szerokich ekranach */
    .article__layout {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr) 220px;
      gap: clamp(2rem, 4vw, 3.2rem);
      max-width: 1240px;
      margin-inline: auto;
      padding: 0 clamp(1.25rem, 3vw, 2rem);
    }
    .article__layout-side { /* prawa kolumna – pusta, balans wizualny */ }
    @media (max-width: 1080px) {
      .article__layout { grid-template-columns: 1fr; padding: 0 clamp(1.25rem, 3vw, 2rem); }
      .article__toc { display: none; }
      .article__layout-side { display: none; }
    }

    /* Hero artykułu – portrait kolisty zamiast konsoli */
    .author-portrait {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      box-shadow:
        0 0 0 4px var(--paper),
        0 0 0 5px var(--rule-strong),
        var(--shadow-md);
      margin: 0 auto 0.4rem;
      position: relative;
    }
    .author-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .author-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);   /* pure-black image outline */
      pointer-events: none;
    }
    .author-byline {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.45rem 0.95rem 0.45rem 0.55rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 999px;
      box-shadow: var(--shadow-xs);
      font-size: 13px;
      letter-spacing: -0.005em;
      margin: 1rem auto 0;
    }
    .author-byline__pic {
      width: 26px; height: 26px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      flex-shrink: 0;
    }
    .author-byline__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .author-byline__name { color: var(--ink); font-weight: 600; }
    .author-byline__sep { color: var(--ink-faint); }
    .author-byline__date { color: var(--ink-mid); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; }

    .article__meta {
      display: inline-flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 0.8rem;
    }
    .article__meta-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.35rem 0.85rem;
      background: var(--paper);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* CTA box dla artykułu */
    .article__cta {
      margin: 2.6rem 0 !important;
      padding: 1.6rem 1.6rem 1.7rem;
      background: linear-gradient(160deg, var(--paper) 0%, var(--bg-deep) 100%);
      border: 1px solid var(--rule-strong);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      align-items: flex-start;
    }
    .article__cta-h {
      font-family: var(--font-sans);
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.012em;
      color: var(--ink);
      line-height: 1.25;
      text-wrap: balance;
    }
    .article__cta-h em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-soft); }
    .article__cta-p {
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.55;
      max-width: 50ch;
      margin: 0 !important;
    }
    .article__cta-btn {
      --lift: 0px; --press: 1;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.7rem 1.2rem;
      margin-top: 0.4rem;
      background: var(--ink);
      color: var(--paper) !important;
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.005em;
      text-decoration: none !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 12px rgba(26,24,20,0.18);
      transform: translateY(var(--lift)) scale(var(--press));
      transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .article__cta-btn:hover { --lift: -1px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 22px rgba(26,24,20,0.25); }
    .article__cta-btn:active { --lift: 0px; --press: 0.97; transition-duration: 80ms; }
    .article__cta-btn .arrow-circle { background: var(--paper); color: var(--ink); }

    /* Byline (autor) – stopka artykułu */
    .article__byline {
      margin-top: 3rem;
      padding-top: 1.6rem;
      border-top: 1px solid var(--rule);
      display: flex;
      align-items: center;
      gap: 0.85rem;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .article__byline-l {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
    }
    .article__byline-pic {
      width: 44px; height: 44px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      flex-shrink: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    }
    .article__byline-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .article__byline-meta { display: flex; flex-direction: column; gap: 0.05rem; }
    .article__byline-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.012em;
    }
    .article__byline-role {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--ink-mid);
      letter-spacing: 0.04em;
    }
    .article__byline-mail {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s var(--ease);
    }
    .article__byline-mail:hover { color: var(--ink); }

    /* Reading progress (top bar) */
    .read-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 2.5px;
      background: transparent;
      z-index: 200;
      pointer-events: none;
    }
    .read-progress__bar {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--amber));
      width: 0;
      transition: width 0.1s linear;
    }
    @media (prefers-reduced-motion: reduce) {
      .read-progress__bar { transition: none; }
    }


    /* ═══════════════════════════════════════════════════════════════════
       TYPO SYSTEM v2 · OVERRIDE LAYER
       Premium typography upgrade dla podstron (audyt/agenci/polityka)
       Spójny z main.css TYPO BLOCK, dodatkowo dla legal content (polityka)

       UWAGA: nie ruszamy .page-article scoped (narzedzia-ai.html)
              ten ma własny system typo zdefiniowany w pliku artykułu.

       Zmiany:
       — Hero title: dramatyczny scale (clamp 56–96px), -0.045em
       — Hero sub/lead: bumped do 18–22px ink-soft
       — Section title: 800 weight, 34–60px, -0.028em
       — Section lead: 18–22px ink-soft
       — CTA title: 36–60px / 800
       — Price-card num: 800 + tabular-nums
       — Delivers/Price-card label: 0.14em tracking
       — Legal content (polityka): 17px / lh 1.7 (premium long-form readability)
       — Legal h2/h3: bumped scale
       — Hanging punctuation + text-wrap balance globalnie
       — FAQ + Bullets + Timeline + footer__sig-name = bez zmian (bumped wcześniej)
       ═══════════════════════════════════════════════════════════════════ */

    /* ─── BASE ─── */
    html {
      hanging-punctuation: first last;
    }

    /* ─── HERO ─── */
    /* UWAGA: .hero--centered .hero__title ma specificity (0,2,0)
       więc tu też musimy używać tego selektora żeby nadpisać */
    .hero__title,
    .hero--centered .hero__title {
      font-size: clamp(56px, 7.4vw, 96px);
      letter-spacing: -0.045em;
      line-height: 0.96;
      font-weight: 800;
      max-width: 18ch;
    }
    @media (max-width: 540px) {
      .hero__title,
      .hero--centered .hero__title {
        font-size: clamp(48px, 12vw, 64px);
        letter-spacing: -0.04em;
        line-height: 0.98;
      }
    }
    .hero__sub,
    .hero__lead,
    .hero--centered .hero__sub {
      font-size: clamp(18px, 1.95vw, 22px);
      line-height: 1.5;
      color: var(--ink-soft);
      letter-spacing: -0.006em;
      max-width: 56ch;
    }
    @media (max-width: 540px) {
      .hero__sub,
      .hero__lead,
      .hero--centered .hero__sub {
        font-size: 18px;
        line-height: 1.55;
      }
    }

    /* ─── SECTION HEAD – sync z main.css (index.html) ─── */
    .section__title {
      font-size: clamp(30px, 4.5vw, 52px);
      letter-spacing: -0.03em;
      line-height: 1.02;
      font-weight: 700;
    }
    @media (max-width: 540px) {
      .section__title {
        font-size: clamp(30px, 7.5vw, 40px);
        letter-spacing: -0.025em;
        line-height: 1.06;
      }
    }
    .section__title em {
      letter-spacing: -0.015em;
    }

    .section__lead {
      font-size: clamp(17px, 1.8vw, 19.5px);
      line-height: 1.5;
      color: var(--ink-soft);
      letter-spacing: -0.012em;
      max-width: 52ch;
      font-weight: 400;
    }
    @media (max-width: 540px) {
      .section__lead { font-size: 17px; line-height: 1.55; }
    }

    /* ─── CTA ─── */
    .cta__title {
      font-size: clamp(36px, 4.6vw, 60px);
      letter-spacing: -0.028em;
      line-height: 1.04;
      font-weight: 800;
    }

    /* ─── PRICE CARD ─── */
    .price-card__num {
      font-variant-numeric: tabular-nums;
      font-weight: 800;
      letter-spacing: -0.028em;
    }
    .price-card__cur {
      font-variant-numeric: tabular-nums;
    }
    .price-card__label {
      letter-spacing: 0.14em;
    }

    /* ─── DELIVERS ─── */
    .delivers__grid li {
      font-size: 15px;
      line-height: 1.6;
      letter-spacing: -0.003em;
    }
    .delivers__label {
      letter-spacing: 0.14em;
    }

    /* ─── NAV ─── */
    .brand__name {
      font-weight: 700;
      letter-spacing: -0.024em;
    }

    /* ─── HEADINGS GLOBAL ─── */
    h1, h2, h3, h4, h5, h6 {
      text-wrap: balance;
      scroll-margin-top: 6rem;
    }
    p {
      text-wrap: pretty;
    }

    /* ─── EYEBROW / KONSOLA refinements ─── */
    .eyebrow {
      font-size: 13px;
      letter-spacing: -0.005em;
      font-weight: 500;
      padding: 0.5rem 1.05rem;
    }
    .konsola {
      font-size: 12.5px;
      letter-spacing: 0.02em;
    }

    /* ─── LEGAL CONTENT (polityka-prywatnosci) – premium long-form ─── */
    /* Body bumped 15px → 17px (Stripe legal pattern, lepsza czytelność dłuższego dokumentu) */
    .legal__content {
      font-size: 17px;
      line-height: 1.7;
      letter-spacing: -0.005em;
    }
    /* Legal h2 – bumped scale */
    .legal__h2 {
      font-size: clamp(22px, 2.4vw, 28px) !important;
      font-weight: 700;
      letter-spacing: -0.018em;
      line-height: 1.2;
    }
    .legal__h3 {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.014em;
    }

    /* footer__sig-name – zostaje oryginał 600 weight (jak w main.css po wycofaniu) */
    /* ═══════════════════════════════════════════════════════════════════
       END · TYPO SYSTEM v2 OVERRIDE
       ═══════════════════════════════════════════════════════════════════ */


    /* ═══════════════════════════════════════════════════════════════════
       PILLS PREMIUM v3 · spójność z index.html
       (audyt / agenci / polityka / narzedzia-ai)

       Stosuje się do elementów istniejących na podstronach + na zapas
       dla przyszłych użyć (founder, proj, highlight)
       ═══════════════════════════════════════════════════════════════════ */

    /* Footer bottom meta — "FAKTURY VAT, WERSJA 2.0"
       (wszystkie podstrony mają to) */
    .footer__bottom-meta li {
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 1px rgba(26, 24, 20, 0.03);
    }

    /* Footer bottom border — identycznie jak na ux/index (jaśniejszy 0.05). */
    .footer__bottom {
      border-top: 1px solid rgba(26, 24, 20, 0.08);
    }
    .footer--minimal .footer__bottom {
      border-top: 1px solid rgba(26, 24, 20, 0.08);
    }

    /* Founder chips — mono caps, węższy padding, 3-warstwowy shadow
       (w razie użycia na podstronach) */
    .founder__chip {
      padding: 0.45rem 0.9rem;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 1px rgba(26, 24, 20, 0.03);
      line-height: 1;
      white-space: nowrap;
    }
    .founder__chip strong {
      font-weight: 600;
      color: var(--ink);
    }

    /* Founder cards (Polscy Geniusze, Mentosfera) — paper warm bg + premium lift hover */
    .founder__card {
      background: #FAF6EF;
      box-shadow:
        0 0 0 1px rgba(26, 24, 20, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(26, 24, 20, 0.04);
      transition: background 0.25s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .founder__card:hover {
      background: #FAF6EF;
      box-shadow:
        0 0 0 1px rgba(26, 24, 20, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 4px 10px -2px rgba(26, 24, 20, 0.10),
        0 12px 24px -10px rgba(26, 24, 20, 0.12);
      transform: translateY(-2px);
    }

    /* Project tags / numbers — wzmocniony border + outer shadow (na ciemnych zdjęciach) */
    .proj__tag,
    .proj__num {
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.06);
    }

    /* Highlight ("DNA.") — premium warm gradient + amber accent underline */
    .highlight {
      padding: 0.05em 0.3em;
      border-radius: 0.25em;
      background: linear-gradient(135deg, #FBEAD0 0%, #F2D9A8 55%, #EFE0BC 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1.5px 0 rgba(232, 163, 61, 0.20);
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }
    /* ═══════════════════════════════════════════════════════════════════
       END · PILLS PREMIUM v3
       ═══════════════════════════════════════════════════════════════════ */


    /* ═══════════════════════════════════════════════════════════════════
       ARTICLE PAGES · scoped do body.page-article (modern CSS @scope)
       Migracja z narzedzia-ai inline <style> (4 maj 2026)

       Architektura:
       — Block 1: brakujący @font-face Inter (regular, 400)
       — Block 2: tokens dla artykułów (--measure-body, --fs-body, --sp-*, etc.)
       — Block 3: @scope (body.page-article) { wszystkie style artykułowe }

       Wymagane: body class="page-article" w pliku artykułu.
       Wsparcie @scope: Chrome 118+, Firefox 128+, Safari 17.4+ (od 2024)
       ═══════════════════════════════════════════════════════════════════ */


    /* Inter Regular – brakuje w podstrony.css, dodajemy dla artykułów */
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-regular-pl.woff2') format('woff2'); }

    /* ARTICLE TOKENS — scope'd do body.page-article */
    body.page-article {
      --bg: #EFE8DA;
      --bg-deep: #E7DECC;
      --paper: #FBF8F2;
      --ink: #1A1814;
      --ink-soft: #3D3833;
      --ink-mid: #6B6259;
      --ink-dim: #948B80;
      --ink-faint: #BCB2A4;
      --rule: rgba(26, 24, 20, 0.08);
      --rule-strong: rgba(26, 24, 20, 0.14);
      --accent: #2C5446;
      --accent-soft: #DDEAE2;
      --amber: #E8A33D;
      --amber-soft: #FBEAD0;
      --green: #2C5446;
      --green-soft: #DDEAE2;

      --shadow-xs: 0 1px 2px rgba(60, 40, 20, 0.04);
      --shadow-sm: 0 1px 2px rgba(60, 40, 20, 0.03), 0 2px 5px -1px rgba(60, 40, 20, 0.04);
      --shadow-md: 0 1px 2px rgba(60, 40, 20, 0.03), 0 3px 8px -2px rgba(60, 40, 20, 0.04), 0 8px 18px -6px rgba(60, 40, 20, 0.05);
      --shadow-lg: 0 1px 2px rgba(60, 40, 20, 0.03), 0 5px 12px -4px rgba(60, 40, 20, 0.04), 0 14px 28px -10px rgba(60, 40, 20, 0.05);

      --r-sm: 10px;
      --r-md: 14px;
      --r-lg: 20px;

      /* Fonts */
      --font-display: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
      --font-mono: 'JetBrains Mono', ui-monospace, monospace;

      /* Type scale (1.25 ratio harmonic) */
      --fs-micro: 11px;
      --fs-small: 13.5px;
      --fs-base: 16px;
      --fs-body: 20px;

      /* Tracking */
      --ls-display: -0.045em;
      --ls-h1: -0.038em;
      --ls-h2: -0.028em;
      --ls-h3: -0.018em;
      --ls-body: -0.006em;
      --ls-caps: 0.10em;
      --ls-mono: 0.04em;

      /* Spacing (8px grid) */
      --sp-1: 0.5rem;
      --sp-2: 1rem;
      --sp-3: 1.5rem;
      --sp-4: 2rem;
      --sp-5: 2.5rem;
      --sp-6: 3rem;
      --sp-8: 4rem;
      --sp-10: 5rem;
      --sp-12: 6rem;
      --sp-16: 8rem;

      /* Measure */
      --measure-body: 700px;

      /* Motion */
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* ARTICLE STYLES — scoped do body.page-article przez @scope (modern CSS, Chrome 118+, FF 128+, Safari 17.4+) */
    @scope (body.page-article) {
    /* ═══════════════════════════════════════════════════════
       RESET & BASE
       ═══════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    *::selection { background: color-mix(in srgb, var(--accent) 22%, transparent); color: var(--ink); }

    html {
      color-scheme: light;
      scroll-behavior: smooth;
      scroll-padding-top: 6rem;
      -webkit-text-size-adjust: 100%;
      text-rendering: optimizeLegibility;
      hanging-punctuation: first last;
      accent-color: var(--accent);
    }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-display);
      font-size: 15.5px;
      line-height: 1.65;
      font-feature-settings: "tnum", "ss01";
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      letter-spacing: var(--ls-body);
      overflow-x: hidden;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        radial-gradient(ellipse at 20% 0%, rgba(232, 163, 61, 0.08), transparent 50%),
        radial-gradient(ellipse at 100% 30%, rgba(44, 84, 70, 0.05), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    :where(a, button, summary, [tabindex]):focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 4px;
      box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 18%, transparent);
    }

    .skip-link {
      position: fixed;
      top: max(0.85rem, env(safe-area-inset-top));
      left: 50%;
      transform: translate(-50%, -200%);
      z-index: 1000;
      padding: 0.65rem 1.1rem;
      background: var(--ink);
      color: var(--paper);
      border-radius: 999px;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      box-shadow: var(--shadow-md);
      transition: transform 0.25s var(--ease-snap);
    }
    .skip-link:focus, .skip-link:focus-visible { transform: translate(-50%, 0); }

    .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 3vw, 2rem);
      position: relative;
      z-index: 1;
    }

    /* ═══════════════════════════════════════════════════════
       NAV (sticky pill, identyczny jak index)
       ═══════════════════════════════════════════════════════ */
    .nav {
      position: sticky;
      top: 0.85rem;
      z-index: 100;
      padding: 0 clamp(1.25rem, 3vw, 2rem);
      pointer-events: none;
    }
    .nav__inner {
      max-width: 1240px;
      margin: 0 auto;
      /* Grid 1fr/auto/1fr — brand EXACT na 50% viewport,
         niezależnie od szerokości nav__back i nav__cta */
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
      padding: 0.55rem 0.7rem 0.55rem 1.1rem;
      background: rgba(251, 248, 242, 0.78);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      border: 1px solid var(--rule);
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
      pointer-events: auto;
      transition: padding 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }
    .nav__back { justify-self: start; }
    .brand { justify-self: center; }
    .nav__cta { justify-self: end; }
    .nav.is-scrolled .nav__inner {
      padding: 0.4rem 0.6rem 0.4rem 0.95rem;
      box-shadow: var(--shadow-md);
      background: rgba(251, 248, 242, 0.92);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.4rem 0.25rem 0.55rem;
      transform: translateY(1px);
    }
    .brand__name {
      font-family: var(--font-display);
      font-size: 16.5px;
      font-weight: 700;
      letter-spacing: -0.022em;
      color: var(--ink);
    }
    .brand__name em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0;
      margin: 0 0.08em;
      color: var(--ink-mid);
    }
    .brand__ai {
      font-family: var(--font-mono);
      font-size: 0.78em;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--ink);
      text-transform: uppercase;
      margin-left: 0.1em;
    }
    .nav__back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 0.95rem;
      color: var(--ink-soft);
      font-family: var(--font-display);
      font-size: 13.5px;
      font-weight: 500;
      line-height: 1;
      border-radius: 999px;
      background: rgba(26, 24, 20, 0.04);
      transition: color 0.2s var(--ease);
    }
    .nav__back:hover { color: var(--ink); }
    .nav__back-arrow {
      display: inline-grid;
      place-items: center;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #FCF8F2;
      font-size: 11px;
      transition: transform 0.25s var(--ease-snap);
    }
    .nav__back:hover .nav__back-arrow { transform: translateX(-3px); }
    .nav__cta {
      --lift: 0px; --press: 1;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 0.95rem;
      background: var(--ink);
      color: var(--paper);
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 8px rgba(26,24,20,0.18);
      transform: translateY(var(--lift)) scale(var(--press));
      transition: transform 0.18s var(--ease), background 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .nav__cta:hover { --lift: -1px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 6px 18px rgba(26,24,20,0.25); }
    .nav__cta:active { --lift: 0px; --press: 0.97; transition-duration: 80ms; }
    .arrow-circle {
      display: inline-grid;
      place-items: center;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--paper);
      color: var(--ink);
      flex-shrink: 0;
      transition: transform 0.35s var(--ease-snap);
    }
    .arrow-circle svg { width: 11px; height: 11px; display: block; }
    .arrow-circle--sm { width: 20px; height: 20px; }
    .arrow-circle--sm svg { width: 9.5px; height: 9.5px; }
    .nav__cta:hover .arrow-circle { transform: rotate(-30deg); }

    @media (max-width: 720px) {
      .nav__inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0.5rem;
      }
      .nav__back {
        justify-self: start;
        padding: 0;
        width: 36px; height: 36px;
        display: inline-grid;
        place-items: center;
        background: rgba(26, 24, 20, 0.04);
        border-radius: 50%;
      }
      .nav__back span:not(.nav__back-arrow) { display: none; }
      .nav__back-arrow {
        width: auto; height: auto;
        background: transparent;
        font-size: 0;
        line-height: 1;
        display: inline-grid;
        place-items: center;
      }
      .nav__back-arrow::after {
        content: '';
        display: block;
        width: 14px; height: 14px;
        background: var(--ink);
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 8H3m4-4L3 8l4 4'/%3E%3C/svg%3E") center/contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 8H3m4-4L3 8l4 4'/%3E%3C/svg%3E") center/contain no-repeat;
      }
      .nav__back:hover .nav__back-arrow { transform: none; }
      .brand { justify-self: center; padding: 0.25rem; }
      .nav__cta { justify-self: end; }
    }

    /* ═══════════════════════════════════════════════════════
       READING PROGRESS
       ═══════════════════════════════════════════════════════ */
    .read-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 2.5px;
      background: transparent;
      z-index: 200;
      pointer-events: none;
    }
    .read-progress__bar {
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--amber));
      width: 0;
      transition: width 0.1s linear;
    }
    @media (prefers-reduced-motion: reduce) {
      .read-progress__bar { transition: none; }
    }

    /* ═══════════════════════════════════════════════════════
       HERO – portret + tytuł display + meta
       ═══════════════════════════════════════════════════════ */
    .hero {
      padding: clamp(7rem, 12vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
      position: relative;
    }
    .hero__copy {
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }

    .author-portrait {
      width: 108px;
      height: 108px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      box-shadow:
        0 0 0 2px var(--paper),
        0 0 0 3px rgba(26, 24, 20, 0.08),
        0 12px 28px -10px rgba(26, 24, 20, 0.18),
        0 3px 8px -2px rgba(26, 24, 20, 0.06);
      margin: 0 auto var(--sp-4);
      position: relative;
      cursor: default;
    }
    .author-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 22%;
      display: block;
      transition: transform 0.6s var(--ease);
    }
    .author-portrait:hover img {
      transform: scale(1.06);
    }
    @media (prefers-reduced-motion: reduce) {
      .author-portrait img { transition: none; }
      .author-portrait:hover img { transform: none; }
    }
    .author-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
      pointer-events: none;
    }
    @media (max-width: 540px) {
      .author-portrait { width: 88px; height: 88px; margin-bottom: var(--sp-3); }
    }

    /* HERO TITLE — display, dramatyczny */
    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(52px, 8.5vw, 108px);
      font-weight: 800;
      line-height: 0.98;
      letter-spacing: var(--ls-display);
      color: var(--ink);
      text-wrap: balance;
      max-width: 16ch;
      margin: 0 auto var(--sp-4);
    }
    .hero__title em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--ink-soft);
      letter-spacing: -0.005em;
    }
    @media (max-width: 540px) {
      .hero__title {
        font-size: clamp(44px, 12vw, 64px);
        letter-spacing: -0.04em;
        margin-bottom: var(--sp-3);
      }
    }

    .hero__sub {
      font-family: var(--font-body);
      font-size: clamp(18px, 1.9vw, 22px);
      line-height: 1.5;
      color: var(--ink-soft);
      max-width: 56ch;
      margin: 0 auto var(--sp-5);
      letter-spacing: var(--ls-body);
      text-wrap: pretty;
    }
    /* Na desktopie łamie linię, na mobile zostaje w ciągu zdania –
       inaczej końcówka wisi samotnie pod spodem. */
    .hero__sub-break { display: inline; }
    @media (min-width: 720px) {
      .hero__sub-break { display: block; }
    }
    @media (max-width: 540px) {
      .hero__sub { font-size: 17px; line-height: 1.55; margin-bottom: var(--sp-4); }
    }

    /* META · 3 osobne premium pille (styl .preview__theme-btn z ux/index) */
    .article__meta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .article__meta-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.55rem 1rem;
      background: var(--paper);
      border-radius: 10px;
      font-family: var(--font-display);
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: -0.005em;
      color: var(--ink);
      font-variant-numeric: tabular-nums;
      box-shadow: 0 1px 2px rgba(26, 24, 20, 0.08);
      white-space: nowrap;
      line-height: 1;
      min-height: 36px;
    }

    /* ═══════════════════════════════════════════════════════
       ARTICLE LAYOUT (3-col: TOC | body | balance)
       ═══════════════════════════════════════════════════════ */
    .article {
      padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(5rem, 8vw, 7rem);
      position: relative;
      z-index: 1;
    }
    .article__layout {
      display: grid;
      grid-template-columns: 240px minmax(0, 1fr) 240px;
      gap: clamp(2.5rem, 5vw, 4rem);
      max-width: 1280px;
      margin-inline: auto;
      padding: 0 clamp(1.25rem, 3vw, 2rem);
    }
    @media (max-width: 1080px) {
      .article__layout {
        grid-template-columns: 1fr;
        padding: 0 clamp(1.25rem, 3vw, 2rem);
      }
      .article__toc, .article__layout-side { display: none; }
    }

    /* ─── TOC · sticky, ultra minimalistyczny (Linear/Vercel docs style) ─── */
    .article__toc {
      position: sticky;
      top: 5.5rem;
      max-height: calc(100vh - 7rem);
      overflow-y: auto;
      padding: 0.5rem 0;
      align-self: start;
    }
    .article__toc-h {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-dim);
      margin-bottom: 0.7rem;
      padding-left: 0.85rem;
    }
    .article__toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      padding-left: 0;
      border-left: 1px solid var(--rule);
    }
    .article__toc-list a {
      display: block;
      padding: 0.45rem 0.85rem;
      margin-left: -1px;
      border-left: 2px solid transparent;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-mid);
      letter-spacing: -0.005em;
      line-height: 1.5;
      transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
    }
    .article__toc-list a:hover {
      color: var(--ink);
    }
    .article__toc-list a.is-active {
      color: var(--ink);
      font-weight: 600;
      border-left-color: var(--accent);
    }

    /* ═══════════════════════════════════════════════════════
       ARTICLE BODY · Inter Regular, ultra clean
       ═══════════════════════════════════════════════════════ */
    .article__body {
      font-family: var(--font-body);
      max-width: var(--measure-body);
      font-size: var(--fs-body);
      line-height: 1.78;
      letter-spacing: var(--ls-body);
      color: var(--ink-soft);
      font-feature-settings: "kern", "liga", "calt", "ss01", "cv11";
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* PARAGRAPHS */
    .article__body > p {
      margin-top: var(--sp-3);
      text-wrap: pretty;
    }
    .article__body > p:first-child { margin-top: 0; }

    /* LEAD – pierwszy paragraf, subtelnie większy od body (standard 2026) */
    .article__lead {
      font-family: var(--font-body);
      font-size: clamp(20px, 1.95vw, 23px);
      line-height: 1.55;
      letter-spacing: var(--ls-body);
      color: var(--ink);
      margin-bottom: var(--sp-5) !important;
      font-weight: 400;
      text-wrap: pretty;
    }
    @media (max-width: 540px) {
      .article__lead { font-size: 19px; line-height: 1.55; }
    }

    /* HEADINGS */
    .article__h2 {
      font-family: var(--font-display);
      font-size: clamp(30px, 3.8vw, 42px);
      font-weight: 700;
      letter-spacing: var(--ls-h2);
      line-height: 1.1;
      color: var(--ink);
      text-wrap: balance;
      margin-top: var(--sp-12) !important;
      padding-top: var(--sp-6);
      border-top: 1px solid var(--rule);
      position: relative;
    }
    /* Subtelny anchor — kropka akcentu nad H2 (visual hierarchy) */
    .article__h2::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }
    .article__h2 em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--ink-soft);
      letter-spacing: -0.005em;
    }
    .article__body > .article__h2:first-of-type {
      margin-top: var(--sp-2) !important;
      padding-top: 0;
      border-top: 0;
    }
    .article__body > .article__h2:first-of-type::before {
      display: none;
    }

    .article__h3 {
      font-family: var(--font-display);
      font-size: clamp(21px, 2.2vw, 25px);
      font-weight: 600;
      letter-spacing: var(--ls-h3);
      line-height: 1.3;
      color: var(--ink);
      text-wrap: balance;
      margin-top: var(--sp-5) !important;
      margin-bottom: var(--sp-2);
    }

    /* INLINE STYLES */
    .article__body strong {
      color: var(--ink);
      font-weight: 600;
    }
    .article__body em {
      font-family: var(--font-body);
      font-style: italic;
      font-weight: 500;
      color: var(--ink);
    }
    /* em w nagłówkach – Instrument Serif (display flourish) */
    .article__h2 em,
    .article__h3 em,
    .article__cta-h em,
    .hero__title em,
    .mock__title em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
    }

    /* LINKS w body */
    .article__body a:not(.tool__link):not(.article__cta-btn):not(.article__byline-mail) {
      color: var(--accent);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 1px;
      text-decoration-color: rgba(44, 84, 70, 0.4);
      transition: text-decoration-color 0.2s var(--ease), color 0.2s var(--ease);
    }
    .article__body a:not(.tool__link):not(.article__cta-btn):not(.article__byline-mail):hover {
      text-decoration-color: var(--accent);
    }

    /* LISTS */
    .article__body ul,
    .article__body ol {
      list-style: none;
      padding-left: 0;
      margin-top: var(--sp-3) !important;
    }
    .article__body ul li,
    .article__body ol li {
      position: relative;
      padding-left: 1.75rem;
      margin-top: 0.7rem;
      font-size: 19px;
      line-height: 1.7;
      letter-spacing: -0.003em;
      color: var(--ink-soft);
    }
    .article__body ul li::before {
      content: '';
      position: absolute;
      left: 0.25rem;
      top: 0.7em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }
    .article__body ol { counter-reset: artol; }
    .article__body ol li {
      counter-increment: artol;
    }
    .article__body ol li::before {
      content: counter(artol);
      position: absolute;
      left: 0;
      top: 0;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: 0.02em;
      width: 1.4rem;
      line-height: 2;
    }

    /* BLOCKQUOTE – editorial, premium readable (Inter Tight medium, no italic) */
    .article__quote {
      margin: var(--sp-8) 0 !important;
      padding: var(--sp-3) 0 var(--sp-3) var(--sp-5);
      border-left: 2px solid var(--accent);
      position: relative;
    }
    .article__quote p {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.4vw, 28px);
      font-style: normal;
      font-weight: 500;
      line-height: 1.42;
      color: var(--ink);
      letter-spacing: -0.018em;
      margin: 0 !important;
      text-wrap: pretty;
      position: relative;
    }
    .article__quote p::before {
      content: '"';
      font-family: var(--font-serif);
      color: var(--accent);
      margin-right: 0.05em;
      font-weight: 400;
    }
    .article__quote p::after {
      content: '"';
      font-family: var(--font-serif);
      color: var(--accent);
      margin-left: 0.05em;
      font-weight: 400;
    }
    .article__quote-cite {
      display: block;
      margin-top: var(--sp-2);
      font-family: var(--font-mono);
      font-size: var(--fs-micro);
      font-weight: 600;
      letter-spacing: var(--ls-caps);
      text-transform: uppercase;
      color: var(--ink-dim);
      font-style: normal;
    }

    /* ═══════════════════════════════════════════════════════
       COMPONENTS · TOOL CARD (premium 2026)
       ═══════════════════════════════════════════════════════ */
    .tool {
      margin: var(--sp-3) 0 !important;
      padding: 1.85rem 1.85rem 1.65rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 18px;
      box-shadow: var(--shadow-xs);
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1.3rem;
      align-items: start;
      transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
      position: relative;
    }
    .tool:hover {
      border-color: var(--rule-strong);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .tool:hover .tool__mark {
      transform: scale(1.05);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 2px 4px rgba(26, 24, 20, 0.22),
        0 8px 20px -6px rgba(26, 24, 20, 0.18);
    }
    @media (prefers-reduced-motion: reduce) {
      .tool:hover { transform: none; }
      .tool:hover .tool__mark { transform: none; }
    }
    @media (max-width: 540px) {
      .tool {
        grid-template-columns: 44px 1fr;
        gap: 1rem;
        padding: 1.4rem 1.3rem 1.2rem;
      }
    }
    .tool__mark {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--ink);
      display: grid;
      place-items: center;
      font-family: var(--font-mono);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--paper);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 1px 2px rgba(26, 24, 20, 0.18),
        0 4px 12px -4px rgba(26, 24, 20, 0.12);
      transition: transform 0.3s var(--ease-snap), box-shadow 0.3s var(--ease);
      flex-shrink: 0;
      text-transform: uppercase;
      font-variant-numeric: tabular-nums;
    }
    @media (max-width: 540px) {
      .tool__mark { width: 44px; height: 44px; font-size: 14px; border-radius: 11px; }
    }
    .tool__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.85rem;
      flex-wrap: wrap;
      margin-bottom: 0.55rem;
    }
    .tool__name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.018em;
      color: var(--ink);
      line-height: 1.2;
      text-wrap: balance;
    }
    .tool__tag {
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-mid);
      padding: 0.32rem 0.65rem;
      background: var(--bg);
      border-radius: 7px;
      flex-shrink: 0;
    }
    .tool__desc {
      font-family: var(--font-body);
      font-size: 16.5px;
      color: var(--ink-soft);
      line-height: 1.62;
      margin-top: 0 !important;
      letter-spacing: -0.004em;
    }
    .tool__use {
      margin-top: 0.85rem !important;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--ink-mid);
      line-height: 1.55;
      letter-spacing: -0.003em;
    }
    .tool__use strong { color: var(--ink); font-weight: 600; }
    .tool__link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.85rem;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--accent) !important;
      text-decoration: none !important;
      transition: color 0.2s var(--ease);
    }
    .tool__link::after {
      content: '↗';
      transition: transform 0.25s var(--ease-snap);
    }
    .tool__link:hover { color: var(--ink); }
    .tool__link:hover::after { transform: translate(2px, -2px); }

    /* ═══════════════════════════════════════════════════════
       TAKEAWAY (callout)
       ═══════════════════════════════════════════════════════ */
    .takeaway {
      margin: var(--sp-6) 0 !important;
      padding: 1.85rem 1.85rem 1.7rem;
      background: linear-gradient(160deg, var(--accent-soft) 0%, var(--paper) 100%);
      border: 1px solid var(--rule);
      border-radius: 18px;
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 1rem;
      align-items: start;
    }
    .takeaway__mark {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--paper);
      display: grid;
      place-items: center;
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      box-shadow: 0 0 0 4px var(--accent-soft);
    }
    .takeaway__h {
      font-family: var(--font-mono);
      font-size: var(--fs-micro);
      font-weight: 700;
      letter-spacing: var(--ls-caps);
      text-transform: uppercase;
      color: var(--ink-mid);
      margin-bottom: 0.5rem;
    }
    .takeaway__p {
      font-family: var(--font-body);
      color: var(--ink) !important;
      font-weight: 500 !important;
      font-size: 17px !important;
      line-height: 1.58 !important;
      letter-spacing: -0.008em !important;
      margin: 0 !important;
    }

    /* ═══════════════════════════════════════════════════════
       COMPARE TABLE
       ═══════════════════════════════════════════════════════ */
    .compare {
      margin: var(--sp-5) 0 !important;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-xs);
    }
    .compare__row {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      align-items: stretch;
    }
    @media (max-width: 720px) {
      .compare__row { grid-template-columns: 1.2fr 1fr 1fr; }
      .compare__cell:nth-child(5n) { display: none; }
    }
    .compare__cell {
      padding: 1.05rem 1.2rem;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.5;
      border-bottom: 1px solid var(--rule);
      border-right: 1px solid var(--rule);
      letter-spacing: -0.003em;
      font-variant-numeric: tabular-nums;
    }
    .compare__cell:last-child { border-right: 0; }
    .compare__row:last-child .compare__cell { border-bottom: 0; }
    .compare__cell--head {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--bg);
    }
    .compare__cell--first {
      font-family: var(--font-display);
      font-weight: 600;
      letter-spacing: -0.012em;
      color: var(--ink);
      background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 60%, transparent);
    }

    /* ═══════════════════════════════════════════════════════
       VISUAL · MOCK UI (dark)
       ═══════════════════════════════════════════════════════ */
    .article__visual {
      width: 100%;
      max-width: 1080px;
      margin: var(--sp-8) auto !important;
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--paper);
      border: 1px solid var(--rule);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .article__visual--full { max-width: min(100%, 1240px); }
    .mock {
      padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.5rem, 3vw, 2.8rem);
      background: linear-gradient(155deg, #1A1814 0%, #2A2620 70%, #3D3833 100%);
      color: #FBF8F2;
      display: grid;
      gap: var(--sp-3);
      grid-template-columns: minmax(0, 1fr);
      position: relative;
      isolation: isolate;
    }
    .mock::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 100% 0%, rgba(232, 163, 61, 0.18), transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(44, 84, 70, 0.22), transparent 55%);
      z-index: -1;
    }
    .mock__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mock__brand {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .mock__brand-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 3px rgba(232,163,61,0.18);
    }
    .mock__title {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.2vw, 32px);
      font-weight: 700;
      letter-spacing: -0.022em;
      line-height: 1.18;
      color: #FBF8F2;
      text-wrap: balance;
    }
    .mock__title em {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: rgba(251,248,242,0.72);
    }
    .mock__sub {
      font-family: var(--font-body);
      font-size: 15px;
      color: rgba(251,248,242,0.65);
      max-width: 56ch;
      line-height: 1.55;
    }
    .mock__row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }
    @media (max-width: 600px) {
      .mock__row { grid-template-columns: 1fr; }
    }
    .mock__tile {
      padding: 1rem 1.1rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      min-height: 100px;
    }
    .mock__tile-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(251,248,242,0.5);
    }
    .mock__tile-h {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      color: #FBF8F2;
      letter-spacing: -0.012em;
    }
    .mock__tile-p {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(251,248,242,0.55);
      line-height: 1.5;
    }

    /* ═══════════════════════════════════════════════════════
       CTA BLOCK
       ═══════════════════════════════════════════════════════ */
    .article__cta {
      margin: var(--sp-8) 0 !important;
      padding: 2.1rem 2.1rem 2.2rem;
      background: linear-gradient(160deg, var(--paper) 0%, var(--bg-deep) 100%);
      border: 1px solid var(--rule-strong);
      border-radius: 22px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      align-items: flex-start;
    }
    .article__cta-h {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.4vw, 26px);
      font-weight: 700;
      letter-spacing: -0.018em;
      color: var(--ink);
      line-height: 1.22;
      text-wrap: balance;
    }
    .article__cta-p {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--ink-soft);
      line-height: 1.58;
      max-width: 52ch;
      margin: 0 !important;
      letter-spacing: -0.003em;
    }
    .article__cta-btn {
      --lift: 0px; --press: 1;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.85rem 0.9rem 0.85rem 1.4rem;
      margin-top: 0.6rem;
      background: var(--ink);
      color: var(--paper) !important;
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 14.5px;
      font-weight: 600;
      letter-spacing: -0.008em;
      text-decoration: none !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 12px rgba(26,24,20,0.18);
      transform: translateY(var(--lift)) scale(var(--press));
      transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .article__cta-btn:hover {
      --lift: -1px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 22px rgba(26,24,20,0.25);
    }
    .article__cta-btn:active { --lift: 0px; --press: 0.97; transition-duration: 80ms; }
    .article__cta-btn .arrow-circle { background: var(--paper); color: var(--ink); }
    .article__cta-btn:hover .arrow-circle { transform: rotate(-30deg); }

    /* ═══════════════════════════════════════════════════════
       BYLINE BOTTOM
       ═══════════════════════════════════════════════════════ */
    .article__byline {
      margin-top: var(--sp-8);
      padding-top: var(--sp-4);
      border-top: 1px solid var(--rule);
      display: flex;
      align-items: center;
      gap: 0.85rem;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .article__byline-l {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
    }
    .article__byline-pic {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      flex-shrink: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    }
    .article__byline-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .article__byline-meta {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }
    .article__byline-name {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.012em;
    }
    .article__byline-role {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--ink-mid);
      letter-spacing: 0.04em;
    }
    .article__byline-mail {
      font-family: var(--font-mono);
      font-size: 12.5px;
      letter-spacing: 0.04em;
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s var(--ease);
    }
    .article__byline-mail:hover { color: var(--ink); }

    /* ═══════════════════════════════════════════════════════
       FOOTER (minimal)
       ═══════════════════════════════════════════════════════ */
    .footer {
      padding: 2rem 0 1.3rem;
      color: var(--ink-mid);
      font-size: 13px;
      position: relative;
    }
    .footer__bottom {
      padding-top: 1.4rem;
      border-top: 1px solid rgba(26, 24, 20, 0.08);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }
    .footer__bottom-year {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-variant-numeric: tabular-nums;
      justify-self: start;
    }
    .footer__bottom-credits {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.15rem;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.8;
      text-align: center;
    }
    .footer__bottom-credits-eyebrow { color: var(--ink-dim); font-weight: 500; }
    .footer__bottom-credits-main { color: var(--ink); font-weight: 600; }
    .footer__bottom-meta {
      list-style: none;
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      align-items: center;
      justify-self: end;
    }
    .footer__bottom-meta li {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      background: var(--paper);
      line-height: 1;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    @media (max-width: 720px) {
      .footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
      }
      .footer__bottom-meta { justify-content: center; flex-wrap: wrap; }
    }

    /* ═══════════════════════════════════════════════════════
       REVEAL · scroll animations
       ═══════════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    }
    .reveal.is-in {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* Anti-FOUT */
    html:not(.fonts-ready) body { opacity: 0; }
    html.fonts-ready body { transition: opacity 0.3s var(--ease); }

    /* Scroll margin dla anchor links */
    .article [id] { scroll-margin-top: 6rem; }
    }


    /* ═══════════════════════════════════════════════════════════════════
       END · ARTICLE PAGES (body.page-article)
       ═══════════════════════════════════════════════════════════════════ */


    /* ═══════════════════════════════════════════════════════════════════
       PILL UNIFICATION + FULL FOOTER COPY (1:1 z main.css)
       Spójność cross-site: stopka i plakietki identyczne na każdej stronie
       ═══════════════════════════════════════════════════════════════════ */

    /* Hero chip — UNIFIED (te same wartości co .founder__chip na index) */
    .hero__chip {
      padding: 0.45rem 0.9rem !important;
      font-size: 11px !important;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 1px rgba(26, 24, 20, 0.03) !important;
      line-height: 1 !important;
    }

    .footer {
      padding: 5rem 0 1.3rem;
      color: var(--ink-mid);
      font-size: 13px;
      position: relative;
    }
    .footer__rule {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--rule-strong) 30%, var(--rule-strong) 70%, transparent);
      margin-bottom: 3.5rem;
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 1.5fr 1.25fr 1.25fr;
      gap: clamp(2rem, 4vw, 3.5rem);
      padding-bottom: 2.25rem;
    }
    .footer__brand {
      display: flex;
      flex-direction: column;
    }
    /* Lewa kolumna: identyczne odstępy nagłówka jak w prawych footer__col, by features wyrównały się z pierwszym itemem prawej listy */
    .footer__brand .footer__group-h--link { margin-bottom: 1.2rem; }
    .footer__brand .footer__legal { margin-top: 0.55rem; margin-left: -2px; }
    .footer__brand .footer__sig { margin-top: auto; }
    .footer__brand .brand {
      align-self: flex-start;
    }
    .footer__pitch {
      max-width: 38ch;
      color: var(--ink-soft);
      line-height: 1.6;
      font-size: 14px;
    }
    .footer__features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      max-width: 40ch;
    }
    .footer__features li {
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.5;
      padding-left: 1.2rem;
      position: relative;
    }
    .footer__features li::before {
      content: '';
      position: absolute;
      left: 1px; top: calc(0.4rem + 1px);
      width: 8px; height: 4px;
      border-left: 1.5px solid var(--ink);
      border-bottom: 1.5px solid var(--ink);
      transform: rotate(-45deg);
    }
    .footer__sig {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.55rem 1.1rem 0.55rem 0.55rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 999px;
      align-self: flex-start;
      box-shadow: var(--shadow-xs);
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s var(--ease);
    }
    .footer__sig:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-sm);
    }
    .footer__sig-pic {
      width: 40px; height: 40px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-deep);
      flex-shrink: 0;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    }
    .footer__sig-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .footer__sig-meta {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .footer__sig-role {
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-dim);
      line-height: 1;
    }
    .footer__sig-name {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.012em;
      line-height: 1.1;
    }
    .footer__col {
      display: flex;
      flex-direction: column;
    }
    .footer__group-h {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 1.2rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px solid var(--rule);
    }
    .footer__group-h::before {
      content: '';
      width: 14px; height: 1px;
      background: var(--ink-mid);
      flex-shrink: 0;
    }
    .footer__group-h--link {
      text-decoration: none;
      color: var(--ink-soft);
      margin-bottom: 0;
      transition: color 0.2s var(--ease);
    }
    .footer__group-h--link:hover { color: var(--ink); }
    .footer__group-h--link:focus-visible {
      outline: 2px solid var(--ink-mid);
      outline-offset: 4px;
      border-radius: 2px;
    }
    .footer__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .footer__list a, .footer__list span {
      font-size: 13.5px;
      color: var(--ink-soft);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      letter-spacing: -0.005em;
    }
    .footer__list .footer__item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.85rem;
      width: 100%;
    }
    .footer__list a:hover { color: var(--ink); }
    .footer__list a::after {
      content: '↗';
      font-size: 0.85em;
      color: var(--ink-dim);
      opacity: 0;
      transform: translate(-4px, 4px);
      transition: opacity 0.2s var(--ease), transform 0.25s var(--ease-snap);
    }
    .footer__list a:hover::after { opacity: 1; transform: translate(0, 0); }
    .footer__list a.no-arrow::after { display: none; }

    /* Service items: nazwa + cena (czysta typografia, bez dashed lines) */
    .footer__list li a {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.85rem;
    }
    .footer__price {
      font-family: var(--font-mono);
      font-size: 11.5px;
      font-weight: 600;
      color: var(--ink-mid);
      letter-spacing: 0.02em;
      flex-shrink: 0;
      font-variant-numeric: tabular-nums;
    }
    .footer__list a:hover .footer__price { color: var(--ink); }
    .footer__legal {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: -0.005em;
      color: var(--ink);
      text-decoration: none;
    }
    .footer__legal-icon {
      flex-shrink: 0;
      width: 15px;
      height: 15px;
      color: currentColor;
    }
    .footer__legal-icon svg { width: 15px; height: 15px; display: block; }
    .footer__legal-text {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-decoration-color: color-mix(in srgb, var(--ink) 10%, transparent);
      text-underline-offset: 4px;
      transition: text-decoration-color 0.2s var(--ease);
    }
    .footer__legal:hover .footer__legal-text {
      text-decoration-color: var(--ink);
    }

    .footer__weight {
      margin: 2rem 0 0;
      padding: 1.2rem 1.5rem;
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: var(--r-md);
      font-size: 12.5px;
      line-height: 1.65;
      color: var(--ink-soft);
      max-width: 100%;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      box-shadow: var(--shadow-xs);
    }
    .footer__weight-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--paper);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-family: var(--font-mono);
      font-size: 16px;
      font-weight: 700;
      box-shadow:
        0 2px 6px rgba(26, 24, 20, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .footer__weight strong { color: var(--ink); font-weight: 600; }
    .footer__weight-num {
      font-family: var(--font-mono);
      color: var(--ink);
      font-weight: 600;
    }

    .footer__bottom-nav {
      margin-top: 2rem;
      padding: 1.4rem 0 1.4rem;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(1.2rem, 3vw, 2.5rem);
      font-family: var(--font-mono);
      font-size: 11.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .footer__bottom-nav a {
      color: var(--ink-soft);
      transition: color 0.2s var(--ease);
      position: relative;
    }
    .footer__bottom-nav a:hover { color: var(--ink); }
    .footer__bottom-nav a:hover::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: -4px;
      height: 1.5px;
      background: var(--ink);
    }

    .footer__bottom {
      margin-top: 1.5rem;
      padding-top: 1.4rem;
      border-top: 1px solid rgba(26, 24, 20, 0.08);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }
    .footer__bottom-year {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-variant-numeric: tabular-nums;
      justify-self: start;
    }
    .footer__bottom-credits {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.15rem;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.8;
      text-align: center;
    }
    .footer__bottom-credits-eyebrow {
      color: var(--ink-dim);
      font-weight: 500;
    }
    .footer__bottom-credits-main {
      color: var(--ink);
      font-weight: 600;
    }
    .footer__bottom-site {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      transition: color 0.2s var(--ease);
      justify-self: end;
    }
    .footer__bottom-site:hover { color: var(--ink); }
    @media (max-width: 720px) {
      .footer__bottom { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
      .footer__bottom-year, .footer__bottom-site { justify-self: center; }
    }

    .footer__bottom-meta {
      list-style: none;
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      align-items: center;
      margin: 0;
      padding: 0;
      justify-self: end;
    }
    .footer__bottom-meta li {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      background: var(--paper);
      line-height: 1;
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
    }
    .footer__bottom-meta li:hover {
      transform: translateY(-1px);
      box-shadow:
        inset 0 0 0 1px rgba(26, 24, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 4px rgba(26, 24, 20, 0.06);
    }

    @media (max-width: 820px) {
      .footer__inner { grid-template-columns: 1fr; gap: 2.4rem; }
      .footer__brand { max-width: 520px; }
      .footer__brand .footer__sig { margin-top: 1.6rem; }
    }
    @media (max-width: 720px) {
      .footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
      }
      .footer__bottom-meta {
        justify-content: center;
        flex-wrap: wrap;
      }
    }


    /* Footer minimal (podstrony bez cennika) – override po pełnej kopii .footer.
       Pomniejszony padding stopki, ale margin-top kreski (footer__bottom) zostaje
       jak na index (1.5rem) – żeby kreska była tak samo odsunięta od treści. */
    .footer.footer--minimal {
      padding: 2rem 0 1.3rem;
    }

    /* ═══════════════════════════════════════════════════════════════════
       END · FULL FOOTER COPY
       ═══════════════════════════════════════════════════════════════════ */

    /* ═══════════════════════════════════════════════════════════════════
       NAV BACK BUTTON · UNIFIED · 2026-05
       Sand bg (#EDE4D1 / hover #E0D5BD), gap 0.25rem, strzałka jako znak ←
       bez wewnętrznego kółka. Mobile: 36×36 circle z tym samym tłem,
       ← znak (font 14px), bez SVG mask. Override dwóch wcześniejszych kopii.
       ═══════════════════════════════════════════════════════════════════ */
    .nav__back {
      gap: 0.25rem;
      background: #EDE4D1;
      transition: color 0.2s var(--ease), background 0.2s var(--ease);
    }
    .nav__back:hover { color: var(--ink); background: #E0D5BD; }
    .nav__back-arrow {
      width: auto; height: auto;
      background: transparent;
    }
    @media (max-width: 720px) {
      .nav__back { background: #EDE4D1; }
      .nav__back:hover { background: #E0D5BD; }
      .nav__back-arrow { font-size: 14px; }
      .nav__back-arrow::after { display: none; }
    }

    /* ════════════════════════════════════════════════════════════
       Nav CTA → icon-only on mobile ("Napisz maila" overflowed the pill)
       ════════════════════════════════════════════════════════════ */
    @media (max-width: 720px) {
      .nav__cta {
        font-size: 0;
        gap: 0;
        padding: 0;
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
      }
      .nav__cta .arrow-circle { display: none; }
      .delivers { padding-inline: 10px; }
      .nav__cta::after {
        content: "";
        display: block;
        width: 17px;
        height: 17px;
        background: var(--paper);
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M22 2 15 22 11 13 2 9Z'/%3E%3C/svg%3E") center / contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M22 2 15 22 11 13 2 9Z'/%3E%3C/svg%3E") center / contain no-repeat;
      }
    }

    /* ════════════════════════════════════════════════════════════
       NAV BACK · MOBILE PARITY · 2026-05-23
       Desktop bez zmian (padding nav__inner jak był: 1.1 L / 0.7 R).
       Mobile: ikona ← 40×40 (parity z CTA 40×40), glif 18px, padding
       nav__inner symetryczny 0.7rem L/R — lewa ikona ma ten sam
       odstęp od lewej krawędzi co prawa od prawej.
       ════════════════════════════════════════════════════════════ */
    @media (max-width: 720px) {
      .nav__inner {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
      }
      .nav.is-scrolled .nav__inner {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
      }
      .nav__back {
        width: 40px;
        height: 40px;
      }
      .nav__back-arrow { font-size: 18px; }
    }
