:root {
    --primary: #2563eb;
    --text: #172033;
    --muted: #627084;
    --border: #dbe3ef;
    --bg: #f6f8fb;
    --surface: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left,
            rgba(37,99,235,.10),
            transparent 32rem),
        linear-gradient(#fff, var(--bg));
}

.page-container {
    width: min(100% - 32px, 900px);
    margin: auto;
    padding: 60px 0;
}

.logo {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -.02em;
    line-height: 1.05;
}

.lead {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.content-card {
    margin-bottom: 26px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 12px 30px rgba(23,32,51,.05);
}

.content-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.content-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.8;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.page-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.page-footer nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.page-footer a {
    color: var(--muted);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.page-footer a:hover {
    color: var(--primary);
}

.page-footer p {
    margin: 0;
    color: #94a3b8;
    font-size: .92rem;
}

@media (max-width: 640px) {

    .page-container {
        width: min(100% - 22px, 900px);
        padding: 40px 0;
    }

    .content-card {
        padding: 24px;
    }

    .page-footer nav {
        gap: 18px;
    }
}

/* ==========================================================
   Privacy Page
========================================================== */
.effective-date {
  margin: 14px 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================================
   Contact Page
========================================================== */

.contact-card {
    text-align: center;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin-bottom: 20px;

    border-radius: 50%;

    background: rgba(37, 99, 235, .08);

    font-size: 2rem;
}

.email-button {
    display: inline-block;

    margin-top: 20px;
    padding: 15px 28px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color: #ffffff;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.email-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(37,99,235,.25);
}

.contact-list {
    margin: 0;
    padding-left: 1.2rem;

    color: var(--muted);
    line-height: 2;
}

.contact-list li::marker {
    color: var(--primary);
}

@media (max-width: 640px) {

    .email-button {
        width: 100%;
        padding: 16px;
        word-break: break-word;
    }

}