* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: #0a0a0b;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

main {
}

/* Typography */
h1 {font-size:clamp(3.625rem, 3.2663rem + 2.913vw, 5rem);font-weight: 600;}
h2 {font-size:clamp(2.5rem, 2.1313rem + 2.913vw, 4rem);font-weight: 600;margin-bottom: 2rem;}
h3 {font-size:clamp(1.5rem, 1.1313rem + 2.913vw, 3rem);font-weight: 600;}
p {font-size: 1rem;font-weight: 400;}
p.medium {font-size: 1.25rem;}

/* Common utility classes */
.gradient-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-padding {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hover-lift {
    transition: all 0.3s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Common gradient patterns */
.gradient-purple {
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
}

.gradient-purple-alt {
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
}

.gradient-white {
    background: linear-gradient(45deg, #ffffff, #8e83ab);
}

/* Common card styles */
.card-base {
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.card-purple {
    background: 
        radial-gradient(circle at 30% 140%, rgba(235, 63, 74, 0.15), transparent 37%),
        radial-gradient(circle at 50% 310%, rgba(145, 47, 182, 0.1), transparent 78%),
        linear-gradient(transparent, rgba(13, 10, 25, 0.37)),
        radial-gradient(circle at 50% -30%, rgba(235, 63, 74, 0.1), transparent),
        radial-gradient(90% 10% at 50% 0, rgba(235, 63, 74, 0.05), transparent 90%);
    border: 1px solid rgba(235, 63, 74, 0.2);
}

.card-purple:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 63, 74, 0.5);
    box-shadow: 0 20px 40px rgba(235, 63, 74, 0.2);
}

/* Common section backgrounds */
.bg-purple-gradient {
    background: radial-gradient(circle at 20% 60%, rgba(235, 63, 74, 0.15) 0%, transparent 40%), 
                radial-gradient(circle at 80% 30%, rgba(145, 47, 182, 0.1) 0%, transparent 20%), 
                radial-gradient(circle at 40% 40%, rgba(235, 63, 74, 0.08) 0%, transparent 50%);
}

.bg-purple-linear {
    background: linear-gradient(135deg, rgba(235, 63, 74, 0.1), rgba(145, 47, 182, 0.1));
}

/* Enhanced floating stars background with constant movement */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced star positioning for orbital effect around blackhole center */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px #ffffff, 0 0 8px #eb3f4a;
    opacity: 0;
    left: 50%; 
    top: 50%;
}

/* Orbital path animations for each star - optimized with common properties */
.star:nth-child(1) { animation: orbitPath1 12s linear infinite; animation-delay: 0s; }
.star:nth-child(2) { animation: orbitPath2 13s linear infinite; animation-delay: 2s; }
.star:nth-child(3) { animation: orbitPath3 14s linear infinite; animation-delay: 4s; }
.star:nth-child(4) { animation: orbitPath4 12.5s linear infinite; animation-delay: 6s; }
.star:nth-child(5) { animation: orbitPath5 13.5s linear infinite; animation-delay: 8s; }
.star:nth-child(6) { animation: orbitPath6 14.5s linear infinite; animation-delay: 10s; }
.star:nth-child(7) { animation: orbitPath7 12s linear infinite; animation-delay: 12s; }
.star:nth-child(8) { animation: orbitPath8 13s linear infinite; animation-delay: 14s; }
.star:nth-child(9) { animation: orbitPath9 14s linear infinite; animation-delay: 16s; }
.star:nth-child(10) { animation: orbitPath10 12.5s linear infinite; animation-delay: 18s; }

/* Create actual orbital movement paths */
        @keyframes orbitPath1 {
            0% { 
                transform: translate(60vw, 30vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(50vw, 25vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(35vw, 18vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(20vw, 12vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(10vw, 6vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(5vw, 3vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(2vw, 1vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(1vw, 0.5vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath2 {
            0% { 
                transform: translate(-60vw, 30vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(-50vw, 25vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(-35vw, 18vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(-20vw, 12vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(-10vw, 6vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(-5vw, 3vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(-2vw, 1vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(-1vw, 0.5vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath3 {
            0% { 
                transform: translate(50vw, 40vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(40vw, 35vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(25vw, 25vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(15vw, 18vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(8vw, 10vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(4vw, 5vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(2vw, 2vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(1vw, 1vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath4 {
            0% { 
                transform: translate(-50vw, 40vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(-40vw, 35vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(-25vw, 25vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(-15vw, 18vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(-8vw, 10vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(-4vw, 5vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(-2vw, 2vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(-1vw, 1vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath5 {
            0% { 
                transform: translate(45vw, 50vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(35vw, 45vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(20vw, 35vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(12vw, 25vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(6vw, 15vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(3vw, 8vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(1.5vw, 4vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(0.5vw, 2vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath6 {
            0% { 
                transform: translate(-45vw, 50vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(-35vw, 45vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(-20vw, 35vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(-12vw, 25vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(-6vw, 15vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(-3vw, 8vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(-1.5vw, 4vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(-0.5vw, 2vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath7 {
            0% { 
                transform: translate(40vw, 60vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(30vw, 55vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(20vw, 45vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(12vw, 35vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(6vw, 25vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(3vw, 15vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(1.5vw, 8vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(0.5vw, 4vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath8 {
            0% { 
                transform: translate(-40vw, 60vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(-30vw, 55vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(-20vw, 45vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(-12vw, 35vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(-6vw, 25vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(-3vw, 15vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(-1.5vw, 8vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(-0.5vw, 4vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath9 {
            0% { 
                transform: translate(35vw, 70vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(25vw, 65vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(15vw, 55vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(8vw, 45vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(4vw, 35vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(2vw, 25vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(1vw, 15vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(0.5vw, 8vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }
        @keyframes orbitPath10 {
            0% { 
                transform: translate(-35vw, 70vh) scale(0); 
                opacity: 0; 
            }
            5% { 
                transform: translate(-25vw, 65vh) scale(0.3); 
                opacity: 0.4; 
            }
            15% { 
                transform: translate(-15vw, 55vh) scale(0.8); 
                opacity: 0.8; 
            }
            30% { 
                transform: translate(-8vw, 45vh) scale(1); 
                opacity: 0.9; 
            }
            50% { 
                transform: translate(-4vw, 35vh) scale(1.1); 
                opacity: 0.9; 
            }
            70% { 
                transform: translate(-2vw, 25vh) scale(1); 
                opacity: 0.8; 
            }
            85% { 
                transform: translate(-1vw, 15vh) scale(0.8); 
                opacity: 0.6; 
            }
            95% { 
                transform: translate(-0.5vw, 8vh) scale(0.4); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0vw, 0vh) scale(0); 
                opacity: 0; 
            }
        }

/* Navigation */
.nav {
    position: fixed;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    z-index: 100;
}

.nav .container {
    max-width: 1050px;
    width: 100%;
    height: 80px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: #0000002e;
    border-radius: 50px;
    border: 2px solid #ffffff17;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.25s ease-in-out;
}

.nav.btf .container {
    height: 70px;
}
.nav.btf .container .logo img {
    width: 150px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {width: 200px;vertical-align:middle;transition: all 0.25s 
ease-in-out;}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #f7ebfd;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Animated hover effect for navigation links (excluding CTA and dropdown links) */
.nav-links > a:not(.cta-button) {
    position: relative;
    overflow: hidden;
}

.nav-links > a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(235, 63, 74, 0.3);
}

.nav-links > a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-links > a:not(.cta-button):hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(235, 63, 74, 0.3);
}

.nav .cta-button {
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-cta-button:hover {
    background: linear-gradient(135deg, #8b5cf6, #bb90f0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(187, 144, 240, 0.3);
}

/* Navigation "btf" class for scroll effect */
.nav.btf {
    /* background: rgba(0, 0, 0, 0.9); */
    /* backdrop-filter: blur(10px); */
    /* border-bottom: 1px solid rgba(187, 144, 240, 0.2); */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(235, 63, 74, 0.3);
    z-index: 1;
}

.dropdown-toggle:hover::before {
    width: 100%;
}

.dropdown-toggle:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(235, 63, 74, 0.3);
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(13, 10, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(235, 63, 74, 0.2);
    border-radius: 12px;
    /* padding: 8px 0; */
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(235, 63, 74, 0.1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(13, 10, 25, 0.95);
    border: 1px solid rgba(235, 63, 74, 0.2);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #f7ebfd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
    z-index: 25;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(235, 63, 74, 0.1), transparent);
    border-left-color: rgba(235, 63, 74, 0.6);
    color: #ffffff;
    padding-left: 24px;
}

.dropdown-menu a:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-menu a:last-child {
    border-radius: 0 0 12px 12px;
}

/* Enhanced hover effect for dropdown items */
.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(235, 63, 74, 0.2), transparent);
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

/* Hero Section with enhanced gradients and movement */
.hero {
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #190f1e 0%, #0b002b 50%, #0a0a0a 100%);
    overflow: hidden;
}

/* Blackhole image styling */
.blackhole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(235, 63, 74, 0.6));
}

/* Central illustration placeholder - now hidden since we have blackhole */


video.hero-illustration {width: 100%;max-width: 900px;-webkit-mask: radial-gradient(65% 70% at 50% 50%, #fff 28%, hsla(0, 0%, 100%, 0) 70%);mask: radial-gradient(65% 70% at 50% 50%, #fff 28%, hsla(0, 0%, 100%, 0) 70%);/* margin-top: -170px; *//* margin-bottom: -150px; */}

.hero-content {
    position: relative;
    max-width: 1050px;
    margin: 0 auto -75px;
    z-index: 3;
    text-align: center;
    padding: 150px 0 15px 0;
    z-index: 100;
}

.hero h1 {
    font-size: clamp(3.625rem, 3.2663rem + 2.913vw, 5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background-clip: text;
    position: relative;
    max-width: 800px;
    margin: auto;
    text-shadow: 0 0 30px rgba(235, 63, 74, 0.3);
}

.hero h1 mark {color: #6d32f5;background:none;background: linear-gradient(to right, #eb3f4a, #912fb6);color: transparent;background-clip: text;}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 2px;
    animation: expandLine 2s ease-out 0.5s forwards;
    box-shadow: 0 0 20px rgba(235, 63, 74, 0.5);
}

@keyframes expandLine {
    to { width: 200px; }
}

.hero p {
    font-size: 1.25rem;
    color: #f7ebfdeb;
    max-width: 700px;
    margin: 45px auto 25px;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.cta-group {display:flex;gap: 2rem;margin-top: 2rem;align-items: center;justify-content: center;}

.cta-button {
    background: radial-gradient(223% 105.53% at 6.05% 199.17%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(31.68% 130.91% at 100% 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(43.14% 139.47% at 0% 136.21%, rgba(227, 235, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(170deg, #eb3f4a 7.99%, #912fb6 93.36%);
    color: #ffffffbd;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    letter-spacing: .025em;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border: 0;
    position: relative;
    box-shadow: 0 0 20px rgb(0 0 0 / 42%), inset 0 0 1px 1px #f7ebfd1c;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 0 0px rgb(63 89 288 / 42%), inset 0 0 1px 1px #f7ebfd1c;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.cta-button.white {
    background: #f7ebfd;
    color: #2b2b2b;
}

.cta-button.black {
    background: #54428433;
    box-shadow: 0 0 20px #54428433, inset 0 0 1px 1px #f7ebfd1c;
}

#highlight {
    margin-top: -280px;
    position: relative;
    z-index: 25;
}

#highlight .container {
    background-image: linear-gradient(180deg, transparent, #37286b30);
    padding: 3.5%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    max-width: 1400px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgb(0 0 0 / 42%), inset 0 0 1px 1px #f7ebfd1c;
}

#highlight .container > * {}

/* Features Grid */
.features {
    padding: 6rem 2rem;
    position: relative;
    background: radial-gradient(circle at 20% 60%, rgba(235, 63, 74, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 30%, rgba(145, 47, 182, 0.1) 0%, transparent 20%), radial-gradient(circle at 40% 40%, rgba(235, 63, 74, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.section-title {
    text-align: center;
}

.features-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

        .feature-card {
            /* background: 
                radial-gradient(circle at 30% 140%, rgba(235, 63, 74, 0.15), transparent 37%),
                radial-gradient(circle at 50% 310%, rgba(145, 47, 182, 0.1), transparent 78%),
                linear-gradient(transparent, rgba(13, 10, 25, 0.37)),
                radial-gradient(circle at 50% -30%, rgba(235, 63, 74, 0.1), transparent),
                radial-gradient(90% 10% at 50% 0, rgba(235, 63, 74, 0.05), transparent 90%); */
            border: 1px solid rgba(235, 63, 74, 0.2);
            border-radius: 25px;
            padding: 2rem;
            /* text-align: center; */
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 63, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 63, 74, 0.5);
    box-shadow: 0 20px 40px rgba(235, 63, 74, 0.2);
}

/* Mouse-following gradient effect */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                            rgba(235, 63, 74, 0.2) 0%, 
                            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 25px 0;
    background: linear-gradient(140deg, #912fb678, #912fb6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Pain Point Section */
.pain-point {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(235, 63, 74, 0.1), rgba(145, 47, 182, 0.1));
    position: relative;
    z-index: 2;
}

.pain-point-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pain-point h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #8e83ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.pain-point h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(235, 63, 74, 0.5); }
    to { box-shadow: 0 0 20px rgba(235, 63, 74, 0.8); }
}

.pain-point p {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Additional Sections */
.stats {
    padding: 6rem 2rem;
    position: relative;
    text-align: center;
}

.stats p {color: #a1a1aa;}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 25px auto 0;
}

        .stat-item {
            text-align: center;
            transition: all 0.3s ease-in-out;
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(235, 63, 74, 0.1);
        }

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(235, 63, 74, 0.3);
    box-shadow: 0 20px 40px rgba(235, 63, 74, 0.15);
}

        .stat-number {
            font-size: 1.25rem;
            font-weight: 600;
            color: #e83e4e;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(235, 63, 74, 0.5);
            transition: all 0.3s ease-in-out;
        }

.stat-item:hover .stat-number {
    color: #FFF;
    text-shadow: 0 0 30px rgba(235, 63, 74, 0.8);
    transform: scale(1.1);
}

        .stat-label {
            color: #a1a1aa;
            font-size: 1.1rem;
            transition: color 0.3s ease-in-out;
        }

.stat-item:hover .stat-label {
    color: #ffffff;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(235, 63, 74, 0.08), rgba(145, 47, 182, 0.08));
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-subtitle {
    text-align: center;
    color: #a1a1aa;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(235, 63, 74, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(235, 63, 74, 0.3);
    box-shadow: 0 8px 32px rgba(235, 63, 74, 0.1);
}

.faq-item.active {
    border-color: rgba(235, 63, 74, 0.5);
    background: rgba(235, 63, 74, 0.05);
    box-shadow: 0 8px 32px rgba(235, 63, 74, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-question:hover {
    background: rgba(235, 63, 74, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #eb3f4a;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #912fb6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Sign Up Section */
.signup {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: #0a0a0a;
}

.signup .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.signup h2 {
    font-size: clamp(2.5rem, 2.1313rem + 2.913vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #8e83ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.signup-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    color: #ffffff;
    outline: none;
    font-family: "Inter", sans-serif;
}

.signup-input::placeholder {
    color: #a1a1aa;
}

.signup-button {
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Inter", sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 63, 74, 0.3);
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
}

.signup-button svg {
    transition: transform 0.3s ease-in-out;
}

.signup-button:hover svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(235, 63, 74, 0.2);
    position: relative;
    z-index: 2;
}

.footer p {
    color: #a1a1aa;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: 0px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg);
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 1000px) {
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -50%;
        opacity: 0;
        visibility: hidden;
        width: 90%;
        max-width: 350px;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 25px;
        border: 2px solid #ffffff17;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0rem;
        transition: all 0.3s ease-in-out;
        z-index: 75;
        padding: 3rem 1rem 1rem 1rem;
        box-sizing: border-box;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        /* padding: 1rem 2rem; */
        text-align: center;
        /* width: 100%; */
        max-width: 300px;
        display: inline-block;
        margin: 0 auto;
    }

    .nav-links .dropdown-toggle {
    /* display: inline-block; */
}
    
    .nav-links .cta-button {
        font-size: 1.25rem;
        padding: 1rem 2rem;
        margin-top: 2rem;
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .dropdown-toggle {
        /* width: 100%; */
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: auto;
        margin-top: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(235, 63, 74, 0.1);
        border: 1px solid rgba(235, 63, 74, 0.3);
        border-radius: 12px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        padding: 1rem 1rem;
        text-align: center;
    }
    
    /* Navigation Container Adjustments */
    .nav .container {
        padding: 10px 15px;
        position: relative;
    }
    
    .logo img {
        width: 200px;
    }
    
    /* Ensure mobile menu toggle is properly positioned */
    .mobile-menu-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 800px) {
    /* Typography Adjustments */
    .hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 2rem auto;
    }
    
    h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    /* Section Padding */
    .section-padding {
        padding: 3rem 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 1rem;
        /* min-height: 630px; */
    }
    
    .hero-content {
        padding: 150px 0 60px 0;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

#highlight {margin-top: -28vw;}
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Readiness/Onboarding Sections - Force single column */
    .readiness-content,
    .onboarding-content,
    .benefit-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    /* Force included section to single column */
    .included {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .readiness-text,
    .onboarding-text,
    .benefit-text {
        text-align: center;
    }
    
    .included > div {
        padding: 1.5rem;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    /* FAQ Section */
    .faq {
        padding: 3rem 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Sign Up Section */
    .signup {
        padding: 3rem 1rem;
    }
    
    .signup-form {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
    }
    
    .signup-input,
    .signup-button {
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .signup-input {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px 12px 0 0;
    }
    
    .signup-button {
        border-radius: 0 0 12px 12px;
    }
    
    /* Container Adjustments */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation Adjustments */
    .nav {
        top: 10px;
        left: 10px;
        width: calc(100% - 20px);
    }
    
    .nav .container {
        height: 80px;
        padding: 10px 15px;
    }
    
    .logo img {
        width: 180px;
    }
}

@media (max-width: 500px) {
    /* Extra Small Screens */
    .hero h1 {
    }
    
    .hero p {
        font-size: 0.9rem;
    }

        #highlight {
    /* margin-top: -78px; */
}
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .included > div {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 0.75rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .nav .container {
        height: 70px;
    }
    
    .logo img {
        width: 150px;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .hamburger {
        width: 20px;
        height: 2px;
    }
}

/* ========================================
   DESKTOP STYLES (Default - Mobile First)
   ======================================== */

/* Benefit Section */
.benefit {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(235, 63, 74, 0.05), rgba(145, 47, 182, 0.05));
}

.benefit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-text h2 {
    font-size: clamp(2.5rem, 2.1313rem + 2.913vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #8e83ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-text p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-text .cta-button {
    margin-top: 1rem;
}

.benefit-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(235, 63, 74, 0.2);
}

.benefit-image video {width:100%;}

.benefit-image img {width:100%;border-radius:12px;}

/* Readiness Section */
.row {
    padding: 6rem 0rem;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at 20% 60%, rgba(235, 63, 74, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 30%, rgba(145, 47, 182, 0.1) 0%, transparent 20%), radial-gradient(circle at 40% 40%, rgba(235, 63, 74, 0.08) 0%, transparent 50%);
}

.readiness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.readiness-text h2 {
    font-size: clamp(2.5rem, 2.1313rem + 2.913vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #8e83ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.readiness-text p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.included {
    display: flex;
    gap: 4rem;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.included > div {
    flex: 1;
    background: 
        radial-gradient(circle at 30% 140%, rgba(235, 63, 74, 0.15), transparent 37%),
        radial-gradient(circle at 50% 310%, rgba(145, 47, 182, 0.1), transparent 78%),
        linear-gradient(transparent, rgba(13, 10, 25, 0.37)),
        radial-gradient(circle at 50% -30%, rgba(235, 63, 74, 0.1), transparent),
        radial-gradient(90% 10% at 50% 0, rgba(235, 63, 74, 0.05), transparent 90%);
    border: 1px solid rgba(235, 63, 74, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.included > div:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 63, 74, 0.5);
    box-shadow: 0 20px 40px rgba(235, 63, 74, 0.2);
}

.included strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.included li:hover {
    color: #ffffff;
}

.included li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(235, 63, 74, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.included li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0.5rem;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px #ffffff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.readiness-text .cta-button {
    margin-top: 2rem;
}

/* Onboarding Section - Variation */
.onboarding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.onboarding-text h2 {
    font-size: clamp(2.5rem, 2.1313rem + 2.913vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.onboarding-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(145, 47, 182, 0.5);
}

.onboarding-text p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.onboarding-visual img {width:100%;border-radius:12px;}

/* Onboarding Section - Variation */
.onboarding-section {
    background: linear-gradient(135deg, rgba(145, 47, 182, 0.1) 0%, rgba(235, 63, 74, 0.15) 50%, rgba(145, 47, 182, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.onboarding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(145, 47, 182, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(145, 47, 182, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.onboarding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.onboarding-text h2 {
    font-size: clamp(2.5rem, 2.1313rem + 2.913vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.onboarding-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(145, 47, 182, 0.5);
}

.onboarding-text p {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.onboarding-visual img {width:100%;border-radius:12px;}

.onboarding-features {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-grid {
}

.feature-card {
    /* background: linear-gradient(135deg, rgba(145, 47, 182, 0.08) 0%, rgb(145 47 182 / 25%) 100%), radial-gradient(circle at 50% 0%, rgba(145, 47, 182, 0.1), transparent 70%); */
    border: 1px solid rgba(145, 47, 182, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(145, 47, 182, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 47, 182, 0.4);
    box-shadow: 0 20px 40px rgba(145, 47, 182, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    background-clip: text;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #eb3f4a, #912fb6);
    border-radius: 1px;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease-in-out;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #eb3f4a, #912fb6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(145, 47, 182, 0.5);
    flex-shrink: 0;
    margin-top: 0.5rem;
    animation: pulse 2.5s ease-in-out infinite;
}

.feature-item span {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.feature-item:hover span {
    color: #ffffff;
}

/* New gravity stars section */
.gravity-stars {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(235, 63, 74, 0.05), rgba(145, 47, 182, 0.05));
}

.gravity-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px #ffffff, 0 0 12px #eb3f4a;
    animation: gravityFloat 15s ease-in-out infinite;
    opacity: 0;
}

        @keyframes gravityFloat {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                transform: translateY(90vh) scale(0.3);
                opacity: 0.3;
            }
            25% {
                transform: translateY(75vh) scale(0.8);
                opacity: 0.8;
            }
            50% {
                transform: translateY(50vh) scale(1);
                opacity: 1;
            }
            75% {
                transform: translateY(25vh) scale(0.8);
                opacity: 0.8;
            }
            90% {
                transform: translateY(10vh) scale(0.3);
                opacity: 0.3;
            }
            100% {
                transform: translateY(-10vh) scale(0);
                opacity: 0;
            }
        }

/* Gravity star positioning for upward flow */
.gravity-star:nth-child(1) { left: 10%; top: 100%; animation-delay: 0s; animation-duration: 18s; }
.gravity-star:nth-child(2) { left: 20%; top: 100%; animation-delay: 3s; animation-duration: 20s; }
.gravity-star:nth-child(3) { left: 30%; top: 100%; animation-delay: 6s; animation-duration: 16s; }
.gravity-star:nth-child(4) { left: 40%; top: 100%; animation-delay: 9s; animation-duration: 19s; }
.gravity-star:nth-child(5) { left: 50%; top: 100%; animation-delay: 12s; animation-duration: 17s; }
.gravity-star:nth-child(6) { left: 60%; top: 100%; animation-delay: 15s; animation-duration: 21s; }
.gravity-star:nth-child(7) { left: 70%; top: 100%; animation-delay: 18s; animation-duration: 18s; }
.gravity-star:nth-child(8) { left: 80%; top: 100%; animation-delay: 21s; animation-duration: 20s; }
.gravity-star:nth-child(9) { left: 90%; top: 100%; animation-delay: 24s; animation-duration: 16s; }
.gravity-star:nth-child(10) { left: 15%; top: 100%; animation-delay: 27s; animation-duration: 19s; }
.gravity-star:nth-child(11) { left: 25%; top: 100%; animation-delay: 30s; animation-duration: 17s; }
.gravity-star:nth-child(12) { left: 35%; top: 100%; animation-delay: 33s; animation-duration: 21s; }
.gravity-star:nth-child(13) { left: 45%; top: 100%; animation-delay: 36s; animation-duration: 18s; }
.gravity-star:nth-child(14) { left: 55%; top: 100%; animation-delay: 39s; animation-duration: 20s; }
.gravity-star:nth-child(15) { left: 65%; top: 100%; animation-delay: 42s; animation-duration: 16s; }
.gravity-star:nth-child(16) { left: 75%; top: 100%; animation-delay: 45s; animation-duration: 19s; }
.gravity-star:nth-child(17) { left: 85%; top: 100%; animation-delay: 48s; animation-duration: 17s; }
.gravity-star:nth-child(18) { left: 95%; top: 100%; animation-delay: 51s; animation-duration: 21s; }
.gravity-star:nth-child(19) { left: 5%; top: 100%; animation-delay: 54s; animation-duration: 18s; }
.gravity-star:nth-child(20) { left: 95%; top: 100%; animation-delay: 57s; animation-duration: 20s; }
