:root {}
                                        /* --- AI Migrator Universal Styles (2026-05-26 01:45) --- */
.toggle-container {
    display: none;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures it fills the wrapper nicely */
}

.feature-card {
    padding: 40px !important;
}

button,
a,
.btn,
.button,
input[type="submit"] {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;

    &:hover {
        transform: scale(1.05);
    }

    &:active {
        transform: scale(0.98);
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    z-index: 9;

    a {
        color: white !important;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        position: relative;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;

        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: white;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        &:hover {
            transform: translateY(-4px) scale(1.05);

            &::after {
                transform: scaleX(1);
                transform-origin: bottom left;
            }
        }
    }
}

:root {
    /* WIDTHS */
    --width-gutter: 2.5rem;
    --width-content-md: 1400px;
    --width-content-sm: 980px;
    --width-content-xsm: 600px;
    --width-content-lg: 1440px;
    --width-content-full: 100%;
    /* FONT FAMILIES */
    --ff-heading: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
    --ff-body: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
    /* FONT SIZES */
    --fs-h1: 3.5rem;
    --fs-h2: 2.75rem;
    --fs-h3: 2rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1rem;
    --fs-p-xsm: 0.75rem;
    --fs-p-sm: 0.875rem;
    --fs-p-md: 1rem;
    --fs-p-lg: 1.125rem;
    --fs-p-xlg: 1.25rem;
    --fs-p-xxlg: 1.5rem;
    /* BORDER RADIUS */
    --border-radius-xsm: 0.25rem;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2.5rem;
    --border-radius-pill: 99rem;
    /* SPACING */
    --spacing-xxsm: 0.25rem;
    --spacing-xsm: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xlg: 6rem;
    --spacing-xxlg: 10rem;
    /* SHADOWS */
    --shadow-xsm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xlg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --text-shadow-xsm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --text-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --text-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --text-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --text-shadow-xlg: 0 12px 24px rgba(0, 0, 0, 0.2);
    /* COLORS */
    --clr-primary: #0091ff;
    --clr-primary-light: rgba(0, 145, 255, 0.1);
    --clr-secondary: #0d1527;
    --clr-secondary-light: #f8fafc;
    --clr-text: #334155;
    --clr-link: var(--clr-primary);
    --clr-link-hover: #0070cc;
    --clr-h1: #0d1527;
    --clr-h2: #0d1527;
    --clr-h3: #0d1527;
    --clr-h4: #0d1527;
    --clr-h5: #0d1527;
    --clr-h6: #0d1527;
    --clr-p: #475569;
    /* UTILITY COLORS */
    --clr-white: #ffffff;
    --clr-black: #090d16;
    --clr-grey: #cbd5e1;
    --clr-grey-light: #f1f5f9;
    --clr-green: #10b981;
    --clr-trinary: #64748b;
    /* ICONS */
    --icon-round-width: 48px;
    --icon-round-height: 48px;
    --icon-round-width-md: 72px;
    --icon-round-height-md: 72px;
    --icon-round-width-lg: 96px;
    --icon-round-height-lg: 96px;
    /* ADDITIONAL DESIGN SYSTEM VARIABLES */
    --sideHeaderWidth: 80px;
}

@media (max-width: 1024px) {
    .hero-image-col {
        height: unset !important;
    }
}

.tos-list {
    color: rgb(203, 213, 225);
    ;
}
