.hero {
    position: relative;
    max-width: 1580px;
    margin: auto;
    padding: 42px 42px 100px;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -160px;
    top: 40px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(36,217,255,.18), transparent 62%);
    filter: blur(6px);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 42px;
    bottom: 60px;
    width: 260px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(54px, 7vw, 112px);
    line-height: .88;
    letter-spacing: -0.085em;
    margin-bottom: 28px;
    color: white;
}

.hero h1 strong {
    background: linear-gradient(135deg, #27d8ff, #965cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-card {
    position: relative;
    z-index: 2;
    min-height: 470px;
    padding: 34px;
    border-radius: 34px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 34px 100px rgba(0,0,0,.42);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 20%, rgba(139,92,255,.26), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(36,217,255,.18), transparent 32%),
        linear-gradient(145deg, rgba(8,13,27,.92), rgba(5,7,17,.74));
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 33px;
    border: 1px solid rgba(255,255,255,.06);
    pointer-events: none;
}

.card-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    right: -110px;
    top: -110px;
    background: var(--primary-light);
    filter: blur(100px);
    opacity: .24;
    pointer-events: none;
}

.hero-card h3 {
    position: relative;
    font-size: 36px;
    letter-spacing: -0.055em;
    margin-bottom: 28px;
    color: white;
}

.hero-card p {
    position: relative;
    padding: 18px 20px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.09);
    color: #dce3ff;
    font-weight: 800;
    transition: .25s ease;
}

.hero-card p:hover {
    transform: translateX(6px);
    background: rgba(36,217,255,.10);
    border-color: rgba(36,217,255,.24);
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-card {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 30px 18px 80px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 70px);
    }

    .hero p {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-card {
        min-height: auto;
        padding: 24px;
        border-radius: 26px;
    }
}