@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg: #0a0a0f;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.07);
    --text: #e8eaed;
    --text-dim: #9aa0a6;
    --accent: #7c6aef;
    --accent-bright: #a78bfa;
    --gradient-1: linear-gradient(135deg, #7c6aef, #60a5fa);
    --gradient-2: linear-gradient(135deg, #f472b6, #7c6aef);
}

/* ── GLOBAL ─────────────────────────── */

.reveal-viewport {
    background: var(--bg) !important;
}

.reveal {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 26px;
    color: var(--text);
}

.reveal .slides {
    text-align: left;
}

.reveal .slides section {
    padding: 48px 64px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ── TYPOGRAPHY ─────────────────────── */

.reveal h1,
.reveal h2,
.reveal h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
}

.reveal h1 {
    font-size: 2.2em;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.reveal h2 {
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.reveal h3 {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--accent-bright);
    margin: 0 0 16px 0;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── TITLE SLIDE ────────────────────── */

.slide-title {
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    position: relative;
    overflow: hidden;
}

.slide-title::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(124, 106, 239, 0.2), transparent 60%);
    pointer-events: none;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 60%);
    pointer-events: none;
}

.slide-title h1 {
    font-size: 2.8em;
    max-width: 90%;
}

.slide-meta {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.85em;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.slide-meta .meta-item strong {
    display: block;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
    color: var(--accent-bright);
}

/* ── CONTENT SLIDES ─────────────────── */

.slide-content {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start !important;
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 106, 239, 0.06), transparent 60%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    font-size: 0.65em;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

/* ── LISTS ──────────────────────────── */

.reveal ul,
.reveal ol {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.reveal li {
    padding: 12px 18px;
    margin-bottom: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.88em;
    line-height: 1.55;
    color: var(--text-dim);
    transition: background 0.3s, border-color 0.3s;
}

.reveal li:hover {
    background: var(--surface-hover);
    border-color: rgba(124, 106, 239, 0.2);
}

.reveal li strong {
    color: #fff;
    font-weight: 600;
}

.reveal li em {
    color: var(--accent-bright);
}

.reveal li ul {
    margin-top: 8px;
}

.reveal li li {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    font-size: 0.92em;
    padding: 8px 14px;
    margin-bottom: 4px;
}

/* Two-column */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

/* ── AGENDA ─────────────────────────── */

.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9em;
    color: var(--text-dim);
    transition: all 0.3s;
}

.agenda-item:hover {
    background: var(--surface-hover);
    border-color: rgba(124, 106, 239, 0.3);
    transform: translateY(-1px);
}

.agenda-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    min-width: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── TABLE ──────────────────────────── */

.reveal table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.72em;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.reveal thead {
    background: rgba(124, 106, 239, 0.1);
}

.reveal th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    color: var(--accent-bright);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.reveal td {
    padding: 11px 14px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.45;
}

.reveal td strong {
    color: #fff;
}

.reveal tr:last-child td {
    border-bottom: none;
}

.reveal tbody tr {
    transition: background 0.2s;
}

.reveal tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* ── STAT CARDS ─────────────────────── */

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2em;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.78em;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ── FRAGMENTS ──────────────────────── */

.reveal .fragment {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal .fragment:not(.visible) {
    opacity: 0;
    transform: translateY(10px);
}

.reveal .fragment.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── CONTROLS ───────────────────────── */

.reveal .progress {
    height: 3px;
}

.reveal .progress span {
    background: var(--gradient-1);
}

.reveal .controls {
    color: var(--accent) !important;
}

.reveal .controls button {
    color: var(--accent) !important;
}

.reveal .slide-number {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--surface) !important;
    color: var(--text-dim) !important;
    border-radius: 6px;
    padding: 3px 8px !important;
    font-size: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
}

/* ── METHODOLOGY ANIMATIONS ─────────── */

.method-slide {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

.anim-container {
    flex: 1;
    position: relative;
    margin-top: 16px;
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
    padding: 10px;
    box-sizing: border-box;
}

.method-svg {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    max-height: 280px;
}

.anim-a-wrapper {
    margin-top: -80px;
    transition: margin-top 0.5s ease;
    overflow: hidden;
}

.anim-a-wrapper.shifted {
    margin-top: 0;
}

.anim-a-full {
    width: 100%;
    max-height: 45vh;
}

.anim-a-wrapper ~ .anim-container {
    position: absolute;
    inset: 0;
    min-height: auto;
    flex: none;
}

.svg-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    fill: var(--text-dim);
    text-anchor: middle;
}

.svg-server-box {
    fill: rgba(255, 255, 255, 0.04);
    stroke: var(--border);
    stroke-width: 2px;
}

.svg-server-fill {
    fill: rgba(124, 106, 239, 0.4);
}

.arch-boundary {
    fill: rgba(255, 255, 255, 0.015);
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1.5px;
    stroke-dasharray: 6 6;
}

.arch-box {
    fill: rgba(124, 106, 239, 0.12);
    stroke: rgba(167, 139, 250, 0.4);
    stroke-width: 1.5px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.arch-line {
    stroke: #60a5fa;
    stroke-width: 2.5px;
    stroke-dasharray: 6 4;
    fill: none;
    filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.5));
}

.arch-text {
    fill: #fff;
    font-weight: 600;
}

/* Slide 8 Animations */
@keyframes fillUp {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.fill-anim-1,
.fill-anim-2,
.fill-anim-3 {
    transform-origin: bottom;
    animation: fillUp 1s ease-out forwards;
}

.fill-anim-2 {
    animation-delay: 0.3s;
}

.fill-anim-3 {
    animation-delay: 0.6s;
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.6));
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0));
    }
}

.glow-pulse {
    animation: glowPulse 2s infinite;
    stroke: #60a5fa;
}

@keyframes dashDraw {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.dash-anim {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dashDraw 1.5s forwards ease-in-out;
}

@keyframes needleSync {

    0%,
    5% {
        transform: rotate(0deg);
    }

    45%,
    55% {
        transform: rotate(180deg);
    }

    95%,
    100% {
        transform: rotate(0deg);
    }
}

.speed-needle-sync {
    transform-origin: 100px 140px;
    animation: needleSync 10s infinite linear;
}

@keyframes dialSync {

    0%,
    5% {
        stroke-dasharray: 0, 188.5;
    }

    /* Pi * r = ~188.5 */
    45%,
    55% {
        stroke-dasharray: 188.5, 188.5;
    }

    95%,
    100% {
        stroke-dasharray: 0, 188.5;
    }
}

.speed-dial-sync {
    stroke-dasharray: 188.5;
    stroke-dashoffset: 0;
    animation: dialSync 10s infinite linear;
}

/* Base fill animation for dynamic equilibrium (max height 82px, base Y 136px) */
@keyframes dynFill1 {

    0%,
    7% {
        height: 0px;
        transform: translateY(0px);
    }

    20%,
    85% {
        height: 82px;
        transform: translateY(-82px);
    }

    97%,
    100% {
        height: 0px;
        transform: translateY(0px);
    }
}

.dyn-fill-1 {
    animation: dynFill1 10s infinite linear;
}

@keyframes dynServer2 {

    0%,
    15.9% {
        opacity: 0;
    }

    16%,
    86% {
        opacity: 1;
    }

    86.1%,
    100% {
        opacity: 0;
    }
}

@keyframes dynFill2 {

    0%,
    16% {
        height: 0px;
        transform: translateY(0px);
    }

    28%,
    76% {
        height: 82px;
        transform: translateY(-82px);
    }

    86%,
    100% {
        height: 0px;
        transform: translateY(0px);
    }
}

.dyn-server-2 {
    animation: dynServer2 10s infinite linear;
}

.dyn-fill-2 {
    animation: dynFill2 10s infinite linear;
}

@keyframes dynServer3 {

    0%,
    25.9% {
        opacity: 0;
    }

    26%,
    76% {
        opacity: 1;
    }

    76.1%,
    100% {
        opacity: 0;
    }
}

@keyframes dynFill3 {

    0%,
    26% {
        height: 0px;
        transform: translateY(0px);
    }

    38%,
    66% {
        height: 82px;
        transform: translateY(-82px);
    }

    76%,
    100% {
        height: 0px;
        transform: translateY(0px);
    }
}

.dyn-server-3 {
    animation: dynServer3 10s infinite linear;
}

.dyn-fill-3 {
    animation: dynFill3 10s infinite linear;
}

@keyframes dynServer4 {

    0%,
    35.9% {
        opacity: 0;
    }

    36%,
    66% {
        opacity: 1;
    }

    66.1%,
    100% {
        opacity: 0;
    }
}

@keyframes dynFill4 {

    0%,
    36% {
        height: 0px;
        transform: translateY(0px);
    }

    48%,
    56% {
        height: 82px;
        transform: translateY(-82px);
    }

    66%,
    100% {
        height: 0px;
        transform: translateY(0px);
    }
}

.dyn-server-4 {
    animation: dynServer4 10s infinite linear;
}

.dyn-fill-4 {
    animation: dynFill4 10s infinite linear;
}

/* Slide 9 Animations */
.draw-line-1,
.draw-line-2,
.draw-line-3 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dashDraw 1s forwards ease-in-out;
}

.draw-line-2 {
    animation-delay: 0.4s;
}

.draw-line-3 {
    animation-delay: 0.8s;
}

.red-fill {
    fill: rgba(248, 113, 113, 0.5);
}

.green-fill {
    fill: rgba(52, 211, 153, 0.5);
}

@keyframes flowPath {
    0% {
        stroke-dashoffset: 150;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.route-line {
    stroke: rgba(167, 139, 250, 0.4);
    stroke-width: 2;
    stroke-dasharray: 5 5;
    animation: flowPath 3s linear infinite;
}

@keyframes dotTravel {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        transform: translate(0, 0);
        opacity: 1;
    }

    90% {
        transform: translate(65px, 40px);
        opacity: 1;
    }

    100% {
        transform: translate(65px, 40px);
        opacity: 0;
    }
}

.flow-dot {
    animation: dotTravel 3s infinite linear;
}

.flow-dot-delay {
    animation-delay: 1.5s;
}

@keyframes loopQueueFill {
    0% {
        width: 10px;
    }

    25% {
        width: 60px;
    }

    /* hits threshold */
    45% {
        width: 100px;
    }

    /* continues filling while Inst 2 initializes */
    50% {
        width: 30px;
    }

    /* drops rapidly when Inst 2 is ready */
    80% {
        width: 40px;
    }

    /* stable */
    85% {
        width: 10px;
    }

    /* drops to idle */
    100% {
        width: 10px;
    }
}

.loop-queue-fill {
    animation: loopQueueFill 10s infinite linear;
}

@keyframes loopSignalUp {

    0%,
    25% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    26% {
        opacity: 1;
    }

    30% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    31%,
    100% {
        opacity: 0;
        stroke-dashoffset: 0;
    }
}

.loop-signal-up {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: loopSignalUp 10s infinite linear;
}

@keyframes loopLightning {

    0%,
    25% {
        opacity: 0;
        transform: scale(0.8);
    }

    30% {
        opacity: 1;
        transform: scale(1.1);
    }

    35%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.loop-lightning {
    transform-origin: 130px 45px;
    animation: loopLightning 10s infinite linear;
}

@keyframes loopSignalDown {

    0%,
    30% {
        stroke-dashoffset: 300;
        opacity: 0;
    }

    31% {
        opacity: 1;
    }

    35% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    36%,
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.loop-signal-down {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: loopSignalDown 10s infinite linear;
}

@keyframes loopInst2 {

    0%,
    35% {
        opacity: 0;
        transform: scale(0.8);
    }

    40%,
    85% {
        opacity: 1;
        transform: scale(1);
    }

    90%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.loop-inst-2 {
    transform-origin: 495px 155px;
    animation: loopInst2 10s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes loopInst2Box {

    0%,
    45% {
        stroke: #60a5fa;
        fill: rgba(96, 165, 250, 0.1);
    }

    45.1%,
    100% {
        stroke: #f87171;
        fill: rgba(248, 113, 113, 0.3);
    }
}

.loop-inst2-box {
    animation: loopInst2Box 10s infinite linear;
}

@keyframes loopInst2Text1 {

    0%,
    45% {
        opacity: 1;
    }

    45.1%,
    100% {
        opacity: 0;
    }
}

.loop-inst2-text1 {
    animation: loopInst2Text1 10s infinite linear;
}

@keyframes loopInst2Text2 {

    0%,
    45% {
        opacity: 0;
    }

    45.1%,
    100% {
        opacity: 1;
    }
}

.loop-inst2-text2 {
    animation: loopInst2Text2 10s infinite linear;
}

@keyframes loopInst2Req {

    0%,
    45% {
        opacity: 0;
    }

    45.1%,
    85% {
        opacity: 1;
    }

    85.1%,
    100% {
        opacity: 0;
    }
}

.loop-inst2-req {
    animation: loopInst2Req 10s infinite linear;
}

@keyframes loopReq1 {
    0% {
        transform: translate(140px, 100px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(440px, 85px);
        opacity: 1;
    }

    100% {
        transform: translate(440px, 85px);
        opacity: 0;
    }
}

.loop-req-1 {
    animation: loopReq1 1.5s infinite linear;
}

@keyframes loopReq2 {
    0% {
        transform: translate(140px, 100px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(440px, 155px);
        opacity: 1;
    }

    100% {
        transform: translate(440px, 155px);
        opacity: 0;
    }
}

.loop-req-2 {
    animation: loopReq2 1.5s infinite linear;
}

/* Slide 10 Anim A Redesign Keyframes */
@keyframes reqFlow1 {
    0% {
        transform: translate(100px, 75px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(180px, 75px);
        opacity: 1;
    }

    100% {
        transform: translate(180px, 75px);
        opacity: 0;
    }
}

.req-flow-1 {
    animation: reqFlow1 1.5s infinite linear;
}

@keyframes reqFlow2 {
    0% {
        transform: translate(280px, 80px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(350px, 80px);
        opacity: 1;
    }

    100% {
        transform: translate(350px, 80px);
        opacity: 0;
    }
}

.req-flow-2 {
    animation: reqFlow2 1.5s infinite linear;
    animation-delay: 0.5s;
}

@keyframes ackFlow {
    0% {
        transform: translate(180px, 90px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(100px, 90px);
        opacity: 1;
    }

    100% {
        transform: translate(100px, 90px);
        opacity: 0;
    }
}

.ack-flow {
    animation: ackFlow 1s infinite linear;
    animation-delay: 0.2s;
}

@keyframes pollFlow {
    0% {
        transform: translate(550px, 90px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(590px, 90px);
        opacity: 1;
    }

    100% {
        transform: translate(590px, 90px);
        opacity: 0;
    }
}

.poll-flow {
    animation: pollFlow 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes distFlow1 {
    0% {
        transform: translate(690px, 80px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(760px, 50px);
        opacity: 1;
    }

    100% {
        transform: translate(760px, 50px);
        opacity: 0;
    }
}

.dist-flow-1 {
    animation: distFlow1 1.5s infinite linear;
    animation-delay: 1s;
}

@keyframes distFlow2 {
    0% {
        transform: translate(690px, 100px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(760px, 120px);
        opacity: 1;
    }

    100% {
        transform: translate(760px, 120px);
        opacity: 0;
    }
}

.dist-flow-2 {
    animation: distFlow2 1.5s infinite linear;
    animation-delay: 1.2s;
}

@keyframes monitorScan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translateY(25px);
        opacity: 1;
    }

    100% {
        transform: translateY(25px);
        opacity: 0;
    }
}

.monitor-scan {
    animation: monitorScan 2s infinite linear;
}

@keyframes scaleSignalFlow {
    0% {
        transform: translate(460px, 160px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translate(520px, 160px);
        opacity: 1;
    }

    100% {
        transform: translate(520px, 160px);
        opacity: 0;
    }
}

.scale-signal {
    animation: scaleSignalFlow 2s infinite linear;
    animation-delay: 1s;
}

@keyframes queueTravel {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(180px);
        opacity: 0;
    }
}

.queue-dot-fast {
    animation: queueTravel 2s infinite linear;
}

.queue-dot-slow {
    animation: queueTravel 3.5s infinite linear;
}

@keyframes graphMask {
    0% {
        width: 0;
    }

    25% {
        width: 60px;
    }

    35% {
        width: 80px;
    }

    65% {
        width: 140px;
    }

    75% {
        width: 160px;
    }

    100% {
        width: 200px;
    }
}

.graph-plotter-mask {
    animation: graphMask 10s infinite linear;
}

@keyframes graphDot {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(60px, 0);
    }

    35% {
        transform: translate(80px, -80px);
    }

    65% {
        transform: translate(140px, -80px);
    }

    75% {
        transform: translate(160px, 0);
    }

    100% {
        transform: translate(200px, 0);
    }
}

.graph-plotter-dot {
    animation: graphDot 10s infinite linear;
    transform-origin: 40px 130px;
}

@keyframes batchPop {

    0%,
    25% {
        opacity: 0;
        transform: scale(0.8);
    }

    28%,
    74% {
        opacity: 1;
        transform: scale(1);
    }

    76%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.batch-instances {
    transform-origin: 470px 100px;
    animation: batchPop 10s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes batchSignal {

    0%,
    25% {
        opacity: 0;
    }

    26%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

.batch-signal-up {
    animation: batchSignal 10s infinite linear;
}

@keyframes batchSignalDown {

    0%,
    73% {
        opacity: 0;
    }

    74%,
    90% {
        opacity: 1;
    }

    91%,
    100% {
        opacity: 0;
    }
}

.batch-signal-down {
    animation: batchSignalDown 10s infinite linear;
}