/* ════════════════════════════════════════════════════════════════════════════
 * SONDER SYSTEM — homepage, hand-authored redesign (2026-07-22)
 * Fully owned static page. Brand kept: colours, DM Sans + Inter, soft gradient.
 * The orb (assets/home/orb-hero.js) is a fixed full-viewport canvas behind all
 * content; sections frost over it so its healing colour washes the whole page.
 * ══════════════════════════════════════════════════════════════════════════ */

/* ── tokens ───────────────────────────────────────────────────────────────── */
:root {
  --bg: #F7F2F6;
  --bg-2: #F1E9F1;
  --ink: #26232B;
  --ink-soft: #55505C;
  --muted: #8B8494;
  --violet: #B3ABE6;
  --violet-deep: #7A6BD0;
  --violet-ink: #4B3F8F;
  --peach: #F3CFB0;
  --coral: #EBBBAE;
  --green: #4EB084;
  --card: #FFFFFF;
  --line: rgba(38,35,43,.10);
  --line-soft: rgba(38,35,43,.06);

  /* #12: slightly more translucent so the orb's healing colour washes through
     the page and the red→green story reads. Solid stays opaque for CTA/footer. */
  --surface: rgba(247,242,246,.84);
  --surface-solid: rgba(247,242,246,.93);
  --dark: #1B1723;
  --dark-ink: #EDE9F4;

  --radius: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 26px -14px rgba(70,50,110,.30);
  --shadow: 0 26px 70px -30px rgba(70,45,110,.40);
  --shadow-lg: 0 50px 120px -40px rgba(70,45,110,.48);

  --display: 'DM Sans', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --expo: cubic-bezier(.16,1,.3,1);

  /* #1 (2026-07-28): ONE container width everywhere — matches the KPI band
     ("Liczby mówią…"), so nothing jumps width as you scroll on wide screens. */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* soft static gradient wash under the orb, so bare bg is never flat */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(179,171,230,.20), transparent 70%),
    radial-gradient(55% 45% at 88% 22%, rgba(243,207,176,.18), transparent 72%),
    radial-gradient(70% 60% at 50% 108%, rgba(235,187,174,.16), transparent 70%);
}

/* film grain — the premium tell, near-invisible but kills flatness */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── the orb canvas ───────────────────────────────────────────────────────── */
#orb-canvas {
  position: fixed; inset: 0; z-index: 1;
  width: 100vw; height: 100vh; height: 100dvh;
  display: block; pointer-events: none;
}

.page { position: relative; z-index: 2; }

/* ── typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; margin: 0; letter-spacing: -.02em; line-height: 1.05; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--body);
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet-ink);
  display: inline-flex; align-items: center; gap: .55em;
}
/* eyebrow line removed per feedback (no dash before the label) */

.h-display { font-size: clamp(2.7rem, 7.4vw, 5.4rem); line-height: .98; letter-spacing: -.035em; }
.h-section { font-size: clamp(1.85rem, 4.2vw, 3.1rem); line-height: 1.02; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.5; color: var(--ink-soft); }
.kicker { color: var(--muted); }

/* gradient ink for accent words */
/* #3 (round-3): the default gradient is the DARK/readable one (same as the hero's
   "Nie zgadywanie.") so accent phrases stay legible on the light background.
   The vivid light gradient is restored only INSIDE dark panels (below). */
.grad {
  background: linear-gradient(100deg, var(--violet-ink), #6D59C4 42%, #C0704F);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* dark sections (RAPORTY contrast card + the dark pricing panel) keep the vivid,
   light gradient — it reads beautifully on dark and would be muddy if darkened */
.contrast .grad, .pricing-panel .grad {
  /* background-image (not the `background` shorthand) so we don't reset
     background-clip:text back to border-box and paint a solid block */
  background-image: linear-gradient(105deg, var(--violet), var(--coral) 52%, var(--peach));
}

/* ── layout ───────────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.band { padding-block: clamp(84px, 12vh, 150px); }

/* frosted content surface that rides over the orb (below the hero) */
.surface {
  position: relative;
  /* #1 (r3): the frost fades to nothing over its last stretch, so it melts into
     the transparent final section instead of ending on a hard alpha line */
  /* EASED fade (round-4 fix): a gentle start (barely changing alpha over the first
     stretch) so there's no slope kink between the flat-dim region and the fade —
     a hard start reads as a faint "cut-out line" (Mach band) over the vivid orb. */
  /* ROUND 5 — the seam was at the TOP, not the bottom. Rounds 3–4 only eased the
     fade-out; the fade-IN was a step: alpha 0 (bare hero) → .84 in one row, which
     measured as a +65 luminance jump straight across the orb. Now the frost eases
     in over ~320px with the same gentle-start profile, so hero and content read as
     one continuous surface. The drawn `border-top` + inset highlight (an actual
     1px white line) are gone — they WERE the divider, not a fix for it. */
  background: linear-gradient(to bottom,
    rgba(247,242,246,0)   0,
    rgba(247,242,246,.05) 46px,
    rgba(247,242,246,.16) 92px,
    rgba(247,242,246,.33) 140px,
    rgba(247,242,246,.52) 188px,
    rgba(247,242,246,.68) 232px,
    rgba(247,242,246,.79) 272px,
    var(--surface) 320px,
    var(--surface) calc(100% - 940px),
    rgba(247,242,246,.82) calc(100% - 820px),
    rgba(247,242,246,.72) calc(100% - 680px),
    rgba(247,242,246,.55) calc(100% - 520px),
    rgba(247,242,246,.36) calc(100% - 360px),
    rgba(247,242,246,.18) calc(100% - 210px),
    rgba(247,242,246,.05) calc(100% - 90px),
    rgba(247,242,246,0) 100%);
}
/* the frost needs ~320px to ease in, so the first band starts below that ramp —
   otherwise the proof stats would sit on ~15%-opacity frost over a vivid orb */
.surface > .band:first-child { padding-top: clamp(200px, 26vh, 330px); }
.surface--solid { background: var(--surface-solid); }

/* ── buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  padding: .95em 1.6em; border-radius: var(--radius-pill);
  cursor: pointer; border: 0; white-space: nowrap;   /* no transparent border: it seamed over the gradient at the pill's L/R tangents */
  --mx: 0px; --my: 0px; --lift: 0px;
  transform: translate(var(--mx), calc(var(--my) + var(--lift)));
  transition: transform .22s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), filter .3s, color .3s;
  will-change: transform;
}
.btn:hover { --lift: -2px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--violet-deep), #8E6FC8 46%, var(--coral));
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: var(--shadow), 0 0 46px -8px rgba(122,107,208,.55); }
.btn-ghost { color: var(--ink); background: rgba(255,255,255,.55); border: 1px solid var(--line); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-lg { font-size: 1.05rem; padding: 1.05em 1.9em; }
.btn-dark { color: var(--dark-ink); background: var(--dark); }
.btn-dark:hover { box-shadow: var(--shadow); }

.arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── nav (hidden until first scroll) ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  transform: translateY(-104%); opacity: 0;
  transition: transform .6s var(--expo), opacity .5s ease, background .4s ease;
}
.nav.show { transform: none; opacity: 1; }
.nav.solid {
  background: rgba(247,242,246,.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
/* real Sonder logo = the wordmark "SONDER." (bold geometric sans, period = part of the mark) */
.nav-logo { font-family: 'Plus Jakarta Sans', var(--display); font-weight: 800; font-size: 1.26rem; letter-spacing: -.035em; color: #0A0A0C; }
.nav-logo .lg-dot { color: var(--violet-deep); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: .92rem; color: var(--ink-soft); transition: color .3s; }
.nav-link:hover { color: var(--ink); }
@media (max-width: 820px) { .nav-links .nav-link:not(.nav-login) { display: none; } }

/* ── hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 12vh; padding-bottom: 8vh;
  text-align: center;
}
.hero-inner { max-width: 960px; margin-inline: auto; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; text-shadow: 0 2px 40px rgba(247,242,246,.6); }
/* #3: glow removed from the hero subheader (clean, no halo) */
.hero .lead { max-width: 620px; margin: 0 auto 34px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: var(--ink); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* #4: micro line pulled up to a legible, confident readout (was ghosty grey) */
.hero-micro { margin-top: 20px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.hero .hero-micro { display: inline-flex; align-self: flex-start; gap: .5em; padding: .5em 1em; border-radius: var(--radius-pill); background: rgba(255,255,255,.6); border: 1px solid var(--line-soft); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
@media (max-width: 899px) { .hero .hero-micro { align-self: center; } }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  animation: floaty 2.4s var(--ease) infinite;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--violet-deep), transparent); }
@keyframes floaty { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,7px);} }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }

/* the orb sits low behind the hero like a rising sun — give text a clear top */
@media (min-width: 900px) {
  .hero { text-align: left; }
  .hero-inner { margin-inline: 0; max-width: 640px; }
  .hero .lead { margin-left: 0; }
  .hero-cta { justify-content: flex-start; }
}

/* ── proof / trust bar ────────────────────────────────────────────────────── */
.proof { text-align: center; }
.proof-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 72px); margin-bottom: 46px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 150px; }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1; letter-spacing: -.04em; }
.stat-num .grad { display: inline; }
.stat-label { font-size: .9rem; color: var(--ink-soft); max-width: 15ch; }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 60px); }
.logos img { height: clamp(38px, 3.6vw, 56px); width: auto; opacity: .9; filter: grayscale(.15); transition: opacity .4s, filter .4s, transform .4s var(--ease); }
.logos a:hover img, .logos img:hover { opacity: 1; filter: none; transform: translateY(-2px); }
.proof-note { margin-top: 30px; font-size: .82rem; color: var(--muted); }

/* ── generic cards ────────────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 68px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-section { margin-bottom: 18px; }

/* ── problem cards ────────────────────────────────────────────────────────── */
.pain { display: flex; flex-direction: column; gap: 16px; }
.pain h3 { font-size: 1.35rem; }
.pain .tag { align-self: flex-start; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--violet-ink); background: rgba(179,171,230,.18); padding: .35em .8em; border-radius: var(--radius-pill); }
.quotes { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.quote { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1rem; color: var(--ink-soft); padding-left: 18px; border-left: 2px solid var(--coral); }
.pain--peach .quote { border-left-color: var(--peach); }
.pain--peach .tag { color: #A9652F; background: rgba(243,207,176,.28); }

/* ── contrast (report vs system) — dark section ──────────────────────────── */
.contrast { color: var(--dark-ink); }
.contrast-inner {
  background: linear-gradient(155deg, #221C2E, #1A1622 60%);
  border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 64px);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.contrast-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 90% 0%, rgba(179,171,230,.22), transparent 60%); pointer-events: none; }
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; }
@media (max-width: 780px) { .vs { grid-template-columns: 1fr; } }
.vs-card { border-radius: var(--radius); padding: 24px; }
.vs-dead { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: #B4AEC0; font-family: ui-monospace, Menlo, monospace; }
.vs-alive { background: rgba(255,255,255,.96); color: var(--ink); position: relative; border: 1px solid rgba(255,255,255,.4); box-shadow: var(--shadow); }
.vs-alive::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; border-radius: var(--radius) 0 0 var(--radius); background: linear-gradient(var(--violet-deep), var(--coral)); }

/* ── steps (how it works) ─────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-n { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: #fff; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--violet-deep), var(--coral)); box-shadow: var(--shadow-sm); }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ── case studies ─────────────────────────────────────────────────────────── */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }
.case { display: flex; flex-direction: column; gap: 12px; }
.case .metric { font-family: var(--display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; }
.case .who { font-size: .92rem; color: var(--muted); }

/* ── audience (dla kogo) ──────────────────────────────────────────────────── */
.aud { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 780px) { .aud { grid-template-columns: 1fr; } }
.aud-item { display: flex; gap: 14px; align-items: flex-start; }
.aud-item .ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(179,171,230,.16); color: var(--violet-ink); }

/* ── pricing ──────────────────────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier { display: flex; flex-direction: column; gap: 16px; }
.tier--hot { border-color: transparent; box-shadow: var(--shadow); position: relative; outline: 2px solid rgba(122,107,208,.5); }
.tier--hot::after { content: 'Najczęściej wybierany'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: linear-gradient(120deg, var(--violet-deep), var(--coral)); padding: .4em 1em; border-radius: var(--radius-pill); white-space: nowrap; }
.tier .tname { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.tier .price { font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em; }
.tier .cond { font-size: .84rem; color: var(--muted); }
.tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.tier li .chk { color: var(--green); flex: 0 0 auto; }
.tier .effect { margin-top: auto; font-size: .88rem; color: var(--violet-ink); background: rgba(179,171,230,.14); border-radius: var(--radius); padding: 12px 14px; }
.tier .btn { margin-top: 6px; }

/* ── founder ──────────────────────────────────────────────────────────────── */
.founder { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; }
@media (max-width: 720px) { .founder { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.founder img { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.founder .fname { font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-top: 14px; }
.founder .frole { color: var(--muted); font-size: .9rem; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin-inline: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { cursor: pointer; list-style: none; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .4s var(--ease), background .3s, color .3s; }
.qa[open] summary .pm { transform: rotate(45deg); background: var(--violet-deep); color: #fff; border-color: transparent; }
.qa .a { padding: 0 4px 24px; color: var(--ink-soft); line-height: 1.6; max-width: 64ch; }

/* ── final CTA + footer ───────────────────────────────────────────────────── */
.final { text-align: center; }
.final .h-section { margin-bottom: 20px; }
.final .lead { max-width: 560px; margin: 0 auto 30px; }
.site-footer { padding: 40px var(--gutter); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--muted); background: var(--surface-solid); position: relative; z-index: 2; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ── reveal-on-scroll ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--expo), transform .7s var(--expo); transition-delay: 0s; }
.reveal.in { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 55ms); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* utility */
.mt-s { margin-top: 10px; } .mt-m { margin-top: 22px; } .mt-l { margin-top: 40px; }
.center { text-align: center; }

/* ════════ component specifics (redesign build) ════════════════════════════ */

/* hero verdict card — the dashboard reference beside the orb */
.verdict { margin: 44px auto 0; max-width: 320px; text-align: left; }
/* #6 (round-3): a subtle readable backing so the label doesn't wash out over the
   orb — toned down (round-4): no border, lighter wash, tighter */
.verdict-label { display: inline-block; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--violet-ink); margin-bottom: 10px; padding: .3em .66em; background: rgba(247,242,246,.6); border-radius: var(--radius-pill); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.verdict-card { background: linear-gradient(165deg, #221C2E, #1A1622); border: 1px solid rgba(255,255,255,.10); border-radius: 22px; padding: 22px 24px; box-shadow: var(--shadow); color: #fff; }
.verdict-eyebrow { font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #B9AEE8; }
.verdict-score-row { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.verdict-score { font-family: var(--display); font-weight: 800; font-size: 2.4rem; line-height: 1; letter-spacing: -.03em; }
.verdict-den { font-size: .9rem; color: rgba(255,255,255,.55); }
.verdict-sentence { font-family: var(--display); font-size: .92rem; line-height: 1.4; color: rgba(255,255,255,.9); margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
@media (min-width: 1024px) { .verdict { position: absolute; right: var(--gutter); bottom: 13vh; margin: 0; z-index: 3; } }

/* check / cross glyphs (icon fonts avoided — inline SVG data-URIs) */
.chk, .crs { flex: 0 0 auto; width: 19px; height: 19px; display: inline-block; background-repeat: no-repeat; background-position: center; background-size: contain; margin-top: 2px; }
.chk { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234EB084' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.crs { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0A9B6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }

/* proof */
.proof-sub { margin-top: 56px; font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.proof .proof-sub { margin-bottom: 26px; }

/* problem banner */
.banner { max-width: 860px; margin: 40px auto 0; text-align: center; font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.4; color: var(--violet-ink); background: rgba(179,171,230,.12); border: 1px solid rgba(179,171,230,.22); border-radius: var(--radius-lg); padding: 26px 30px; }

/* contrast internals */
.vs-tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .35em .8em; border-radius: var(--radius-pill); margin-bottom: 16px; }
.vs-dead .vs-tag { background: rgba(255,255,255,.08); color: #9E97AC; }
.vs-alive .vs-tag { background: rgba(122,107,208,.12); color: var(--violet-ink); }
.vs-eg { font-size: .9rem; line-height: 1.5; border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; }
.vs-dead .vs-eg { font-family: ui-monospace, Menlo, monospace; background: rgba(255,255,255,.05); color: #A49DB4; }
.vs-alive .vs-eg { background: rgba(122,107,208,.06); color: var(--ink); border: 1px solid rgba(122,107,208,.14); }
.vs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.vs-list li { display: flex; gap: 10px; font-size: .92rem; line-height: 1.45; }
.vs-dead .vs-list li { color: #9E97AC; }
.vs-alive .vs-list li { color: var(--ink-soft); }
.vs-list .mk { flex: 0 0 auto; width: 18px; text-align: center; color: #7A7488; }
.vs-fx { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); font-size: .9rem; }
.vs-alive .vs-fx { border-top-color: var(--line); }
.vs-dead .vs-fx b { color: #C6BFD4; } .vs-dead .vs-fx span { color: #8E879C; }
.vs-fx-good b { color: var(--ink); } .vs-fx-good span { color: var(--green); font-weight: 500; }

/* transformation flow rows */
.flow { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.flow-row { display: grid; grid-template-columns: 1fr auto 1.4fr; gap: 18px; align-items: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px 20px; }
@media (max-width: 640px) { .flow-row { grid-template-columns: 1fr; gap: 12px; } }
.flow-lbl { display: block; font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.flow-from { color: #A49DB4; font-family: ui-monospace, Menlo, monospace; font-size: .92rem; }
.flow-from .flow-lbl { color: #7A7488; }
.flow-to { color: #fff; font-size: .95rem; line-height: 1.45; }
.flow-to .flow-lbl { color: #B9AEE8; }
.flow-arrow { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--violet-deep), var(--coral)); font-size: 1.1rem; }
@media (max-width: 640px) { .flow-arrow { transform: rotate(90deg); justify-self: start; } }

/* case link */
.link-more { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--violet-ink); border-bottom: 1px solid transparent; transition: gap .3s var(--ease), border-color .3s; }
.link-more:hover { gap: .8em; }   /* #14 (r3): no underline on hover — just the arrow/gap move */

/* fit lists */
.fit h3 { font-size: 1.25rem; margin-bottom: 18px; }
.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.fit-list li { display: flex; gap: 12px; font-size: .98rem; line-height: 1.45; color: var(--ink-soft); }
.fit-yes { border-color: rgba(78,176,132,.28); }
.fit-no { background: rgba(38,35,43,.015); }

/* pricing extras */
.tier .tstep { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--violet-ink); }
.tier--hot .tstep { color: var(--violet-deep); }
.price-sub { font-family: var(--body); font-weight: 500; font-size: .95rem; color: var(--muted); letter-spacing: 0; }
/* #15: Krok 0 subheader matches the other tiers' condition line (.cond) */
.tdesc { font-size: .84rem; color: var(--muted); line-height: 1.5; }

/* founder */
.founder-side { text-align: center; }
.founder-body .eyebrow { margin-bottom: 4px; }
@media (max-width: 720px) { .founder { text-align: left; } .founder-side { text-align: center; } }

/* final CTA solid surface */
.final.surface--solid { background: var(--surface-solid); }

/* ════════ round-2 fixes (2026-07-23) ════════════════════════════════════════ */

/* line-break helpers */
.nowrap { white-space: nowrap; }
@media (min-width: 768px) { .nowrap-lg { white-space: nowrap; } }
.banner-l2 { display: block; }

/* #1: wrap-wide now equals the single site width (kept as an alias so existing
   markup still works) — every band shares the same edges. */
.wrap-wide { max-width: var(--maxw); }

/* ── #8 KPIs: full-width, big, roomy ─────────────────────────────────────── */
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  align-items: stretch; text-align: center;
}
.proof-stats .stat {
  padding: 8px clamp(14px, 2.4vw, 34px); min-width: 0;
  border-left: 1px solid var(--line-soft);
}
.proof-stats .stat:first-child { border-left: none; }
.stat-num { font-size: clamp(3rem, 6.2vw, 5.6rem); letter-spacing: -.05em; white-space: nowrap; }
/* #6: "mies." wears the same gradient as the + and × signs, so the unit matches */
.stat-unit { font-size: .34em; font-weight: 800; margin-left: .16em; letter-spacing: 0;
  background: linear-gradient(100deg, var(--violet-ink), #6D59C4 42%, #C0704F);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.stat-label { font-size: clamp(.86rem, 1vw, .98rem); max-width: 22ch; }
.proof .proof-note { margin-top: 26px; }
@media (max-width: 760px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .proof-stats .stat:nth-child(odd) { border-left: none; }
  .proof-stats .stat:nth-child(3) ~ .stat, .proof-stats .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); padding-top: 30px; }
}

/* ── #9 problem cards: align the two columns, kill the right-side emptiness ── */
.pain { justify-content: flex-start; }
.pain > p { color: var(--ink-soft); }
@media (min-width: 900px) { .pain > p { min-height: 4.8em; } }   /* quote blocks line up */
.pain .quotes { margin-top: 14px; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.pain .quote { margin: 0; padding: 0 0 0 18px; }

/* ── #12/#13 contrast "Sonder System" card: no pushed-in rail, readable ───── */
.vs-alive::before { display: none; }               /* remove the stray gradient bar */
.vs-alive { border: 1px solid rgba(122,107,208,.30); box-shadow: 0 34px 90px -46px rgba(122,107,208,.7); }
.vs-alive .vs-eg { display: block; }
.vs-alive .vs-eg p { margin: 0 0 14px; }
.vs-actions { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vs-actions li { position: relative; padding-left: 22px; font-size: .92rem; line-height: 1.45; color: var(--ink-soft); }
.vs-actions li::before { content: '→'; position: absolute; left: 0; top: -1px; color: var(--violet-deep); font-weight: 700; }
.vs-tag { font-weight: 700; }

/* ── #14 case studies: centered, clean headers ───────────────────────────── */
.case { text-align: center; align-items: center; gap: 10px; }
.case .eyebrow { justify-content: center; color: var(--muted); }
.case .metric { font-size: 3rem; margin: 4px 0 0; }
.case .who { font-size: .95rem; }
.case p { color: var(--ink-soft); max-width: 34ch; }

/* ── #19 pricing: full-width band, roomier, clearer, lifted middle card ───── */
.tiers { gap: 26px; }
.tier { padding: clamp(30px, 3vw, 42px); gap: 18px; border-radius: 26px; }
.tier .tname { font-size: 1.55rem; }
.tier .price { font-size: 2.1rem; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tier ul { gap: 13px; }
.tier li { font-size: .98rem; line-height: 1.45; }
.tier .effect { padding: 16px 18px; font-size: .93rem; line-height: 1.5; border-radius: 16px; }
.tier .btn { width: 100%; }
.tier--hot { outline: none; border: 1px solid rgba(122,107,208,.5); box-shadow: 0 44px 110px -46px rgba(122,107,208,.72); }
@media (min-width: 900px) { .tier--hot { transform: translateY(-10px); } }
.tier--hot::after { top: -13px; }

/* ── #3 logo period + #4 footer "Created by NICE" ────────────────────────── */
.footer-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nice { font-size: .82rem; color: var(--violet-ink); font-weight: 600; }
.footer-nice:hover { color: var(--violet-deep); }
.site-footer .nav-logo { font-size: 1.16rem; }

/* ════════ round-3 fixes (2026-07-23) ════════════════════════════════════════ */

/* #2 verdict card gently floats — the whole page feels alive */
@keyframes snd-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.verdict-float { animation: snd-float 6.5s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .verdict-float { animation: none; } }

/* #5/#8 two-column cards size to their content (no stretched empty space, quotes not over-separated) */
.grid-2 { align-items: start; }
.pain .quotes { margin-top: 14px; flex: 0 0 auto; justify-content: flex-start; gap: 14px; }

/* #4 "Wspólny mianownik" — editorial statement, not a cheap tinted box */
.insight { max-width: 960px; margin: 52px auto 0; text-align: center; }
.insight-label { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--violet-ink); margin-bottom: 18px; position: relative; padding-bottom: 13px; }
.insight-label::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 42px; height: 2px; transform: translateX(-50%); border-radius: 2px; background: linear-gradient(90deg, var(--violet-deep), var(--coral)); }
.insight-text { font-family: var(--display); font-weight: 700; font-size: clamp(1.45rem, 2.9vw, 2.1rem); line-height: 1.22; letter-spacing: -.02em; color: var(--ink); }
.insight-text .grad { white-space: nowrap; }
@media (max-width: 640px) { .insight-text .grad { white-space: normal; } }

/* #6 case cards get the wider band treatment */
.cases { gap: 24px; }
.case .metric { font-size: clamp(3rem, 4.4vw, 4rem); }

/* #7 Proces — premium connected timeline */
.steps { position: relative; max-width: 880px; margin-inline: auto; }   /* #11 (r3): centre the timeline */
.step { grid-template-columns: 64px 1fr; gap: 26px; padding: 0 0 44px; border: none; align-items: start; }
.step:last-child { padding-bottom: 0; border: none; }
.step-node { position: relative; display: flex; justify-content: center; }
.step-node span { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--violet-deep); background: #fff; border: 1.5px solid rgba(122,107,208,.28); box-shadow: var(--shadow-sm); transition: background .45s var(--ease), color .45s, border-color .45s, transform .45s var(--ease); }
.step:not(:last-child) .step-node::after { content: ''; position: absolute; top: 56px; bottom: -44px; left: 50%; width: 2px; transform: translateX(-50%); background: linear-gradient(rgba(122,107,208,.42), rgba(122,107,208,.05)); }
.step-body { padding-top: 13px; }
.step-body h3 { font-size: clamp(1.2rem, 2vw, 1.42rem); margin-bottom: 9px; }
.step-body p { color: var(--ink-soft); line-height: 1.6; }
.step:hover .step-node span { background: linear-gradient(135deg, var(--violet-deep), var(--coral)); color: #fff; border-width: 0; transform: translateY(-2px) scale(1.05); }
@media (max-width: 640px) {
  .step { grid-template-columns: 48px 1fr; gap: 18px; padding-bottom: 36px; }
  .step-node span { width: 44px; height: 44px; font-size: 1rem; }
  .step:not(:last-child) .step-node::after { top: 44px; bottom: -36px; }
  .step-body { padding-top: 8px; }
}

/* balance multi-line display headings so no lonely orphan word wraps */
.h-display, .h-section, .insight-text { text-wrap: balance; }

/* "Współpraca z" logos span the full wide band */
.proof .logos { justify-content: space-evenly; gap: 28px clamp(20px, 3vw, 40px); }

/* ════════ round-5: hover feedback + FAQ motion (2026-07-23) ════════════════ */

/* #1 subtle lift + underglow on every card */
.card { transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(122,107,208,.22); }
.tier--hot:hover { transform: translateY(-14px); }              /* keeps its raised baseline */
.vs-card { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.vs-alive:hover { transform: translateY(-4px); box-shadow: 0 44px 110px -44px rgba(122,107,208,.85); }
.vs-dead:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -40px rgba(0,0,0,.5); }
.flow-row { transition: transform .3s var(--ease), border-color .3s, background .3s; }
.flow-row:hover { transform: translateY(-3px); border-color: rgba(179,171,230,.28); background: rgba(255,255,255,.07); }
@media (prefers-reduced-motion: reduce) {
  .card:hover, .vs-card:hover, .flow-row:hover, .tier--hot:hover { transform: none; }
}

/* #2 FAQ — hover feedback + smooth open/close (JS wraps the answer in .qa-a-inner) */
.qa summary { border-radius: 12px; transition: color .25s ease; }
.qa summary:hover { color: var(--violet-ink); }
.qa summary:hover .pm { border-color: var(--violet-deep); color: var(--violet-deep); }
.qa .a { display: grid; grid-template-rows: 0fr; opacity: 0; padding: 0; transition: grid-template-rows .44s var(--expo), opacity .34s ease; }
.qa[open] .a { grid-template-rows: 1fr; opacity: 1; }
/* #2 (r3): a light lift on open — the answer eases up as it expands, not just unfolds */
.qa-a-inner { overflow: hidden; min-height: 0; padding: 4px 4px 24px; transform: translateY(-7px); transition: transform .44s var(--expo); }
.qa[open] .qa-a-inner { transform: none; }
@media (prefers-reduced-motion: reduce) { .qa .a { transition: opacity .2s; } }

/* ════════ round-6 fixes (2026-07-28) ════════════════════════════════════════ */

/* ── #2 + #7 logos: seamless marquee, uniform slot sizes ─────────────────────
   Two identical halves; each .logo carries a right margin (incl. the last), so
   translateX(-50%) advances exactly one set → no seam. Add a client by dropping
   one .logo into BOTH copies. */
.logos-marquee {
  overflow: hidden; margin-top: 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos-track { display: flex; align-items: center; width: max-content; animation: logos-scroll 40s linear infinite; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logo { flex: 0 0 auto; height: 46px; margin-right: clamp(44px, 6vw, 80px); display: inline-flex; align-items: center; justify-content: center; }
/* #7 (round-3): the logo PNGs are now TRIMMED to their content box (the originals
   carried big transparent padding that made wide wordmarks render tiny). With no
   internal padding, a uniform height renders them optically even. Small per-logo
   nudges account for wordmark cap-height vs a solid mark. */
.logo img { height: 28px; width: auto; max-width: none; object-fit: contain; opacity: .82; filter: grayscale(.25); transition: opacity .35s var(--ease), filter .35s var(--ease); }
.logo[data-l="tixy"] img { height: 32px; }
.logo[data-l="goodwalk"] img { height: 34px; }
.logo[data-l="nice"] img { height: 26px; }
.logo:hover img { opacity: 1; filter: none; }
@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 22px; }
}

/* ── #5 hero gradient: deeper stops so "Nie zgadywanie." stays readable on the
   pale background/orb (the peach end was washing out) ───────────────────────── */
.hero .grad { background: linear-gradient(100deg, var(--violet-ink), #6D59C4 42%, #C0704F); -webkit-background-clip: text; background-clip: text; }

/* ── #8 problem cards: equal height, even citations, bigger market tags ──────── */
.problem .grid-2 { align-items: stretch; }
.problem .pain { height: 100%; }
.problem .pain .quotes { flex: 0 0 auto; }
.pain .tag { font-size: 1.02rem; font-weight: 700; letter-spacing: .03em; padding: .6em 1.15em; }

/* ── #10 "wniosek" connector: an = sign that resolves the two cards above ─────
   (replaces the "WSPÓLNY MIANOWNIK" label that read like a new section head) */
.insight { position: relative; margin-top: 24px; }   /* #3: dropped the connector line; #9 (r3): tighter gap to the cards above */
.insight-eq {
  display: block; width: max-content; margin: 0 auto 12px;
  font-family: var(--display); font-weight: 800; font-size: clamp(2.3rem, 5vw, 3.3rem); line-height: .8; letter-spacing: -.02em;
  background: linear-gradient(105deg, var(--violet-deep), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}

/* ── #13 Model współpracy on a dark panel (like the RAPORTY section) ─────────── */
.pricing-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #221C2E, #17131F 64%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(34px, 5vw, 72px) clamp(22px, 4vw, 56px);
}
.pricing-panel::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(58% 70% at 88% 0%, rgba(179,171,230,.20), transparent 60%); }
.pricing-panel > * { position: relative; z-index: 1; }
.pricing .pricing-panel .eyebrow { color: #C6BBF2; }
.pricing .pricing-panel .h-section { color: #fff; }
.pricing .pricing-panel .lead { color: rgba(237,233,244,.82); }
.pricing .pricing-panel .proof-note { color: rgba(237,233,244,.58); }

/* ── #14 "Dla kogo?" cards even (and problem cards, above) share equal height ── */
.grid-2 { align-items: stretch; }
.fit { height: 100%; }

/* ── #16 founder: brand border, tighter type, more air between photo & text ──── */
/* narrower, centred card so the text fills its column (no empty right band),
   with a 2px SONDER gradient border (padding-box/border-box trick) */
.founder {
  max-width: 960px; margin-inline: auto; gap: clamp(34px, 5vw, 64px);
  border: 2px solid transparent; border-radius: var(--radius-lg);
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(125deg, var(--violet-deep), var(--coral)) border-box;
  box-shadow: 0 34px 90px -50px rgba(122,107,208,.5);
}
.founder:hover { border-color: transparent; }   /* keep the gradient border on hover (don't flatten it) */
.founder-body p { max-width: none; font-size: .97rem; }
.founder-body p.mt-m { font-size: 1rem; }

/* ── #19 FAQ: keep the ✕ visible on hover when the item is OPEN ───────────────
   (open = white mark on violet; the generic hover turned it violet-on-violet) */
.qa[open] summary:hover .pm { background: var(--violet-ink); color: #fff; border-color: transparent; }

/* ── #18 final CTA sits over the orb (bookend) — transparent, with a soft fade
   from the frosted surface above so the reveal isn't a hard seam ─────────────── */
.final--open { position: relative; z-index: 2; padding-block: clamp(96px, 15vh, 190px); }
/* (final top-fade removed — the .surface now fades out at its own bottom, #1) */
/* #4: a soft light scrim behind the CTA copy so it stays readable over the big orb */
.final--open .reveal-group { position: relative; }
.final--open .reveal-group::before { content: ''; position: absolute; z-index: -1; inset: -12% -6%; pointer-events: none; background: radial-gradient(72% 64% at 50% 46%, rgba(247,242,246,.92), rgba(247,242,246,.55) 52%, rgba(247,242,246,0) 80%); }
.final--open .lead { color: var(--ink); text-shadow: 0 1px 18px rgba(247,242,246,.85); }

/* ════════ round-3 fixes (2026-07-29) ════════════════════════════════════════ */

/* #4: hero copy readability — a soft, edgeless light wash behind the text block
   (replaces the per-letter "glow under"). Fades to nothing before the orb. */
.hero-inner { position: relative; }
.hero-inner::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  inset: -10% -8% -12% -12%;
  background: radial-gradient(115% 95% at 26% 46%, rgba(247,242,246,.92), rgba(247,242,246,.5) 44%, rgba(247,242,246,0) 72%);
  filter: blur(10px);
}
@media (max-width: 899px) {
  .hero-inner::before { inset: -5% -5% -7% -5%; background: radial-gradient(96% 80% at 50% 40%, rgba(247,242,246,.85), rgba(247,242,246,.42) 46%, rgba(247,242,246,0) 74%); }
}

/* #10: ZNASZ TO? — give every quote the same slot height so the 2nd/3rd quotes
   line up across both cards (intro paragraphs already share a min-height) */
.problem .pain .quote { min-height: 2.9em; display: flex; align-items: center; }   /* round-4: centre quote text within its slot (e-commerce card's 1-line quotes) */

/* #1: no trailing divider under the last FAQ item — it read as a stray line
   splitting the FAQ from the final section */
.faq .qa:last-child { border-bottom: none; }
