* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(79, 124, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f5f6f8 40%, #eef2f7 100%);
    color: #1f2937;
}

.header-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e6e6e6;
    backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-tagline {
    color: #6b7280;
    font-size: 13px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.header-link.secondary {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
}

.header-link.secondary:hover {
    background: #f3f4f6;
}

.header-link.primary {
    background: #4f7cff;
    color: white;
    box-shadow: 0 10px 20px rgba(79, 124, 255, 0.18);
}

.header-link.primary:hover {
    background: #3f6ae6;
    transform: translateY(-1px);
}

.center-root {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 18px;
    flex: 1;
}

.legal-card {
    background: white;
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.eyebrow {
    margin: 0 0 12px;
    color: #4f7cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-card h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
}

.lead {
    margin: 16px 0 0;
    color: #4b5563;
    line-height: 1.7;
}

.legal-note {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #dbe4f0;
    color: #4b5563;
    line-height: 1.6;
}

.legal-sections {
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.legal-section {
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.legal-section:first-child {
    border-top: none;
    padding-top: 0;
}

.legal-section h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.legal-section p,
.legal-section li {
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.legal-section p {
    margin: 0;
}

.legal-section ul {
    margin: 0;
    padding-left: 22px;
}

.legal-meta {
    margin-top: 28px;
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 700px) {
    .header-inner {
        width: calc(100% - 24px);
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0;
    }

    .brand-block {
        text-align: center;
    }

    .header-actions {
        width: 100%;
    }

    .header-link {
        flex: 1;
    }

    .center-root {
        width: calc(100% - 24px);
        padding-top: 22px;
    }

    .legal-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
}
