/*
Theme Name: Monney Fox Pro
Theme URI: https://monneyfoxpro.com/
Author: Monney Fox Pro
Description: Custom lightweight white, blue and orange corporate DSA under-construction theme for Monney Fox Pro.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: monney-fox-pro
*/

:root {
    --mfp-blue: #0d5db5;
    --mfp-blue-dark: #083f7c;
    --mfp-orange: #f58220;
    --mfp-text: #173b63;
    --mfp-muted: #64748b;
    --mfp-light: #eef6ff;
    --mfp-white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    background: var(--mfp-white);
}

body {
    background: var(--mfp-white);
    color: var(--mfp-text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.mfp-page {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(13,93,181,.06), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(245,130,32,.055), transparent 28%),
        #fff;
}

.mfp-page::before,
.mfp-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.mfp-page::before {
    width: 360px;
    height: 360px;
    right: -190px;
    top: -190px;
    border: 45px solid rgba(13,93,181,.045);
}

.mfp-page::after {
    width: 280px;
    height: 280px;
    left: -160px;
    bottom: -160px;
    border: 38px solid rgba(245,130,32,.05);
}

.mfp-card {
    width: min(920px, 100%);
    text-align: center;
    position: relative;
    z-index: 2;
}

.mfp-logo {
    display: block;
    width: min(390px, 78vw);
    height: auto;
    margin: 0 auto 28px;
    object-fit: contain;
}

.mfp-badge {
    display: inline-block;
    padding: 9px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--mfp-light);
    color: var(--mfp-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.mfp-accent {
    width: 70px;
    height: 4px;
    margin: 0 auto 24px;
    border-radius: 999px;
    background: var(--mfp-blue);
}

.mfp-title {
    margin: 0;
    color: var(--mfp-blue);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 800;
}

.mfp-title span {
    color: var(--mfp-orange);
}

.mfp-description {
    max-width: 690px;
    margin: 24px auto 32px;
    color: var(--mfp-muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
}

.mfp-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 255px;
    padding: 15px 26px;
    border-radius: 8px;
    background: var(--mfp-blue);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(13,93,181,.16);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.mfp-whatsapp:hover,
.mfp-whatsapp:focus-visible {
    color: #fff;
    background: var(--mfp-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13,93,181,.22);
}

.mfp-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mfp-copyright {
    margin-top: 40px;
    color: #91a0af;
    font-size: 14px;
}

.mfp-copyright strong {
    color: var(--mfp-blue);
}

@media (max-width: 600px) {
    .mfp-page {
        padding: 28px 16px;
    }

    .mfp-logo {
        width: min(290px, 82vw);
        margin-bottom: 22px;
    }

    .mfp-title {
        letter-spacing: -1px;
    }

    .mfp-description {
        margin-top: 20px;
        margin-bottom: 26px;
        line-height: 1.6;
    }

    .mfp-whatsapp {
        width: min(100%, 310px);
    }

    .mfp-copyright {
        margin-top: 30px;
    }
}
