/* ═══════════════════════════════════════
   TERMS OF SERVICE PAGE
   Scope: .terms-page
═══════════════════════════════════════ */

.terms-hero {
    padding: 140px 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.terms-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.terms-subtitle {
    font-size: 14px;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
}

.terms-section {
    padding: 48px 0 100px;
}

.terms-content {
    max-width: 720px;
}

.terms-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin: 48px 0 12px;
    letter-spacing: -0.01em;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0 0 16px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms-list li {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
}

.terms-content a {
    color: #10B981;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 768px) {
    .terms-hero { padding: 120px 0 48px; }
    .terms-section { padding: 32px 0 72px; }
    .terms-content h2 { margin-top: 36px; }
}

@media (max-width: 480px) {
    .terms-hero { padding: 100px 0 36px; }
    .terms-section { padding: 24px 0 56px; }
}
