:root {
    --bg-color: #0d0e12;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-primary: #7c3aed;
    --accent-secondary: #2563eb;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.06);
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background: var(--accent-primary);
}

.blob-2 {
    bottom: 0;
    right: -100px;
    background: var(--accent-secondary);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(13, 14, 18, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--card-hover);
}

.btn-text {
    color: var(--text-secondary);
}

.btn-text:hover {
    color: var(--text-primary);
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(124, 58, 237, 0.1);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero {
    padding-top: 140px;
    padding-bottom: 6rem;
}

.hero .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-frame {
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #2d2d30;
}

.hero-frame img {
    width: 100%;
    display: block;
    height: auto;
}

.phone-frame img {
    width: 100%;
    display: block;
}

.features {
    padding: 6rem 0;
}

.features h2,
.visuals h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #a78bfa;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.visuals {
    padding: 6rem 0;
}

.visual-text {
    text-align: center;
    margin-bottom: 4rem;
}

.visual-text p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 4px solid #2d2d30;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    display: block;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.footer-logo img {
    height: 20px;
    width: auto;
}

footer p {
    color: #52525b;
    font-size: 0.9rem;
}

.mobile-break {
    display: none;
}

.desktop-break {
    display: block;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }

    .desktop-break {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }

    header {
        padding: 1.5rem 0;
    }

    .logo img {
        height: 32px;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .nav-actions {
        gap: 0.5rem !important;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .hero .container {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        margin: 0 auto 2rem;
        font-size: 1rem;
    }

    .hero-content {
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: auto;
        min-width: 200px;
        justify-content: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-frame {
        width: 100%;
        max-width: 350px;
        border-radius: 20px;
        border-width: 3px;
        margin: 0 auto;
    }

    .features {
        padding: 4rem 0;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .logo span {
        display: block;
    }
}