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

body {
    font-family: 'Clash Display', 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Main Container */
.main-container {
    width: 100%;
    min-height: 100vh;
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Background Blur Effects */
.bg-blur-left {
    width: 2066.67px;
    height: 925px;
    left: -240.83px;
    top: 672.50px;
    position: absolute;
    background: rgba(30, 64, 175, 0.30);
    box-shadow: 131px 131px 131px rgba(37, 99, 235, 0.3);
    border-radius: 9999px;
    filter: blur(65.54px);
    z-index: 0;
    pointer-events: none;
}

.bg-blur-right {
    width: 672.50px;
    height: 653.33px;
    left: 850.83px;
    top: 388.33px;
    position: absolute;
    background: rgba(30, 64, 175, 0.50);
    box-shadow: 131px 131px 131px rgba(37, 99, 235, 0.5);
    border-radius: 9999px;
    filter: blur(65.54px);
    z-index: 0;
    pointer-events: none;
}

/* Modern Background Pattern */
.modern-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0.08) 35%, transparent 65%);
    opacity: 0.85;
    overflow: hidden;
    pointer-events: none;
}

.modern-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 120px 120px;
    background-position: center;
    opacity: 0.95;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.4;
    }
}

.modern-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E"),
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 
        100% 100%,
        200px 200px,
        60px 60px;
    opacity: 0.8;
    mix-blend-mode: soft-light;
}

/* Navigation */
.navbar {
    padding: 18px 32px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    background: rgba(19, 21, 27, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    z-index: 1000;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 2px 20px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(19, 21, 27, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 2px 30px rgba(37, 99, 235, 0.25);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    border-radius: 9999px;
    box-shadow:
        0 0 20px rgba(37, 99, 235, 0.6),
        0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.logo-circle::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: white;
    border-radius: 9999px;
}

.logo-text {
    color: white;
    font-size: 20px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #3B82F6);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-signup {
    padding: 10px 24px;
    background: rgba(31, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-signup:hover {
    background: rgba(43, 41, 41, 0.9);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-login {
    padding: 10px 20px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 12px;
    border: 1px solid #3B82F6;
    color: white;
    font-size: 15px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login svg {
    flex-shrink: 0;
}

.btn-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-login:hover::before {
    opacity: 1;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

/* Hero Section */
.hero-section {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    z-index: 10;
    max-width: 1400px;
    width: 90%;
    padding: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    flex: 0 1 auto;
    max-width: 480px;
    margin-right: 0;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -400px;
    perspective: 1200px;
}

.phone-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    animation: floatInSpace 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(37, 99, 235, 0.5));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.phone-image:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotateY(15deg) rotateX(5deg);
    filter: drop-shadow(0 40px 80px rgba(37, 99, 235, 0.7));
}

.hero-title {
    color: white;
    font-size: 48px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(37, 99, 235, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.email-form {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
    padding: 25px;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.email-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.5) 50%, transparent 100%);
}

.email-input {
    flex: 1;
    min-width: 200px;
    max-width: 350px;
    padding: 14px 24px;
    background: rgba(28, 30, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-input:focus {
    border-color: #3B82F6;
    background: rgba(28, 30, 35, 0.95);
    box-shadow:
        0 4px 20px rgba(37, 99, 235, 0.3),
        0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-get-started {
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-radius: 12px;
    border: 1px solid #3B82F6;
    color: white;
    font-size: 16px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow:
        0 4px 20px rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.5) inset;
    white-space: nowrap;
    z-index: 5;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-get-started:hover::before {
    opacity: 1;
}

.btn-get-started:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(37, 99, 235, 0.7),
        0 0 0 2px rgba(59, 130, 246, 0.9) inset,
        0 0 30px rgba(37, 99, 235, 0.5);
    border-color: #60A5FA;
}

.btn-get-started:active {
    transform: translateY(-1px) scale(1);
}

.hero-disclaimer {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    margin-top: -10px;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 50px;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3B82F6;
}

/* Hero Image */
.hero-image {
    position: relative;
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

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





@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-8px) rotateZ(-1deg);
    }
    50% {
        transform: translateY(-12px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-8px) rotateZ(1deg);
    }
}

@keyframes floatInSpace {
    0%, 100% {
        transform: translateY(0px) rotateY(-4deg);
    }
    50% {
        transform: translateY(-20px) rotateY(4deg);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .navbar {
        gap: 60px;
    }

    .hero-section {
        gap: 40px;
        max-width: 1200px;
        justify-content: flex-end;
    }

    .hero-title {
        font-size: 42px;
    }

    .phone-image {
        max-width: 280px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        gap: 40px;
        padding: 16px 28px;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero-section {
        flex-direction: column;
        gap: 50px;
        max-width: 700px;
        left: 50%;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        order: -1;
        margin-left: 0;
    }

    .phone-image {
        max-width: 200px;
    }

    .email-form {
        padding: 25px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .navbar {
        padding: 14px 20px;
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: calc(100% - 40px);
        max-width: none;
        position: fixed;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }

    .nav-buttons {
        gap: 8px;
        flex-shrink: 0;
    }

    .btn-signup,
    .btn-login {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-section {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 120px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0 auto;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
        gap: 25px;
    }

    .hero-title {
        font-size: 30px;
        text-align: center;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 15px;
        line-height: 24px;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .phone-image {
        max-width: 200px;
    }

    .email-form {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        max-width: 100%;
        width: 100%;
    }

    .email-input {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        font-size: 15px;
        padding: 14px 20px;
    }

    .btn-get-started {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .hero-disclaimer {
        text-align: center;
        font-size: 13px;
    }

    .bg-blur-left,
    .bg-blur-right {
        opacity: 0.25;
    }

    .modern-background {
        opacity: 0.3;
    }

    .footer {
        padding: 25px 20px;
        position: relative;
        margin-top: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
        gap: 12px;
    }

    .logo-text {
        font-size: 16px;
    }

    .btn-signup,
    .btn-login {
        padding: 7px 12px;
        font-size: 12px;
    }

    .btn-login svg {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    .hero-section {
        padding: 100px 15px 30px;
        gap: 25px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px;
        line-height: 22px;
    }

    .phone-image {
        max-width: 170px;
    }

    .email-form {
        padding: 18px 15px;
    }

    .email-input {
        padding: 13px 18px;
        font-size: 14px;
    }

    .btn-get-started {
        padding: 13px;
        font-size: 15px;
    }

    .hero-disclaimer {
        font-size: 12px;
        line-height: 20px;
    }

    .footer {
        padding: 20px 15px;
    }
}
