/*
 * home.css — bespoke styles for `/` (homepage only).
 * Loaded conditionally via _layout.php for `page === 'home'`.
 * Zero overhead for other pages.
 *
 * Block order matches home.php:
 *   1.  hero-home
 *   2.  stat-tiles--home
 *   3.  trending-trio
 *   4.  hubs-map
 *   5.  rtp-leaderboard
 *   6.  mechanic-families
 *   7.  casino-spotlight
 *   8.  editor-picks
 *   9.  reading-paths
 *  10.  timeline-strip
 *  11.  pullquote-home
 *  12.  trust-stripe
 *  13.  site-numbers
 */

/* ═══════════════════════════════════════════════════════════════════════
   0. PAGE CONNECTOR — kill gap between header and hero + section heads
   ═══════════════════════════════════════════════════════════════════════ */
.page--home main { padding-top: 0; margin-top: 0; }
.page--home main > .hero-home:first-child { margin-top: 0; }

/* Section headers on home: bigger, centered, with accent underline */
.page--home .section-head--centered {
    text-align: center;
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-4);
    position: relative;
}
.page--home .section-head--centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), #f59e0b);
}
.page--home .section-head--centered .section-head__title {
    font-size: clamp(1.5rem, 2.4vw + 1rem, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-3);
}
.page--home .section-head--centered .section-head__subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: var(--fs-md);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════════════
   1. HERO (CINEMATIC)
   ═══════════════════════════════════════════════════════════════════════ */
.hero-home {
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 3vw, 40px) 0 clamp(40px, 6vw, 72px);
    margin-top: 0;
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(34, 197, 94, 0.08), transparent 70%),
        radial-gradient(40% 60% at 80% 100%, rgba(245, 158, 11, 0.06), transparent 70%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}

.hero-home__multiplier-ribbon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    padding: 0 var(--sp-4);
    pointer-events: none;
    user-select: none;
    font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(34, 197, 94, 0.04);
    letter-spacing: -0.02em;
    overflow: hidden;
    white-space: nowrap;
    z-index: 0;
}
.hero-home__multiplier-ribbon span {
    flex-shrink: 0;
    transform: rotate(-8deg);
}
.hero-home__multiplier-ribbon-bust {
    color: rgba(239, 68, 68, 0.06);
}

.hero-home__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-home__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.hero-home__title {
    margin: 0 0 var(--sp-5);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
}

.hero-home__aeo {
    max-width: 780px;
    margin: 0 auto var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    font-size: clamp(1.05rem, 1.4vw + 0.6rem, 1.25rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--text);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(245, 158, 11, 0.04));
    border-left: 4px solid var(--primary);
    border-radius: var(--r-md);
    text-align: left;
    font-style: normal;
}

.hero-home__lead {
    max-width: 720px;
    margin: 0 auto var(--sp-6);
    font-size: var(--fs-md);
    line-height: 1.65;
    color: var(--text-muted);
}

.hero-home__actions {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--sp-5);
}

.hero-home__meta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 6px 14px;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.hero-home__meta-sep { opacity: 0.5; }


/* ═══════════════════════════════════════════════════════════════════════
   2. STAT TILES (HOME variant — 2 cols mobile / 4 cols desktop, no gaps)
   ═══════════════════════════════════════════════════════════════════════ */
.stat-tiles--home {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
}
@media (min-width: 768px) {
    .stat-tiles--home {
        grid-template-columns: repeat(4, 1fr);
    }
}
.stat-tiles--home .stat-card {
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--border);
    transition: transform 200ms, border-color 200ms;
}
.stat-tiles--home .stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}
.stat-tiles--home .stat-card__value {
    background: linear-gradient(135deg, var(--primary), #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* ═══════════════════════════════════════════════════════════════════════
   3. TRENDING TRIO (3 most-searched reviews)
   ═══════════════════════════════════════════════════════════════════════ */
.trending-trio {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.trending-card {
    position: relative;
    padding: var(--sp-5);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 200ms, box-shadow 200ms;
    /* Equal-height cards with CTA pinned to bottom */
    display: flex;
    flex-direction: column;
    height: 100%;
}
.trending-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
}
.trending-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-from, #22c55e), var(--accent-to, #f59e0b));
}
.trending-card--green { --accent-from: #22c55e; --accent-to: #16a34a; }
.trending-card--amber { --accent-from: #f59e0b; --accent-to: #d97706; }
.trending-card--blue  { --accent-from: #3b82f6; --accent-to: #2563eb; }

.trending-card__rank {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 50%;
    border: 1px solid var(--border);
}
.trending-card__title {
    margin: 0 0 4px;
    padding-right: 48px;
    font-size: var(--fs-lg);
    font-weight: 700;
    line-height: 1.2;
}
.trending-card__title a { color: var(--text); text-decoration: none; }
.trending-card__title a:hover { color: var(--primary); }
.trending-card__provider {
    margin-bottom: var(--sp-4);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.trending-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
    padding: var(--sp-3) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trending-card__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.trending-card__stat-value {
    margin-top: 2px;
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--text);
}
.trending-card__why {
    margin: 0 0 var(--sp-4);
    font-size: var(--fs-sm);
    line-height: 1.55;
    color: var(--text-muted);
    flex: 1; /* push CTA to the bottom */
}
.trending-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    padding-top: var(--sp-3);
}
.trending-card__link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════
   4. HUBS MAP (5-hub architecture grid)
   ═══════════════════════════════════════════════════════════════════════ */
.hubs-map {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media (min-width: 1100px) {
    .hubs-map {
        grid-template-columns: repeat(5, 1fr);
    }
}

.hubs-map__card {
    position: relative;
    padding: var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 200ms, border-color 200ms;
    /* Equal heights + bottom-aligned CTA */
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}
.hubs-map__card .hubs-map__icon {
    margin-left: auto;
    margin-right: auto;
}
.hubs-map__card .hubs-map__meta {
    justify-content: center;
}
.hubs-map__card .hubs-map__top {
    margin-top: auto;
}
.hubs-map__card:hover {
    transform: translateY(-2px);
    border-color: var(--hubs-accent, var(--primary));
}
.hubs-map__card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--hubs-accent, var(--primary));
}
.hubs-map__card--amber { --hubs-accent: #f59e0b; }
.hubs-map__card--green { --hubs-accent: #22c55e; }
.hubs-map__card--blue  { --hubs-accent: #3b82f6; }
.hubs-map__card--violet{ --hubs-accent: #8b5cf6; }
.hubs-map__card--rose  { --hubs-accent: #ec4899; }

.hubs-map__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--sp-3);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--r-md);
    color: var(--hubs-accent, var(--primary));
}
.hubs-map__title {
    margin: 0 0 var(--sp-2);
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: 1.25;
}
.hubs-map__title a { color: var(--text); text-decoration: none; }
.hubs-map__title a:hover { color: var(--hubs-accent, var(--primary)); }
.hubs-map__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--sp-3);
}
.hubs-map__chip {
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 999px;
}
.hubs-map__lead {
    margin: 0 0 var(--sp-3);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
    flex: 1; /* push top-link + CTA to bottom */
    text-align: left; /* lead reads better left-aligned even in centered card */
}
.hubs-map__cta {
    margin-top: auto;
}
.hubs-map__top {
    margin-bottom: var(--sp-3);
    padding-top: var(--sp-2);
    font-size: 0.8rem;
    border-top: 1px dashed var(--border);
}
.hubs-map__top-label {
    color: var(--text-muted);
    font-weight: 500;
}
.hubs-map__top a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}
.hubs-map__top a:hover { color: var(--hubs-accent, var(--primary)); text-decoration: underline; }
.hubs-map__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--hubs-accent, var(--primary));
    text-decoration: none;
}
.hubs-map__cta:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════
   5. RTP LEADERBOARD
   ═══════════════════════════════════════════════════════════════════════ */
.rtp-leaderboard {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.rtp-leaderboard__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rtp-leaderboard__row {
    display: grid;
    grid-template-columns: 36px 56px 1fr auto;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border-bottom: 1px solid var(--border);
    transition: background-color 150ms;
}
.rtp-leaderboard__thumb {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(245, 158, 11, 0.12));
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
}
.rtp-leaderboard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rtp-leaderboard__thumb-placeholder {
    font-family: 'Geist', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}
.rtp-leaderboard__row:last-child { border-bottom: none; }
.rtp-leaderboard__row:hover { background: var(--bg-alt); }
.rtp-leaderboard__rank {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 50%;
}
.rtp-leaderboard__row:nth-child(1) .rtp-leaderboard__rank {
    color: #92400e;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
}
.rtp-leaderboard__row:nth-child(2) .rtp-leaderboard__rank { background: #e5e7eb; color: #4b5563; }
.rtp-leaderboard__row:nth-child(3) .rtp-leaderboard__rank { background: #fed7aa; color: #9a3412; }

.rtp-leaderboard__name {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}
.rtp-leaderboard__name:hover { color: var(--primary); text-decoration: underline; }
.rtp-leaderboard__meta {
    display: flex;
    gap: 8px;
    margin-top: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.rtp-leaderboard__sep { opacity: 0.5; }
.rtp-leaderboard__rtp {
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--primary);
}
.rtp-leaderboard__more {
    display: block;
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    text-align: center;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    transition: background-color 150ms;
}
.rtp-leaderboard__more:hover { background: var(--border); }


/* ═══════════════════════════════════════════════════════════════════════
   6. MECHANIC FAMILIES
   ═══════════════════════════════════════════════════════════════════════ */
.mechanic-families {
    display: grid;
    gap: var(--sp-3);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.mechanic-card {
    position: relative;
    padding: var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform 200ms, box-shadow 200ms;
    /* Equal heights + centered top + link pinned to bottom */
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}
.mechanic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.12);
}
.mechanic-card__symbol {
    font-size: 2.25rem;
    line-height: 1;
    margin: 0 auto var(--sp-2);
    color: var(--mech-color, var(--primary));
}
.mechanic-card__count {
    margin-left: auto;
    margin-right: auto;
}
.mechanic-card__lead {
    flex: 1;
    text-align: left;
}
.mechanic-card__link {
    margin-top: auto;
}
.mechanic-card--aviation { --mech-color: #3b82f6; }
.mechanic-card--chicken  { --mech-color: #f59e0b; }
.mechanic-card--balloon  { --mech-color: #ec4899; }
.mechanic-card--sports   { --mech-color: #22c55e; }
.mechanic-card--live     { --mech-color: #8b5cf6; }
.mechanic-card__count {
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: var(--sp-2);
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mech-color, var(--primary));
    background: var(--bg-alt);
    border-radius: 999px;
}
.mechanic-card__name {
    margin: 0 0 4px;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text);
}
.mechanic-card__lead {
    margin: 0 0 var(--sp-3);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    flex: 1;
    text-align: left;
}
.mechanic-card__link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--mech-color, var(--primary));
    text-decoration: none;
    margin-top: auto;
    padding-top: var(--sp-2);
}
.mechanic-card__link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════
   7. CASINO ROSTER (horizontal rows, ALL operators)
   ═══════════════════════════════════════════════════════════════════════ */
.casino-spotlight-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.section-head--centered { text-align: center; }
.section-head--centered .section-head__subtitle { margin-left: auto; margin-right: auto; max-width: 720px; }

.casino-roster {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.casino-row {
    display: grid;
    grid-template-columns: 36px 88px 1.4fr 1.2fr 1.4fr 180px;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform 150ms, box-shadow 150ms, border-color 150ms;
}
.casino-row:hover {
    transform: translateX(2px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.12);
}
.casino-row--featured {
    border: 2px solid #f59e0b;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05), var(--bg) 30%);
    box-shadow: 0 8px 24px -10px rgba(245, 158, 11, 0.18);
}

.casino-row__rank {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 50%;
    border: 1px solid var(--border);
}
.casino-row--featured .casino-row__rank {
    color: #92400e;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    border-color: transparent;
}

.casino-row__logo {
    width: 80px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--bg-alt);
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.casino-row__logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.casino-row__logo-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.casino-row__name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text);
}
.casino-row__badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 999px;
}
.casino-row__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.casino-row__rating-num {
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-weight: 600;
}

.casino-row__bonus { padding-left: var(--sp-3); border-left: 1px solid var(--border); }
.casino-row__bonus-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.casino-row__bonus-value {
    margin-top: 2px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text);
}

.casino-row__usp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.82rem;
    color: var(--text);
    background: rgba(34, 197, 94, 0.07);
    border-left: 3px solid #22c55e;
    border-radius: var(--r-sm);
    line-height: 1.4;
}
.casino-row__usp svg { color: #22c55e; flex-shrink: 0; }

.casino-row__cta-col { display: flex; flex-direction: column; gap: 4px; }
.casino-row__cta { width: 100%; justify-content: center; }
.casino-row__terms {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 1024px) {
    .casino-row {
        grid-template-columns: 36px 80px 1fr 180px;
        grid-template-rows: auto auto;
        row-gap: var(--sp-2);
    }
    .casino-row__bonus { grid-column: 3 / 5; padding-left: 0; border-left: none; }
    .casino-row__usp   { grid-column: 1 / 5; }
    .casino-row__cta-col { grid-column: 1 / 5; }
}
@media (max-width: 640px) {
    .casino-row {
        grid-template-columns: 36px 64px 1fr;
    }
    .casino-row__bonus, .casino-row__usp, .casino-row__cta-col { grid-column: 1 / 4; }
}

.casino-disclosure {
    margin-top: var(--sp-4);
    padding: var(--sp-3) var(--sp-4);
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px dashed var(--border);
    border-radius: var(--r-sm);
}
.casino-disclosure strong { color: var(--text); }
.casino-disclosure a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.casino-disclosure a:hover { text-decoration: underline; }



/* ═══════════════════════════════════════════════════════════════════════
   8. EDITOR PICKS
   ═══════════════════════════════════════════════════════════════════════ */
.editor-picks {
    display: grid;
    gap: var(--sp-3);
}

.editor-pick {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--sp-3);
    align-items: start;
    padding: var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--r-md);
    transition: transform 150ms, border-left-color 150ms;
}
.editor-pick:hover {
    transform: translateX(2px);
    border-left-color: #f59e0b;
}
.editor-pick__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: var(--primary);
    background: var(--bg-alt);
    border-radius: 50%;
}
.editor-pick__intent {
    margin-bottom: 6px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text);
}
.editor-pick__text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.editor-pick__text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.editor-pick__text a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════
   9. READING PATHS (3 visitor journeys)
   ═══════════════════════════════════════════════════════════════════════ */
.reading-paths {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.reading-path {
    position: relative;
    padding: var(--sp-5);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    /* Equal heights + duration pinned to bottom */
    display: flex;
    flex-direction: column;
    height: 100%;
}
.reading-path__steps { flex: 1; }
.reading-path__duration { margin-top: auto; }
.reading-path::before {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), #f59e0b, transparent);
    border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.reading-path__num {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #16a34a);
    border-radius: 50%;
}
.reading-path__title {
    margin: 0 0 var(--sp-2);
    padding-right: 56px;
    font-size: var(--fs-lg);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}
.reading-path__lead {
    margin: 0 0 var(--sp-4);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-style: italic;
}
.reading-path__steps {
    list-style: none;
    margin: 0 0 var(--sp-3);
    padding: 0;
    counter-reset: step-counter;
}
.reading-path__step {
    position: relative;
    padding: var(--sp-2) 0 var(--sp-2) 32px;
    counter-increment: step-counter;
    border-top: 1px dashed var(--border);
    font-size: var(--fs-sm);
    line-height: 1.5;
}
.reading-path__step:first-child { border-top: none; }
.reading-path__step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: var(--sp-2);
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
}
.reading-path__step a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}
.reading-path__step a:hover { color: var(--primary); text-decoration: underline; }
.reading-path__step-note {
    color: var(--text-muted);
    font-style: italic;
}
.reading-path__duration {
    padding-top: var(--sp-3);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════════════════════════════
   10. TIMELINE STRIP — vertical stepper with gradient spine
   ═══════════════════════════════════════════════════════════════════════ */
.timeline-strip {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 56px;
}
.timeline-strip::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), #f59e0b 40%, var(--primary) 80%);
    border-radius: 2px;
    opacity: 0.6;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--sp-4);
    padding: var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform 200ms, border-color 200ms;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:hover {
    transform: translateX(2px);
    border-color: var(--primary);
}
.timeline-item__dot {
    position: absolute;
    top: 20px;
    left: -47px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #f59e0b);
    border: 4px solid var(--bg);
    box-shadow: 0 0 0 1px var(--border), 0 4px 12px -2px rgba(34, 197, 94, 0.4);
    z-index: 1;
}
.timeline-item__date {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: var(--bg-alt);
    border-radius: 999px;
    border: 1px solid var(--border);
}
.timeline-item__title {
    margin: 0 0 var(--sp-2);
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: 1.3;
}
.timeline-item__title a { color: var(--text); text-decoration: none; }
.timeline-item__title a:hover { color: var(--primary); }
.timeline-item__note {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   11. PULL-QUOTE (HOMEPAGE variant — larger, gradient frame)
   ═══════════════════════════════════════════════════════════════════════ */
.pullquote-home {
    position: relative;
    margin: 0;
    padding: var(--sp-6) var(--sp-5);
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.04), rgba(245, 158, 11, 0.04));
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}
.pullquote-home blockquote {
    margin: 0 0 var(--sp-3);
    font-size: clamp(1.15rem, 1.5vw + 0.7rem, 1.5rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text);
}
.pullquote-home blockquote::before {
    content: '"';
    display: block;
    margin-bottom: var(--sp-2);
    font-size: 3rem;
    line-height: 0.8;
    color: var(--primary);
    opacity: 0.4;
}
.pullquote-home figcaption {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   12. TRUST STRIPE
   ═══════════════════════════════════════════════════════════════════════ */
.trust-stripe-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-stripe {
    display: grid;
    gap: var(--sp-5);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
}
.trust-stripe__col { text-align: center; }
.trust-stripe__label {
    margin-bottom: var(--sp-2);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.trust-stripe__editor {
    display: block;
    margin-bottom: 4px;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.trust-stripe__editor:hover { color: var(--primary); }
.trust-stripe__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.trust-stripe__rg {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
}
.trust-stripe__rg a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.trust-stripe__rg a:hover { text-decoration: underline; }

.langs-strip {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.langs-strip__item {
    padding: 4px 10px;
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}


/* ═══════════════════════════════════════════════════════════════════════
   13. SITE NUMBERS (big-number editorial close)
   ═══════════════════════════════════════════════════════════════════════ */
.site-numbers-section {
    background:
        radial-gradient(40% 60% at 0% 0%, rgba(34, 197, 94, 0.04), transparent 70%),
        radial-gradient(40% 60% at 100% 100%, rgba(245, 158, 11, 0.04), transparent 70%),
        var(--bg);
}
.site-numbers {
    display: grid;
    gap: var(--sp-3);
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-top: var(--sp-5);
}
.site-numbers__cell {
    padding: var(--sp-4);
    text-align: center;
    background: var(--bg-alt);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}
.site-numbers__big {
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary), #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.site-numbers__label {
    margin-top: var(--sp-2);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   AUTHOR BYLINE (HOMEPAGE)
   ═══════════════════════════════════════════════════════════════════════ */
.author-byline {
    text-align: center;
    padding: var(--sp-3) 0;
    border-top: 1px solid var(--border);
}
.author-byline__inner {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.author-byline__label { font-weight: 600; }
.author-byline__name {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}
.author-byline__name:hover { color: var(--primary); text-decoration: underline; }
.author-byline__sep { opacity: 0.5; }


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS (mobile-first overrides)
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
    .hero-home { padding: var(--sp-6) 0 var(--sp-5); }
    .hero-home__multiplier-ribbon { font-size: 2.5rem; }
    .hero-home__actions .btn { width: 100%; justify-content: center; }
    .casino-row__name { font-size: var(--fs-sm); }
    .reading-path__num {
        position: static;
        margin-bottom: var(--sp-2);
    }
    .reading-path__title { padding-right: 0; }
    .timeline-strip::before { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════
   13b. EDITOR INTRO (verdict-box + pullquote + 3 reading-context paragraphs)
   ═══════════════════════════════════════════════════════════════════════ */
.editor-intro-section { padding-block: clamp(40px, 5vw, 72px); }
.home-intro {
    /* Default reading width for paragraph-only intros (legacy) */
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.65;
}
/* When the intro contains the pillar grid (3 cards), use full container width */
.home-intro:has(> .home-pillars) {
    max-width: none;
}
/* Fallback: explicit full-width modifier (apply by adding home-intro--wide class) */
.home-intro.home-intro--wide {
    max-width: none;
}
.home-intro p {
    margin: 0 0 var(--sp-4);
    padding: var(--sp-3) 0;
    font-size: var(--fs-md);
    color: var(--text);
    border-top: 1px dashed var(--border);
}
.home-intro p:first-of-type { border-top: none; padding-top: var(--sp-2); }
.home-intro > p + p { margin-top: var(--sp-2); }
.home-intro .review-pullquote + p,
.home-intro .verdict-box--home + p { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border); }
.home-intro p strong {
    color: var(--primary);
    font-weight: 700;
    margin-right: 4px;
}
.verdict-box--home {
    margin: 0 0 var(--sp-5);
    padding: var(--sp-5) var(--sp-5);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(245, 158, 11, 0.06)),
        var(--bg);
    border: 1px solid var(--border);
    border-left: 6px solid var(--primary);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.1);
}
.verdict-box--home .verdict-box__title {
    margin-bottom: var(--sp-2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}
.verdict-box--home p {
    margin: 0;
    font-size: var(--fs-md);
    line-height: 1.6;
    color: var(--text);
}


/* ═══════════════════════════════════════════════════════════════════════
   14. METHODOLOGY (3-card "how we test" block)
   ═══════════════════════════════════════════════════════════════════════ */
.method-section {
    background:
        radial-gradient(50% 70% at 0% 0%, rgba(34, 197, 94, 0.04), transparent 70%),
        radial-gradient(50% 70% at 100% 100%, rgba(245, 158, 11, 0.04), transparent 70%),
        var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.method-grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
    .method-grid { grid-template-columns: 1fr; }
}
.method-card {
    position: relative;
    padding: var(--sp-5);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-align: center;
    transition: transform 200ms, box-shadow 200ms;
    overflow: hidden;
}
.method-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #f59e0b);
}
.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.15);
}
.method-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--sp-3);
    display: grid;
    place-items: center;
    font-size: 1.75rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 50%;
}
.method-card__metric {
    font-family: 'Geist', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.2vw + 0.6rem, 2rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.method-card__label {
    margin: 6px 0 var(--sp-3);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.method-card__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text);
}


/* ═══════════════════════════════════════════════════════════════════════
   15. EDITORIAL PRINCIPLES (4-pillar trust grid)
   ═══════════════════════════════════════════════════════════════════════ */
.principles-section { padding-block: clamp(48px, 6vw, 96px); }
.principles-grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1100px) {
    .principles-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .principles-grid { grid-template-columns: 1fr; }
}
.principle-pillar {
    position: relative;
    padding: var(--sp-5) var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 200ms, border-color 200ms;
}
.principle-pillar:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}
.principle-pillar__num {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 999px;
    border: 1px solid var(--border);
}
.principle-pillar__icon {
    display: inline-block;
    margin-bottom: var(--sp-3);
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
}
.principle-pillar__title {
    margin: 0 0 var(--sp-2);
    padding-right: var(--sp-4);
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}
.principle-pillar__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   16. TAKEAWAYS (icon-grid replacement, no plain numbered list)
   ═══════════════════════════════════════════════════════════════════════ */
.takeaways-section {
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(34, 197, 94, 0.04), transparent 70%),
        var(--bg-alt);
    border-top: 1px solid var(--border);
}
.takeaways-grid {
    display: grid;
    gap: var(--sp-3);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: var(--sp-5);
}
.takeaway-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--sp-3);
    align-items: start;
    padding: var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform 150ms, border-color 150ms;
}
.takeaway-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}
.takeaway-card__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(245, 158, 11, 0.12));
    border-radius: var(--r-sm);
}
.takeaway-card__text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text);
}


/* ═══════════════════════════════════════════════════════════════════════
   17. FAQ (custom-styled head + spacing)
   ═══════════════════════════════════════════════════════════════════════ */
.faq-section { padding-block: clamp(48px, 6vw, 96px); }
.faq-head {
    max-width: 720px;
    margin: 0 auto var(--sp-5);
    text-align: center;
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--border);
}
.faq-head__eyebrow {
    display: inline-block;
    margin-bottom: var(--sp-2);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.faq-head__title {
    margin: 0 0 var(--sp-2);
    font-size: clamp(1.5rem, 2.4vw + 1rem, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
}
.faq-head__lead {
    margin: 0;
    font-size: var(--fs-md);
    line-height: 1.55;
    color: var(--text-muted);
}
.faq-list--home {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}
.faq-list--home .faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-2) var(--sp-4);
    transition: border-color 150ms;
}
.faq-list--home .faq-item:hover { border-color: var(--primary); }
.faq-list--home .faq-item[open] { border-color: var(--primary); }
.faq-list--home .faq-item__q {
    padding: var(--sp-3) 0;
    font-size: var(--fs-md);
    font-weight: 600;
}
.faq-list--home .faq-item__a {
    padding: 0 0 var(--sp-3);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px dashed var(--border);
    margin-top: var(--sp-2);
    padding-top: var(--sp-3);
}
.faq-list--home .faq-item__a a { color: var(--primary); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════════════════
   18. FINAL CTA (custom layout, casino-focused)
   ═══════════════════════════════════════════════════════════════════════ */
.final-cta-section {
    background: var(--bg);
    padding-block: clamp(24px, 3vw, 48px);
}
.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 3vw, 36px) clamp(20px, 3vw, 40px);
    border-radius: var(--r-lg);
    background:
        linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0c0f17 100%);
    color: #f1f5f9;
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 80% at 50% 0%, rgba(34, 197, 94, 0.18), transparent 70%),
        radial-gradient(40% 60% at 100% 100%, rgba(245, 158, 11, 0.12), transparent 70%);
    pointer-events: none;
}
.final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.final-cta__eyebrow {
    display: inline-block;
    margin-bottom: var(--sp-3);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.32);
    border-radius: 999px;
}
.final-cta__title {
    margin: 0 0 var(--sp-3);
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #f8fafc;
    letter-spacing: -0.02em;
}
.final-cta__note {
    margin: 0 0 var(--sp-5);
    font-size: var(--fs-md);
    line-height: 1.55;
    color: #cbd5e1;
}
.final-cta__actions {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--sp-4);
}
.final-cta__primary {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 8px 24px -8px rgba(34, 197, 94, 0.4);
}
.final-cta__primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -8px rgba(34, 197, 94, 0.5);
}
.final-cta__secondary {
    background: rgba(241, 245, 249, 0.06) !important;
    color: #f1f5f9 !important;
    border: 1px solid rgba(241, 245, 249, 0.18) !important;
}
.final-cta__secondary:hover {
    background: rgba(241, 245, 249, 0.12) !important;
}
.final-cta__terms {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(241, 245, 249, 0.55);
}

/* ═══════════════════════════════════════════════════════════════════════
   14. HOME-PILLARS — 3 карточки в ряд (Как тестируем / RTP / Доверие)
       Используется в editor-intro-section вместо плоского полотна.
   ═══════════════════════════════════════════════════════════════════════ */
.home-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-4);
    margin-top: var(--sp-6);
}
.home-pillar {
    padding: var(--sp-5);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: var(--brand);
}
.home-pillar__icon {
    font-size: 1.75rem;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(99,102,241,.06));
    color: var(--brand);
}
.home-pillar__title {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.home-pillar__body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}
.home-pillar__body p { margin: 0 0 var(--sp-2) 0; }
.home-pillar__body p:last-child { margin-bottom: 0; }
.home-pillar__body a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.home-pillar__body a:hover { opacity: 0.8; }

/* Лидер-блок над карточками (С чего начать) */
.home-intro-lead {
    background: linear-gradient(135deg, rgba(79,70,229,.06), rgba(99,102,241,.02));
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    text-align: left;
}
.home-intro-lead__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 var(--sp-2) 0;
    color: var(--text);
}
.home-intro-lead__body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}
.home-intro-lead__body a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
