:root {
    --bg: #0b0f14;
    --bg-alt: #111822;
    --panel: #141d29;
    --panel-2: #192434;
    --border: rgba(255, 255, 255, 0.08);
    --text: #e9edf3;
    --muted: #9eacbf;
    --primary: #ffcc00;
    --primary-dark: #d5a800;
    --secondary: #1d2a3a;
    --success: #34d399;
    --danger: #f87171;
    --champion: #d4a700;
    --grand: #8b5cf6;
    --diamond: #22d3ee;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1220px;
    --transition: 0.24s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top, rgba(255, 204, 0, 0.06), transparent 35%),
        linear-gradient(180deg, #0a0e13 0%, #0c1118 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    backdrop-filter: blur(14px);
    background: rgba(8, 12, 18, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.nav-links a {
    padding: 0.6rem 0.8rem;
    border-radius: 999px;
    color: var(--muted);
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 14px;
    cursor: pointer;
}

.nav-cta {
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn.full {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ffd84c);
    color: #111;
    box-shadow: 0 10px 28px rgba(255, 204, 0, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-home {
    padding: 5rem 0 3.5rem;
}

.hero-grid {
    min-height: calc(100vh - 84px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 1.02;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.08rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.12);
    border: 1px solid rgba(255, 204, 0, 0.16);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-actions,
.cta-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.hero-points {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-weight: 600;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-panel {
    position: relative;
}

.panel-glow {
    position: absolute;
    inset: auto 10% 0 10%;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.18), transparent 70%);
    filter: blur(30px);
}

.hero-card,
.info-card,
.stat-card,
.side-panel,
.feature-panel,
.rule-card,
.redirect-panel,
.tier-main-card,
.cta-panel {
    background: linear-gradient(180deg, rgba(24, 34, 48, 0.96), rgba(16, 24, 36, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    position: relative;
    padding: 1.4rem;
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.hero-card-top img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
}

.hero-card-top h3 {
    font-size: 1.2rem;
}

.hero-card-top p {
    color: var(--muted);
    font-size: 0.95rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1rem;
    text-align: left;
}

.stat-card i {
    color: var(--primary);
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
}

.stat-number {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.page-main {
    padding-bottom: 3rem;
}

.page-hero.compact {
    padding: 5rem 0 2.4rem;
}

.section {
    padding: 4.2rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.left {
    text-align: left;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    margin-bottom: 0.6rem;
    line-height: 1.05;
}

.section-heading p {
    color: var(--muted);
    max-width: 760px;
}

.section-heading.centered p {
    margin: 0 auto;
}

.card-grid {
    display: grid;
    gap: 1.2rem;
}

.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-panel,
.rule-card {
    padding: 1.35rem;
}

.icon-wrap {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 204, 0, 0.12);
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.info-card h3,
.feature-panel h3,
.rule-card h4,
.side-panel h3,
.tier-main-card h2 {
    margin-bottom: 0.7rem;
    color: #fff;
}

.info-card p,
.feature-panel p,
.rule-card p,
.side-panel p,
.tier-summary,
.price-note {
    color: var(--muted);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.tier-card {
    padding: 1.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(22, 31, 45, 0.98), rgba(15, 22, 33, 0.98));
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.tier-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.tier-card p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 1.2rem;
    display: grid;
    gap: 0.6rem;
}

.tier-card li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #dce4ef;
}

.tier-card li i {
    color: var(--success);
}

.tier-badge {
    align-self: flex-start;
    margin-bottom: 0.85rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-champion .tier-badge,
.tier-champion .icon-wrap {
    background: rgba(212, 167, 0, 0.14);
    color: #f8d44c;
}

.tier-grand .tier-badge {
    background: rgba(139, 92, 246, 0.16);
    color: #c9b4ff;
}

.tier-diamond .tier-badge {
    background: rgba(34, 211, 238, 0.16);
    color: #9ceff9;
}

.featured {
    transform: translateY(-8px);
    border-color: rgba(255, 204, 0, 0.28);
}

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.4rem;
    align-items: start;
}

.side-panel {
    padding: 1.35rem;
}

.steps {
    display: grid;
    gap: 1rem;
}

.steps.large {
    gap: 1.15rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 204, 0, 0.14);
    color: var(--primary);
    font-weight: 800;
}

.step-item h4 {
    margin-bottom: 0.2rem;
}

.step-item p {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 1rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
    padding: 0 1.1rem;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 0 1.1rem 1rem;
}

.faq-answer p {
    color: var(--muted);
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(20, 29, 41, 0.95), rgba(16, 23, 34, 0.98));
    box-shadow: var(--shadow);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.compare-table th,
.compare-table td {
    padding: 1rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.compare-table th {
    color: #fff;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
}

.compare-table td {
    color: #d8e1ec;
}

.compare-table .success {
    color: var(--success);
}

.compare-table .danger {
    color: var(--danger);
}

.table-btn {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
}

.top-gap {
    margin-top: 1.4rem;
}

.tier-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.3rem;
}

.tier-main-card {
    padding: 1.5rem;
}

.price-block {
    margin: 1.4rem 0;
    padding: 1rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.price-label {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.price-value {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
}

.price-note {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.92rem;
}

.tier-actions {
    display: grid;
    gap: 0.8rem;
}

.clean-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.clean-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #d8e1ec;
}

.clean-list li i {
    color: var(--success);
    margin-top: 0.2rem;
}

.clean-list.ordered {
    counter-reset: step;
    gap: 0.9rem;
}

.clean-list.ordered li {
    display: list-item;
    list-style: decimal inside;
    color: #d8e1ec;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-row {
    display: flex;
    gap: 0.85rem;
}

.feature-row i {
    color: var(--success);
    margin-top: 0.25rem;
}

.feature-row h4 {
    margin-bottom: 0.2rem;
}

.feature-row p {
    color: var(--muted);
}

.cta-section {
    padding-top: 0;
}

.cta-panel {
    padding: 1.6rem;
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: center;
}

.centered {
    text-align: center;
}

.redirect-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 0;
}

.redirect-panel {
    padding: 2rem;
    text-align: center;
    width: min(600px, calc(100% - 2rem));
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.footer-grid {
    padding: 2rem 0 1.4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1.3rem;
}

.footer-brand {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.footer-brand p,
.footer-links a {
    color: var(--muted);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 1rem 0 2rem;
    color: var(--muted);
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-layout,
    .tier-page-grid,
    .footer-grid,
    .card-grid.three,
    .tier-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.two {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(8, 12, 18, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-home {
        padding-top: 3.5rem;
    }

    .hero-grid {
        min-height: auto;
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .section {
        padding: 3.2rem 0;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-actions,
    .cta-actions,
    .section-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}