/* technologies.html — extracted internal + inline styles */
    /* ===== Technologies page — scoped bespoke components ===== */
    .tech-page .tech-hero {
        position: relative;
        overflow: hidden;
        /* extend the hero's background (soft-primary + blobs) up behind the
           transparent header so header and hero share ONE continuous background */
        margin-top: -120px;
        padding-top: 120px;
    }

    /* Technologies page only: make the header transparent so the hero background
       shows through it — no separate header colour, hence no seam. */
    header.wrapper.bg-soft-primary {
        background: transparent !important;
        position: relative;
        z-index: 4;
    }

    .tech-page .tech-hero__blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: .55;
        pointer-events: none;
        z-index: 0;
    }

    .tech-page .tech-hero__blob.b1 {
        width: 460px; height: 460px; top: -140px; left: -120px;
        background: rgba(var(--scb-green-rgb), .35);
    }

    .tech-page .tech-hero__blob.b2 {
        width: 420px; height: 420px; top: -80px; right: -120px;
        background: rgba(var(--scb-purple-rgb), .30);
    }

    .tech-page .tech-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        padding: .4rem 1rem;
        border-radius: 2rem;
        background: rgba(var(--scb-green-rgb), .12);
        color: var(--scb-green);
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .tech-page .tech-eyebrow .dot {
        width: 7px; height: 7px; border-radius: 50%;
        background: var(--scb-green);
        box-shadow: 0 0 0 4px rgba(var(--scb-green-rgb), .18);
    }

    /* ---- logo marquee ---- */
    .tech-marquee {
        overflow: hidden;
        padding: 1rem 0;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .tech-marquee__track {
        display: flex;
        align-items: center;
        gap: 3.5rem;
        width: max-content;
        animation: tech-scroll 42s linear infinite;
    }

    .tech-marquee:hover .tech-marquee__track {
        animation-play-state: paused;
    }

    .tech-marquee img {
        height: 42px;
        width: auto;
        opacity: .75;
        transition: opacity .3s ease, transform .3s ease;
    }

    .tech-marquee img:hover {
        opacity: 1;
        transform: scale(1.12);
    }

    @keyframes tech-scroll {
        to { transform: translateX(-50%); }
    }

    /* ---- stat band ---- */
    .tech-stat__num {
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.02em;
    }

    /* ---- featured platform band ---- */
    .tech-feature {
        border-radius: 1.5rem;
        background:
            radial-gradient(120% 140% at 0% 0%, rgba(var(--scb-green-rgb), .10), transparent 55%),
            #fff;
        border: 1px solid #eef1f6;
        overflow: hidden;
    }

    .tech-feature__badge {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .35rem .85rem;
        border-radius: 2rem;
        background: rgba(var(--scb-green-rgb), .12);
        color: var(--scb-green);
        font-size: .78rem;
        font-weight: 600;
    }

    /* ---- masonry capability grid ---- */
    .tech-masonry {
        column-gap: 1.5rem;
    }

    @media (min-width: 640px) { .tech-masonry { column-count: 2; } }
    @media (min-width: 992px) { .tech-masonry { column-count: 3; } }

    .tech-card {
        --accent: var(--scb-green);
        --accent-rgb: var(--scb-green-rgb);
        break-inside: avoid;
        margin-bottom: 1.5rem;
        padding: 1.6rem 1.5rem 1.35rem;
        border-radius: 1.25rem;
        background: #fff;
        border: 1px solid #eef1f6;
        position: relative;
        overflow: hidden;
        transition: transform .4s cubic-bezier(.22,.61,.36,1),
                    box-shadow .4s ease,
                    border-color .3s ease;
    }

    .tech-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: var(--accent);
        opacity: .85;
    }

    .tech-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1.4rem 3rem rgba(30, 34, 40, .12);
        border-color: rgba(var(--accent-rgb), .5);
    }

    .tech-card__head {
        display: flex;
        align-items: center;
        gap: .75rem;
        margin-bottom: 1.3rem;
    }

    .tech-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px; height: 42px;
        border-radius: .8rem;
        background: rgba(var(--accent-rgb), .12);
        color: var(--accent);
        font-size: 1.35rem;
        flex-shrink: 0;
    }

    .tech-card__title {
        font-size: 1.05rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.15;
    }

    .tech-card__count {
        display: inline-block;
        margin-top: .15rem;
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: var(--accent);
    }

    .tech-card__tag {
        margin-left: auto;
        align-self: flex-start;
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--accent);
        background: rgba(var(--accent-rgb), .12);
        padding: .28rem .6rem;
        border-radius: 2rem;
    }

    .tech-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .65rem;
    }

    .tech-item {
        text-align: center;
        padding: .85rem .4rem .7rem;
        border-radius: .85rem;
        background: #f7f8fb;
        transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
    }

    .tech-item:hover {
        background: rgba(var(--accent-rgb), .10);
        transform: translateY(-4px);
        box-shadow: 0 .6rem 1.2rem rgba(var(--accent-rgb), .18);
    }

    .tech-item img {
        height: 38px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .tech-item span {
        display: block;
        margin-top: .55rem;
        font-size: .76rem;
        font-weight: 500;
        color: #45526b;
        line-height: 1.2;
    }

    /* smooth staggered entrance (cards stay visible if animation unsupported) */
    @media (prefers-reduced-motion: no-preference) {
        .tech-card { animation: tech-reveal .6s cubic-bezier(.22,.61,.36,1) both; }
        .tech-card:nth-child(3n+2) { animation-delay: .09s; }
        .tech-card:nth-child(3n+3) { animation-delay: .18s; }
    }

    @keyframes tech-reveal {
        from { opacity: 0; transform: translateY(26px); }
        to   { opacity: 1; transform: none; }
    }

    @media (prefers-reduced-motion: reduce) {
        .tech-marquee__track { animation: none; }
        .tech-card, .tech-item, .tech-marquee img { transition: none !important; }
    }

/* ===== generated classes for inline styles ===== */
.gen-1 { z-index: 2; }
.gen-2 { top: 18%; left: 5%; }
.gen-3 { bottom: 30%; left: 2%; }
.gen-4 { top: 20%; right: 2%; transform: rotate(70deg); }
.gen-5 { bottom: 28%; right: 5%; }
