.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 24px;
    color: #b3b3b3;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* CTA Buttons - exactly like Framer */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.no-card {
    margin-bottom: 80px;
    font-size: 0.7em;
}




.button-primary {
    background: #ffffff;
    color: #000000;
    padding: 10px 24px !important;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600 !important;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.start-free {
    background: transparent;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.start-free:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* App Interface Preview - like Framer's editor preview */
.app-preview {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-header {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close {
    background: #ff5f57;
}

.control-minimize {
    background: #ffbd2e;
}

.control-maximize {
    background: #28ca42;
}

.app-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.app-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.open-app-btn {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.open-app-btn:hover {
    background: #572cbc;
}

.app-content {
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}


.app-content video {
    width: 100%;
    height: auto;
}

.content-preview {
    text-align: center;
    /* max-width: 600px; */
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.7;
    transform: translate(-50%, -50%);
}

.preview-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    /* width: 100%; */
    line-height: 1.2;
}

.preview-subtitle {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 24px;
    line-height: 1.4;
}

.preview-description {
    font-size: 16px;
    color: #888888;
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 32px;
}


.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Background gradient effect */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}


@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 0;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

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

    .button-primary,
    .start-free {
        width: 100%;
        max-width: 200px;
    }

    .app-preview {
        /* margin: 0 16px; */
        border-radius: 16px;
    }

    .app-content {
        padding: 24px;
        min-height: 300px;
    }

    .preview-title {
        font-size: 24px;
    }
}