/* ============================================================
   CrownCoins Official DE — Design System
   Theme: Deep Purple + Gold (CrownCoins brand)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand colors from CrownCoins */
    --purple-deep: #0d0120;
    --purple-dark: #1a0533;
    --purple-mid: #2d1060;
    --purple-light: #4a1fa8;
    --purple-glow: #7c3aed;
    --gold: #f59e0b;
    --gold-light: #fcd34d;
    --gold-dark: #b45309;
    --gold-pale: #fef3c7;
    --white: #ffffff;
    --off-white: #f5f0ff;
    --text: #e2d9f3;
    --text-muted: #9d8cc4;
    --surface: rgba(45, 16, 96, 0.6);
    --surface-hover: rgba(74, 31, 168, 0.5);
    --border: rgba(245, 158, 11, 0.2);
    --border-hover: rgba(245, 158, 11, 0.5);
    --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.25);
    --shadow-purple: 0 8px 32px rgba(13, 1, 32, 0.6);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.25s ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--purple-deep);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(74, 31, 168, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

ul {
    list-style: none;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    z-index: 9999;
    background: var(--gold);
    color: var(--purple-deep);
    padding: .5rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--purple-dark);
    border-bottom: 1px solid var(--border);
    padding: .4rem 0;
    font-size: .75rem;
    color: var(--text-muted);
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-trust {
    display: flex;
    gap: 1.5rem;
}

.top-bar-trust span {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.age-badge {
    background: var(--gold);
    color: var(--purple-deep);
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-size: .7rem;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(13, 1, 32, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: .8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 88px;
    height: auto;
    transition: opacity var(--transition);
}

.logo:hover img {
    opacity: 0.85;
}

/* fallback for any remaining old logo markup */
.logo-crown {
    font-size: 1.8rem;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
}

.logo-sub {
    font-size: .65rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    gap: .25rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    overflow: hidden;
}

.main-nav a {
    color: var(--text);
    padding: .45rem .75rem;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* ── BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple-deep);
    font-weight: 700;
    font-size: .9rem;
    padding: .6rem 1.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--purple-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1.5px solid var(--border-hover);
    color: var(--gold);
    padding: .6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-outline:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-ghost {
    color: var(--text-muted);
    padding: .5rem .75rem;
    font-size: .85rem;
    transition: color var(--transition);
}

.btn-ghost:hover {
    color: var(--white);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mob-nav {
    display: none;
    flex-direction: column;
    background: var(--purple-dark);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    color: var(--text);
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: .95rem;
}

.mob-nav a:hover {
    color: var(--gold);
}

.mob-nav .btn-gold {
    width: 100%;
    justify-content: center;
    margin-top: .75rem;
}

/* ── HERO SECTION ── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(13, 1, 32, 0.95) 0%,
            rgba(13, 1, 32, 0.75) 50%,
            rgba(13, 1, 32, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--border-hover);
    color: var(--gold);
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    padding: .3rem .75rem;
    border-radius: 50px;
    font-size: .78rem;
}

/* ── STATS TICKER ── */
.stats-ticker {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: .5rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ── SECTIONS ── */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: rgba(45, 16, 96, 0.2);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-head {
    margin-bottom: 3rem;
}

.section-head.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .75rem;
}

.section-title .gold {
    color: var(--gold);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 640px;
}

.section-head.center .section-desc {
    margin: 0 auto;
}

/* ── CARDS ── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}

.card-desc {
    font-size: .9rem;
    color: var(--text-muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ── FEATURE IMAGE SECTION ── */
.img-feature {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.img-feature img {
    width: 100%;
    display: block;
}

/* ── TABLES ── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-purple);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

caption {
    font-size: .78rem;
    color: var(--text-muted);
    text-align: left;
    padding: .6rem .75rem;
    background: rgba(13, 1, 32, 0.5);
    border-bottom: 1px solid var(--border);
}

th {
    background: rgba(45, 16, 96, 0.8);
    color: var(--gold);
    padding: .85rem 1rem;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

td {
    padding: .8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(245, 158, 11, 0.04);
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-green {
    color: #34d399;
}

.td-purple {
    color: #c4b5fd;
}

.td-muted {
    color: var(--text-muted);
}

/* ── CHARTS (CSS/SVG-based) ── */
.chart-section {
    margin-top: 2.5rem;
}

.chart-title {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 130px;
    font-size: .85rem;
    color: var(--text);
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: width 1s ease;
}

.bar-fill.purple {
    background: linear-gradient(90deg, var(--purple-light), var(--purple-glow));
}

.bar-val {
    min-width: 50px;
    font-size: .85rem;
    color: var(--gold);
    font-weight: 700;
}

/* Donut chart */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.donut-svg {
    flex-shrink: 0;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.donut-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
}

.donut-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.donut-name {
    color: var(--text);
}

.donut-pct {
    color: var(--gold);
    font-weight: 700;
    margin-left: auto;
    min-width: 40px;
}

/* ── BONUS CARDS ── */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(45, 16, 96, 0.8), rgba(26, 5, 51, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.bonus-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.bonus-amount {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .4rem;
}

.bonus-name {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ── STEPS ── */
.steps {
    counter-reset: step;
    display: grid;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--purple-deep);
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: .3rem;
    font-size: 1rem;
}

.step-desc {
    font-size: .9rem;
    color: var(--text-muted);
}

/* ── FAQ BOX (used on FAQ page) ── */
.faq-box {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/* ── ACCORDION / FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--border-hover);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 1.25rem 1.1rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ── PROSE / SEO TEXT ── */
.prose {
    font-size: .95rem;
    color: var(--text);
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin: 2rem 0 .75rem;
}

.prose h3 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin: 1.5rem 0 .5rem;
    font-weight: 700;
}

.prose p {
    margin-bottom: 1rem;
}

.prose a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--gold-light);
}

.prose strong {
    color: var(--white);
    font-weight: 600;
}

.prose ul {
    margin: .75rem 0 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.prose ul li {
    position: relative;
    list-style: disc;
    color: var(--text);
    font-size: .9rem;
}

/* ── AUTHOR BOX ── */
.author-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2.5rem;
}

.author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--border-hover);
    flex-shrink: 0;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.author-role {
    font-size: .8rem;
    color: var(--gold);
    margin-bottom: .4rem;
}

.author-bio {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.cta-banner .cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner .cta-title span {
    color: var(--gold);
}

.cta-banner .cta-lead {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-disclaimer {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ── PLATFORM RATING CARD ── */
.platform-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition);
}

.platform-card:hover {
    border-color: var(--border-hover);
}

.platform-rank {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--purple-light);
    min-width: 2.5rem;
    text-align: center;
}

.platform-rank.gold {
    color: var(--gold);
}

.platform-name {
    font-weight: 700;
    color: var(--white);
    margin-bottom: .2rem;
}

.platform-meta {
    font-size: .82rem;
    color: var(--text-muted);
}

.platform-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    text-align: right;
}

.platform-score small {
    display: block;
    font-size: .7rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--purple-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand-desc {
    font-size: .85rem;
    color: var(--text-muted);
    margin: .75rem 0 1.25rem;
    line-height: 1.7;
}

.footer-col h5 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col ul li a {
    font-size: .85rem;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 1.5rem;
}

.footer-bottom {
    max-width: 1280px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .75rem;
    font-size: .75rem;
    color: var(--text-muted);
}

.footer-disc {
    max-width: 700px;
    line-height: 1.6;
}

/* ── MISC ── */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: .25rem .65rem;
    border-radius: 50px;
    font-size: .78rem;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: var(--white);
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        justify-content: space-between;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        margin-left: 0;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 420px;
    }

    .hero-content {
        max-width: 100%;
    }

    .grid-2,
    .grid-3,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .donut-wrap {
        flex-direction: column;
    }

    .platform-card {
        grid-template-columns: auto 1fr;
    }

    .platform-score {
        grid-column: 1 / -1;
        text-align: left;
    }

    .top-bar-trust {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .header-cta .btn-ghost {
        display: none;
    }
}