
/*
Theme Name: Truepeer Digital AI Theme
Theme URI: https://truepeer.in
Author: OpenAI
Description: Modern AI business WordPress landing theme for Truepeer Digital
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b1020;
    color: #ffffff;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #312e81);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #4f46e5;
    color: white;
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
}

.hero-visual {
    width: 480px;
    height: 480px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(99,102,241,0.45);
    animation: float 6s infinite ease-in-out;
}

.hero-visual::before {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 60px;
}

.hero-visual::after {
    width: 160px;
    height: 160px;
    bottom: 60px;
    right: 50px;
    animation-delay: 2s;
}

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

@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-visual {
        width: 100%;
        max-width: 380px;
        height: 380px;
        margin-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}
