.page-header {
    background:
        radial-gradient(circle at 80% 20%, rgba(245,178,27,.35), transparent 25%),
        linear-gradient(135deg, #3048a3, #774ba8, #d05ba5);
    color: white;
}

.page-nav {
    width: min(1200px, calc(100% - 60px));
    height: 150px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-logo img {
    height: 65px;
    display: block;
}

.page-nav-links,
.page-nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.page-nav-links a,
.page-signin {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 700;
}

.page-nav-links a:hover,
.page-signin:hover {
    color: white;
}

.page-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 24px;
    border-radius: 999px;

    background: white;
    color: #3048a3;

    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.content-page {
    width: min(900px, calc(100% - 40px));
    margin: -26px auto 80px;
}

.content-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    padding: 56px;
}

.content-label {
    display: inline-flex;
    margin-bottom: 16px;

    color: #d05ba5;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.content-heading h1 {
    margin: 0;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -.05em;
}

.content-heading p {
    margin: 16px 0 0;
    color: var(--color-muted);
}

.content-body {
    margin-top: 42px;
    font-size: 18px;
    line-height: 1.75;
}

.content-body h2 {
    margin: 42px 0 12px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.content-body p {
    margin: 0 0 18px;
    color: #3d3d4f;
}

.content-body ul {
    margin: 0 0 24px;
    padding-left: 24px;
}

.content-body li {
    margin-bottom: 10px;
}

.simple-footer {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto 40px;

    color: var(--color-muted);
    text-align: center;
}

.page-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: white;
}

.mobile-menu {
    display: none;
}

.cta-short {
    display: none;
}

@media (max-width: 680px) {
    .cta-full {
        display: none;
    }

    .cta-short {
        display: inline;
    }
}

@media (max-width: 480px) {
    .page-cta {
        font-size: 13px;
        padding: 10px 14px;
    }

    .page-logo img {
        height: 46px;
    }

    .page-nav {
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .page-nav-links,
    .page-signin {
        display: none;
    }

    .page-nav-actions {
        display: flex;
        margin-left: auto;
    }

    .page-menu-toggle {
        flex-shrink: 0;
    }

    .page-menu-toggle {
        display: grid;
        place-items: center;
    }

    .mobile-menu {
        display: none;

        padding:
            24px
            max(28px, calc((100vw - 1200px) / 2))
            70px;

        margin-top: -1px;
    }

    .mobile-menu.is-open {
        display: grid;
        gap: 18px;
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-weight: 800;
        font-size: 20px;
    }

}


@media (max-width: 900px) {
    .page-nav-links {
        display: none;
    }
}


@media (max-width: 680px) {
    .page-nav {
        width: min(100% - 28px, 1200px);
        height: auto;
        padding: 32px 0 52px;
        gap: 18px;
    }

    .page-logo img {
        height: 54px;
    }

    .page-cta {
        padding: 11px 16px;
        font-size: 14px;
    }

    .content-page {
        width: min(100% - 28px, 900px);
        margin-top: -18px;
    }

    .content-card {
        padding: 32px 24px;
        border-radius: 26px;
    }

    .content-heading h1 {
        font-size: 40px;
    }

    .content-body {
        font-size: 16px;
    }
}