/* Hero layout and visual direction */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 110px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 74% 20%, hsla(var(--primary-accent), 0.22) 0%, transparent 44%),
        radial-gradient(circle at 12% 82%, hsla(var(--secondary-accent), 0.12) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    align-items: center;
    padding: 2rem 0 2.8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.1rem;
}

.hero-badge .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(var(--secondary-accent));
    box-shadow: 0 0 12px hsla(var(--secondary-accent), 0.78);
}

.hero h1 {
    font-size: var(--fs-hero);
    color: #fff;
    max-width: 14ch;
}

.hero-subtitle {
    margin-top: 1rem;
    max-width: 58ch;
    color: hsl(var(--text-muted));
    font-size: var(--fs-lg);
    line-height: 1.58;
}

.hero-actions {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-chip {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.42rem 0.66rem;
    color: hsl(var(--text-dim));
    background: rgba(255, 255, 255, 0.02);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.05s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image-container:hover {
    border-color: hsla(var(--primary-accent), 0.5);
    box-shadow:
        0 20px 44px -24px rgba(0, 0, 0, 0.8),
        0 0 42px hsla(var(--primary-accent), 0.28);
}

.hero-image-container:hover img {
    transform: scale(1.035);
}

.hero-image-container::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(5, 8, 13, 0.52), rgba(5, 8, 13, 0.08) 42%, rgba(5, 8, 13, 0));
}

.hero-float-card {
    position: absolute;
    left: -7%;
    bottom: 8%;
    min-width: 310px;
    max-width: 360px;
    padding: 1.35rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.hero-float-card h3 {
    margin-top: 0.4rem;
    font-size: clamp(1.25rem, 1rem + 0.5vw, 1.55rem);
}

.hero-mini-list {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    list-style: none;
}

.hero-mini-list li {
    font-size: var(--fs-sm);
    color: hsl(var(--text-muted));
    display: flex;
    align-items: center;
    gap: 0.48rem;
}

.hero-mini-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: hsl(var(--secondary-accent));
    box-shadow: 0 0 12px hsla(var(--secondary-accent), 0.45);
    flex-shrink: 0;
}

.hero-float-card:hover {
    transform: translateY(-4px);
    border-color: hsla(var(--secondary-accent), 0.42);
    box-shadow:
        0 18px 36px -18px rgba(0, 0, 0, 0.75),
        0 0 32px hsla(var(--secondary-accent), 0.24);
}

@media (max-width: 1120px) {
    .hero {
        min-height: auto;
        padding: 116px 0 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-float-card {
        left: 4%;
    }
}

@media (max-width: 760px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .hero-float-card {
        position: static;
        margin-top: 1rem;
        min-width: 0;
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;
    }
}
