:root {
    --bg: #0a0d16;
    --panel: rgba(18, 24, 40, 0.88);
    --panel-strong: #12182a;
    --text: #f2f5ff;
    --muted: #a9b4d0;
    --line: rgba(255,255,255,0.08);
    --accent: #6e5bff;
    --accent-2: #2de2e6;
    --success: #8bffb0;
    --shadow: 0 20px 60px rgba(0,0,0,0.35);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(110,91,255,0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(45,226,230,0.12), transparent 28%),
        linear-gradient(180deg, #090c14 0%, #0c1120 100%);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 96px 0; }
.section.muted { background: rgba(255,255,255,0.02); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(10,13,22,0.72);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    box-shadow: 0 10px 30px rgba(110,91,255,0.32);
}
.brand-text { font-size: 1.05rem; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}
.site-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: 0.2s ease;
}
.site-nav a:hover { color: var(--text); }
.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
}
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: white;
}

.hero { padding: 72px 0 40px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}
.badge, .eyebrow {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--success);
    font-size: 0.92rem;
    font-weight: 700;
}
.hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.04;
    max-width: 12ch;
}
.hero p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.05rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 28px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--accent), #9388ff);
    box-shadow: 0 18px 40px rgba(110,91,255,0.28);
}
.button.secondary,
.button.ghost {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
}
.button.large { min-height: 58px; padding: 0 26px; }
.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.hero-points li {
    color: var(--muted);
    position: relative;
    padding-left: 24px;
}
.hero-points li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--accent-2);
}
.hero-card {
    display: grid;
    gap: 18px;
}
.stat-card,
.info-card,
.product-card,
.step-item,
.benefits-grid article,
.cta-box,
.simple-page article,
.faq-list details {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.stat-card,
.info-card {
    padding: 28px;
}
.glow {
    position: relative;
    overflow: hidden;
}
.glow::after {
    content: '';
    position: absolute;
    inset: auto -20% -40% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(45,226,230,0.22), transparent 70%);
    pointer-events: none;
}
.stat-card p,
.info-card span {
    margin: 0 0 10px;
    color: var(--muted);
    font-weight: 600;
}
.info-card strong,
.product-mini-list strong { font-size: 1.12rem; }
.product-mini-list {
    display: grid;
    gap: 16px;
}
.product-mini-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.product-mini-list div:last-child { border-bottom: 0; }

.section-head {
    text-align: center;
    margin-bottom: 34px;
}
.section-head.left { text-align: left; }
.section-head h2 {
    margin: 16px 0 10px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}
.section-head p {
    margin: 0 auto;
    max-width: 62ch;
    color: var(--muted);
}
.cards-grid,
.benefits-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
    padding: 28px;
    min-height: 100%;
}
.product-top h3 {
    margin: 14px 0 12px;
    font-size: 1.65rem;
}
.product-top p,
.product-card ul,
.benefits-grid p,
.step-item p,
.cta-box p,
.simple-page .entry-content,
.faq-list p {
    color: var(--muted);
}
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 800;
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0;
}
.price-row strong {
    font-size: 2rem;
    line-height: 1;
}
.product-card ul {
    margin: 0;
    padding-left: 20px;
}
.product-card.discord {
    background: linear-gradient(180deg, rgba(110,91,255,0.15), rgba(18,24,40,0.9));
}
.product-card.xbox {
    background: linear-gradient(180deg, rgba(45,226,230,0.12), rgba(18,24,40,0.9));
}
.benefits-grid article,
.step-item {
    padding: 26px;
}
.step-item span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    font-weight: 900;
    margin-bottom: 18px;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-list details {
    padding: 0 22px;
}
.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0 0 20px; }
.cta-section { padding-top: 30px; }
.cta-box {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-footer {
    padding: 24px 0 42px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-inner p,
.footer-links a { color: var(--muted); }
.footer-links { display: flex; gap: 18px; }
.simple-page article { padding: 28px; }
.simple-page h1 { margin-top: 0; }

@media (max-width: 980px) {
    .hero-grid,
    .benefits-grid,
    .steps-grid,
    .cards-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-box {
        display: grid;
        justify-content: stretch;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: rgba(10,13,22,0.96);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .nav-toggle { display: inline-block; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding-top: 38px; }
    .hero h1 { max-width: none; }
    .price-row {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
