.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    padding: 60px 0 20px;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-copy .lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-badges .badge {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.hero-visual {
    position: relative;
    min-height: 420px;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(15,74,163,0.9), rgba(4,25,66,0.9));
    box-shadow: 0 30px 80px rgba(5,10,30,0.6);
    padding: 32px;
    overflow: hidden;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.hero-visual .constellation {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="0.5"%3E%3Ccircle cx="50" cy="60" r="1.5"/%3E%3Ccircle cx="180" cy="120" r="1.2"/%3E%3Ccircle cx="320" cy="80" r="1.2"/%3E%3Ccircle cx="280" cy="260" r="1.5"/%3E%3Ccircle cx="120" cy="300" r="1.1"/%3E%3Cpath d="M50 60 L180 120 L320 80 L280 260 L120 300 L50 60"/%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.6;
    animation: drift 18s linear infinite;
}

.hero-visual .screen {
    position: relative;
    background: rgba(3,9,20,0.8);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1;
}

.hero-visual .screen h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.hero-visual .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

.hero-visual .stat-row strong {
    font-size: 1.6rem;
    color: var(--eu-gold);
}

@keyframes drift {
    from { transform: translate3d(-10px, -10px, 0); }
    to { transform: translate3d(10px, 10px, 0); }
}
