:root {
    --bg: #0b0e14;
    --bg-elevated: #10141d;
    --surface: #151b26;
    --surface-2: #1c2330;
    --border: #262e3d;
    --border-soft: #1e2530;

    --text: #f4f6fb;
    --text-muted: #9aa3b7;
    --text-faint: #7a839a;

    --gold: #f0b94d;
    --gold-2: #f7d488;
    --turquoise: #8c6bfa;
    --violet: #8c6bfa;
    --green: #34d399;

    --grad-gold: linear-gradient(135deg, var(--gold-2), var(--gold));
    --grad-accent: linear-gradient(135deg, var(--violet), var(--turquoise));

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --container: 1180px;
    --container-narrow: 720px;

    --ease: cubic-bezier(.2, .7, .2, 1);
    --dur: .25s;

    --shadow-1: 0 10px 30px -12px rgba(0, 0, 0, .5);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
    color-scheme: dark;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
}

p { color: var(--text-muted); }

button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--gold);
    color: #0b0e14;
    padding: .6rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 700;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

:focus-visible {
    outline: 2px solid var(--turquoise);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

.wrap {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}
.wrap-narrow { max-width: var(--container-narrow); }

.section { padding: clamp(3.5rem, 6vw, 6.5rem) 0; }
.section-alt { background: var(--bg-elevated); }

.section-head {
    max-width: 640px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
    color: var(--turquoise);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.section-head h2 {
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
}

.overview-lead {
    max-width: 780px;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    font-size: 1rem;
    color: var(--text-muted);
}

.grad-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .95rem;
    border: 1px solid transparent;
    transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), filter var(--dur) var(--ease);
    white-space: nowrap;
    transform: translateZ(0);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--grad-gold);
    color: #17130a;
}
.btn-primary:hover { filter: brightness(1.06); }

.btn-outline {
    border-color: var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, .02);
}
.btn-outline:hover { border-color: var(--turquoise); color: var(--turquoise); }

.btn-ghost {
    color: var(--text-muted);
    border-color: var(--violet);
}
.btn-ghost:hover { color: var(--text); border-color: var(--violet); }

.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-soft);
}
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(11, 14, 20, .82);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.brand-logo {
    height: 34px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 1.75rem;
}

.main-nav ul a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: .95rem;
    transition: color var(--dur) var(--ease);
}
.main-nav ul a:hover { color: var(--text); }

.header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255, 255, 255, .04); }

.nav-toggle-bar {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 19px; }
.nav-toggle-bar:nth-child(3) { top: 24px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-actions {
    display: none;
}

.hero {
    position: relative;
    padding: clamp(3.5rem, 9vw, 7rem) 0 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--bg) url("/assets/hero-bg.webp") right top / 100% auto no-repeat;
}

.hero-inner { text-align: left; padding-bottom: clamp(2.5rem, 5vw, 4rem); }

.hero h1 {
    font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.9rem);
    max-width: 760px;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-strip-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--grad-gold);
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0;
    color: #17130a;
    border-radius: 0;
    width: 100%;
}
.trust-strip li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: .45rem;
    padding: .6rem 1rem;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
}
.trust-strip li[aria-hidden="true"] {
    display: none;
}
@media (min-width: 641px) {
    .trust-strip li:nth-child(6)::after { content: none; }
}
.trust-strip li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(23, 19, 10, .5);
    background: radial-gradient(circle, rgba(23, 19, 10, .5) 0 2px, transparent 2px 3px);
}

.pg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
}
@media (min-width: 640px) {
    .pg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
    .pg-grid { grid-template-columns: repeat(5, 1fr); }
}

.pg-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: .9rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    cursor: pointer;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pg-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.pg-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-2);
}
.pg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 14, 20, .55);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}
.pg-card:hover .pg-thumb::after { opacity: 1; }

.pg-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .6rem 1.3rem;
    border-radius: var(--radius-pill);
    background: var(--grad-gold);
    color: #17130a;
    font-weight: 700;
    font-size: .88rem;
    opacity: 0;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    z-index: 1;
}
.pg-card:hover .pg-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pg-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: .2rem .55rem;
    border-radius: var(--radius-pill);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.pg-badge-hot { background: var(--grad-gold); color: #17130a; }

.pg-info {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: 0 .2rem;
}
.pg-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pg-provider {
    font-size: .85rem;
    color: var(--text-faint);
}

.promo-grid {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .promo-grid { grid-template-columns: repeat(3, 1fr); }
}

.promo-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.promo-card:hover { transform: translateY(-4px); }

.promo-card-featured {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border-color: var(--gold);
}

.promo-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--turquoise);
    background: rgba(140, 107, 250, .1);
    padding: .3rem .7rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.promo-card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.promo-value {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: .5rem;
}
.promo-card p:not(.promo-value) { font-size: .9rem; margin-bottom: 1rem; }

.promo-card .btn {
    display: table;
    margin-inline: auto;
}

.promo-code {
    display: table;
    margin-inline: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(240, 185, 77, .1);
    border: 1px dashed var(--gold);
    border-radius: var(--radius-sm);
    padding: .3rem .6rem;
    margin-top: 1rem;
}

.promo-code-inline {
    display: inline-block;
    margin: 0 .1rem;
    vertical-align: middle;
}

.promo-fineprint {
    margin-top: 2rem;
    font-size: .82rem;
    color: var(--text-faint);
    max-width: 900px;
}

.fact-grid {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .fact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .fact-grid { grid-template-columns: repeat(3, 1fr); }
}

.fact-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

#support {
    scroll-margin-top: 90px;
}

.fact-label {
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gold);
}

.fact-value {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.5;
}

.steps-grid {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .steps-grid { grid-template-columns: repeat(5, 1fr); }
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.step-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #17130a;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card h4 { font-size: 1.02rem; margin-bottom: .4rem; }
.step-card p { font-size: .88rem; }

.info-block {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid var(--border-soft);
}

.info-block-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.info-block > p { max-width: 780px; margin-bottom: 1.5rem; }
.info-block > p:last-child { margin-bottom: 0; }

.limits-table-wrap {
    margin-top: 2.5rem;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.limits-table th,
.limits-table td {
    padding: .9rem 1.2rem;
    text-align: left;
    white-space: nowrap;
}
.limits-table thead th {
    background: var(--surface-2);
    color: var(--text-faint);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}
.limits-table tbody tr { background: var(--surface); }
.limits-table tbody tr:nth-child(even) { background: var(--bg-elevated); }
.limits-table td:first-child { color: var(--text); font-weight: 600; }
.limits-table td:last-child { color: var(--text-muted); white-space: normal; }

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}
.provider-strip li {
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: .6rem 1.2rem;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-muted);
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.provider-strip li:hover {
    border-color: var(--violet);
    color: var(--text);
}

.payments-grid {
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
    .payments-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
    .payments-grid { grid-template-columns: repeat(6, 1fr); }
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    padding: 1.4rem .8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.payment-item:hover { border-color: var(--gold); color: var(--text); }

.faq-list { display: flex; flex-direction: column; gap: .7rem; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.3rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 10px; height: 10px;
    border-right: 2px solid var(--turquoise);
    border-bottom: 2px solid var(--turquoise);
    transform: rotate(45deg);
    transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg); }

.faq-item p { margin-top: .8rem; font-size: .92rem; }

.faq-item p a,
.info-block p a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.faq-item p a:hover,
.info-block p a:hover { color: var(--gold-2); }

.cta-band {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.cta-band-glow {
    position: absolute;
    inset: -20% -10%;
    background: radial-gradient(ellipse at center, rgba(140, 107, 250, .22), transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.cta-band-logo {
    height: 32px;
    width: auto;
    margin: 0 auto 1.2rem;
}

.cta-band h2 {
    font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
    margin-bottom: .6rem;
}
.cta-band p { max-width: 480px; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }

.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-soft);
    padding-top: clamp(3rem, 5vw, 4.5rem);
}

.footer-inner {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding-bottom: 2.5rem;
}
@media (min-width: 780px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .brand-logo {
    height: 30px;
}

.footer-brand p {
    margin: .9rem 0 1.1rem;
    font-size: .9rem;
    max-width: 480px;
}

.footer-col h3 {
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
    color: var(--text-muted);
    font-size: .92rem;
    transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding: 1.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-legal-text {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-disclaimer {
    font-size: .8rem;
    color: var(--text-faint);
    max-width: 100%;
}

.footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .82rem;
    color: var(--text-faint);
}

.license-badge, .age-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: .3rem .7rem;
    font-weight: 700;
}

.license-badge {
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.license-badge:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .nav-toggle { display: block; }

    .main-nav {
        position: fixed;
        inset: 68px 0 0 0;
        background: var(--bg-elevated);
        padding: 1.5rem clamp(1.25rem, 6vw, 2rem) 2rem;
        transform: translateX(100%);
        transition: transform var(--dur) var(--ease);
        overflow-y: auto;
    }
    .main-nav.is-open { transform: translateX(0); }

    body.nav-open { overflow: hidden; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav li { border-bottom: 1px solid var(--border-soft); }
    .main-nav ul a { display: block; padding: 1rem 0; font-size: 1.05rem; }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: .8rem;
        margin-top: 1.5rem;
    }
    .nav-actions .btn { width: 100%; }

    .header-actions .btn { display: none; }
}

@media (min-width: 861px) {
    .main-nav { display: block; }
}

@media (max-width: 640px) {
    .hero {
        background-image: url("assets/hero-bg-mobile.webp");
        background-position: center bottom -140px;
        background-size: cover;
        min-height: clamp(480px, 135vw, 640px);
        padding-top: 3.5rem;
    }
    .hero-inner { text-align: center; }
    .hero h1 { margin-inline: auto; }
    .hero-lead { margin-inline: auto; }
    .hero-cta { justify-content: center; }
}

@media (max-width: 640px) {
    .trust-strip {
        flex-wrap: nowrap;
        width: max-content;
        animation: trust-scroll 18s linear infinite;
    }
    .trust-strip li {
        flex: 0 0 auto;
    }
    .trust-strip li[aria-hidden="true"] {
        display: flex;
    }
    .trust-strip-wrap:hover .trust-strip {
        animation-play-state: paused;
    }
}

@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.show-more-btn {
    display: none;
}
@media (max-width: 640px) {
    .pg-grid:not(.is-expanded) .pg-card:nth-child(n+7) {
        display: none;
    }
    .show-more-btn {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
        padding: .8rem 1.6rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        background: rgba(255, 255, 255, .02);
        color: var(--text);
        font-weight: 700;
        font-size: .95rem;
        text-align: center;
        transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
    }
    .show-more-btn:hover { border-color: var(--gold); color: var(--gold); }
}