/* ═══════════════════════════════════════════════════════
   Dynamic graphics in the 3-tab toggle (Mehr Termine /
   Mehr Zeit / Mehr Planbarkeit) — 1:1 aus User-Embeds
═══════════════════════════════════════════════════════ */

/* ─── Shared Icon-Badge über Grafik (Tab 1 & Tab 2) ─── */
.graphic-icon-top {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #e6f2ff;
    color: #3B6BF8;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(59,107,248,0.25);
    z-index: 25;
}
.graphic-icon-top svg { width: 22px; height: 22px; }
.graphic-icon-top--pulse { animation: iconPulse 2s ease-in-out infinite; }
.graphic-icon-top--spin svg { animation: iconSpin 6s linear infinite; }
@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 10px 24px rgba(59,107,248,0.25); }
    50%      { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 14px 32px rgba(59,107,248,0.35); }
}
@keyframes iconSpin { to { transform: rotate(360deg); } }

/* ─── Tab 1: Kalender mit sich füllenden Slots + Notifications ─── */
.calendar-graphic {
    position: relative;
    width: 100%; min-height: 360px;
    display: flex; justify-content: center; align-items: center;
    padding: 24px;
}
.cal-notify {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
}
.cal-notify__item {
    position: absolute;
    width: min(230px, 62%);
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(27,45,92,0.06);
    box-shadow: 0 10px 30px rgba(27,45,92,0.18);
    display: flex; align-items: center; gap: 10px;
    opacity: 0;
}
.cal-notify__item.is-left {
    left: 6px;
    transform: translateX(-24px) scale(0.9);
    animation: calNotifyInLeft 0.4s cubic-bezier(0.2,0.8,0.2,1) forwards,
               calNotifyOutLeft 0.35s ease-in 2.6s forwards;
}
.cal-notify__item.is-right {
    right: 6px;
    transform: translateX(24px) scale(0.9);
    animation: calNotifyInRight 0.4s cubic-bezier(0.2,0.8,0.2,1) forwards,
               calNotifyOutRight 0.35s ease-in 2.6s forwards;
}
@keyframes calNotifyInLeft  { to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes calNotifyOutLeft { to { opacity: 0; transform: translateX(-24px) scale(0.9); } }
@keyframes calNotifyInRight { to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes calNotifyOutRight{ to { opacity: 0; transform: translateX(24px) scale(0.9); } }
.cal-notify__icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 50%;
    background: #3B6BF8;
    color: #fff; font-weight: 700; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
}
.cal-notify__body { flex: 1; min-width: 0; }
.cal-notify__name { font-weight: 700; font-size: 12.5px; color: #18264e; line-height: 1.2; }
.cal-notify__role { font-size: 10.5px; color: rgba(27,45,92,0.55); margin-top: 1px; }
.cal-notify__msg { font-size: 11.5px; color: rgba(27,45,92,0.75); margin-top: 4px; font-weight: 500; }
.calendar-graphic__card {
    width: 100%; max-width: 360px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(27,45,92,0.12);
    padding: 22px 22px 18px;
    border: 1px solid rgba(27,45,92,0.06);
}
.calendar-graphic__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.calendar-graphic__title {
    font-weight: 700; color: #18264e; font-size: 15px;
}
.calendar-graphic__dots { display: flex; gap: 5px; }
.calendar-graphic__dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(27,45,92,0.15);
}
.calendar-graphic__week {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 6px; margin-bottom: 8px;
    font-size: 11px; font-weight: 700;
    color: rgba(27,45,92,0.5);
    text-transform: uppercase; letter-spacing: 0.06em;
    text-align: center;
}
.calendar-graphic__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.calendar-graphic__slot {
    aspect-ratio: 1 / 1.1;
    border-radius: 8px;
    background: rgba(238,242,255,0.5);
    border: 1px solid rgba(27,45,92,0.04);
    transition: background 0.5s cubic-bezier(0.2,0.8,0.2,1), transform 0.5s;
    position: relative;
}
.calendar-graphic__slot.is-filled {
    background: #3B6BF8;
    border-color: #3B6BF8;
    box-shadow: 0 6px 16px rgba(59,107,248,0.35);
    animation: slotPop 0.45s cubic-bezier(0.3, 1.6, 0.4, 1);
}
@keyframes slotPop {
    0% { transform: scale(0.6); opacity: 0.4; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
.calendar-graphic__slot.is-filled::after {
    content: "";
    position: absolute; top: 50%; left: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
.calendar-graphic__meta {
    margin-top: 16px;
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #18264e; font-weight: 600;
}
.calendar-graphic__meta-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #3B6BF8;
    box-shadow: 0 0 0 4px rgba(59,107,248,0.15);
    animation: calPulse 1.6s ease-in-out infinite;
}
@keyframes calPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(59,107,248,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(59,107,248,0.08); }
}

/* ─── Legacy Tab 1 (envelope) — nicht mehr genutzt, kann raus ─── */
.vertrieb-container {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(80px, 15vw, 120px) clamp(40px, 8vw, 60px);
    position: relative;
    overflow: visible;
    z-index: 1;
}
.vertrieb-container .content-wrapper {
    text-align: center;
    max-width: 500px;
    width: 100%;
    z-index: 10;
    position: relative;
}
.vertrieb-container .email-flow-container {
    display: inline-block;
    margin: 1.5rem 0;
    position: relative;
    width: clamp(200px, 40vw, 300px);
    height: clamp(140px, 28vw, 210px);
}
.vertrieb-container .email-envelope { width: 100%; height: 100%; position: relative; }
.vertrieb-container .envelope-body {
    width: 80%; height: 60%;
    background: white; border: 3px solid #3B6BF8;
    border-radius: clamp(8px, 1.5vw, 12px);
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.vertrieb-container .envelope-flap {
    width: 0; height: 0;
    border-left: clamp(60px, 12vw, 90px) solid transparent;
    border-right: clamp(60px, 12vw, 90px) solid transparent;
    border-top: clamp(40px, 8vw, 60px) solid #3B6BF8;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -95%);
    transform-origin: center top;
    animation: flapOpen 2s ease-in-out infinite;
}
@keyframes flapOpen {
    0%, 100% { transform: translate(-50%, -95%) rotateX(0deg); }
    50% { transform: translate(-50%, -95%) rotateX(-30deg); }
}
.vertrieb-container .popup-container {
    position: absolute; pointer-events: none;
    width: 100%; height: 100%; top: 0; left: 0;
    z-index: 50; overflow: visible;
}
.vertrieb-container .popup {
    position: absolute;
    background: white;
    border-radius: clamp(10px, 2vw, 14px);
    padding: clamp(12px, 2.5vw, 18px);
    display: flex; align-items: center;
    gap: clamp(10px, 2vw, 14px);
    opacity: 0;
    transform: translateY(30px) scale(0.85);
    width: clamp(220px, 50vw, 340px);
    border: 2px solid #3B6BF8;
    box-shadow: 0 4px 20px rgba(59, 107, 248, 0.2);
}
.vertrieb-container .popup-icon {
    width: clamp(36px, 7vw, 48px);
    height: clamp(36px, 7vw, 48px);
    background: #3B6BF8;
    border-radius: clamp(8px, 1.5vw, 10px);
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0;
}
.vertrieb-container .popup-icon svg { width: 60%; height: 60%; fill: white; }
.vertrieb-container .popup-content { flex: 1; text-align: left; min-width: 0; }
.vertrieb-container .popup-title {
    font-weight: 700; color: #1a202c;
    font-size: clamp(0.85rem, 1.7vw, 1.05rem);
    margin-bottom: 2px; line-height: 1.3;
}
.vertrieb-container .popup-role {
    font-weight: 500; color: #4a5568;
    font-size: clamp(0.75rem, 1.5vw, 0.88rem);
    margin-bottom: 6px; line-height: 1.3;
}
.vertrieb-container .popup-text {
    color: #4a5568;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    line-height: 1.4; font-weight: 500;
}
@keyframes popupSlideIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.85); }
    15%, 85% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-30px) scale(0.85); }
}
.vertrieb-container .popup.animate { animation: popupSlideIn 3.5s ease-out; }
.vertrieb-container .flying-emails-layer {
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0; pointer-events: none;
    z-index: 5; overflow: visible;
}
.vertrieb-container .flying-email {
    position: absolute;
    width: clamp(35px, 7vw, 50px);
    height: clamp(24.5px, 4.9vw, 35px);
    opacity: 0;
}
.vertrieb-container .flying-email svg { width: 100%; height: 100%; }
@keyframes flyOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.8); }
}
@media (max-width: 600px) {
    .vertrieb-container { min-height: 400px; }
    .vertrieb-container .popup { width: clamp(200px, 85vw, 300px); }
}

/* ─── Tab 2: Zeit-Donut mit Counter ─── */
.time-graphic {
    position: relative;
    width: 100%; min-height: 360px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 24px; gap: 18px;
}
.time-graphic__donut {
    width: clamp(220px, 40vw, 280px);
    height: auto;
    filter: drop-shadow(0 16px 32px rgba(59,107,248,0.2));
}
.time-graphic__center {
    position: absolute;
    top: calc(50% - 36px); left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}
.time-graphic__num {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900; color: #18264e; line-height: 1;
    letter-spacing: -0.02em;
}
.time-graphic__label {
    font-size: 12px; color: rgba(27,45,92,0.55);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; margin-top: 6px;
}
.time-graphic__chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.time-graphic__chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(238,242,255,0.7);
    color: #18264e;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px; font-weight: 600;
}
.time-graphic__chip .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(27,45,92,0.25);
}
.time-graphic__chip .dot--on { background: #3B6BF8; box-shadow: 0 0 0 3px rgba(59,107,248,0.18); }
.time-graphic__chip--muted { opacity: 0.55; }

/* ─── Tab 2 LEGACY (Waage — nicht mehr genutzt) ─── */
.qualitaet-container {
    width: 100%;
    min-height: 400px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: clamp(20px, 5vw, 40px);
    position: relative; overflow: hidden;
    z-index: 10;
}
.qualitaet-container .content-wrapper {
    text-align: center; max-width: 500px; width: 100%; z-index: 10;
}
.qualitaet-container .scale-container {
    display: inline-block; margin: 1.5rem 0;
    position: relative;
    width: clamp(220px, 44vw, 320px);
    height: clamp(140px, 28vw, 200px);
    z-index: 15;
}
.qualitaet-container .scale-base {
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 16vw, 120px);
    height: clamp(12px, 2.4vw, 18px);
    background: #3B6BF8;
    border-radius: clamp(6px, 1.2vw, 9px);
}
.qualitaet-container .scale-pole {
    position: absolute; bottom: clamp(12px, 2.4vw, 18px);
    left: 50%; transform: translateX(-50%);
    width: clamp(6px, 1.2vw, 8px);
    height: clamp(60px, 12vw, 90px);
    background: #3B6BF8;
    border-radius: clamp(3px, 0.6vw, 4px);
}
.qualitaet-container .scale-beam {
    position: absolute; top: clamp(20px, 4vw, 30px); left: 50%;
    width: 90%; height: clamp(6px, 1.2vw, 8px);
    background: #3B6BF8;
    border-radius: clamp(3px, 0.6vw, 4px);
    transform-origin: center;
    animation: tilt 3s ease-in-out infinite;
}
@keyframes tilt {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}
.qualitaet-container .scale-pan {
    position: absolute;
    width: clamp(70px, 14vw, 100px);
    height: clamp(8px, 1.6vw, 12px);
    background: white; border: 3px solid #3B6BF8;
    border-radius: clamp(4px, 0.8vw, 6px);
    top: clamp(50px, 10vw, 75px);
}
.qualitaet-container .scale-pan.left { left: 0; animation: panLeft 3s ease-in-out infinite; }
.qualitaet-container .scale-pan.right { right: 0; animation: panRight 3s ease-in-out infinite; }
@keyframes panLeft { 0%, 100% { transform: translateY(8px); } 50% { transform: translateY(-8px); } }
@keyframes panRight { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
.qualitaet-container .scale-chain {
    position: absolute; width: 2px;
    height: clamp(25px, 5vw, 35px);
    background: #3B6BF8;
    top: clamp(25px, 5vw, 37px);
}
.qualitaet-container .scale-chain.left { left: 50%; }
.qualitaet-container .scale-chain.right { right: 50%; }
.qualitaet-container .scale-label {
    position: absolute;
    font-size: clamp(0.65rem, 1.3vw, 0.85rem);
    font-weight: 700; color: #1a202c;
    white-space: nowrap; background: white;
    padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.6vw, 12px);
    border-radius: clamp(6px, 1.2vw, 8px);
    border: 2px solid #3B6BF8;
}
.qualitaet-container .scale-label.quantity { top: clamp(75px, 15vw, 110px); left: -10px; color: #718096; }
.qualitaet-container .scale-label.quality { top: clamp(75px, 15vw, 110px); right: -10px; color: #3B6BF8; box-shadow: 0 4px 12px rgba(59, 107, 248, 0.2); }

.qualitaet-container .call-icons-container {
    position: absolute; width: 100%; height: 100%;
    pointer-events: none; z-index: 8;
}
.qualitaet-container .call-icon {
    position: absolute;
    width: clamp(32px, 6.4vw, 48px);
    height: clamp(32px, 6.4vw, 48px);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    opacity: 0;
}
.qualitaet-container .call-icon.cold { background: #e2e8f0; border: 2px solid #cbd5e0; animation: floatCold 4s ease-in-out infinite; }
.qualitaet-container .call-icon.warm { background: #3B6BF8; border: 2px solid #2a5ae0; box-shadow: 0 4px 12px rgba(59, 107, 248, 0.3); animation: floatWarm 4s ease-in-out infinite; }
.qualitaet-container .call-icon svg { width: 60%; height: 60%; }
.qualitaet-container .call-icon.cold svg { fill: #718096; }
.qualitaet-container .call-icon.warm svg { fill: white; }
@keyframes floatCold {
    0% { opacity: 0; transform: translate(0,0) scale(0.8); }
    20%, 80% { opacity: 0.4; transform: translate(var(--tx), var(--ty)) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), calc(var(--ty) + 20px)) scale(0.8); }
}
@keyframes floatWarm {
    0% { opacity: 0; transform: translate(0,0) scale(0.8); }
    20%, 80% { opacity: 1; transform: translate(var(--tx), var(--ty)) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), calc(var(--ty) - 20px)) scale(0.8); }
}

.qualitaet-container .stats-container {
    display: flex; justify-content: center;
    gap: clamp(8px, 1.6vw, 16px);
    margin-top: 1.5rem; flex-wrap: wrap;
    position: relative; z-index: 16;
}
.qualitaet-container .stat-badge {
    background: white; border: 2px solid #3B6BF8;
    border-radius: clamp(8px, 1.6vw, 12px);
    padding: clamp(8px, 1.6vw, 12px) clamp(12px, 2.4vw, 18px);
    display: flex; align-items: center;
    gap: clamp(6px, 1.2vw, 10px);
    animation: pulse 2s ease-in-out infinite;
}
.qualitaet-container .stat-badge:nth-child(2) { animation-delay: 0.3s; }
.qualitaet-container .stat-badge:nth-child(3) { animation-delay: 0.6s; }
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(59, 107, 248, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 4px 16px rgba(59, 107, 248, 0.3); }
}
.qualitaet-container .stat-icon {
    width: clamp(20px, 4vw, 28px);
    height: clamp(20px, 4vw, 28px);
    background: #3B6BF8; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
}
.qualitaet-container .stat-icon svg { width: 60%; height: 60%; fill: white; }
.qualitaet-container .stat-text { font-size: clamp(0.7rem, 1.4vw, 0.85rem); font-weight: 700; color: #1a202c; }
@media (max-width: 600px) {
    .qualitaet-container { min-height: 300px; }
    .qualitaet-container .scale-label { font-size: 0.6rem; padding: 3px 6px; }
    .qualitaet-container .stats-container { gap: 6px; }
}

/* ─── Tab 3: Glücksspiel vs System ─── */
.system-container {
    width: 100%; min-height: 360px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 24px;
    position: relative; overflow: hidden;
    background: transparent; z-index: 10;
}
.system-container .content-wrapper { text-align: center; max-width: 600px; width: 100%; z-index: 10; }
.system-container .comparison-container {
    display: flex; gap: clamp(16px, 3vw, 24px);
    margin: 2rem 0; width: 100%;
    justify-content: center; flex-wrap: wrap;
}
.system-container .comparison-box {
    flex: 1; min-width: clamp(140px, 30vw, 200px);
    background: white;
    border-radius: clamp(12px, 2.4vw, 16px);
    padding: clamp(16px, 3vw, 24px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative; overflow: hidden;
}
.system-container .comparison-box.chaos { border: 3px solid #e2e8f0; }
.system-container .comparison-box.system { border: 3px solid #3B6BF8; box-shadow: 0 6px 24px rgba(0,136,255,0.2); }
.system-container .bg-symbol {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: bold; opacity: 0;
    pointer-events: none; z-index: 0;
}
.system-container .bg-symbol.x-symbol { color: #fc8181; animation: symbolAppearX 2s ease-in-out infinite; }
.system-container .bg-symbol.euro-symbol { color: #63b3ed; animation: symbolAppearEuro 2s ease-in-out infinite; }
@keyframes symbolAppearX {
    0% { opacity: 0; transform: translate(-50%,-50%) scale(0.5) rotate(0deg); }
    50% { opacity: 0.3; transform: translate(-50%,-50%) scale(1) rotate(180deg); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(0.5) rotate(360deg); }
}
@keyframes symbolAppearEuro {
    0% { opacity: 0; transform: translate(-50%,-50%) scale(0.5); }
    50% { opacity: 0.25; transform: translate(-50%,-50%) scale(1.2); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(0.5); }
}
.system-container .box-icon {
    width: clamp(48px, 9vw, 64px);
    height: clamp(48px, 9vw, 64px);
    margin: 0 auto clamp(12px, 2.4vw, 16px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.system-container .chaos .box-icon { background: #fee; animation: diceRoll 2s ease-in-out infinite; }
.system-container .system .box-icon { background: #e6f2ff; animation: gearRotate 3s linear infinite; }
@keyframes diceRoll {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(180deg); }
    50% { transform: translateY(0) rotate(360deg); }
    75% { transform: translateY(-15px) rotate(540deg); }
    100% { transform: translateY(0) rotate(720deg); }
}
@keyframes gearRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.system-container .box-title {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700; margin-bottom: clamp(8px, 1.6vw, 12px);
}
.system-container .chaos .box-title { color: #e53e3e; }
.system-container .system .box-title { color: #3B6BF8; }
.system-container .box-description {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: #718096; line-height: 1.5;
}
.system-container .floating-elements {
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0; pointer-events: none;
}
.system-container .floating-item {
    position: absolute; opacity: 0;
    font-size: clamp(1rem, 2vw, 1.3rem);
    animation: floatAround 4s ease-in-out infinite;
}
.system-container .floating-item.chaos { animation: floatChaotic 3s ease-in-out infinite; }
@keyframes floatAround {
    0%, 100% { opacity: 0; transform: translate(0,0) rotate(0deg); }
    25% { opacity: 0.6; }
    50% { opacity: 1; transform: translate(var(--tx), var(--ty)) rotate(360deg); }
    75% { opacity: 0.6; }
}
@keyframes floatChaotic {
    0%, 100% { opacity: 0; transform: translate(0,0) rotate(0deg) scale(1); }
    25% { opacity: 0.4; transform: translate(calc(var(--tx)*0.5), calc(var(--ty)*0.7)) rotate(180deg) scale(1.2); }
    50% { opacity: 0.8; transform: translate(var(--tx), var(--ty)) rotate(-90deg) scale(0.8); }
    75% { opacity: 0.5; transform: translate(calc(var(--tx)*0.8), calc(var(--ty)*0.3)) rotate(270deg) scale(1.1); }
}
@media (max-width: 600px) { .system-container .comparison-container { flex-direction: column; } }
