.terms-page {
    position: relative;
    padding: 144px 0 96px;
    background:
        radial-gradient(circle at top center, rgba(255, 45, 133, 0.12) 0%, rgba(255, 45, 133, 0) 26%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    color: #fff;
    overflow: hidden;
}

.terms-page__hero-glow {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 520px;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 189, 77, 0.12) 0%, rgba(255, 189, 77, 0) 70%);
    filter: blur(26px);
    pointer-events: none;
}

.terms-page__shell {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
}

.terms-page__hero {
    margin-bottom: 28px;
    text-align: center;
}

.terms-page__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.terms-page__badge-icon {
    width: 12px;
    height: 12px;
}

.terms-page__hero h1 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.terms-page__hero h1 span {
    background: linear-gradient(90deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.terms-page__hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 14px;
    line-height: 1.7;
}

.terms-page__stack {
    display: grid;
    gap: 14px;
}

.terms-card {
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.terms-card--intro {
    margin-bottom: 14px;
}

.terms-card--intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.8;
}

.terms-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.terms-card h2 span {
    color: #ff2d85;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.terms-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.terms-card__list li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
}

.terms-card__list-icon {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    color: #ff2d85;
}

@media (max-width: 640px) {
    .terms-page {
        padding: 126px 0 72px;
    }

    .terms-page__shell {
        width: min(900px, calc(100% - 20px));
    }

    .terms-card {
        padding: 18px 16px;
    }

    .terms-card h2 {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
