:root {
    --blue: #1541A1;
    --blue-deep: #0A1B45;
    --blue-mid: #1E3A8A;
    --orange: #F0670B;
    --orange-lt: #FF9142;
    --cloud: #F4F6FB;
    --white: #FFFFFF;
    --ink: #12182B;
    --slate: #5B6584;
    --line: rgba(18,24,43,0.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/* ===== custom cursor (pointer:fine only) ===== */
.has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button {
    cursor: none;
}

#cursorCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9997;
    mix-blend-mode: screen;
}

.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    will-change: transform;
}

.cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(240,103,11,0.55);
    transition: width .25s cubic-bezier(.16,.84,.44,1), height .25s cubic-bezier(.16,.84,.44,1), border-color .25s ease, background .25s ease, opacity .2s ease;
}

    .cursor-ring.hovering {
        width: 64px;
        height: 64px;
        background: rgba(240,103,11,0.1);
        border-color: var(--orange);
    }

    .cursor-ring.on-dark {
        border-color: rgba(255,145,66,0.75);
    }

@media (pointer:coarse), (hover:none) {
    #cursorCanvas, .cursor-dot, .cursor-ring {
        display: none;
    }
}

/* ===== scroll progress ===== */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg,var(--orange),var(--orange-lt));
    z-index: 200;
    transition: width .1s linear;
}

/* ===== reveal on scroll ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: opacity .6s cubic-bezier(.16,.84,.44,1), transform .6s cubic-bezier(.16,.84,.44,1);
}

.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: .02s;
}

.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: .1s;
}

.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: .18s;
}

.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: .26s;
}

.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: .34s;
}

.reveal-stagger.visible > *:nth-child(6) {
    transition-delay: .42s;
}

@media (prefers-reduced-motion:reduce) {
    .reveal, .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== header ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: padding .25s ease, box-shadow .25s ease;
}

    header.shrink {
        box-shadow: 0 8px 24px -18px rgba(10,27,69,0.35);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    transition: padding .25s ease;
}

header.shrink .header-inner {
    padding: 9px 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: height .25s ease;
}

header.shrink .logo-img {
    height: 60px;
}

nav.primary-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

    nav.primary-links a {
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: 0.01em;
        color: var(--ink);
        opacity: 0.75;
        position: relative;
        padding: 4px 0;
        transition: opacity .15s;
    }

        nav.primary-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            background: var(--orange);
            transition: width .18s ease;
        }

        nav.primary-links a:hover {
            opacity: 1;
        }

            nav.primary-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: var(--orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 11px 20px;
    border-radius: 2px;
    clip-path: polygon(10px 0,100% 0,calc(100% - 10px) 100%,0 100%);
    transition: background .18s, transform .18s;
    display: inline-block;
}

    .nav-cta:hover {
        background: var(--blue);
    }

.nav-toggle {
    display: none;
}

@media(max-width:920px) {
    nav.primary-links {
        display: none;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: 1px solid var(--ink);
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 600;
    }
}

/* ===== hero ===== */
.hero {
    position: relative;
    background: var(--blue-deep);
    color: var(--white);
    padding: 96px 0 0;
    overflow: hidden;
}

.hero-streaks {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.9;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: drift 14s ease-in-out infinite alternate;
}

.orb-1 {
    width: 340px;
    height: 340px;
    background: rgba(240,103,11,0.28);
    top: -120px;
    right: -60px;
    animation-duration: 16s;
}

.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(30,58,138,0.5);
    bottom: -100px;
    left: -40px;
    animation-duration: 19s;
    animation-delay: -4s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(255,145,66,0.18);
    top: 40%;
    left: 38%;
    animation-duration: 12s;
    animation-delay: -7s;
}

@keyframes drift {
    0% {
        transform: translate(0,0) scale(1);
    }

    100% {
        transform: translate(30px,-24px) scale(1.12);
    }
}

@media (prefers-reduced-motion:reduce) {
    .orb {
        animation: none;
    }
}

.hero .wrap {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono',monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-lt);
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16,.84,.44,1) forwards;
    animation-delay: .05s;
}

    .eyebrow .bar {
        width: 24px;
        height: 2px;
        background: var(--orange);
    }

.hero h1 {
    font-size: clamp(44px,6vw,80px);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp .8s cubic-bezier(.16,.84,.44,1) forwards;
    animation-delay: .18s;
}

    .hero h1 .arrow {
        color: var(--orange);
        display: inline-block;
        animation: arrowPulse 2.4s ease-in-out infinite;
        animation-delay: 1.2s;
    }

@keyframes arrowPulse {
    0%,100% {
        transform: translateY(-2px) skewX(-8deg) translateX(0);
    }

    50% {
        transform: translateY(-2px) skewX(-8deg) translateX(10px);
    }
}

.hero-sub {
    max-width: 44ch;
    margin: 26px 0 36px;
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    opacity: 0;
    animation: fadeUp .8s cubic-bezier(.16,.84,.44,1) forwards;
    animation-delay: .32s;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s cubic-bezier(.16,.84,.44,1) forwards;
    animation-delay: .46s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion:reduce) {
    .eyebrow, .hero h1, .hero-sub, .hero-cta-row {
        animation: none;
        opacity: 1;
    }

        .hero h1 .arrow {
            animation: none;
        }
}

.btn-solid {
    position: relative;
    overflow: hidden;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 16px 28px;
    letter-spacing: 0.01em;
    clip-path: polygon(12px 0,100% 0,calc(100% - 12px) 100%,0 100%);
    transition: transform .18s, background .18s, box-shadow .18s;
    display: inline-block;
}

    .btn-solid:hover {
        background: var(--orange-lt);
        box-shadow: 0 14px 28px -14px rgba(240,103,11,0.65);
    }

    .btn-solid::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.25);
        transform: translateX(-120%) skewX(-20deg);
        transition: transform .5s ease;
    }

    .btn-solid:hover::before {
        transform: translateX(120%) skewX(-20deg);
    }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 15px 26px;
    transition: border-color .18s, background .18s;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.06);
    }

.magnetic {
    transition: transform .15s ease-out;
}

.interchange {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 460px;
    margin: 0 auto;
}

    .interchange svg {
        width: 100%;
        height: 100%;
    }

.interchange {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(.16,.84,.44,1) forwards;
    animation-delay: .5s;
}

@media (prefers-reduced-motion:reduce) {
    .interchange {
        animation: none;
        opacity: 1;
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    .interchange {
        max-width: 320px;
        margin-top: 20px;
    }
}

/* ===== diagonal divider ===== */
.diag {
    height: 64px;
    background: var(--white);
    clip-path: polygon(0 100%,100% 0,100% 100%);
}

@media(max-width:700px) {
    .diag {
        height: 38px;
    }
}

/* ===== stats ===== */
.stats {
    background: var(--white);
    padding: 0 0 90px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border: 1px solid var(--line);
}

.stat {
    padding: 30px 26px;
    border-right: 1px solid var(--line);
    position: relative;
    transition: background .2s;
}

    .stat:hover {
        background: var(--cloud);
    }

    .stat:last-child {
        border-right: none;
    }

    .stat .n {
        font-family: 'Space Grotesk',sans-serif;
        font-weight: 700;
        font-size: 40px;
        color: var(--blue);
    }

        .stat .n .plus {
            color: var(--orange);
        }

    .stat .l {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--slate);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: 6px;
    }

@media(max-width:760px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat:nth-child(2) {
        border-right: none;
    }
}

/* ===== section shell ===== */
section {
    padding: 100px 0;
}

.section-head {
    margin-bottom: 56px;
    max-width: 640px;
}

    .section-head .tag {
        font-family: 'IBM Plex Mono',monospace;
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--orange);
        display: block;
        margin-bottom: 14px;
    }

    .section-head h2 {
        font-size: clamp(30px,4vw,46px);
        color: var(--ink);
        text-transform: uppercase;
    }

    .section-head p {
        margin-top: 16px;
        color: var(--slate);
        font-size: 16px;
        max-width: 52ch;
    }

/* ===== lanes ===== */
.lanes-wrap {
    background: var(--cloud);
}

.lanes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.lane {
    background: var(--white);
    padding: 34px 28px 30px;
    position: relative;
    border: 1px solid var(--line);
    transition: transform .25s cubic-bezier(.16,.84,.44,1), box-shadow .25s ease, border-color .25s;
}

    .lane:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 44px -20px rgba(10,27,69,0.28);
        border-color: rgba(240,103,11,0.35);
    }

    .lane .no {
        position: absolute;
        top: 24px;
        right: 26px;
        font-family: 'IBM Plex Mono',monospace;
        font-size: 12px;
        color: var(--slate);
        letter-spacing: 0.05em;
    }

    .lane .icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        transform: rotate(-3deg);
        transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s;
    }

    .lane:hover .icon {
        transform: rotate(3deg) scale(1.1);
        background: var(--orange);
    }

    .lane .icon svg {
        width: 26px;
        height: 26px;
        stroke: var(--white);
    }

    .lane h3 {
        font-size: 23px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .lane p {
        font-size: 14.5px;
        color: var(--slate);
        margin-bottom: 18px;
    }

    .lane .go {
        font-size: 13px;
        font-weight: 700;
        color: var(--orange);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: gap .2s;
    }

        .lane .go:hover {
            gap: 10px;
        }

@media(max-width:860px) {
    .lanes {
        grid-template-columns: 1fr;
    }
}

/* ===== solutions ===== */
.sol-row {
    display: flex;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    flex-wrap: wrap;
}

.sol-card {
    flex: 1 1 200px;
    background: var(--white);
    padding: 30px 24px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .3s, transform .3s;
    position: relative;
}

    .sol-card:hover {
        background: var(--blue-deep);
        color: var(--white);
        transform: translateY(-4px);
    }

        .sol-card:hover p {
            color: rgba(255,255,255,0.72);
        }

        .sol-card:hover .code {
            color: var(--orange-lt);
        }

    .sol-card .code {
        font-family: 'IBM Plex Mono',monospace;
        font-size: 11px;
        letter-spacing: 0.08em;
        color: var(--blue);
        transition: color .2s;
    }

    .sol-card h4 {
        font-family: 'Space Grotesk',sans-serif;
        font-size: 19px;
        text-transform: uppercase;
        margin: 16px 0 8px;
    }

    .sol-card p {
        font-size: 13.5px;
        color: var(--slate);
        transition: color .2s;
    }

/* ===== features ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
}

.feature {
    background: var(--white);
    padding: 32px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background .2s;
}

    .feature:hover {
        background: var(--cloud);
    }

    .feature .tile {
        flex: 0 0 auto;
        width: 46px;
        height: 46px;
        background: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-family: 'IBM Plex Mono',monospace;
        font-size: 10.5px;
        font-weight: 600;
        transform: rotate(3deg);
        transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    }

    .feature:hover .tile {
        transform: rotate(-4deg) scale(1.12);
    }

    .feature h4 {
        font-size: 17px;
        text-transform: uppercase;
        margin-bottom: 6px;
        font-family: 'Space Grotesk',sans-serif;
        font-weight: 700;
    }

    .feature p {
        font-size: 13.5px;
        color: var(--slate);
    }

@media(max-width:900px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* ===== testimonials ===== */
.testimonials {
    background: var(--blue-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .testimonials .section-head .tag {
        color: var(--orange-lt);
    }

    .testimonials .section-head h2 {
        color: var(--white);
    }

    .testimonials .section-head p {
        color: rgba(255,255,255,0.65);
    }

.t-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.t-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 28px 24px;
    transition: transform .25s cubic-bezier(.16,.84,.44,1), border-color .25s, background .25s;
}

    .t-card:nth-child(2) {
        transform: translateY(-14px);
    }

    .t-card:hover {
        transform: translateY(-20px);
        border-color: rgba(240,103,11,0.5);
        background: rgba(255,255,255,0.07);
    }

    .t-card .mark {
        color: var(--orange);
        font-family: 'Space Grotesk',sans-serif;
        font-size: 32px;
        margin-bottom: 10px;
        display: block;
    }

    .t-card p.quote {
        font-size: 14.5px;
        color: rgba(255,255,255,0.85);
        margin-bottom: 20px;
    }

    .t-card .who {
        font-family: 'IBM Plex Mono',monospace;
        font-size: 12px;
        color: var(--orange-lt);
        text-transform: uppercase;
    }

        .t-card .who span {
            display: block;
            color: rgba(255,255,255,0.5);
            text-transform: none;
            font-size: 12.5px;
            margin-top: 2px;
        }

@media(max-width:860px) {
    .t-row {
        grid-template-columns: 1fr;
    }

    .t-card:nth-child(2) {
        transform: none;
    }

    .t-card:hover {
        transform: translateY(-6px);
    }
}

/* ===== marquee clients ===== */
.clients {
    padding: 70px 0;
    overflow: hidden;
}

    .clients .section-head {
        margin-bottom: 40px;
    }

.marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: scroll 28s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--slate);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color .2s;
}

    .marquee-track span:hover {
        color: var(--orange);
    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion:reduce) {
    .marquee-track {
        animation: none;
    }
}

/* ===== cta band ===== */
.cta-band {
    position: relative;
    background: var(--orange);
    color: var(--white);
    overflow: hidden;
}

    .cta-band .wrap {
        padding: 76px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .cta-band h2 {
        font-size: clamp(30px,4.4vw,50px);
        max-width: 16ch;
        text-transform: uppercase;
        color: var(--white);
    }

    .cta-band .btn-solid {
        background: var(--blue-deep);
        animation: ctaPulse 2.6s ease-in-out infinite;
    }

        .cta-band .btn-solid:hover {
            background: var(--ink);
        }

@keyframes ctaPulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(10,27,69,0.45);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(10,27,69,0);
    }
}

@media (prefers-reduced-motion:reduce) {
    .cta-band .btn-solid {
        animation: none;
    }
}

.cta-slash {
    position: absolute;
    top: 0;
    right: -5%;
    height: 100%;
    width: 40%;
    background: rgba(255,255,255,0.08);
    transform: skewX(-16deg);
    z-index: 1;
}

/* ===== footer ===== */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 26px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

footer .flogo {
    height: 30px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

footer h5 {
    font-family: 'IBM Plex Mono',monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-lt);
    margin-bottom: 16px;
}

footer p {
    font-size: 13.5px;
    max-width: 34ch;
    line-height: 1.6;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 9px;
    font-size: 13.5px;
}

    footer li a {
        transition: color .15s, padding-left .15s;
    }

        footer li a:hover {
            color: var(--white);
            padding-left: 4px;
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    font-family: 'IBM Plex Mono',monospace;
    font-size: 11.5px;
    letter-spacing: 0.03em;
    flex-wrap: wrap;
    gap: 10px;
}

@media(max-width:800px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion:no-preference) {
    .draw {
        stroke-dasharray: 900;
        stroke-dashoffset: 900;
        animation: draw 2s ease-out forwards .2s;
    }

    .flow {
        stroke-dasharray: 6 8;
        animation: flow 1.4s linear infinite;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes flow {
    to {
        stroke-dashoffset: -28;
    }
}

.pulse-node {
    animation: nodePulse 2.2s ease-in-out infinite;
}

@keyframes nodePulse {
    0%,100% {
        r: 10;
        opacity: 1;
    }

    50% {
        r: 13;
        opacity: 0.75;
    }
}

@media (prefers-reduced-motion:reduce) {
    .draw {
        stroke-dashoffset: 0;
        animation: none;
    }

    .flow {
        animation: none;
    }

    .pulse-node {
        animation: none;
    }
}
