body {
    margin: 0;
    font-family: 'Object Sans', sans-serif;
    background: #000 url('/static/images/vitreus-grid-bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.78) 42%,
        rgba(0, 0, 0, 0.90) 100%
    );
    backdrop-filter: blur(2px);
    z-index: -1;
}

* {
    box-sizing: border-box;
}

.page {
    width: 100%;
}

.hero {
    position: relative;
    padding: 82px 20px 50px;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 255, 195, 0.12) 0%, transparent 72%);
    z-index: -1;
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00ffc3;
}

h1 {
    margin: 0 0 16px;
    font-size: 46px;
    line-height: 1.04;
    font-weight: 800;
    color: #ffffff;
}

.subtext {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.65;
    color: #d0fdef;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 68px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 46px;
    padding: 11px 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #00ffc3;
    color: #031411;
    box-shadow: 0 0 16px rgba(0, 255, 195, 0.24);
}

.btn-primary:hover {
    background: #00e6b0;
    box-shadow: 0 0 22px rgba(0, 255, 195, 0.34);
}

.btn-secondary {
    background: rgba(0, 255, 195, 0.06);
    color: #00ffc3;
    border-color: rgba(0, 255, 195, 0.28);
    box-shadow: 0 0 12px rgba(0, 255, 195, 0.10);
}

.btn-secondary:hover {
    background: rgba(0, 255, 195, 0.11);
    border-color: rgba(0, 255, 195, 0.42);
}

.btn-discord {
    background: linear-gradient(135deg, #00ffc3, #00cc99);
    color: #031411;
    border-color: rgba(0, 255, 195, 0.32);
    box-shadow: 0 0 18px rgba(0, 255, 195, 0.24);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #00ffd0, #00d9a3);
    box-shadow: 0 0 24px rgba(0, 255, 195, 0.34);
}

.card {
    width: 100%;
    margin: 0 0 24px;
    padding: 28px;
    background: rgba(7, 16, 19, 0.84);
    border: 1px solid rgba(0, 255, 195, 0.16);
    border-radius: 22px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 14px 34px rgba(0, 0, 0, 0.32),
        0 0 20px rgba(0, 255, 195, 0.07);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.tier-card:hover,
.signal-box:hover {
    border-color: rgba(0, 255, 195, 0.35);
    box-shadow:
        0 0 0 1px rgba(0, 255, 195, 0.08) inset,
        0 0 18px rgba(0, 255, 195, 0.10);
}

.card h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.card p,
.card li {
    font-size: 15px;
    line-height: 1.65;
    color: #d7f7ef;
}

.intro p {
    margin: 0;
    max-width: 920px;
    font-size: 15px;
    color: #e2fff7;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0 0 24px;
    align-items: stretch;
}

.tier-card {
    position: relative;
    min-height: 100%;
    padding: 26px 22px 22px;
    background: rgba(7, 16, 19, 0.84);
    border: 1px solid rgba(0, 255, 195, 0.16);
    border-radius: 22px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 12px 30px rgba(0, 0, 0, 0.28),
        0 0 16px rgba(0, 255, 195, 0.06);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tier-card h3 {
    margin: 0 0 16px;
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
}

.tier-card ul {
    margin: 0;
    padding-left: 18px;
}

.tier-card li {
    margin-bottom: 9px;
    color: #d7f7ef;
    font-size: 15px;
}

.tier-card.featured {
    border-color: rgba(0, 255, 195, 0.34);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 16px 34px rgba(0, 0, 0, 0.30),
        0 0 22px rgba(0, 255, 195, 0.11);
}

.tier-card.featured:hover {
    border-color: rgba(0, 255, 195, 0.5);
    box-shadow:
        0 0 0 1px rgba(0, 255, 195, 0.12) inset,
        0 0 22px rgba(0, 255, 195, 0.16);
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #00ffc3;
    color: #041411;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.signal-box {
    min-height: 100%;
    padding: 20px 18px;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(0, 255, 195, 0.14);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signal-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
}

.signal-box p {
    margin: 0 0 7px;
    color: #d7f7ef;
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 0.68fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.pricing-grid .card {
    margin-bottom: 0;
    height: 100%;
}

.price-label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00ffc3;
}

.price {
    margin: 0 0 8px;
    font-size: 38px;
    font-weight: 800;
    line-height: 0.98;
    color: #ffffff;
}

.price-note {
    margin: 0 0 14px;
    font-size: 15px;
    color: #c8fdf0;
}

.wallet-box {
    margin-top: 12px;
    padding: 0;
    background: transparent;
    border: none;
    min-height: auto;
}

.wallet-label {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00ffc3;
}

.wallet-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
    align-items: center;
    max-width: 520px;
}

.wallet-input {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    background: rgba(0, 255, 195, 0.05);
    border: 1px solid rgba(0, 255, 195, 0.20);
    border-radius: 12px;
    color: #ffffff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.wallet-input:focus {
    border-color: rgba(0, 255, 195, 0.46);
    box-shadow: 0 0 0 3px rgba(0, 255, 195, 0.08);
}

.btn-copy {
    width: 100%;
    min-width: 92px;
    border: none;
    background: #00ffc3;
    color: #041411;
    box-shadow: 0 0 14px rgba(0, 255, 195, 0.20);
}

.btn-copy:hover {
    background: #00e6b0;
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.30);
}

.copy-status {
    min-height: 20px;
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #9af7dc;
    opacity: 0.95;
}

.upgrade {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.upgrade ol {
    margin: 10px 0 0;
    padding-left: 22px;
}

.upgrade li {
    margin-bottom: 9px;
}

@media (max-width: 980px) {
    .tiers,
    .signal-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .wallet-copy {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-grid .card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 74px 18px 36px;
    }

    .content {
        padding: 0 16px 48px;
    }

    .card,
    .tier-card {
        padding: 22px 18px;
    }

    h1 {
        font-size: 36px;
    }

    .subtext {
        font-size: 15px;
    }

    .card h2 {
        font-size: 21px;
    }

    .tier-card h3 {
        font-size: 18px;
    }

    .price {
        font-size: 34px;
    }

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

    .btn {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 520px) {
    h1 {
        font-size: 31px;
    }
}
