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

:root {
    --bg: #07080d;
    --bg-soft: #0c0e15;
    --card: #10121a;
    --card-hover: #141722;
    --border: rgba(255,255,255,0.08);
    --text: #f4f6fb;
    --muted: #9297a8;
    --accent: #8b5cf6;
    --accent-2: #a855f7;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 50% -20%, rgba(139,92,246,0.16), transparent 40%),
        var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    min-height: 100vh;

    overflow-x: hidden;
}

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

button,
input {
    font: inherit;
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;

    z-index: 100;

    width: 100%;

    background: rgba(7,8,13,0.78);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1250px;

    margin: auto;

    min-height: 76px;

    padding: 0 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family: "Unbounded", sans-serif;

    font-weight: 800;

    letter-spacing: -1px;
}

.logo-mark {
    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );

    color: white;

    font-size: 15px;

    box-shadow:
        0 0 30px rgba(139,92,246,0.35);
}

.logo-word {
    font-size: 17px;
}

.nav-links {
    display: flex;

    gap: 30px;

    color: var(--muted);

    font-size: 14px;

    font-weight: 600;
}

.nav-links a {
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-discord {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    border: 1px solid var(--border);

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s ease;
}

.nav-discord:hover {
    background: rgba(255,255,255,0.06);

    border-color: rgba(255,255,255,0.16);
}


/* HERO */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero-glow {
    position: absolute;

    width: 700px;

    height: 700px;

    right: -220px;

    top: -150px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(139,92,246,0.23),
        transparent 68%
    );

    filter: blur(10px);

    pointer-events: none;
}

.hero-inner {
    width: 100%;

    max-width: 1250px;

    margin: auto;

    padding: 90px 28px;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 60px;
}

.eyebrow {
    color: #a78bfa;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Unbounded", sans-serif;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.03;

    letter-spacing: -4px;
}

.hero h1 span {
    background: linear-gradient(
        100deg,
        #ffffff,
        #a78bfa
    );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.hero-text {
    max-width: 610px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 11px;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    border: 1px solid transparent;

    transition: 0.2s ease;
}

.btn-primary {
    color: white;

    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );

    box-shadow:
        0 10px 35px rgba(139,92,246,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 45px rgba(139,92,246,0.38);
}

.btn-ghost {
    border-color: var(--border);

    color: white;

    background: rgba(255,255,255,0.025);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.07);
}

.hero-stats {
    display: flex;

    gap: 38px;

    margin-top: 45px;
}

.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.hero-stats strong {
    font-family: "Unbounded", sans-serif;

    font-size: 17px;
}

.hero-stats span {
    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    min-height: 420px;

    display: grid;

    place-items: center;
}

.orb {
    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #c4b5fd,
            #8b5cf6 25%,
            #4c1d95 58%,
            #160b2c 75%
        );

    box-shadow:
        0 0 100px rgba(139,92,246,0.42),
        inset -25px -25px 60px rgba(0,0,0,0.35);

    animation: float 5s ease-in-out infinite;
}

.ring {
    position: absolute;

    border: 1px solid rgba(167,139,250,0.25);

    border-radius: 50%;

    transform: rotate(-25deg);
}

.ring-a {
    width: 390px;

    height: 170px;
}

.ring-b {
    width: 460px;

    height: 210px;

    transform: rotate(25deg);
}

.badge-float {
    position: absolute;

    bottom: 55px;

    right: 45px;

    padding: 12px 18px;

    border-radius: 10px;

    background: rgba(15,16,24,0.9);

    border: 1px solid var(--border);

    font-family: "Unbounded", sans-serif;

    font-size: 11px;

    letter-spacing: 1px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* STORE */

.store-section {
    max-width: 1250px;

    margin: auto;

    padding: 110px 28px;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    font-family: "Unbounded", sans-serif;

    font-size: clamp(30px, 5vw, 46px);

    letter-spacing: -2px;
}

.section-heading > p:last-child {
    margin-top: 17px;

    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;
}


/* RANK GRID */

.rank-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.rank-card {
    position: relative;

    padding: 27px;

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;

    overflow: hidden;
}

.rank-card:hover {
    transform: translateY(-6px);

    border-color: rgba(167,139,250,0.3);

    background: var(--card-hover);
}

.rank-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.rank-tag {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #a78bfa;
}

.tier-bar {
    display: flex;

    gap: 3px;
}

.tier-bar i {
    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: rgba(167,139,250,0.28);
}

.rank-card[data-tier="1"] .tier-bar i:nth-child(-n+1),
.rank-card[data-tier="2"] .tier-bar i:nth-child(-n+2),
.rank-card[data-tier="3"] .tier-bar i:nth-child(-n+3),
.rank-card[data-tier="4"] .tier-bar i:nth-child(-n+4),
.rank-card[data-tier="5"] .tier-bar i:nth-child(-n+5),
.rank-card[data-tier="6"] .tier-bar i:nth-child(-n+6) {
    background: #a78bfa;

    box-shadow: 0 0 8px rgba(167,139,250,0.6);
}

.rank-card h3 {
    margin-top: 25px;

    font-family: "Unbounded", sans-serif;

    font-size: 24px;

    letter-spacing: -1px;
}

.rank-description {
    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}

.price {
    display: flex;

    align-items: baseline;

    gap: 8px;

    margin-top: 23px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.amount {
    font-family: "Unbounded", sans-serif;

    font-size: 27px;
}

.unit {
    color: var(--muted);

    font-size: 11px;
}

.perks {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 11px;

    margin: 23px 0 27px;
}

.perks li {
    position: relative;

    padding-left: 18px;

    color: #c9cbd4;

    font-size: 12px;

    line-height: 1.45;
}

.perks li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #a78bfa;

    font-weight: 800;
}

.perks code {
    color: #d8b4fe;

    font-family: monospace;

    font-size: 11px;
}

.buy-button {
    width: 100%;

    min-height: 45px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: rgba(255,255,255,0.035);

    color: white;

    cursor: pointer;

    font-size: 12px;

    font-weight: 800;

    transition: 0.2s ease;
}

.buy-button:hover {
    background: rgba(139,92,246,0.15);

    border-color: rgba(167,139,250,0.4);

    transform: translateY(-1px);
}

.buy-button.primary {
    border: none;

    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );

    box-shadow:
        0 8px 30px rgba(139,92,246,0.25);
}


/* FEATURED */

.rank-card.featured {
    border-color: rgba(139,92,246,0.48);

    background:
        linear-gradient(
            180deg,
            rgba(139,92,246,0.09),
            rgba(255,255,255,0.015)
        );
}

.popular {
    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    padding: 8px;

    text-align: center;

    background: linear-gradient(
        90deg,
        #7c3aed,
        #a855f7
    );

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.featured .rank-head {
    margin-top: 23px;
}


/* GOAT */

.rank-card.goat {
    background:
        linear-gradient(
            145deg,
            rgba(245,158,11,0.09),
            rgba(255,255,255,0.015)
        );
}


/* HOW IT WORKS */

.how-section {
    max-width: 1150px;

    margin: auto;

    padding: 80px 28px 130px;
}

.steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    list-style: none;
}

.step {
    padding: 26px;

    border-radius: 16px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.018);
}

.step-num {
    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background: rgba(139,92,246,0.15);

    color: #c4b5fd;

    font-family: "Unbounded", sans-serif;

    font-size: 11px;
}

.step h3 {
    margin-top: 20px;

    font-family: "Unbounded", sans-serif;

    font-size: 15px;
}

.step p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;
}


/* FOOTER */

footer {
    border-top: 1px solid var(--border);

    background: #05060a;
}

.footer-inner {
    max-width: 1250px;

    margin: auto;

    padding: 60px 28px;

    display: flex;

    justify-content: space-between;

    gap: 40px;
}

.footer-brand p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 80px;
}

.footer-links div {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4 {
    font-size: 12px;

    margin-bottom: 4px;
}

.footer-links a {
    color: var(--muted);

    font-size: 12px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1250px;

    margin: auto;

    padding: 20px 28px;

    border-top: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #666b7b;

    font-size: 10px;
}


/* MODAL */

.modal-backdrop {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,0.72);

    backdrop-filter: blur(10px);
}

.modal-backdrop.active {
    display: flex;
}

.modal {
    position: relative;

    width: 100%;

    max-width: 450px;

    padding: 35px;

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            #151722,
            #0d0f16
        );

    border: 1px solid rgba(167,139,250,0.2);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.65);

    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;

        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;

        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;

    top: 15px;

    right: 15px;

    width: 34px;

    height: 34px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: transparent;

    color: #999;

    cursor: pointer;
}

.modal-close:hover {
    color: white;

    background: rgba(255,255,255,0.05);
}

.modal-eyebrow {
    color: #a78bfa;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.modal h3 {
    margin-top: 12px;

    font-family: "Unbounded", sans-serif;

    font-size: 24px;
}

.modal-price {
    margin-top: 10px;

    color: #c4b5fd;

    font-family: "Unbounded", sans-serif;

    font-size: 20px;
}

.modal-label {
    display: block;

    margin-top: 28px;

    margin-bottom: 8px;

    color: #c7c9d2;

    font-size: 12px;

    font-weight: 700;
}

.modal-input {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid var(--border);

    border-radius: 10px;

    outline: none;

    background: rgba(255,255,255,0.035);

    color: white;
}

.modal-input:focus {
    border-color: rgba(167,139,250,0.55);

    box-shadow:
        0 0 0 3px rgba(139,92,246,0.1);
}

.modal-error {
    display: none;

    margin-top: 8px;

    color: #fb7185;

    font-size: 11px;
}

.modal-error.show {
    display: block;
}

.modal-submit {
    width: 100%;

    margin-top: 18px;

    border: none;
}

.modal-hint {
    margin-top: 13px;

    color: #707584;

    font-size: 10px;

    text-align: center;

    line-height: 1.5;
}


/* MOBILE */

@media (max-width: 1000px) {

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .rank-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 680px) {

    .nav-inner {
        min-height: 65px;

        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .nav-discord {
        padding: 9px 11px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 75px 20px 85px;
    }

    .hero h1 {
        font-size: 46px;

        letter-spacing: -2.5px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;

        justify-content: space-between;
    }

    .store-section,
    .how-section {
        padding-left: 18px;

        padding-right: 18px;
    }

    .rank-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;

        padding-left: 20px;

        padding-right: 20px;
    }

    .footer-links {
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;

        padding-left: 20px;

        padding-right: 20px;
    }

    .modal {
        padding: 28px 22px;
    }
}
