:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    color: #172033;
    background: #f6f8fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
            linear-gradient(180deg, rgba(50, 120, 255, 0.09), rgba(246, 248, 251, 0) 360px),
            #f6f8fb;
}

a {
    color: #1f66e5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 24px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 44px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-weight: 750;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #1f66e5;
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(31, 102, 229, 0.24);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.hero-copy {
    padding: 20px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: #4b6584;
    font-size: 14px;
    font-weight: 650;
}

h1 {
    margin: 0;
    max-width: 760px;
    color: #111827;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.02;
    letter-spacing: 0;
}

.subtitle {
    margin: 18px 0 0;
    max-width: 620px;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.5;
}

.contact-panel,
.card {
    border: 1px solid #dce4f0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(32, 45, 71, 0.08);
}

.contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.panel-label {
    margin: 0 0 8px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.email-link {
    display: block;
    overflow-wrap: anywhere;
    color: #111827;
    font-size: 20px;
    font-weight: 720;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 20px;
    padding: 0 18px;
    border-radius: 8px;
    background: #1f66e5;
    color: #ffffff;
    font-weight: 720;
    box-shadow: 0 12px 24px rgba(31, 102, 229, 0.22);
}

.button:hover {
    text-decoration: none;
    background: #1858c7;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.card {
    padding: 24px;
}

.card h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 22px;
    letter-spacing: 0;
}

.card p,
.card li {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.58;
}

.card ul {
    margin: 0;
    padding-left: 20px;
}

.faq {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding-top: 14px;
    border-top: 1px solid #e5eaf2;
}

.faq-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.faq-item h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 16px;
    letter-spacing: 0;
}

.faq-item p {
    margin: 0;
}

.support-form {
    display: grid;
    gap: 14px;
}

.support-form label {
    display: grid;
    gap: 6px;
    color: #111827;
    font-size: 14px;
    font-weight: 650;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    border: 1px solid #dce4f0;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    color: #111827;
    background: #fff;
}

.support-captcha-wrap {
    display: grid;
    gap: 8px;
}

.support-actions {
    display: flex;
    justify-content: flex-end;
}

.support-message {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    line-height: 1.45;
    display: block;
}

.support-message-success {
    color: #0d7c46;
    border-color: #a7efc6;
    background: #ebfbee;
}

.support-message-error {
    color: #b42318;
    border-color: #ffc9c2;
    background: #fff1f0;
}

.support-message-muted {
    color: #4b5563;
    border-color: #dde4ef;
    background: #f5f7fb;
}

.legal-page {
    max-width: 840px;
}

.legal-page .card {
    margin-bottom: 18px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding: 22px 0;
    color: #667085;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

@media (max-width: 760px) {
    .page {
        padding: 18px;
    }

    .topbar,
    .footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .hero,
    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 14px;
        margin-bottom: 18px;
    }

    .hero-copy {
        padding: 8px 0 0;
    }

    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 17px;
    }

    .card,
    .contact-panel {
        padding: 20px;
    }
}
