:root {
    --bg: #070b14;
    --panel: #121a2b;
    --panel-soft: #1a2338;
    --text: #eaf0ff;
    --muted: #aeb8d4;
    --accent: #7dd3fc;
    --accent-strong: #38bdf8;
    --ok: #86efac;
    --ring: rgba(125, 211, 252, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 20%, #17203a 0%, var(--bg) 40%);
    line-height: 1.6;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(120deg, rgba(56, 189, 248, 0.14), rgba(14, 116, 144, 0.04)),
        radial-gradient(circle at 85% 10%, rgba(134, 239, 172, 0.15), transparent 40%);
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    gap: 1rem;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.top-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.top-nav a:hover,
.top-nav a:focus-visible {
    color: var(--accent);
}

.hero-content {
    padding: 3rem 0 4.2rem;
    max-width: 760px;
}

.badge {
    display: inline-block;
    margin-bottom: 0.8rem;
    background: rgba(134, 239, 172, 0.12);
    color: var(--ok);
    border: 1px solid rgba(134, 239, 172, 0.35);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-copy {
    color: var(--muted);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    max-width: 65ch;
}

.hero-actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    padding: 0.7rem 1rem;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn-primary {
    background: linear-gradient(140deg, var(--accent), var(--accent-strong));
    color: #03101a;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    filter: brightness(1.06);
    box-shadow: 0 0 0 4px var(--ring);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

.section {
    padding: 3.6rem 0;
}

.section-title-wrap p,
.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.79rem;
    margin-bottom: 0.35rem;
}

h2 {
    font-size: clamp(1.45rem, 3vw, 2.3rem);
    margin-bottom: 0.65rem;
}

.section-title-wrap > p:last-child,
.section p {
    color: var(--muted);
}

.product-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}

.card,
.faq-list details,
.content-block {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.detail {
    min-height: 52px;
}

.price {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    color: var(--ok);
    font-weight: 800;
}

.section-alt {
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.07), rgba(0, 0, 0, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
}

.steps {
    margin-top: 0.8rem;
    padding-left: 1.3rem;
}

.steps li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.info-box {
    background: var(--panel-soft);
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 1rem;
    padding: 1rem;
}

.feature-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}

.feature-grid article {
    background: var(--panel);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.content-block {
    display: grid;
    gap: 0.7rem;
}

.faq-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
}

.faq-list details p {
    margin-top: 0.55rem;
}

.cta {
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.16), rgba(7, 11, 20, 0.8));
}

.cta-content {
    text-align: center;
}

.discord-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0 1.5rem;
}

.footer-content {
    text-align: center;
    color: var(--muted);
    font-size: 0.94rem;
}

@media (max-width: 760px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .top-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 2.1rem;
    }
}
