:root {
    /* Tła (motyw ciemny teal-navy) */
    --tw-bg: #06141A;
    --tw-bg-soft: #0C1E26;
    --tw-surface: #102830;
    --tw-deep: #030C10;

    /* Akcent / CTA — limonkowy */
    --tw-lime: #C5D315;
    --tw-lime-hi: #D6E32E;
    --tw-lime-deep: #A3B00C;
    --tw-lime-grad: linear-gradient(135deg, #D6E32E 0%, #A3B00C 100%);

    /* Dodatkowy akcent (złoto z banerów) */
    --tw-gold: #C09030;

    /* Tekst */
    --tw-text: #EAF2E6;
    --tw-text-muted: #94A79E;
    --tw-line: #1E3A40;
    --tw-line-strong: #2C5560;

    /* Serwisowe */
    --tw-star: #C5D315;
    --tw-ok: #4FD68C;
    --tw-bad: #FF6B6B;
    --tw-link: #D6E32E;

    --tw-font-h: 'Space Grotesk', sans-serif;
    --tw-font-b: 'Inter', sans-serif;
    --tw-radius: 14px;
    --tw-stack: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

h2[id], h3[id], section[id] { scroll-margin-top: 90px; }
@media (max-width: 768px) {
    h2[id], h3[id], section[id] { scroll-margin-top: 72px; }
}
body {
    font-family: var(--tw-font-b);
    font-size: 16px;
    line-height: 1.6;
    color: var(--tw-text);
    background: var(--tw-bg);
    background-image:
        radial-gradient(1200px 600px at 80% -10%, rgba(197,211,21,0.08), transparent 60%),
        radial-gradient(800px 500px at -10% 8%, rgba(44,85,96,0.18), transparent 60%);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--tw-link); text-decoration: none; transition: color .18s; }
a:hover { color: var(--tw-lime-hi); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--tw-font-h); color: var(--tw-text); font-weight: 600; }
h1, h2, h3, h4, p { margin-top: 0; margin-bottom: var(--tw-stack); }
h1 { font-size: 2.25rem;  line-height: 1.2;  letter-spacing: -.01em; }
h2 { font-size: 1.75rem;  line-height: 1.3; }
h3 { font-size: 1.375rem; line-height: 1.35; }
h4 { font-size: 1.125rem; line-height: 1.4; }
p, li { font-size: 1rem; line-height: 1.6; }


/* ===== Container & sekcje ===== */
.tw-container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.tw-section { padding: 20px 0; }
.tw-section.tw-section--inner-single { padding: 40px 0; }
.tw-section--alt { background: var(--tw-bg-soft); }
.tw-h2__sub { color: var(--tw-text-muted); margin: 0 0 28px; font-size: 16px; }


/* ===== Przyciski ===== */
.tw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: var(--tw-font-b);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .12s, filter .2s;
    white-space: nowrap;
}
.tw-btn--primary {
    background: var(--tw-lime-grad);
    color: #06141A;
    box-shadow: 0 8px 22px rgba(197, 211, 21, 0.22);
}
.tw-btn--primary:hover { filter: brightness(1.06); color: #06141A; }
.tw-btn--primary:active { transform: translateY(1px); }
.tw-btn--secondary {
    background: transparent;
    color: var(--tw-lime-hi);
    border: 1.5px solid var(--tw-lime);
}
.tw-btn--secondary:hover { background: rgba(197, 211, 21, 0.12); color: var(--tw-lime-hi); }
.tw-btn--lg { padding: 14px 26px; font-size: 15px; }
.tw-btn--full { width: 100%; }


/* ===== Badge & chip ===== */
.tw-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--tw-font-b);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(197, 211, 21, 0.12);
    color: var(--tw-lime-hi);
    border: 1px solid rgba(197, 211, 21, 0.30);
}
.tw-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(197, 211, 21, 0.10);
    color: var(--tw-lime-hi);
    border: 1px solid rgba(197, 211, 21, 0.26);
}
/* ===== Header ===== */
.tw-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(6, 20, 26, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--tw-line);
    height: 76px;
    display: flex;
    align-items: center;
}
.tw-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}
.tw-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.tw-logo__img { height: 30px; width: auto; display: block; }

.tw-nav { flex: 1; display: flex; justify-content: center; }
.tw-nav__list { display: flex; gap: 28px; }
.tw-nav__link {
    position: relative;
    font-family: var(--tw-font-b);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tw-text);
    padding: 8px 0;
    transition: color .18s;
}
.tw-nav__link:hover, .tw-nav__link.tw-nav--active { color: var(--tw-lime-hi); }
.tw-nav__link:hover::after, .tw-nav__link.tw-nav--active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--tw-lime);
    border-radius: 2px;
}
.tw-header__cta { display: flex; gap: 12px; align-items: center; }

.tw-burger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.tw-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tw-text);
    border-radius: 2px;
    transition: transform .3s, opacity .2s;
}
body.tw-nav--open .tw-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.tw-nav--open .tw-burger span:nth-child(2) { opacity: 0; }
body.tw-nav--open .tw-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===== Overlay mobilne ===== */
.tw-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 12, 16, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
body.tw-nav--open .tw-overlay { opacity: 1; transform: scale(1); pointer-events: auto; }
.tw-overlay__close { position: absolute; top: 20px; right: 20px; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.tw-overlay__nav ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.tw-overlay__nav a {
    font-family: var(--tw-font-h);
    font-weight: 600;
    font-size: 24px;
    color: var(--tw-text);
    letter-spacing: 0.02em;
}
.tw-overlay__nav a:hover { color: var(--tw-lime-hi); }
.tw-overlay__cta { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; gap: 12px; }
.tw-overlay__cta .tw-btn { flex: 1 1 50%; }
body.tw-nav--open { overflow: hidden; }
/* ===== Hero ===== */
.tw-hero {
    background:
        radial-gradient(900px 480px at 78% 12%, rgba(197,211,21,0.12), transparent 62%),
        linear-gradient(180deg, #06141A 0%, #0C1E26 55%, #102830 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--tw-line);
}
.tw-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.tw-hero__text { max-width: 580px; }
.tw-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: 18px 0 16px;
}
.tw-hero__bonus {
    display: block;
    font-family: var(--tw-font-h);
    font-weight: 700;
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    line-height: 1.15;
    margin: 8px 0 4px;
    color: var(--tw-text);
}
.tw-hero__bonus-num {
    color: var(--tw-lime);
}
.tw-hero__bonus-sub { font-size: 18px; color: var(--tw-text-muted); margin: 0 0 18px; }
.tw-hero__lead { color: var(--tw-text-muted); font-size: 16px; margin: 0 0 24px; max-width: 560px; }
.tw-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.tw-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 14px; }
.tw-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(197, 211, 21, 0.08);
    color: var(--tw-lime-hi);
    border: 1px solid rgba(197, 211, 21, 0.22);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.tw-trust--tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.tw-trust--tiles > li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(197, 211, 21, 0.08);
    border: 1px solid rgba(197, 211, 21, 0.22);
    color: var(--tw-text);
}
.tw-trust__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 211, 21, 0.16);
    color: var(--tw-lime-hi);
}
.tw-trust__icon svg { width: 18px; height: 18px; display: block; }
.tw-trust__label { font-size: 13px; font-weight: 600; line-height: 1.2; }
@media (max-width: 520px) {
    .tw-trust--tiles { grid-template-columns: 1fr; }
}
.tw-hero__disclaimer { font-size: 13px; color: var(--tw-text-muted); margin: 6px 0 0; }

.tw-hero__media { position: relative; display: flex; justify-content: flex-end; }
.tw-hero__image {
    position: relative;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid var(--tw-line-strong);
    overflow: hidden;
    line-height: 0;
    background: var(--tw-surface);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.tw-hero__photo { display: block; width: 100%; max-width: 750px; height: auto; vertical-align: top; }
/* Placeholder media (zastępcze zdjęcie hero) */
.tw-hero__ph {
    aspect-ratio: 5 / 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        radial-gradient(120px 120px at 70% 30%, rgba(197,211,21,0.22), transparent 60%),
        linear-gradient(135deg, #102830 0%, #030C10 100%);
    color: var(--tw-text-muted);
    text-align: center;
    padding: 24px;
}
.tw-hero__ph-title { font-family: var(--tw-font-h); font-size: 22px; color: var(--tw-lime); }
.tw-hero__ph-sub { font-size: 13px; }

.tw-hero--compact { padding: 52px 0; }

.tw-hero__inner--compact:not(.tw-404__inner):not(:has(> figure)):not(:has(> .tw-hero__image)) {
    grid-template-columns: 1fr;
    gap: 12px;
}
.tw-hero__inner--compact:not(.tw-404__inner):has(> figure),
.tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) {
    grid-template-columns: minmax(0, 1fr) minmax(220px, min(42%, 400px));
    column-gap: 32px;
    row-gap: 10px;
    align-items: center;
}
.tw-hero__inner--compact:not(.tw-404__inner):has(> figure) > .tw-breadcrumbs,
.tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) > .tw-breadcrumbs { grid-column: 1; grid-row: 1; }
.tw-hero__inner--compact:not(.tw-404__inner):has(> figure) > .tw-hero__title--compact,
.tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) > .tw-hero__title--compact { grid-column: 1; grid-row: 2; }
.tw-hero__inner--compact:not(.tw-404__inner):has(> figure) > .tw-hero__lead,
.tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) > .tw-hero__lead { grid-column: 1; grid-row: 3; }
.tw-hero__inner--compact:not(.tw-404__inner):has(> figure) > figure,
.tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) > .tw-hero__image {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: end;
    margin: 0;
    width: 100%;
    max-width: min(750px, 100%);
}
.tw-hero__title--compact { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 8px 0 0; }
.tw-hero__inner--compact.tw-404__inner { grid-template-columns: 1fr; gap: 12px; }

.tw-breadcrumbs { font-size: 14px; color: var(--tw-text-muted); }
.tw-breadcrumbs a { color: var(--tw-lime-hi); }
.tw-breadcrumbs__sep { margin: 0 6px; color: var(--tw-text-muted); }
/* ===== TOC ===== */
.tw-section--toc { padding: 24px 0 8px; }
.tw-toc {
    position: relative;
    background: var(--tw-surface);
    border: 1px solid rgba(197, 211, 21, 0.28);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.tw-toc::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--tw-lime-grad); }
.tw-toc summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-family: var(--tw-font-h);
    font-weight: 600;
    font-size: 18px;
    color: var(--tw-text);
}
.tw-toc summary::-webkit-details-marker { display: none; }
.tw-toc summary::after { content: "\25BE"; color: var(--tw-lime); transition: transform .2s; font-size: 16px; line-height: 1; }
.tw-toc[open] summary::after { transform: rotate(180deg); }
.tw-toc[open] .tw-toc__list { margin-top: 14px; }
.tw-toc__title { font-size: 18px; color: var(--tw-text); }
.tw-toc__list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; counter-reset: toc; }
.tw-toc__list li { break-inside: avoid; margin-bottom: 10px; padding-left: 2px; counter-increment: toc; }
.tw-toc__list li::before { content: counter(toc) ". "; color: var(--tw-lime); font-weight: 700; margin-right: 6px; }
.tw-toc__list a { color: var(--tw-text); text-decoration: none; transition: color 0.2s ease; }
.tw-toc__list a:hover { color: var(--tw-lime-hi); }


/* ===== Facts table ===== */
.tw-facts-table { margin-top: 10px; margin-bottom: 10px; }
.tw-facts-table__scroll {
    overflow-x: auto;
    border-radius: var(--tw-radius);
    border: 1px solid var(--tw-line);
    scrollbar-width: thin;
    scrollbar-color: var(--tw-lime) var(--tw-surface);
}
.tw-facts-table__scroll::-webkit-scrollbar { height: 8px; }
.tw-facts-table__scroll::-webkit-scrollbar-track { background: var(--tw-surface); }
.tw-facts-table__scroll::-webkit-scrollbar-thumb { background: var(--tw-lime); border-radius: 4px; }
.tw-facts-table__table { width: 100%; min-width: 620px; border-collapse: collapse; }
.tw-facts-table__table thead { background: var(--tw-bg-soft); }
.tw-facts-table__table thead th {
    text-align: left;
    padding: 14px 20px;
    font-family: var(--tw-font-b);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tw-lime-hi);
    font-weight: 700;
}
.tw-facts-table__table tbody tr:nth-child(odd)  { background: var(--tw-bg); }
.tw-facts-table__table tbody tr:nth-child(even) { background: var(--tw-surface); }
.tw-facts-table__table tbody td,
.tw-facts-table__table tbody th {
    padding: 14px 20px;
    border-top: 1px solid var(--tw-line);
    color: var(--tw-text);
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}
.tw-facts-table__table tbody th { color: var(--tw-text-muted); font-weight: 600; width: 38%; }
/* ===== Proza ===== */
.tw-prose { font-size: 1rem; line-height: 1.6; color: var(--tw-text); }
.tw-prose p { margin: 0 0 var(--tw-stack); }
.tw-prose ul, .tw-prose ol { margin: 0 0 var(--tw-stack); padding-left: 1.5em; }
.tw-prose ul { list-style: disc; }
.tw-prose ol { list-style: decimal; }
.tw-prose li { margin-bottom: 0.4rem; line-height: 1.6; }
.tw-prose li::marker { color: var(--tw-lime); }
.tw-prose li:last-child { margin-bottom: 0; }
.tw-prose h2 { margin-top: 2.5rem; }
.tw-prose h3 { margin-top: 1.75rem; }
.tw-prose h4 { margin-top: 1.5rem; }
.tw-prose > :first-child { margin-top: 0; }
.tw-prose a { color: var(--tw-lime-hi); text-decoration: underline; text-decoration-color: rgba(214, 227, 46, 0.4); }
.tw-prose a:hover { text-decoration: none; }
.tw-prose a.tw-btn { text-decoration: none; }
.tw-prose a.tw-btn--primary,
.tw-prose a.tw-btn--primary:hover,
.tw-prose a.tw-btn--primary:focus { color: #06141A; }
.tw-prose a.tw-btn--secondary,
.tw-prose a.tw-btn--secondary:hover,
.tw-prose a.tw-btn--secondary:focus { color: var(--tw-lime-hi); }
.tw-prose img { max-width: min(750px, 100%); height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; }
.tw-prose figure {
    display: block;
    width: min(100%, 750px);
    max-width: min(750px, 100%);
    margin: 1.5rem auto;
    box-sizing: border-box;
}
.tw-prose figcaption { font-size: 0.875rem; color: var(--tw-text-muted); margin-top: 0.5rem; text-align: center; }
.tw-prose blockquote {
    margin: 0 0 var(--tw-stack);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--tw-lime);
    background: rgba(197, 211, 21, 0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--tw-text);
}
.tw-prose blockquote p:last-child { margin-bottom: 0; }
.tw-prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-bottom: 10px; }
.tw-prose th, .tw-prose td {
    padding: 12px 14px;
    border: 1px solid var(--tw-line);
    text-align: left;
    vertical-align: top;
    color: var(--tw-text);
}
.tw-prose th { background: var(--tw-bg-soft); font-weight: 600; color: var(--tw-lime-hi); font-family: var(--tw-font-b); }
.tw-prose tbody tr:nth-child(even) td { background: var(--tw-surface); }
.tw-prose tbody tr:nth-child(odd) td { background: var(--tw-bg); }
@media (max-width: 640px) {
    .tw-prose { font-size: 0.95rem; }
    .tw-prose table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Figure placeholder (zastępcze zdjęcie w tekście) */
.tw-figph {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(160px 120px at 70% 28%, rgba(197,211,21,0.16), transparent 62%),
        linear-gradient(135deg, #102830 0%, #030C10 100%);
    border: 1px solid var(--tw-line);
    border-radius: 8px;
    color: var(--tw-text-muted);
    font-family: var(--tw-font-h);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ===== Box info (callout) ===== */
.tw-callout {
    background: var(--tw-surface);
    border: 1px solid var(--tw-line-strong);
    border-left: 4px solid var(--tw-lime);
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    margin: 0 0 var(--tw-stack);
}
.tw-callout__title { font-family: var(--tw-font-h); font-weight: 600; color: var(--tw-lime-hi); margin: 0 0 6px; font-size: 1.0625rem; }
.tw-callout p:last-child { margin-bottom: 0; }


/* ===== Bonus karty (oferta) ===== */
.tw-bonuscards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 var(--tw-stack); }
.tw-bonuscard {
    background: var(--tw-surface);
    border: 1px solid var(--tw-line);
    border-top: 3px solid var(--tw-lime);
    border-radius: 12px;
    padding: 22px 20px;
    text-align: center;
}
.tw-bonuscard__num { font-family: var(--tw-font-h); font-weight: 700; font-size: 1.9rem; color: var(--tw-lime); line-height: 1.1; margin: 0 0 6px; }
.tw-bonuscard__label { font-size: 0.9rem; color: var(--tw-text-muted); margin: 0; }


/* ===== Pro / Contra ===== */
.tw-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tw-proscons__col {
    background: var(--tw-surface);
    border: 1px solid var(--tw-line);
    border-radius: 12px;
    padding: 22px 24px;
}
.tw-proscons__col--pro { border-top: 3px solid var(--tw-ok); }
.tw-proscons__col--con { border-top: 3px solid var(--tw-bad); }
.tw-proscons__title { font-family: var(--tw-font-h); font-weight: 600; margin: 0 0 12px; font-size: 1.25rem; }
.tw-proscons__list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--tw-text); font-size: 0.95rem; }
.tw-proscons__list li::before { content: ""; flex: 0 0 auto; margin-top: 7px; width: 8px; height: 8px; border-radius: 50%; }
.tw-proscons__col--pro .tw-proscons__list li::before { background: var(--tw-ok); }
.tw-proscons__col--con .tw-proscons__list li::before { background: var(--tw-bad); }
/* ===== CTA banner ===== */
.tw-ctabanner {
    background:
        radial-gradient(220px 220px at 90% -20%, rgba(197,211,21,0.18), transparent 60%),
        linear-gradient(135deg, #102830 0%, #0C1E26 60%, #030C10 100%);
    border: 1px solid var(--tw-line-strong);
    border-radius: 20px;
    padding: 52px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tw-ctabanner__title {
    font-family: var(--tw-font-h);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--tw-text);
    margin: 14px 0 14px;
    line-height: 1.15;
}
.tw-ctabanner__title span { color: var(--tw-lime); }
.tw-ctabanner__sub { color: var(--tw-text-muted); font-size: 17px; max-width: 560px; margin: 0 auto 28px; line-height: 1.55; }
.tw-ctabanner__fine { color: var(--tw-text-muted); font-size: 12px; margin: 14px 0 0; }
.tw-ctabanner__fine a { color: var(--tw-text-muted); text-decoration: underline; }


/* ===== Voices slider ===== */
.tw-voices { position: relative; }
.tw-voices__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
}
.tw-voices__track::-webkit-scrollbar { display: none; }
.tw-voice {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tw-voice__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tw-voice__stars { display: flex; gap: 2px; color: var(--tw-star); letter-spacing: 2px; }
.tw-voice__title { font-family: var(--tw-font-h); font-weight: 600; font-size: 16px; margin: 2px 0 0; }
.tw-voice__body { color: var(--tw-text-muted); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.tw-voice__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--tw-text-muted);
    border-top: 1px solid var(--tw-line);
    padding-top: 10px;
}
.tw-voice__name { color: var(--tw-text); font-weight: 600; }
.tw-voice__country {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(197, 211, 21, 0.12);
    color: var(--tw-lime-hi);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
}
.tw-voices__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 14px; }
.tw-voices__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--tw-lime);
    color: var(--tw-lime-hi);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .18s, opacity .18s, color .18s;
}
.tw-voices__arrow:hover { background: rgba(197, 211, 21, 0.12); }
.tw-voices__arrow[disabled] { opacity: .35; cursor: not-allowed; }


/* ===== FAQ ===== */
.tw-faq { display: flex; flex-direction: column; gap: 14px; }
.tw-faq__item {
    position: relative;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line);
    border-radius: 10px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tw-faq__item::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: background .25s ease;
}
.tw-faq__item.is-active {
    background: var(--tw-bg-soft);
    border-color: var(--tw-line-strong);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.tw-faq__item.is-active::before { background: var(--tw-lime-grad); }
.tw-faq__head {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 16px 22px;
    text-align: left;
    cursor: pointer;
    color: var(--tw-text);
    font: inherit;
}
.tw-faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(197, 211, 21, 0.14);
    border-radius: 8px;
    flex-shrink: 0;
    transition: background .25s ease;
}
.tw-faq__icon svg { width: 18px; height: 18px; max-width: none; flex-shrink: 0; transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1); color: var(--tw-lime-hi); }
.tw-faq__item.is-active .tw-faq__icon { background: var(--tw-lime); }
.tw-faq__item.is-active .tw-faq__icon svg { transform: rotate(180deg); }
.tw-faq__item.is-active .tw-faq__icon svg path { stroke: #06141A; }
.tw-faq__head h3.tw-faq__q,
h3.tw-faq__q {
    font-family: var(--tw-font-h);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    color: var(--tw-text);
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}
.tw-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1); }
.tw-faq__item.is-active .tw-faq__a { max-height: 2400px; }
.tw-faq__a > div { padding: 4px 22px 20px calc(22px + 32px + 14px); color: var(--tw-text-muted); font-size: 15px; line-height: 1.65; }
.tw-faq__a p { margin: 0; color: inherit; }


/* ===== Wave divider ===== */
.tw-wave-divider { position: relative; width: 100%; height: 80px; line-height: 0; margin-top: 40px; }
.tw-wave-divider svg { width: 100%; height: 100%; display: block; }
/* ===== Footer ===== */
.tw-footer { background: var(--tw-deep); color: var(--tw-text-muted); padding: 52px 0 28px; }
.tw-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.tw-footer__top { display: grid; grid-template-columns: 1.2fr 2.8fr; gap: 40px; }
.tw-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.tw-footer__about { margin: 14px 0 16px; max-width: 360px; font-size: 14px; color: var(--tw-text-muted); line-height: 1.6; }
.tw-social { display: flex; gap: 10px; }
.tw-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line);
    color: var(--tw-text-muted);
    transition: color .18s, border-color .18s, background .18s;
}
.tw-social a:hover { color: var(--tw-lime-hi); border-color: var(--tw-lime); background: rgba(197, 211, 21, 0.08); }
.tw-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.tw-footer__title {
    font-family: var(--tw-font-h);
    color: var(--tw-text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin: 0 0 14px;
    font-weight: 600;
}
.tw-footer__col ul li { margin-bottom: 8px; font-size: 14px; }
.tw-footer__col a { color: var(--tw-text-muted); }
.tw-footer__col a:hover { color: var(--tw-lime-hi); }
.tw-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tw-footer__brand .tw-logo__img { height: 40px; }
.tw-footer__col ul.tw-footer__badges { flex-direction: column; align-items: flex-start; }
.tw-footer__col ul.tw-footer__badges li { margin-bottom: 0; }
.tw-footer__divider { height: 1px; background: var(--tw-line); margin: 32px 0 18px; }
.tw-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.tw-footer__copy { font-size: 13px; color: var(--tw-text-muted); margin: 0; }


/* ===== 404 ===== */
.tw-404 { text-align: center; min-height: 60vh; }
.tw-404__inner { justify-items: center; }
.tw-404__code {
    font-family: var(--tw-font-h);
    font-weight: 700;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    color: var(--tw-lime);
    margin: 0;
}
.tw-404__text { color: var(--tw-text-muted); margin: 0 0 24px; }


/* ===== Author strip ===== */
.tw-author-strip {
    background: var(--tw-bg-soft);
    border-top: 1px solid var(--tw-line);
    padding: 24px 0 0;
    margin-top: 24px;
}
.tw-author-strip + .tw-wave-divider { margin-top: 0; }
.tw-author-strip__box { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.tw-author-card { display: flex; flex-direction: row; align-items: center; gap: 24px; flex-wrap: wrap; }
.tw-author-card__media {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--tw-line-strong);
    width: 120px;
    height: 120px;
    aspect-ratio: 1;
    box-shadow: 0 4px 24px rgba(197, 211, 21, 0.12);
    transition: border-color 0.18s, box-shadow 0.18s;
}
.tw-author-card__media:hover { border-color: var(--tw-lime); box-shadow: 0 6px 28px rgba(197, 211, 21, 0.22); }
.tw-author-card__img-wrap { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--tw-bg-soft); }
.tw-author-card__img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center center; border-radius: 50%; display: block; }
.tw-author-card__text { flex: 1 1 240px; min-width: 0; }
.tw-author-card__name { font-family: var(--tw-font-h); font-weight: 600; font-size: 1.25rem; color: var(--tw-text); margin: 0 0 6px; }
.tw-author-card__role { font-size: 0.9375rem; color: var(--tw-lime-hi); margin: 0 0 10px; font-weight: 600; }
.tw-author-card__bio { font-size: 0.9375rem; color: var(--tw-text-muted); line-height: 1.6; margin: 0 0 12px; }
.tw-author-card__profile {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tw-lime-hi);
    border-bottom: 1px solid transparent;
    transition: color 0.18s, border-color 0.18s;
}
.tw-author-card__profile:hover { color: var(--tw-lime); border-bottom-color: var(--tw-lime); }
.tw-author-card__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tw-lime);
    margin: 0 0 6px;
}
@media (max-width: 600px) {
    .tw-author-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .tw-author-strip__box { padding: 0 16px 20px; }
}


/* ===== Slots grid ===== */
.tw-slots { padding: 24px 0 28px; background: var(--tw-bg); }
.tw-hero + .tw-slots { padding-top: 16px; }
.tw-slots__heading {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--tw-font-b);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tw-text-muted);
}
.tw-slots__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px 12px; align-items: stretch; }
.tw-slots__card {
    display: block;
    border-radius: var(--tw-radius);
    overflow: hidden;
    border: 1px solid var(--tw-line);
    outline: none;
    transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
a.tw-slots__card:hover, a.tw-slots__card:focus { color: inherit; text-decoration: none; }
.tw-slots__card:focus-visible { border-color: var(--tw-lime); box-shadow: 0 0 0 2px rgba(197, 211, 21, 0.35); }
.tw-slots__card:hover { border-color: rgba(197, 211, 21, 0.65); transform: translateY(-2px); }
.tw-slots__media { display: block; position: relative; aspect-ratio: 232 / 174; background: var(--tw-surface); }
.tw-slots__media img { width: 100%; height: 100%; object-fit: cover; }
.tw-slots__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 12, 16, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.tw-slots__card:hover .tw-slots__overlay, .tw-slots__card:focus-visible .tw-slots__overlay { opacity: 1; }
.tw-slots__play { display: flex; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45)); }


/* ===== Formularz ===== */
.tw-form label { display: block; margin-bottom: 4px; font-size: 0.95rem; color: var(--tw-text); }
.tw-form input, .tw-form textarea {
    width: 100%;
    max-width: 460px;
    padding: 10px 12px;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line);
    border-radius: 8px;
    color: var(--tw-text);
    font-family: inherit;
    font-size: 0.95rem;
}
.tw-form input:focus, .tw-form textarea:focus { outline: none; border-color: var(--tw-lime); }
.tw-form p { margin: 0 0 14px; }


/* ===== Rating block ===== */
.tw-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line-strong);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 0 18px;
}
.tw-rating__score { font-family: var(--tw-font-h); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--tw-lime); }
.tw-rating__max { font-size: 1rem; color: var(--tw-text-muted); }
.tw-rating__stars { color: var(--tw-star); letter-spacing: 3px; font-size: 1.1rem; }
.tw-rating__label { font-size: 0.85rem; color: var(--tw-text-muted); }
/* ===== Responsive ===== */
@media (max-width: 1279px) {
    .tw-hero__inner:not(.tw-hero__inner--compact) { grid-template-columns: 1fr; }
    .tw-hero__media { justify-content: center; }
    .tw-hero__image, .tw-hero__photo { max-width: 100%; }
    .tw-voice { flex: 0 0 calc(50% - 10px); }
    .tw-footer__top { grid-template-columns: 1fr; }
    .tw-footer__cols { grid-template-columns: repeat(2, 1fr); }
    .tw-bonuscards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .tw-hero { padding: 20px 0; }
    .tw-hero__title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }
    .tw-nav, .tw-header__cta { display: none; }
    .tw-burger { display: flex; }
    .tw-slots__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .tw-hero__inner--compact:not(.tw-404__inner):has(> figure),
    .tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) {
        grid-template-columns: 1fr;
    }
    .tw-hero__inner--compact:not(.tw-404__inner):has(> figure) > figure,
    .tw-hero__inner--compact:not(.tw-404__inner):has(> .tw-hero__image) > .tw-hero__image {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        margin-top: 1rem;
        max-width: min(750px, 100%);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    .tw-container { padding: 0 20px; }
    .tw-section { padding: 20px 0; }
    .tw-header__inner { padding: 0 20px; }
    .tw-footer__inner { padding: 0 20px; }
    .tw-hero__inner { padding: 0 20px; }
    .tw-proscons { grid-template-columns: 1fr; }
    .tw-voice { flex: 0 0 86%; min-width: 280px; }
    .tw-voices__nav { justify-content: center; }
    .tw-footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .tw-toc__list { columns: 1; }
    .tw-facts-table__table tbody th { width: 45%; }
    .tw-footer__bottom { flex-direction: column; align-items: flex-start; }
    .tw-ctabanner { padding: 40px 24px; }
}

@media (max-width: 520px) {
    .tw-slots { padding: 20px 0 24px; }
    .tw-slots__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .tw-slots__play svg { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .tw-footer__cols { grid-template-columns: 1fr; }
    .tw-hero__actions { flex-direction: column; align-items: stretch; }
    .tw-hero__actions .tw-btn { width: 100%; }
    .tw-faq__head { padding: 16px 18px; }
    .tw-faq__a > div { padding: 4px 18px 18px calc(18px + 32px + 14px); }
}


/* ===== TWINDOR VARIANT: Hero promo (A) ===== */
.tw-hero__lead--sm { font-size: 15px; margin-bottom: 18px; }
.tw-hero__inner--promo { align-items: center; }
.tw-hero__promo {
    position: relative;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid var(--tw-line-strong);
    overflow: hidden;
    line-height: 0;
    background: var(--tw-surface);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.tw-hero__promo-bg { display: block; width: 100%; height: auto; vertical-align: top; }
.tw-hero__promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 24px;
    line-height: 1.1;
    background:
        radial-gradient(360px 280px at 50% 45%, rgba(3, 12, 16, 0.78), rgba(3, 12, 16, 0.42) 70%, rgba(3, 12, 16, 0.25));
}
.tw-hero__promo-kicker {
    font-family: var(--tw-font-b);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tw-lime-hi);
}
.tw-hero__promo-figure {
    font-family: var(--tw-font-h);
    font-weight: 700;
    font-size: clamp(2.8rem, 7vw, 4.6rem);
    color: var(--tw-lime);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    margin: 4px 0;
}
.tw-hero__promo-extra {
    font-family: var(--tw-font-h);
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    color: var(--tw-text);
}
.tw-hero__promo-cta { margin-top: 16px; }
.tw-hero__promo-login {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tw-lime-hi);
    border-bottom: 1px solid transparent;
    transition: border-color .18s, color .18s;
}
.tw-hero__promo-login:hover { color: var(--tw-lime); border-bottom-color: var(--tw-lime); }


/* ===== TWINDOR VARIANT: TOC chips (B) ===== */
.tw-toc--chips { margin-bottom: 0; }
.tw-toc--chips .tw-toc__title { margin: 0 0 16px; }
.tw-toc__chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.tw-toc__chip {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(197, 211, 21, 0.08);
    border: 1px solid rgba(197, 211, 21, 0.32);
    color: var(--tw-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background .18s, color .18s, border-color .18s;
}
.tw-toc__chip:hover {
    background: var(--tw-lime);
    border-color: var(--tw-lime);
    color: #06141A;
}


/* ===== TWINDOR VARIANT: Slots Demo button (C) ===== */
.tw-slots__demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 999px;
    background: var(--tw-lime);
    color: #06141A;
    font-family: var(--tw-font-b);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transform: translateY(6px);
    transition: transform .2s ease;
}
.tw-slots__card:hover .tw-slots__demo,
.tw-slots__card:focus-visible .tw-slots__demo { transform: translateY(0); }


/* ===== TWINDOR VARIANT: full-width author card ===== */
.tw-author-strip__box { padding: 0 28px 24px; }
.tw-author-card {
    width: 100%;
    flex-wrap: nowrap;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line-strong);
    border-top: 3px solid var(--tw-lime);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.tw-author-card__text { flex: 1 1 0; min-width: 0; }
.tw-author-card__bio { max-width: 62ch; }
@media (max-width: 600px) {
    .tw-author-card { flex-wrap: wrap; padding: 24px 20px; gap: 20px; }
}


/* ===== TWINDOR VARIANT: Author Q&A page (E) ===== */
.tw-author-profile {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--tw-surface);
    border: 1px solid var(--tw-line-strong);
    border-top: 3px solid var(--tw-lime);
    border-radius: 16px;
    padding: 24px 26px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tw-author-profile__media {
    flex: 0 0 auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--tw-line-strong);
    line-height: 0;
    background: var(--tw-bg-soft);
}
.tw-author-profile__img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tw-author-profile__text { flex: 1 1 240px; min-width: 0; }
.tw-author-profile__name { font-family: var(--tw-font-h); font-weight: 600; font-size: 1.4rem; color: var(--tw-text); margin: 0 0 4px; }
.tw-author-profile__role { font-size: 0.9375rem; color: var(--tw-lime-hi); font-weight: 600; margin: 0 0 10px; }
.tw-author-profile__bio { font-size: 0.9375rem; color: var(--tw-text-muted); line-height: 1.6; margin: 0; }

.tw-author-qa { display: flex; flex-direction: column; gap: 18px; }
.tw-author-qa__item {
    background: var(--tw-bg-soft);
    border: 1px solid var(--tw-line);
    border-left: 3px solid var(--tw-lime);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
}
.tw-author-qa__q {
    font-family: var(--tw-font-h);
    font-weight: 600;
    font-size: 1.1875rem;
    color: var(--tw-lime-hi);
    margin: 0 0 8px;
    line-height: 1.3;
}
.tw-author-qa__q::before { content: "Q. "; color: var(--tw-lime); font-weight: 700; }
.tw-author-qa__a { color: var(--tw-text); font-size: 0.9688rem; line-height: 1.65; margin: 0; }
.tw-author-qa__a::before { content: "A. "; color: var(--tw-lime); font-weight: 700; font-family: var(--tw-font-h); }
@media (max-width: 600px) {
    .tw-author-profile { align-items: flex-start; }
}

/* ── MOBILE HERO: image after bonus, trust 2col, reduced padding ── */
@media (max-width: 768px) {
    .tw-hero__inner:not(.tw-hero__inner--compact) {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    /* Flatten hero__text so its children become direct flex items */
    .tw-hero__text {
        display: contents;
    }
    /* Assign explicit order to control visual sequence */
    .tw-hero__title      { order: 1; width: 100%; }
    .tw-hero__bonus      { order: 2; width: 100%; }
    .tw-hero__bonus-sub  { order: 2; width: 100%; }
    .tw-hero__lead       { order: 2; width: 100%; }
    /* Image slots in between bonus and trust */
    .tw-hero__media      { order: 3; width: 100%; margin: 12px 0; }
    .tw-hero__image      { max-width: 100% !important; border-radius: 12px; }
    .tw-hero__photo      { max-width: 100%; }
    /* Trust and CTAs after image */
    .tw-trust            { order: 4; width: 100%; }
    .tw-hero__actions    { order: 5; width: 100%; }
    .tw-hero__disclaimer { order: 6; width: 100%; font-size: 12px; }
}

/* Trust tiles stay 2-column on small screens */
@media (max-width: 520px) {
    .tw-trust--tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Reduce hero padding on mobile */
@media (max-width: 480px) {
    .tw-hero:not(.tw-hero--compact) { padding: 10px 0 20px; }
    .tw-hero__inner { padding-left: 16px; padding-right: 16px; }
}

/* ── Author hero: round avatar ── */
.tw-hero__author-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.tw-hero__inner--compact > .tw-hero__author-figure img {
    width: clamp(120px, 22vw, 200px) !important;
    height: clamp(120px, 22vw, 200px) !important;
    max-width: clamp(120px, 22vw, 200px) !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.30);
    box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    .tw-hero__inner--compact > .tw-hero__author-figure {
        justify-self: center;
        margin-bottom: 8px;
    }
    .tw-hero__inner--compact > .tw-hero__author-figure img {
        width: clamp(80px, 28vw, 140px) !important;
        height: clamp(80px, 28vw, 140px) !important;
        max-width: clamp(80px, 28vw, 140px) !important;
    }
}

/* ── Center figures inside content containers ── */
.tw-container figure:not(.tw-hero__author-figure) {
    display: block;
    max-width: min(750px, 100%);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}
.tw-container figure:not(.tw-hero__author-figure) img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}
.tw-container figure:not(.tw-hero__author-figure) figcaption {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.75;
}

/* ── Figure CTA buttons ── */
.tw-figure-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 6px 0 28px;
}
.tw-figure-cta .tw-btn {
    min-width: 140px;
    text-align: center;
}

/* ── Clickable hero banner ── */
.tw-hero__banner-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    width: 100%;
    max-width: min(750px, 100%);
}
.tw-hero__banner-link:hover,
.tw-hero__banner-link:focus-visible {
    transform: scale(1.015);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    outline: none;
}
.tw-hero__banner-link img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}
