/* gamelicens.ing — isometric technical docs */

:root {
    --navy: #0f172a;
    --navy-deep: #0a0f1a;
    --slate: #1e293b;
    --card: #ffffff;
    --cyan: #38bdf8;
    --border: #e2e8f0;
    --text-dark: #0f172a;
    --text-light: #e2e8f0;
    --green: #22c55e;
    --amber: #f59e0b;
    --red: #ff5f56;
    --yellow: #ffbd2e;
    --ok-green: #27c93f;

    --mono-display: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    --mono-code: 'Fira Code', 'JetBrains Mono', monospace;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text-light);
    background: var(--navy);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

code {
    font-family: var(--mono-code);
    font-size: 0.85em;
    color: var(--cyan);
    background: rgba(56, 189, 248, 0.08);
    padding: 0.05em 0.35em;
    border-radius: 3px;
    letter-spacing: 0.02em;
}

strong { color: var(--text-dark); font-weight: 600; }

/* ============ TOP NAV ============ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}
.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    font-family: var(--mono-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}
.brand::before { content: '> '; color: var(--cyan); }

.breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono-code);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar { display: none; }

.crumb {
    color: rgba(226, 232, 240, 0.45);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    white-space: nowrap;
}
.crumb.is-active {
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}
.crumb.is-done {
    color: var(--green);
}
.crumb.is-done::before {
    content: '✓ ';
    margin-right: -2px;
}
.crumb-sep {
    color: rgba(226, 232, 240, 0.25);
    font-family: var(--mono-display);
}

main { padding-top: 0; }

/* ============ HERO / TERMINAL OPEN ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 64px;
    position: relative;
    background:
        radial-gradient(circle at 20% 20%, rgba(56,189,248,0.06), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56,189,248,0.04), transparent 50%),
        var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.terminal {
    width: min(720px, 92vw);
    background: var(--navy-deep);
    border: 1px solid var(--slate);
    border-radius: 8px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.04) inset,
        0 30px 60px -20px rgba(0,0,0,0.6),
        0 0 0 1px rgba(56,189,248,0.06);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #1a2235, #131c2e);
    border-bottom: 1px solid var(--slate);
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red { background: var(--red); }
.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--ok-green); }

.terminal-title {
    margin-left: auto;
    font-family: var(--mono-code);
    font-size: 0.72rem;
    color: rgba(226,232,240,0.5);
    letter-spacing: 0.04em;
}

.terminal-body {
    padding: 24px 22px 30px;
    font-family: var(--mono-display);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.85;
    min-height: 200px;
}

.term-line {
    margin: 0;
    color: var(--text-light);
    white-space: pre-wrap;
    word-break: break-word;
}
.prompt {
    color: var(--green);
    font-weight: 700;
    margin-right: 0.6ch;
}
.term-out {
    color: rgba(226,232,240,0.7);
    font-weight: 400;
    padding-left: 1.4ch;
}
.ok {
    color: var(--green);
    margin-right: 0.6ch;
}

.cursor {
    display: inline-block;
    width: 0.6ch;
    height: 1.1em;
    background: var(--cyan);
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-meta {
    margin-top: 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 2;
}
.meta-label {
    font-family: var(--mono-code);
    font-size: 0.78rem;
    color: rgba(226,232,240,0.45);
    letter-spacing: 0.06em;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.scroll-indicator span {
    width: 14px;
    height: 2px;
    background: var(--cyan);
    opacity: 0.3;
    border-radius: 2px;
    animation: scrollFade 1.6s ease-in-out infinite;
}
.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollFade {
    0%, 100% { opacity: 0.2; transform: translateY(-2px); }
    50% { opacity: 1; transform: translateY(2px); }
}

/* ============ TIMELINE SECTION ============ */
.timeline-section {
    position: relative;
    padding: 80px 0 120px;
    background: var(--navy);
}

.timeline-grid {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    grid-auto-rows: min-content;
    gap: 80px 0;
    align-items: start;
}

.timeline-spine {
    grid-column: 2;
    grid-row: 1 / -1;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.spine-base, .spine-active {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: var(--cyan);
}
.spine-base {
    height: 100%;
    opacity: 0.25;
}
.spine-active {
    height: 0;
    opacity: 1;
    box-shadow: 0 0 12px rgba(56,189,248,0.6);
    transition: none;
}

/* ============ DOC CARDS ============ */
.doc-card {
    position: relative;
    background: var(--card);
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    max-width: 460px;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.05),
        0 12px 32px -16px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.card-left {
    grid-column: 1;
    justify-self: end;
    transform: translateX(-30px);
}
.card-right {
    grid-column: 3;
    justify-self: start;
    transform: translateX(30px);
}

.doc-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.card-head {
    margin-bottom: 14px;
}
.card-tag {
    display: inline-block;
    font-family: var(--mono-code);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--cyan);
    background: rgba(56, 189, 248, 0.08);
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: lowercase;
}
.card-tag.amber { color: var(--amber); background: rgba(245, 158, 11, 0.1); }
.card-tag.green { color: var(--green); background: rgba(34, 197, 94, 0.1); }

.card-title {
    font-family: var(--mono-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.card-body {
    font-size: clamp(0.95rem, 1.05vw, 1.04rem);
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
}

.card-list {
    list-style: none;
    border-top: 1px dashed var(--border);
    padding-top: 14px;
    display: grid;
    gap: 6px;
}
.card-list li {
    font-family: var(--mono-code);
    font-size: 0.8rem;
    color: #64748b;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 16px;
}
.card-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

/* ============ STEP MARKERS (on spine) ============ */
.step-marker {
    position: absolute;
    top: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono-code);
    font-weight: 500;
    font-size: 0.78rem;
    box-shadow:
        0 0 0 4px var(--navy),
        0 0 0 5px rgba(56,189,248,0.3),
        0 0 16px rgba(56,189,248,0.5);
    transform: scale(0.5);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    z-index: 5;
}
.card-left .step-marker { right: -76px; }
.card-right .step-marker { left: -76px; }

.is-visible .step-marker {
    transform: scale(1);
    opacity: 1;
}

/* ============ CONNECTORS ============ */
.card-connector {
    position: absolute;
    top: 38px;
    height: 2px;
    width: 60px;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.connector-right { right: -64px; }
.connector-left { left: -64px; flex-direction: row-reverse; }

.connector-line {
    flex: 1;
    height: 0;
    border-top: 1px dashed var(--cyan);
    opacity: 0.55;
    background-size: 10px 1px;
}
.connector-arrow {
    width: 0;
    height: 0;
    border-style: solid;
}
.connector-right .connector-arrow {
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent var(--cyan);
}
.connector-left .connector-arrow {
    border-width: 5px 8px 5px 0;
    border-color: transparent var(--cyan) transparent transparent;
}

/* ============ ISO ELEMENTS IN CARDS ============ */
.iso {
    position: absolute;
    top: 22px;
    width: 70px;
    height: 70px;
    perspective: 600px;
}
.card-left .iso { right: 24px; }
.card-right .iso { right: 24px; }

.iso-container {
    width: 100%;
    height: 100%;
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
    position: relative;
}

/* doc stack */
.iso-stack .paper {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.18);
    border: 1.5px solid var(--cyan);
    left: 10px; top: 10px;
}
.iso-stack .p1 { transform: translateZ(0); opacity: 0.4; }
.iso-stack .p2 { transform: translateZ(6px) translate(-3px, -3px); opacity: 0.7; }
.iso-stack .p3 { transform: translateZ(12px) translate(-6px, -6px); opacity: 1; }

/* stamp */
.iso-stamp .stamp-base {
    position: absolute;
    width: 44px; height: 44px;
    left: 13px; top: 13px;
    background: rgba(56,189,248,0.2);
    border: 1.5px solid var(--cyan);
    border-radius: 4px;
}
.iso-stamp .stamp-handle {
    position: absolute;
    width: 24px; height: 24px;
    left: 23px; top: 5px;
    background: rgba(56,189,248,0.5);
    border: 1.5px solid var(--cyan);
    border-radius: 4px;
    transform: translateZ(20px);
}
.iso-stamp .stamp-pad {
    position: absolute;
    width: 56px; height: 8px;
    left: 7px; top: 50px;
    background: rgba(245,158,11,0.4);
    border: 1.5px solid var(--amber);
}

/* shield */
.iso-shield .shield-back {
    position: absolute;
    width: 50px; height: 56px;
    left: 10px; top: 8px;
    background: rgba(56,189,248,0.2);
    border: 1.5px solid var(--cyan);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.iso-shield .shield-face {
    position: absolute;
    width: 40px; height: 46px;
    left: 15px; top: 13px;
    background: rgba(56,189,248,0.5);
    transform: translateZ(8px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.iso-shield .shield-check {
    position: absolute;
    width: 14px; height: 8px;
    left: 28px; top: 28px;
    border-left: 2.5px solid var(--green);
    border-bottom: 2.5px solid var(--green);
    transform: translateZ(14px) rotate(-45deg);
}

/* handshake */
.iso-shake .hand {
    position: absolute;
    width: 22px; height: 12px;
    background: rgba(56,189,248,0.4);
    border: 1.5px solid var(--cyan);
    top: 30px;
}
.iso-shake .hand-a { left: 5px; transform: translateZ(8px); }
.iso-shake .hand-b { right: 5px; transform: translateZ(8px); }
.iso-shake .hand-link {
    position: absolute;
    width: 18px; height: 6px;
    left: 26px; top: 33px;
    background: var(--cyan);
    transform: translateZ(14px);
}

/* trophy */
.iso-trophy .trophy-cup {
    position: absolute;
    width: 32px; height: 26px;
    left: 19px; top: 6px;
    background: rgba(245,158,11,0.4);
    border: 1.5px solid var(--amber);
    border-radius: 4px 4px 12px 12px;
    transform: translateZ(20px);
}
.iso-trophy .trophy-stem {
    position: absolute;
    width: 8px; height: 14px;
    left: 31px; top: 30px;
    background: rgba(245,158,11,0.5);
    border: 1.5px solid var(--amber);
    transform: translateZ(10px);
}
.iso-trophy .trophy-base {
    position: absolute;
    width: 36px; height: 8px;
    left: 17px; top: 44px;
    background: rgba(245,158,11,0.6);
    border: 1.5px solid var(--amber);
}

/* ============ ASSEMBLY VIEW ============ */
.assembly {
    background: var(--slate);
    padding: 110px 24px;
    position: relative;
    border-top: 1px solid rgba(56,189,248,0.1);
    border-bottom: 1px solid rgba(56,189,248,0.1);
    overflow: hidden;
}
.assembly-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.assembly-head {
    margin-bottom: 64px;
}
.assembly-head .card-tag {
    color: var(--cyan);
    background: rgba(56,189,248,0.12);
}
.assembly-title {
    font-family: var(--mono-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-light);
    margin: 12px auto 14px;
    letter-spacing: -0.01em;
}
.assembly-sub {
    color: rgba(226,232,240,0.65);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    max-width: 620px;
    margin: 0 auto;
}

.iso-city {
    position: relative;
    width: min(720px, 92vw);
    height: 420px;
    margin: 0 auto;
}
.iso-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotateX(60deg) rotateZ(-45deg) scale(1.2);
    transform-origin: center center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

.iso-block {
    position: absolute;
    width: 90px;
    height: 90px;
    transform-style: preserve-3d;
}
.iso-block .face {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 1px solid var(--cyan);
}
.iso-block .face-top {
    background: rgba(56,189,248,0.32);
    transform: rotateX(60deg) rotateZ(-45deg) translateZ(45px);
}
.iso-block .face-left {
    background: rgba(56,189,248,0.18);
    transform: rotateX(60deg) rotateZ(-45deg) rotateY(-90deg) translateZ(-45px);
}
.iso-block .face-right {
    background: rgba(56,189,248,0.10);
    transform: rotateX(60deg) rotateZ(-45deg) rotateX(-90deg) translateZ(-45px);
}
.block-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono-code);
    font-size: 0.78rem;
    color: var(--text-light);
    transform: rotateX(60deg) rotateZ(-45deg) translateZ(46px);
    pointer-events: none;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.iso-b1 { left: 8%; top: 50%; }
.iso-b2 { left: 26%; top: 38%; }
.iso-b3 { left: 44%; top: 46%; }
.iso-b4 { left: 62%; top: 32%; }
.iso-b5 { left: 80%; top: 40%; }

.iso-b3 .face { border-color: var(--amber); }
.iso-b3 .face-top { background: rgba(245,158,11,0.28); }
.iso-b3 .face-left { background: rgba(245,158,11,0.16); }
.iso-b3 .face-right { background: rgba(245,158,11,0.08); }

.iso-b5 .face { border-color: var(--green); }
.iso-b5 .face-top { background: rgba(34,197,94,0.3); }
.iso-b5 .face-left { background: rgba(34,197,94,0.18); }
.iso-b5 .face-right { background: rgba(34,197,94,0.1); }

.iso-wires {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: scale(1.05);
}
.iso-wires path {
    stroke-dasharray: 6 4;
    animation: wireFlow 2.4s linear infinite;
}
@keyframes wireFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -40; }
}

.legend {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    text-align: left;
    border-top: 1px solid rgba(226,232,240,0.1);
    padding-top: 32px;
}
.legend > div {
    padding: 8px 0;
}
.legend dt {
    font-family: var(--mono-code);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(226,232,240,0.5);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.legend dd {
    font-family: var(--mono-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cyan);
}

/* ============ RUNTIME / CLOSING ============ */
.runtime {
    min-height: 80vh;
    padding: 100px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    background:
        radial-gradient(circle at 50% 100%, rgba(34,197,94,0.08), transparent 60%),
        var(--navy);
}

.term-final {
    color: var(--green);
    font-weight: 500;
}
.dots {
    display: inline-flex;
    gap: 1px;
    margin-left: 2px;
}
.dots span {
    color: var(--green);
    animation: dotsPulse 1.4s ease-in-out infinite;
    opacity: 0.3;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotsPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.runtime-building {
    position: relative;
    width: 200px;
    height: 200px;
    perspective: 600px;
}
.rb-glow {
    position: absolute;
    inset: 25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.4), transparent 70%);
    filter: blur(20px);
    animation: rbPulse 2.8s ease-in-out infinite;
}
@keyframes rbPulse {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}
.rb-stack {
    width: 100%;
    height: 100%;
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
}
.rb-block {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(56,189,248,0.3);
    border: 1.5px solid var(--cyan);
    left: 60px;
    top: 60px;
}
.rb-1 { transform: translateZ(10px); opacity: 0.45; }
.rb-2 { transform: translateZ(28px); opacity: 0.7; width: 64px; height: 64px; left: 68px; top: 68px;}
.rb-3 { transform: translateZ(46px); opacity: 1; width: 48px; height: 48px; left: 76px; top: 76px;}

/* ============ FOOTER ============ */
.foot {
    border-top: 1px solid rgba(56,189,248,0.1);
    padding: 28px 32px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono-code);
    font-size: 0.78rem;
    color: rgba(226,232,240,0.45);
}
.foot-brand { color: var(--cyan); }
.foot-brand::before { content: '> '; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .topbar-inner { padding: 12px 18px; gap: 16px; }
    .breadcrumbs { font-size: 0.7rem; gap: 6px; }
    .timeline-grid {
        grid-template-columns: 40px 1fr;
        padding: 0 18px;
        gap: 56px 0;
    }
    .timeline-spine { grid-column: 1; grid-row: 1 / -1; }
    .spine-base, .spine-active { left: 50%; }

    .doc-card, .card-left, .card-right {
        grid-column: 2;
        justify-self: stretch;
        max-width: none;
        transform: translateX(20px);
    }
    .card-left .step-marker, .card-right .step-marker {
        left: -52px;
        right: auto;
    }
    .card-connector { display: none; }
    .iso { display: none; }
    .iso-city { height: 320px; }
    .iso-block { width: 70px; height: 70px; }
    .iso-block .face { width: 70px; height: 70px; }
    .iso-block .face-top { transform: rotateX(60deg) rotateZ(-45deg) translateZ(35px); }
    .iso-block .face-left { transform: rotateX(60deg) rotateZ(-45deg) rotateY(-90deg) translateZ(-35px); }
    .iso-block .face-right { transform: rotateX(60deg) rotateZ(-45deg) rotateX(-90deg) translateZ(-35px); }
    .block-label { transform: rotateX(60deg) rotateZ(-45deg) translateZ(36px); }
    .foot { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
    .terminal-body { padding: 18px 14px 22px; font-size: 0.85rem; }
    .breadcrumbs .crumb { font-size: 0.65rem; }
    .runtime-building { width: 160px; height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
