﻿:root {
    --bg-dark: #03000a;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --brand-primary: #000077;
    --brand-hover: #1500b3;
    --text-highlight: #B3C0FF;
    --hero-gradient-blue: #000077;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    background: linear-gradient(92.81deg, #000000 8.84%, var(--hero-gradient-blue, #000077) 91.68%);
    color: var(--text-main);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.text-highlight {
    color: var(--text-highlight);
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(92.81deg, #000000 8.84%, var(--hero-gradient-blue) 91.68%);
    padding: 2rem 0;
}

.hero-content {
    padding: 2rem 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .hero-content h1 {
        font-size: clamp(3rem, 5.5vw, 8rem);
        line-height: 1.1;
        font-weight: 900;
        margin-bottom: 1.5rem;
        letter-spacing: -2px;
    }

    .hero-content p {
        font-weight: 300;
        font-size: clamp(1rem, 1.3vw, 2rem);
        line-height: 1.6;
        letter-spacing: -0.31px;
        color: var(--text-muted);
        margin-bottom: 2rem;
    }

.hero-image-wrapper {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding: 2rem 0 2rem 0;
}

.app-mockup {
    width: 100%;
    max-width: none; 
    max-height: 90vh; 
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(-10px 15px 30px rgba(0, 0, 0, 0.4));
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0 2rem; 
        height: auto; 
    }

    .hero-content {
        text-align: center; 
        align-items: center;
        padding: 0 5vw;
    }

        .hero-content h1 {
            font-size: clamp(3rem, 8vw, 4rem);
        }

        .hero-content p {
            max-width: 100%;
        }

    .hero-image-wrapper {
        margin-top: 2rem;
        padding: 2rem 0 2rem 0;
    }
}
