section.block {
    background: #fff;
    color: var(--ink);
    padding: clamp(48px, 8vw, 96px) clamp(16px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(13, 24, 33, .06);
    margin-block-start: 0;
}

.block_inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.block_title {
    text-align: center;
    margin: 0 0 18px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--ink);
}

.block_lead {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 960px;
    color: #2a3540;
}

.bg-field {
    position: absolute;
    inset: -10% -20% -20% -20%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 380px at 12% 20%, rgba(4, 113, 166, .07), transparent 60%),
        radial-gradient(900px 380px at 88% 80%, rgba(71, 192, 255, .07), transparent 60%);
}

.tech-cloud {
    position: relative;
    min-height: 260px;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech {
    --d: 18s;
    --delay: 0s;
    --amp: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #0b2030;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(4, 113, 166, .18);
    transition: transform .15s ease, box-shadow .15s ease;
    font-size: 16px;
    max-height: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
}