body.home-page {
    background:
        radial-gradient(circle at 16% 8%, rgba(77, 166, 255, 0.055), transparent 28%),
        #060a14;
}

.tos-container {
    width: min(1180px, calc(100% - 48px));
    max-width: none;
    margin: 0 auto;
    padding: clamp(72px, 8vw, 112px) 0 clamp(80px, 9vw, 128px);
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(48px, 7vw, 92px);
}

.tos-header {
    position: sticky;
    top: 108px;
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

.tos-header::before {
    content: '';
    width: 34px;
    height: 2px;
    display: block;
    margin-bottom: 22px;
    border-radius: 2px;
    background: #4da6ff;
}

.tos-header h1 {
    margin: 0;
    color: #f2f6fb;
    background: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    font-weight: 650;
    line-height: 1.04;
    letter-spacing: -0.045em;
    -webkit-text-fill-color: currentColor;
}

.tos-header p {
    max-width: 275px;
    margin: 20px 0 0;
    color: #7e8a9c;
    font-size: 0.86rem;
    line-height: 1.75;
}

.tos-content {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(126, 173, 223, 0.13);
    border-radius: 14px;
    background: rgba(10, 16, 28, 0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
}

.tos-section {
    position: relative;
    margin: 0;
    padding: clamp(28px, 4vw, 42px);
}

.tos-section + .tos-section {
    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.tos-section h2 {
    margin: 0 0 18px;
    color: #dce6f2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.012em;
}

.tos-section h2::before {
    display: none;
}

.tos-section p,
.tos-section li {
    color: #8d99aa;
    font-size: 0.875rem;
    line-height: 1.85;
}

.tos-section p {
    margin: 0;
}

.tos-section p + p,
.tos-section ul + p {
    margin-top: 16px;
}

.tos-section strong {
    color: #c8d3df;
    font-weight: 650;
}

.tos-section ul {
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.tos-section li {
    position: relative;
    margin: 0;
    padding-left: 18px;
}

.tos-section li::before {
    content: '';
    position: absolute;
    top: 0.78em;
    left: 1px;
    width: 4px;
    height: 4px;
    display: block;
    margin: 0;
    border-radius: 50%;
    background: #5baeff;
}

.last-updated {
    margin: 0;
    padding: 22px clamp(28px, 4vw, 42px);
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    color: #647184;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-align: right;
    opacity: 1;
}

@media (max-width: 860px) {
    .tos-container {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 64px;
    }

    .tos-header {
        position: static;
        max-width: 620px;
        padding-top: 0;
    }

    .tos-header p {
        max-width: 540px;
    }
}

@media (max-width: 560px) {
    .tos-container {
        width: min(100% - 28px, 1180px);
        gap: 30px;
        padding: 50px 0 72px;
    }

    .tos-header::before {
        margin-bottom: 18px;
    }

    .tos-content {
        padding: 0;
        border-radius: 11px;
    }

    .tos-section {
        margin: 0;
        padding: 25px 21px;
    }

    .tos-section p,
    .tos-section li {
        font-size: 0.82rem;
    }

    .last-updated {
        margin: 0;
        padding: 19px 21px;
        text-align: left;
    }
}
