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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2d3748;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
header {
    padding: 40px 0 20px;
    text-align: center;
}

.logo {
    width: 200px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%;
}

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

/*.logo svg {*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    fill: white;*/
/*}*/

h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Download Buttons */
.download-section {
    text-align: center;
    padding: 60px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.download-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d3748;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn.macos {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-btn.macos:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.download-btn.macos:active {
    transform: translateY(-1px);
}

.download-btn.windows {
    background: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
    opacity: 0.6;
}

.download-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.coming-soon {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 10px;
    font-size: 0.75rem;
    background: #fed7d7;
    color: #c53030;
    border-radius: 6px;
    font-weight: 600;
}

.badge-wrapper{
    position: relative;
}

.badge-early-alpha {
    position: absolute;
    top: 2px;
    right: -25px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 60%, #ea580c 100%);
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    transform: rotate(32deg);
    transform-origin: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

/* Features */
.features {
    padding: 40px 0 80px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.feature-description {
    color: #718096;
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #718096;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content{
        max-width: 55%!important;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .download-title {
        font-size: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Hero Section Mobile */
    .section-hero {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%!important;
        text-align: center;
    }

    /*.hero-image .bar {*/
    /*    background-size: 100%;*/
    /*    background-position-x: center;*/
    /*}*/

    /*.hero-image .dock {*/
    /*    background-size: 100%;*/
    /*    background-position-x: center;*/
    /*}*/


    .logo {
        width: 50%;
    }

    .hero-image{
        max-width: 100%!important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .download-section {
        padding: 40px 0;
    }

    /* Hero Section Small Mobile */
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .logo {
        width: 70%;
    }
}



/* Hero Image */
.section-hero{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}
.hero-content {
    max-width: 40%;
}
.hero-image {
    max-width: 40%;
    /*width: 480px;*/
    /*flex-shrink: 0;*/
    overflow: hidden;
    position: relative;
}

.hero-image video {
    margin-left: -15px;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin-bottom: -15px;
}

.hero-image .bar {
    background-image: url('/web/assets/bar.png');
    background-position-x: 100%;
    background-repeat: no-repeat;
    background-size: 140%;
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
}

.hero-image .dock {
    background-image: url('/web/assets/dock.png');
    background-position-x: 100%;
    background-repeat: no-repeat;
    background-size: 130%;
    width: 100%;
    height: 130px;
    position: relative;
    bottom: 0;
    right: 0;

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
}

.text-accent {
    color: #667eea;
}

.text-accent-second {
    color: #764ba2;
}