:root {
    --r2f-navy-950: #061124;
    --r2f-navy-900: #0a1930;
    --r2f-navy-800: #102848;

    --r2f-blue-700: #164d91;
    --r2f-blue-600: #1e63b7;
    --r2f-sky-500: #3b9df5;

    --r2f-gold-500: #e8ad47;
    --r2f-gold-400: #f4c369;

    --r2f-ink: #10213a;
    --r2f-muted: #62708a;
    --r2f-line: #dfe6ef;
    --r2f-soft: #f4f7fb;
    --r2f-white: #ffffff;

    --r2f-success: #0f9d75;
    --r2f-danger: #cb3a4b;

    --r2f-font-display: "Manrope", "Segoe UI", sans-serif;
    --r2f-font-body: "Inter", "Segoe UI", sans-serif;

    --r2f-container: 1200px;

    --r2f-radius-sm: 12px;
    --r2f-radius-md: 18px;
    --r2f-radius-lg: 28px;
    --r2f-radius-xl: 36px;

    --r2f-shadow-sm: 0 8px 30px rgba(6, 17, 36, .08);
    --r2f-shadow-md: 0 18px 55px rgba(6, 17, 36, .12);
    --r2f-shadow-lg: 0 32px 90px rgba(6, 17, 36, .18);

    --r2f-transition: 220ms cubic-bezier(.2, .8, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--r2f-ink);
    background: var(--r2f-white);
    font-family: var(--r2f-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.r2f-container {
    width: min(calc(100% - 32px), var(--r2f-container));
    margin-inline: auto;
}

.r2f-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;

    color: var(--r2f-blue-700);

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.r2f-kicker::before {
    content: "";
    width: 28px;
    height: 2px;

    border-radius: 99px;
    background: var(--r2f-gold-500);
}

.r2f-section-title {
    margin: 0;

    color: var(--r2f-navy-950);

    font-family: var(--r2f-font-display);
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.r2f-section-copy {
    max-width: 680px;

    color: var(--r2f-muted);

    font-size: 1.04rem;
    line-height: 1.78;
}

.r2f-btn {
    display: inline-flex;

    min-height: 50px;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 21px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-weight: 750;
    line-height: 1;
    text-decoration: none;

    transition:
        transform var(--r2f-transition),
        box-shadow var(--r2f-transition),
        background var(--r2f-transition),
        border-color var(--r2f-transition);
}

.r2f-btn:hover {
    transform: translateY(-2px);
}

.r2f-btn--primary {
    color: #fff;

    background:
        linear-gradient(135deg,
            var(--r2f-blue-700),
            var(--r2f-blue-600));

    box-shadow:
        0 13px 30px rgba(22, 77, 145, .23);
}

.r2f-btn--primary:hover {
    color: #fff;

    box-shadow:
        0 18px 38px rgba(22, 77, 145, .29);
}

.r2f-btn--light {
    color: var(--r2f-navy-950);

    background: rgba(255, 255, 255, .94);

    border-color: rgba(255, 255, 255, .72);
}

.r2f-btn--outline {
    color: var(--r2f-navy-900);

    background: transparent;

    border-color: var(--r2f-line);
}

.r2f-btn--outline:hover {
    color: var(--r2f-navy-950);

    border-color: #b9c7da;

    background: #fff;
}

.r2f-sr-only {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}

@media (max-width: 767.98px) {
    .r2f-container {
        width: min(calc(100% - 24px), var(--r2f-container));
    }

    .r2f-section-copy {
        font-size: .98rem;
        line-height: 1.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}