/* =========================================================
   ERSTE PROMO · landing
   Paleta: granat dominujący, czerwień tylko jako akcent (logo, live dot)
   Display: Fraunces (variable serif)
   Body:    Manrope
   ========================================================= */

:root {
  /* Tło — chłodne, lekko szaro-kremowe (mniej żółtawe niż wcześniej) */
  --bone:        #EAEAE0;
  --bone-2:      #DBDBCF;
  /* Granat Erste */
  --ink:         #061226;
  --ink-2:       #0F2A50;
  --ink-3:       #2B416B;
  /* Niebieski Erste — pełny zakres */
  --blue:        #1B4995;
  --blue-2:      #2C68C7;
  --blue-soft:   #6FA0D8;
  --blue-dark:   #0A2459;
  --navy:        #061839;
  /* Czerwień Erste — używana OSZCZĘDNIE: logo, live dot, ::selection */
  --red:         #C8102E;
  --red-dark:    #94081F;
  --red-glow:    rgba(200, 16, 46, .22);
  --cream:       #FFFAF0;
  --line:        rgba(6, 18, 38, .14);
  --line-strong: rgba(6, 18, 38, .32);

  --serif:  "Fraunces", "Times New Roman", serif;
  --sans:   "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, monospace;

  --shadow-card: 0 2px 0 0 var(--ink), 0 30px 60px -30px rgba(11, 26, 54, .35);
  --shadow-sm:   0 1px 0 0 var(--line-strong);

  --radius: 18px;
  --radius-lg: 28px;

  --easing: cubic-bezier(.7, 0, .2, 1);
  --easing-spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(27, 73, 149, .22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(44, 104, 199, .14), transparent 60%),
    var(--bone);
}

::selection { background: var(--blue); color: var(--cream); }

/* ---------- Textures ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.10 0 0 0 0 0.21 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
.mesh {
  position: fixed;
  top: -10%; right: -10%;
  width: 60vw; height: 60vw;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: .55;
  background:
    radial-gradient(closest-side, rgba(27, 73, 149, .55), transparent 70%),
    radial-gradient(closest-side at 70% 70%, rgba(111, 160, 216, .35), transparent 70%);
  animation: meshDrift 30s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  to { transform: translate(-8%, 6%) rotate(8deg); }
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in srgb, var(--bone) 70%, transparent);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand__mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  border-radius: 4px;
  box-shadow: 0 2px 0 var(--red-dark), 0 6px 20px var(--red-glow);
  transition: transform .25s var(--easing-spring);
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.06); }
.brand__mark--sm { width: 26px; height: 26px; font-size: 16px; }
.brand__word { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink-3);
  margin-top: 4px;
  text-transform: uppercase;
}

.topnav {
  display: flex; gap: 8px;
  align-items: center;
}
.chip {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink);
  font: 500 13px/1 var(--sans);
  letter-spacing: .01em;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s var(--easing);
}
.chip:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.chip--ghost { background: transparent; }

/* ---------- View transitions ---------- */
.view {
  display: block;
  opacity: 1;
  transition: opacity .45s var(--easing), transform .55s var(--easing);
}
body[data-view="choice"]   .view--detail { display: none; }
body[data-view="osobiste"] .view--choice,
body[data-view="osobiste"] .view--business { display: none; }
body[data-view="firmowe"]  .view--choice,
body[data-view="firmowe"]  .view--personal { display: none; }

body[data-transitioning] .view {
  opacity: 0;
  transform: translateY(8px);
}

/* ---------- HERO ---------- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 40px;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-3);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,240,.6);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red);
  animation: pulse 2s var(--easing) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}

.hero__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-weight: 500;
  font-size: clamp(56px, 11vw, 168px);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 28px 0 30px;
  max-width: 14ch;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .reveal {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal .9s var(--easing) forwards;
}
.hero__title .reveal:nth-child(2) { animation-delay: .12s; }
.hero__title .line:nth-child(2) .reveal { animation-delay: .22s; }
.hero__title .line:nth-child(3) .reveal { animation-delay: .36s; }
.hero__title .line:nth-child(3) .reveal:nth-child(2) { animation-delay: .48s; }
@keyframes reveal {
  to { transform: translateY(0); }
}

.hero__title .italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--ink-3);
}
.hero__title .big {
  color: var(--blue);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 700;
  letter-spacing: -.045em;
}
.hero__title .accent {
  color: var(--ink);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero__lede {
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-2);
  margin: 0 0 50px;
  line-height: 1.55;
}
.hero__lede em { font-family: var(--serif); font-style: italic; color: var(--ink); }
.hero__lede strong { color: var(--ink); }

/* ---------- Choice cards ---------- */
.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 40px 0 24px;
}
.card {
  position: relative;
  appearance: none;
  text-align: left;
  cursor: pointer;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  background: var(--cream);
  font: inherit; color: inherit;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--easing-spring), box-shadow .35s var(--easing);
}
.card:hover {
  transform: translateY(-6px) rotate(-.4deg);
  box-shadow: 0 2px 0 0 var(--ink), 0 50px 80px -30px rgba(11, 26, 54, .45);
}
.card--business:hover { transform: translateY(-6px) rotate(.4deg); }

.card__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.card__amount {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}
.card--personal .card__amount { color: var(--blue); }
.card--business .card__amount { color: var(--navy); }

.card__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: .96;
  letter-spacing: -.03em;
  margin: 0 0 18px;
}
.card__desc {
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 38ch;
}
.card__bullets {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-2);
}
.card__bullets li {
  padding: 6px 0 6px 24px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.card__bullets li:last-child { border-bottom: 0; }
.card__bullets li::before {
  content: "→";
  position: absolute;
  left: 0; top: 6px;
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 700;
}
.card--business .card__bullets li::before { color: var(--navy); }
.card__bullets li em { font-style: italic; color: var(--ink); font-family: var(--serif); }

/* Bonus bullets — kompaktowe "co dostajesz dodatkowo" */
.card__bullets li.is-bonus { color: var(--ink); font-family: var(--sans); font-size: 13px; }
.card__bullets li.is-bonus::before {
  content: "+";
  color: var(--red);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  top: 5px;
}

/* Warunki w jednej linii — kompaktowy "pas" nad bonusami */
.card__terms {
  margin: 0 0 18px;
  padding: 10px 14px;
  background: rgba(27, 73, 149, .06);
  border: 1px solid rgba(27, 73, 149, .15);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
}
.card--business .card__terms {
  background: rgba(6, 24, 57, .05);
  border-color: rgba(6, 24, 57, .15);
}
.card__terms-label {
  display: inline-block;
  margin-right: 4px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
}
.card--business .card__terms-label { color: var(--navy); }

.card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 4px;
}
.card__cta svg { width: 16px; height: 16px; transition: transform .25s var(--easing); }
.card:hover .card__cta svg { transform: translateX(4px); }
.card--personal .card__cta { color: var(--blue); }
.card--business .card__cta { color: var(--navy); }

.card__deco {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: .12;
  transition: transform .6s var(--easing);
}
.card--personal .card__deco { background: radial-gradient(circle, var(--blue), transparent 70%); }
.card--business .card__deco { background: radial-gradient(circle, var(--navy), transparent 70%); }
.card:hover .card__deco { transform: scale(1.4); }

.footnote {
  font-size: 12.5px;
  color: var(--ink-3);
  max-width: 80ch;
  margin: 24px 0 0;
  font-family: var(--mono);
}

/* ---------- Marquee ---------- */
.marquee {
  margin: 80px 0 0;
  padding: 18px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  gap: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 400;
  animation: marquee 38s linear infinite;
}
.marquee__track .sep { color: var(--blue-soft); font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Stream callout ---------- */
.stream {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 60px;
}
.stream__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 6px 12px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  margin-bottom: 18px;
}
.kicker--blue { color: var(--blue); border-color: var(--blue); }
.kicker--red  { color: var(--red);  border-color: var(--red);  }
.stream__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 78px);
  line-height: .96;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}
.stream__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--blue);
}
.stream p {
  color: var(--ink-2);
  font-size: 17px;
  margin: 0 0 14px;
  max-width: 56ch;
}
.stream__facts {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.stream__facts li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.stream__facts li:last-child { border-bottom: 1px solid var(--line); }

.stream__meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: .01em;
}

.stream__col--visual { position: relative; }
.stream__caption {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
  margin-bottom: 12px;
  text-align: center;
}

/* Donate widget (recreation) */
.donate {
  position: relative;
  background: linear-gradient(160deg, #181828, #0c0c18);
  color: #fff;
  border-radius: 18px;
  padding: 18px 20px 16px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.06);
  transform: rotate(-2deg);
  max-width: 420px;
  margin: 0 auto;
  font-family: var(--sans);
}
.donate__head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.donate__live { color: #ff4b5c; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }

.donate__body {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(215,32,45,.18), rgba(31,93,165,.18));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  margin-bottom: 14px;
}
.donate__amount {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.donate__from {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}
.donate__money {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #ffd84a;
  letter-spacing: -.02em;
}
.donate__msg {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.45;
}
.donate__bar {
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.donate__fill {
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff8b3a);
  border-radius: 999px;
  animation: fill 4s var(--easing) infinite alternate;
}
@keyframes fill { from { width: 84%; } to { width: 92%; } }
.donate__viewers {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
}

.donate__chip {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  background: var(--bone);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.donate__chip--1 {
  top: 12px; right: -16px;
  transform: rotate(8deg);
  background: var(--red);
  color: var(--cream);
  border-color: var(--red-dark);
}
.donate__chip--2 {
  bottom: -10px; left: -24px;
  transform: rotate(-6deg);
}

/* ---------- DETAIL PAGES ---------- */
.detail {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.back {
  appearance: none;
  background: transparent;
  border: 0;
  font: 500 14px/1 var(--sans);
  color: var(--ink-3);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 0 24px 0;
  text-decoration: none;
}
.back svg { width: 16px; height: 16px; transition: transform .22s var(--easing); }
.back:hover { color: var(--ink); }
.back:hover svg { transform: translateX(-4px); }

.detail__head { margin-bottom: 48px; }
.detail__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: .94;
  letter-spacing: -.035em;
  margin: 0 0 22px;
}
.detail__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--blue);
}
.view--business .detail__title em { color: var(--navy); }
.detail__lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}
.detail__lede em { font-family: var(--serif); font-style: italic; color: var(--ink); }

/* Big number */
.big-number {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.big-number::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: radial-gradient(closest-side at 30% 30%, rgba(44,104,199,.45), transparent 60%),
              radial-gradient(closest-side at 80% 70%, rgba(111,160,216,.35), transparent 60%);
  z-index: -1;
  filter: blur(40px);
}
.big-number__label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,250,240,.6);
}
.big-number__value {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 700;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 1;
  letter-spacing: -.045em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0;
  color: #8FB8E8;
}
.view--business .big-number__value { color: #B8D2F0; }
.zl {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: .42em;
  color: var(--cream);
  font-weight: 500;
}
.big-number__hint {
  font-size: 14px;
  color: rgba(255,250,240,.7);
}

/* Rules block */
.rules {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-card);
}
.rules__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 22px;
  letter-spacing: -.02em;
}
.rules__title em { font-style: italic; color: var(--blue); }
.view--business .rules__title em { color: var(--navy); }

.rules__list {
  list-style: none;
  padding: 0; margin: 0;
}
.rules__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.rules__list li:first-child { border-top: 0; }
.rules__no {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--blue);
}
.view--business .rules__no { color: var(--navy); }
.rules__list li > div > strong { display: block; font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.rules__list li > div > span { display: block; color: var(--ink-3); font-size: 14px; line-height: 1.55; }
.rules__list li > div > span strong { display: inline; font-size: inherit; color: var(--ink); font-weight: 600; }

.rules__premia {
  margin: 22px 0 0;
  padding: 16px 18px;
  background: var(--bone-2);
  border-radius: 12px;
  font-size: 15px;
}

/* Plan */
.plan-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -.025em;
  margin: 60px 0 24px;
}
.plan-title em { font-style: italic; color: var(--blue); }
.view--business .plan-title em { color: var(--navy); }

.plan {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.plan__step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  padding: 26px 28px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  position: relative;
  transition: transform .25s var(--easing);
}
.plan__step:hover { transform: translateX(4px); }
.plan__step--bonus {
  background: linear-gradient(135deg, var(--bone-2), var(--cream));
  border-style: dashed;
}
.plan__no {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14px;
  align-self: start;
  color: var(--cream);
  background: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: .04em;
  text-align: center;
  min-width: 56px;
}
.view--personal .plan__step .plan__no { background: var(--blue); }
.view--business .plan__step .plan__no { background: var(--navy); }
.plan__step--bonus .plan__no { background: var(--ink); }

.plan__step h4 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -.015em;
}
.plan__step p { margin: 0 0 8px; color: var(--ink-2); }
.plan__step ul { margin: 8px 0; padding-left: 18px; color: var(--ink-2); }
.plan__step ul li { padding: 3px 0; }
.plan__step strong { color: var(--ink); }
.plan__step em { font-family: var(--serif); font-style: italic; color: var(--ink); }

.plan__warn {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(200,16,46,.07);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: 14px;
}
.plan__win {
  margin-top: 8px;
  padding: 8px 14px;
  background: rgba(27,73,149,.08);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.view--business .plan__win {
  background: rgba(10,36,89,.08);
  border-left-color: var(--navy);
}

/* Why grid */
.why { margin: 40px 0; }
.why__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}
.why__title em { font-style: italic; color: var(--navy); }

.why ul { list-style: none; padding: 0; }
.why ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.why ul li span {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why__grid > div {
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}
.why__grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.why__grid span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.why__note {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(200,16,46,.07);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: 14px;
}

/* Bonus list — co dostajesz poza premią */
.bonus {
  margin: 48px 0;
  padding: 36px 32px 32px;
  background: linear-gradient(160deg, var(--cream), var(--bone));
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  position: relative;
}
.bonus .kicker { margin-bottom: 14px; }
.bonus__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 24px;
}
.bonus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.bonus__list li {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.bonus__list li:first-child { border-top: 0; padding-top: 4px; }
.bonus__list strong {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.25;
}
.bonus__list span {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.bonus__list strong + span strong { color: var(--blue); font-family: var(--sans); font-size: inherit; }

@media (max-width: 700px) {
  .bonus__list li { grid-template-columns: 1fr; gap: 6px; }
}

/* Warn box */
.warn-box {
  margin: 40px 0;
  padding: 28px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  position: relative;
}
.warn-box::before {
  content: "⚠";
  position: absolute;
  top: -18px;
  left: 24px;
  width: 36px; height: 36px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  border-radius: 50%;
  border: 2.5px solid var(--bone);
}
.warn-box h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 14px;
}
.warn-box ul { margin: 0; padding-left: 20px; }
.warn-box li { padding: 6px 0; color: var(--ink-2); font-size: 15px; }
.warn-box strong { color: var(--ink); }

/* CTA buttons */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 30px 36px;
  border-radius: var(--radius);
  margin: 48px 0 20px;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--easing-spring), box-shadow .25s var(--easing);
}
.cta__main {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.cta__sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .8;
}
.cta--primary {
  background: var(--blue);
  color: var(--cream);
  box-shadow: 0 2px 0 var(--blue-dark), 0 30px 60px -20px rgba(27, 73, 149, .35);
}
.cta--deep {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 2px 0 #03102a, 0 30px 60px -20px rgba(6, 24, 57, .45);
}
.cta:hover { transform: translateY(-3px) scale(1.01); }
.cta--primary:hover { box-shadow: 0 2px 0 var(--blue-dark), 0 40px 80px -20px rgba(27, 73, 149, .55); }
.cta--deep:hover    { box-shadow: 0 2px 0 #03102a,        0 40px 80px -20px rgba(6, 24, 57, .65); }
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--easing);
  z-index: -1;
}
.cta:hover::before { transform: translateX(100%); }

.affil-note {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.55;
  font-family: var(--mono);
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 32px 60px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(215,32,45,.25), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.foot__row {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.foot__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 22px;
  margin-bottom: 28px;
}
.foot__disclaim {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
  color: rgba(255,250,240,.85);
  max-width: 72ch;
}
.foot__disclaim strong { color: var(--cream); }
.foot__legal {
  font-size: 13px;
  color: rgba(255,250,240,.55);
  margin: 0 0 30px;
  font-family: var(--mono);
  max-width: 72ch;
}
.foot__legal a {
  color: #ff8b3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot__copy {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,250,240,.4);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,250,240,.1);
}

/* ---------- Scroll reveals ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--easing), transform .7s var(--easing);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .topbar { padding: 14px 18px; }
  .brand__sub { display: none; }
  .topnav .chip:first-child,
  .topnav .chip:nth-child(2) { display: none; }
  .hero { padding: 56px 22px 30px; }
  .hero__title { font-size: clamp(48px, 14vw, 96px); }
  .choice { grid-template-columns: 1fr; gap: 16px; }
  .stream { padding: 60px 22px; }
  .stream__inner { grid-template-columns: 1fr; gap: 40px; }
  .donate { transform: rotate(-1deg); }
  .donate__chip--1 { right: 8px; }
  .donate__chip--2 { left: 8px; }
  .detail { padding: 40px 22px 60px; }
  .why__grid { grid-template-columns: 1fr; }
  .plan__step { grid-template-columns: 1fr; padding: 22px; gap: 10px; }
  .plan__no { justify-self: start; }
  .rules__list li { grid-template-columns: 1fr; gap: 8px; }
  .rules__no { font-size: 28px; }
  .foot { padding: 50px 22px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero__title .reveal { transform: translateY(0); }
}
