/* ═══════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════ */

.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.lp-hero__bg::before,
.lp-hero__bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}
.lp-hero__bg::before {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -120px; left: 5%;
    animation: lp-float 12s ease-in-out infinite;
}
.lp-hero__bg::after {
    width: 460px; height: 460px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -60px; right: 8%;
    animation: lp-float 14s ease-in-out infinite reverse;
}
@keyframes lp-float {
    0%, 100% { transform: translate(0,0); }
    50%      { transform: translate(40px, -30px); }
}

/* grid overlay */
.lp-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(6,182,212,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6,182,212,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.lp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.lp-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.lp-hero__tagline::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: lp-pulse 1.8s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.lp-hero h1 {
    font-size: clamp(36px, 5.4vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero h1 .lp-grad {
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 560px;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.lp-hero__trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
}
.lp-hero__trust span::before {
    content: '✓';
    color: var(--success);
    margin-right: 6px;
    font-weight: 700;
}

/* Hero mockup */
.lp-hero__mockup {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(6, 182, 212, 0.25),
        0 2px 0 rgba(255, 255, 255, 0.06) inset,
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 18px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(6, 182, 212, 0.18);
    transform: perspective(1400px) rotateY(-7deg) rotateX(4deg);
    transition: transform .6s ease, box-shadow .6s ease;
}
.lp-hero__mockup:hover {
    transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}
.lp-hero__mockup img {
    width: 100%;
    display: block;
}
.lp-hero__mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(0,212,255,0.1) 100%);
    pointer-events: none;
}

@media (max-width: 960px) {
    .lp-hero { padding: 110px 20px 60px; min-height: auto; }
    .lp-hero__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .lp-hero__mockup { transform: none; }
    .lp-hero__mockup:hover { transform: none; }
}
