* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    width: 100vw;
    color: #101828;
}

h1, h2, h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.hero-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.rm-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.rm-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rm-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

a.rm-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

a.rm-left:hover .rm-brand {
    text-decoration: none;
}

.rm-logo {
    height: 32px;
    fill: #155dee;
}

.rm-brand {
    font-weight: 700;
    font-size: 24px;
    color: #101828;
}

.rm-nav {
    align-items: center;
    display: flex;
    gap: 1.5rem;
}

.rm-nav-item {
    position: relative;
}

/* Dropdown arrow */
.dropdown-arrow {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.rm-nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.dropper:hover {
    color: #155dee;
    cursor: default;
}

.rm-nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    padding: 0.75rem 0;
}

.dropdown-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: #155dee;
    border-left-color: #155dee;
}

.dropdown-item-title {
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
}

.rm-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.rm-nav a:hover {
    color: #155dee;
}

.rm-auth {
    display: flex;
    gap: 0.75rem;
}

.rm-button {
    padding: 0.4rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rm-button.outline {
    border: 1px solid #155dee;
    color: #155dee;
}

.rm-button.outline:hover {
    background-color: #155dee;
    color: #fff;
}

.rm-button.solid {
    background-color: #155dee;
    color: #fff;
}

.rm-button.solid:hover {
    background-color: #163cc4;
}

/* Mobile breakpoint */
@media (min-width: 730px) {
    .rm-mobile-menu, .rm-mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 730px) {
    .rm-mobile-menu {
        display: block;
        margin-top: 50px;
    }

    .rm-header {
        padding: 0.5rem 1rem;
        position: fixed;
        width: 100%;
        z-index: 60;
        height: 50px;
    }

    .rm-header-container {
        position: relative;
    }

    /* Hide desktop nav and auth buttons on mobile */
    .rm-nav,
    .rm-auth {
        display: none;
    }

    /* Mobile hamburger menu */
    .rm-mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 60;
        position: relative;
    }

    .rm-mobile-menu-toggle span {
        display: block;
        width: 30px;
        height: 5px;
        background-color: #101828;
        margin: 2px 0;
        transition: all 0.3s ease;
        transform-origin: center;
        border-radius: 4px;
    }

    /* Hamburger animation when open */
    .rm-mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .rm-mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .rm-mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile menu overlay */
    .rm-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - 50px);
        background-color: #ffffff;
        z-index: 50;
        padding: 15px 1.5rem 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .rm-mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Mobile menu sections */
    .rm-mobile-section {
        margin-bottom: 2rem;
    }

    .rm-mobile-section-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #101828;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #155dee;
    }

    /* Mobile menu items */
    .rm-mobile-item {
        display: block;
        padding: 0.75rem 0;
        color: #374151;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .rm-mobile-item:hover {
        color: #155dee;
        padding-left: 0.5rem;
    }

    .rm-mobile-item-title {
        font-weight: 500;
        margin-bottom: 0.25rem;
    }

    .rm-mobile-item-desc {
        font-size: 0.85rem;
        color: #6b7280;
        line-height: 1.3;
    }

    /* Mobile auth buttons */
    .rm-mobile-auth {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .rm-mobile-auth .rm-button {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .rm-mobile-auth .rm-button.solid {
        margin-bottom: 50px;
    }

    /* Logo adjustments for mobile */
    .rm-logo {
        height: 28px;
    }

    .rm-brand {
        font-size: 20px;
    }
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* Page Transition */
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: none;
    transition: width 0s 0.7s ease;
    overflow: hidden;
    pointer-events: none;
}

.loader--active {
    pointer-events: all;
}

.loader__tile--logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rm-transition-logo {
    width: 180px;
    fill: #ffffff;
}

.loader__tile {
    position: absolute;
    left: 0;
    width: 0;
    height: 20%;
    background-color: #155dee;
    transition: width .35s ease;
}

.loader__tile:nth-child(1) {
    top: 0;
    transition-delay: 0.0s;
}

.loader__tile:nth-child(2) {
    top: 20%;
    transition-delay: 0.1s;
}

.loader__tile:nth-child(3) {
    top: 40%;
    transition-delay: 0.2s;
}

.loader__tile:nth-child(4) {
    top: 60%;
    transition-delay: 0.3s;
}

.loader__tile:nth-child(5) {
    top: 80%;
    transition-delay: 0.4s;
}

.loader--active .loader__tile {
    width: 100%;
}

.loader--inactive {
    width: 100%;
    transition: width 0s 0s ease;
}

.loader--inactive .loader__tile {
    width: 100%;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/







.content-footer-divider {
    height: 400px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 2px solid #155dee;
    position: absolute;
    bottom: 215px;
    width: 90vw;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #101828;
}

.footer-cta-content {
    max-width: 800px;
    padding: 1rem;
}

.footer-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #101828;
}

.footer-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #344054;
}

.footer-cta-content .cta-button {
    display: inline-block;
    background-color: #155dee;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-cta-content .cta-button:hover {
    background-color: #163cc4;
    transform: translateY(-2px);
}

@media (max-width: 560px) {
    .content-footer-divider {
        bottom: 280px;
        width: 90vw;
    }

    .footer-cta-content h2 {
        font-size: 2rem;
    }

    .footer-cta-content p {
        font-size: 0.9rem;
    }

    .footer-cta-content .cta-button {
        padding: 0.5rem 1.5rem;
        width: 90%;
        font-size: 0.9rem;
    }
}















.landing-footer {
    position: relative;
    background-color: #101828;
    color: #ffffff;
    padding: 6rem 2rem 3rem 2rem;
    font-size: 0.9rem;
}

.rm-brand-alt {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #d0d7e2;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    margin-top: 1rem;
    color: #a0aec0;
}
