.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes card-enter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premium-card-in {
    from {
        opacity: 0;
        transform: translateX(14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero--minimal {
    padding: 40px 0 12px;
}

.hero__minimal {
    max-width: 42rem;
}

.hero__title {
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #18181b;
    letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: no-preference) {
    html.motion-on .hero__title {
        animation: fade-up 0.58s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) both;
    }

    html.motion-on .hero__lede,
    html.motion-on .hero__lede-stack {
        animation: fade-up 0.52s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 0.07s both;
    }

    html.motion-on .hero__actions {
        animation: fade-up 0.52s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 0.12s both;
    }

    html.motion-on .hero__more {
        animation: fade-up 0.48s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 0.18s both;
    }
}

.hero__lede {
    margin: 0 0 20px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--muted);
}

.hero__lede-stack {
    margin: 0 0 20px;
    max-width: 40rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero__lede-stack p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--muted);
}

.hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero__more {
    margin: 18px 0 0;
    font-size: 14px;
}

.hero__more-link {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero__more-link:hover {
    color: #18181b;
}

.home-premium-strip {
    padding: 12px 0 4px;
    border-bottom: 1px solid var(--border, #e4e4e7);
    background: linear-gradient(180deg, #f4f4f5 0%, rgba(255, 255, 255, 0) 100%);
}

.home-premium-strip__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 18px;
    margin-bottom: 12px;
}

.home-premium-strip__hint {
    font-size: 13px;
    color: var(--muted);
}

.home-premium-strip__scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.home-premium-strip__card {
    flex: 0 0 min(220px, 78vw);
    scroll-snap-align: start;
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    border: 1px solid var(--border, #e4e4e7);
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(24, 24, 27, 0.05);
    transition:
        transform 0.28s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
        box-shadow 0.28s ease,
        border-color 0.2s ease;
}

.home-premium-strip__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(24, 24, 27, 0.1);
    border-color: var(--border-strong, #d4d4d8);
}

html.motion-on .home-premium-strip__scroll:not(.home-premium-strip__scroll--visible) .home-premium-strip__card {
    opacity: 0;
    transform: translateX(14px);
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card {
    animation: premium-card-in 0.45s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) backwards;
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card:nth-child(1) {
    animation-delay: 0.04s;
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card:nth-child(2) {
    animation-delay: 0.08s;
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card:nth-child(3) {
    animation-delay: 0.12s;
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card:nth-child(4) {
    animation-delay: 0.16s;
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card:nth-child(5) {
    animation-delay: 0.2s;
}

html.motion-on .home-premium-strip__scroll.home-premium-strip__scroll--visible .home-premium-strip__card:nth-child(6) {
    animation-delay: 0.24s;
}

.home-premium-strip__media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e4e4e7;
}

.home-premium-strip__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.home-premium-strip__card:hover .home-premium-strip__media img {
    transform: scale(1.05);
}

.home-premium-strip__badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
}

.home-premium-strip__body {
    display: grid;
    gap: 4px;
    font-size: 14px;
}

.home-premium-strip__body strong {
    font-size: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.filters {
    padding: 8px 0 20px;
}

.filters__bar--lean {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 1fr) auto;
    gap: 12px;
    padding: 14px 16px;
    align-items: start;
}

.filters__field--grow {
    min-width: 0;
}

.filters__field--btn {
    display: flex;
    align-items: stretch;
}

.filters__field--btn .button {
    width: 100%;
    min-width: 7rem;
}

@media (max-width: 640px) {
    .filters__bar--lean {
        grid-template-columns: 1fr;
    }

    .filters__field--btn .button {
        min-height: 44px;
    }
}

.filters__field {
    display: grid;
    gap: 8px;
}

.filters__label {
    font-size: 14px;
    color: var(--muted);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-head--feed {
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 16px;
}

.section-title--feed {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.45rem);
}

.feed-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
}

.feed {
    padding-bottom: 48px;
}

/* Elastyczna siatka: tyle kolumn, ile mieści się przy min. szerokości karty — bez „dziur” jak przy sztywnych 4 kolumnach */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
}

html.motion-on .feed-grid:not(.feed-grid--visible) .card-link {
    opacity: 0;
    transform: translateY(16px);
}

html.motion-on .feed-grid.feed-grid--visible .card-link {
    animation: card-enter 0.48s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) backwards;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(1) {
    animation-delay: 0.03s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(2) {
    animation-delay: 0.06s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(3) {
    animation-delay: 0.09s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(4) {
    animation-delay: 0.12s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(5) {
    animation-delay: 0.15s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(6) {
    animation-delay: 0.18s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(7) {
    animation-delay: 0.21s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(8) {
    animation-delay: 0.24s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(9) {
    animation-delay: 0.27s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(10) {
    animation-delay: 0.3s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(11) {
    animation-delay: 0.33s;
}

html.motion-on .feed-grid.feed-grid--visible .card-link:nth-child(12) {
    animation-delay: 0.36s;
}

.feed .card-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 20px;
    color: inherit;
    text-decoration: none;
}

.feed .card-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 20px;
}

.feed .listing-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.listing-card {
    height: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border, #e4e4e7);
    background: #fff;
    box-shadow: 0 10px 28px rgba(24, 24, 27, 0.05);
    transition:
        transform 0.28s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
        box-shadow 0.28s ease,
        border-color 0.22s ease;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(24, 24, 27, 0.1);
    border-color: var(--border-strong, #d4d4d8);
}

.listing-card--highlighted {
    border-color: rgba(82, 82, 91, 0.45);
    box-shadow: 0 12px 32px rgba(24, 24, 27, 0.08);
}

/* Highlight (pakiet „Wyróżnione”) — złota ramka, mocniejsza miniatura */
.listing-card--featured-highlight {
    border: 2px solid rgba(212, 175, 55, 0.95);
    box-shadow:
        0 0 0 1px rgba(255, 248, 220, 0.6),
        0 16px 40px rgba(180, 140, 40, 0.18);
}

.listing-card--featured-highlight:hover {
    border-color: rgba(184, 148, 48, 1);
    box-shadow:
        0 0 0 1px rgba(255, 248, 220, 0.75),
        0 22px 48px rgba(180, 140, 40, 0.22);
}

.listing-card__media--featured {
    aspect-ratio: 4 / 3;
}

@media (min-width: 480px) {
    .listing-card__media--featured img {
        transform: scale(1.02);
    }

    .listing-card--featured-highlight:hover .listing-card__media--featured img {
        transform: scale(1.06);
    }
}

.badge--highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 45%, #f59e0b 100%);
    color: #422006;
    border: 1px solid rgba(180, 134, 11, 0.45);
    font-weight: 700;
}

.badge--highlight.badge--on-photo {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.98) 0%, rgba(251, 191, 36, 0.95) 100%);
    color: #422006;
}

.home-premium-strip__card--highlight {
    outline: 2px solid rgba(212, 175, 55, 0.85);
    outline-offset: 2px;
    border-radius: 16px;
}

.listing-card__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(241, 245, 249, 0.95);
}

.listing-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.listing-card__media-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    gap: 8px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 38%),
        linear-gradient(160deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    text-align: center;
}

.listing-card__media-fallback-icon {
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.9;
}

.listing-card__media-fallback-label {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.listing-card:hover .listing-card__media img {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .listing-card:hover .listing-card__media img,
    .home-premium-strip__card:hover .home-premium-strip__media img {
        transform: none;
    }

    .listing-card:hover,
    .home-premium-strip__card:hover {
        transform: none;
    }
}

.listing-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(15, 23, 42, 0.4) 100%);
    pointer-events: none;
}

.listing-card__badges {
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 9px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-end;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.06);
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.2;
}

.badge--on-photo {
    background: rgba(255, 255, 255, 0.96);
    color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.listing-card__badges .badge--on-photo:first-child {
    max-width: calc(100% - 112px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge--premium {
    background: rgba(15, 23, 42, 0.92);
    color: #f8fafc;
    border-color: transparent;
}

.badge--premium.badge--on-photo {
    background: rgba(15, 23, 42, 0.88);
    color: #f8fafc;
}

.badge--highlight.badge--on-photo,
.badge--premium.badge--on-photo {
    flex: 0 0 auto;
}

.listing-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
    gap: 4px;
    min-height: 0;
}

.listing-card__title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 600;
    color: #18181b;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.listing-card__price {
    margin: 6px 0 0;
    color: #27272a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.listing-card__sub {
    margin: auto 0 0;
    padding-top: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-card__sep {
    margin: 0 0.25em;
    opacity: 0.65;
}

.section-head--stack {
    flex-direction: column;
    align-items: flex-start;
}

.intent-home {
    margin-top: 10px;
    padding: 10px 12px;
}

.intent-home__detected {
    font-size: 13px;
    color: #3f3f46;
    margin-bottom: 6px;
}

.intent-home__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.intent-home__label {
    font-size: 11px;
    font-weight: 700;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.intent-home__chip {
    border: 1px solid var(--border, #e4e4e7);
    border-radius: 999px;
    background: #fff;
    color: #27272a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    cursor: pointer;
}

.intent-home__chip.is-active {
    border-color: #0f766e;
    color: #0f766e;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, .12);
}

.intent-home__chip--ghost {
    background: #fafafa;
    font-weight: 500;
}

.pitch--band {
    background: linear-gradient(180deg, #f8f8f9 0%, #fafafa 45%, #ffffff 100%);
    border-top: 1px solid var(--border, #e4e4e7);
    border-bottom: 1px solid var(--border, #e4e4e7);
}

.pitch,
.pricing-preview,
.visibility-system,
.seller-effect {
    padding: 40px 0 16px;
}

.section-head--home-tight {
    margin-bottom: 22px;
}

.section-copy--narrow {
    max-width: 44rem;
}

.summary-block {
    padding: 20px 0 56px;
}

.summary-block--finale {
    padding-top: 8px;
}

.pitch-dual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pitch-dual__card {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 20px;
}

.pitch-dual__h {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #18181b;
}

.pitch-dual__lead {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: #71717a;
    line-height: 1.5;
}

.pitch-dual__card--problem {
    background: linear-gradient(165deg, #ffffff 0%, #f4f4f5 100%);
    border-color: #e4e4e7;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.pitch-dual__card--solve {
    background: linear-gradient(165deg, #ffffff 0%, #f4f4f4 100%);
    border-color: #d4d4d8;
    box-shadow:
        0 18px 40px rgba(24, 24, 27, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.pitch-dual__callout {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(24, 24, 27, 0.04);
    border: 1px solid rgba(24, 24, 27, 0.06);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
    color: #3f3f46;
}

.pitch-dual__footer {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e4e4e7;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #52525b;
    font-weight: 500;
}

.pitch-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pitch-pill {
    display: block;
    padding: 10px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3f3f46;
    text-align: center;
    line-height: 1.3;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    box-shadow: 0 1px 2px rgba(24, 24, 27, 0.04);
}

.pitch-list--tight li + li {
    margin-top: 6px;
}

.pitch-card__title {
    margin: 0 0 14px;
    font-size: 1.05rem;
}

.pitch-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
}

.pitch-list li + li {
    margin-top: 8px;
}

.pitch-list--inline {
    list-style: none;
    padding-left: 0;
}

.pitch-list--inline li + li {
    margin-top: 12px;
}

.home-pricing-sub {
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #71717a;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 4px;
}

.tier-card {
    position: relative;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 20px;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

@media (prefers-reduced-motion: no-preference) {
    html.motion-on main .panel.tier-card.panel--inview:hover,
    .tier-card:hover {
        border-color: #d4d4d8;
        box-shadow: 0 20px 44px rgba(24, 24, 27, 0.08);
        transform: translateY(-2px);
    }
}

.tier-card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 900px) {
    .tier-card--wide {
        grid-column: span 2;
    }
}

.tier-card__iconwrap {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 14px;
    background: linear-gradient(145deg, #fafafa, #f4f4f5);
    border: 1px solid #e4e4e7;
    box-shadow: 0 1px 2px rgba(24, 24, 27, 0.05);
}

.tier-card__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.tier-card__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.tier-card__desc {
    margin: 0 0 auto;
    padding-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.tier-card__price {
    margin: 0;
    font-weight: 700;
    color: #18181b;
    font-size: 0.95rem;
    padding-top: 4px;
    border-top: 1px solid #f4f4f5;
}

.tier-card--b2b-teaser {
    border-style: dashed;
    border-color: #c4c4c8;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 55%);
}

.tier-card--b2b-teaser .tier-card__desc {
    padding-bottom: 8px;
}

.home-b2b-teaser__list {
    margin: 0 0 16px;
    padding: 0 0 0 1.1rem;
    color: #3f3f46;
    font-size: 14px;
    line-height: 1.5;
    flex: 0 0 auto;
}

.home-b2b-teaser__list li + li {
    margin-top: 6px;
}

.tier-card__teaser-cta {
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid #f4f4f5;
}

.tier-card__teaser-cta .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.home-ranking {
    background: #fafafa;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
}

.home-ranking__quote {
    margin: 0;
    max-width: 40rem;
    padding: 0 0 0 20px;
    border-left: 3px solid #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #27272a;
}

.home-ranking__quote em {
    font-style: normal;
    color: #18181b;
    font-weight: 700;
}

.seller-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.seller-chips__item {
    margin: 0;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: #3f3f46;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(24, 24, 27, 0.04);
}

.summary-block__inner {
    padding: 28px 32px;
}

.summary-block__inner--finale {
    padding: 32px 36px 36px;
    border: none;
    border-radius: 24px;
    background: linear-gradient(145deg, #27272a 0%, #18181b 50%, #0f0f10 100%);
    color: #e4e4e7;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.summary-block__h {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 2.2vw, 1.6rem);
    font-weight: 700;
    color: #fafafa;
    letter-spacing: -0.02em;
}

.summary-block__inner--finale .summary-block__lead {
    margin: 0;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #d4d4d8;
    font-weight: 400;
}

.summary-block__subline {
    margin: 16px 0 0;
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.5;
}

.summary-block__inner--finale .summary-block__tagline {
    margin: 22px 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f4f5;
    line-height: 1.5;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-block__lead {
    max-width: 72ch;
}

.summary-block__tagline {
    margin: 20px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #18181b;
}

/* Sponsorzy na stronie głównej (wcześniej tylko w admin.css — tu pełny styl pod home) */
.home-sponsors {
    padding: 28px 0 8px;
    border-top: 1px solid var(--border, #e4e4e7);
}

.home-sponsors__head {
    margin-bottom: 14px;
}

.home-sponsors__strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: center;
}

.home-sponsors__item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #52525b;
    font-weight: 600;
    font-size: 14px;
    transition:
        color 0.22s ease,
        transform 0.22s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.home-sponsors__item img {
    max-height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
    transition:
        filter 0.3s ease,
        opacity 0.3s ease;
}

.home-sponsors__item:hover {
    color: #18181b;
    transform: translateY(-2px);
}

.home-sponsors__item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 860px) {
    .pitch-dual {
        grid-template-columns: 1fr;
    }

    .pitch-pill-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile-first: Highlight musi być mocniejszy na wąskim ekranie niż na desktopie */
.listing-card--featured-highlight {
    border-width: 3px;
    box-shadow:
        0 0 0 2px rgba(255, 248, 220, 0.75),
        0 20px 44px rgba(180, 140, 40, 0.28);
}

.home-premium-strip__card--highlight {
    outline-width: 3px;
    outline-offset: 3px;
}

.badge--highlight {
    font-size: 13px;
    padding: 8px 12px;
}

@media (min-width: 768px) {
    .listing-card--featured-highlight {
        border-width: 2px;
        box-shadow:
            0 0 0 1px rgba(255, 248, 220, 0.6),
            0 16px 40px rgba(180, 140, 40, 0.18);
    }

    .home-premium-strip__card--highlight {
        outline-width: 2px;
        outline-offset: 2px;
    }

    .badge--highlight {
        font-size: 12px;
        padding: 6px 10px;
    }
}
