* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    /*             background: linear-gradient(135deg, #123456 0%, #757575 100%);
 */
    background: linear-gradient(170deg, #ffffff 2%, #123456 6%, #123456 100%);
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated background particles */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    animation: float 6s ease-in-out infinite;
}

  @keyframes float {
            0%, 100%

        {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(180deg);
        }

        } 

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) translateX(5px) rotate(180deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Header */
header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: white;
        }

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 0px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    /* background: linear-gradient(45deg, #757575, #123456);
                       
         */
    background: #757575;
    color: white;
    box-shadow: 0 10px 30px rgba(117, 117, 117, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: white;
        color: black;
        box-shadow: 0 15px 40px rgba(117, 117, 117, 0.4);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dashboard-mockup {
    width: 500px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
/*    animation: float 6s ease-in-out infinite;
*/}

.mockup-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-content {
    padding: 30px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    animation: pulse 2s ease-in-out infinite;
}

    .mockup-bar:nth-child(1) {
        width: 80%;
    }

    .mockup-bar:nth-child(2) {
        width: 60%;
    }

    .mockup-bar:nth-child(3) {
        width: 70%;
    }

    .mockup-bar:nth-child(4) {
        width: 50%;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

    .features h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 20px;
        font-weight: 800;
    }

.features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
    padding: 100px 0;
    text-align: center;
}

    .coming-soon h2 {
        font-size: 3rem;
        margin-bottom: 30px;
        font-weight: 800;
    }

    .coming-soon p {
        font-size: 1.3rem;
        opacity: 0.9;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.email-signup {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .email-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

/* Footer */
footer {
    background:none;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: white;
    }

.footer-bottom {
    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    opacity: 0.6;
}


.brand-container {
    display: flex;
    align-items: center;
    gap: 10px; /* space between image and text */
}

.logo-img {
    height: 50px;
    filter: drop-shadow(0 0 0px white);
}

.logo-text {
    font-size: 24px;
    padding-left: 10px;
    font-weight: bold;
    color: #ffffff;
}


/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .logo-img {
        margin-left:1.5rem;
    }
    .logo-text {
        color: #444444;
    }

    .mockup-content {
        padding: 15px;
        gap: 5px;
    }

    .mockup-text{
        font-size:0.9rem;
    }


        .hero h1 {
            font-size: 2.5rem;
        }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-mockup {
        width: 300px;
        height: 200px;
    }

    .email-signup {
        flex-direction: column;
        max-width: 300px;
    }
}

