    :root {
      --bg: #0e1a2b;
      --bg2: #13243d;
      --text: #f4f7fb;
      --muted: #b8c2d1;
      --accent: #ffb703;
      --card: rgba(8, 16, 28, 0.50);
    }

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

    body {
      min-height: 100vh;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 183, 3, 0.16), transparent 38%),
        radial-gradient(circle at 80% 10%, rgba(142, 202, 230, 0.12), transparent 34%),
        linear-gradient(135deg, var(--bg), var(--bg2));
      padding: 32px 16px 64px;
    }

    header {
      text-align: center;
      margin-bottom: 48px;
    }

    .tag {
      display: inline-block;
      margin-bottom: 14px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 183, 3, 0.18);
      color: #ffe2a1;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .brand { color: var(--accent); }

    header p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.6;
      max-width: 520px;
      margin: 0 auto;
    }

    /* ── scene grid ── */
    .scenes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      max-width: 960px;
      margin: 0 auto;
    }

    .scene {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      background: var(--card);
      backdrop-filter: blur(3px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.28);
      height: 260px;
    }

    .scene-label {
      position: absolute;
      bottom: 12px;
      left: 0;
      right: 0;
      text-align: center;
      font-size: 0.85rem;
      color: var(--muted);
      letter-spacing: 0.04em;
      z-index: 5;
    }

    /* ═══════════════════════════════════
       1 ─ SISYPHUS: pushing rock uphill
       ═══════════════════════════════════ */
    .hill {
      position: absolute;
      bottom: 0; right: -20px;
      width: 130%;
      height: 65%;
      background: linear-gradient(145deg, #2a3d29, #1b2e1a);
      clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
    }

    .sisyphus-group {
      position: absolute;
      bottom: 18%;
      left: 8%;
      animation: climbHill 4s ease-in-out infinite;
    }

    /* the person */
    .pusher {
      position: absolute;
      bottom: 0;
      left: -30px;
    }
    .pusher .head {
      width: 16px; height: 16px;
      background: #ffcc70;
      border-radius: 50%;
      margin: 0 auto 2px;
    }
    .pusher .torso {
      width: 10px; height: 22px;
      background: #e06040;
      border-radius: 3px;
      margin: 0 auto;
      transform: rotate(30deg);
      transform-origin: bottom center;
    }
    .pusher .legs {
      width: 20px; height: 14px;
      margin: 0 auto;
    }
    .pusher .legs::before,
    .pusher .legs::after {
      content: '';
      position: absolute;
      bottom: -12px;
      width: 5px; height: 18px;
      background: #5576a0;
      border-radius: 2px;
    }
    .pusher .legs::before { left: 2px; transform: rotate(-10deg); }
    .pusher .legs::after  { left: 14px; transform: rotate(15deg); animation: legMove 0.6s ease-in-out infinite alternate; }

    /* the rock */
    .rock {
      width: 40px; height: 38px;
      background: radial-gradient(circle at 35% 35%, #9a9a8a, #5e5e50);
      border-radius: 42% 58% 50% 50% / 55% 45% 55% 45%;
      box-shadow: inset -4px -4px 8px rgba(0,0,0,0.3);
      animation: rockRoll 4s linear infinite;
    }

    @keyframes climbHill {
      0%   { transform: translate(0, 0); }
      50%  { transform: translate(140px, -90px); }
      52%  { transform: translate(140px, -90px); }
      100% { transform: translate(0, 0); }
    }

    @keyframes rockRoll {
      0%   { transform: rotate(0deg); }
      50%  { transform: rotate(360deg); }
      100% { transform: rotate(0deg); }
    }

    @keyframes legMove {
      to { transform: rotate(-15deg); }
    }

    /* ═══════════════════════════════════
       2 ─ MAIL SLOT: paper pushed through
       ═══════════════════════════════════ */
    .mailbox {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    .mail-door {
      width: 120px; height: 150px;
      background: linear-gradient(160deg, #b0652d, #7a3f14);
      border-radius: 10px 10px 4px 4px;
      border: 3px solid #5a2e0c;
      position: relative;
    }

    .mail-slot {
      position: absolute;
      top: 42px; left: 50%;
      transform: translateX(-50%);
      width: 80px; height: 8px;
      background: #1a0e04;
      border-radius: 2px;
      border: 2px solid #4a2808;
      overflow: visible;
      z-index: 3;
    }

    .mail-slot::after {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 76px; height: 5px;
      background: #2e1808;
      border-radius: 1px;
    }

    .mail-knob {
      position: absolute;
      top: 85px; left: 50%;
      transform: translateX(-50%);
      width: 14px; height: 14px;
      background: radial-gradient(circle at 40% 35%, #ffe680, #c8960a);
      border-radius: 50%;
      border: 1px solid #8a6508;
    }

    .envelope {
      position: absolute;
      top: -60px; left: 50%;
      width: 60px; height: 40px;
      transform: translateX(-50%);
      z-index: 4;
      animation: pushMail 3s ease-in-out infinite;
    }

    .envelope .env-body {
      width: 60px; height: 40px;
      background: #f5f0e0;
      border-radius: 3px;
      border: 1px solid #c8c0a8;
      position: relative;
    }

    .envelope .env-flap {
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 0;
      border-left: 30px solid transparent;
      border-right: 30px solid transparent;
      border-top: 22px solid #e8e0c8;
    }

    .envelope .env-stripe {
      position: absolute;
      bottom: 6px; left: 8px;
      width: 44px; height: 3px;
      background: #d0c8b0;
      border-radius: 1px;
      box-shadow: 0 6px 0 #d0c8b0, 0 12px 0 #d0c8b0;
    }

    @keyframes pushMail {
      0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
      40%  { transform: translateX(-50%) translateY(55px); opacity: 1; }
      55%  { transform: translateX(-50%) translateY(100px); opacity: 0; }
      56%  { transform: translateX(-50%) translateY(0); opacity: 0; }
      70%  { opacity: 1; }
      100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    }

    /* ═══════════════════════════════════
       3 ─ PUSH-UPS: stick figure workout
       ═══════════════════════════════════ */
    .gym-floor {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 30px;
      background: linear-gradient(180deg, #3a2a1a, #2a1e12);
    }

    .pushup-figure {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 72px;
      animation: pushupDrop 1.6s ease-in-out infinite;
    }

    .pushup-figure .pu-head {
      width: 20px; height: 20px;
      background: #ffcc70;
      border-radius: 50%;
      position: absolute;
      left: 2px; bottom: 40px;
      animation: pushupHead 1.6s ease-in-out infinite;
    }

    .pushup-figure .pu-body {
      position: absolute;
      left: 18px; bottom: 24px;
      width: 58px; height: 10px;
      background: #e06040;
      border-radius: 4px;
      transform-origin: left center;
      animation: pushupBody 1.6s ease-in-out infinite;
    }

    .pushup-figure .pu-arm-l,
    .pushup-figure .pu-arm-r {
      position: absolute;
      width: 6px;
      background: #ffcc70;
      border-radius: 2px;
      bottom: 0;
    }

    .pushup-figure .pu-arm-l {
      left: 16px;
      height: 24px;
      transform-origin: top center;
      animation: pushupArmL 1.6s ease-in-out infinite;
    }

    .pushup-figure .pu-arm-r {
      left: 42px;
      height: 24px;
      transform-origin: top center;
      animation: pushupArmR 1.6s ease-in-out infinite;
    }

    .pushup-figure .pu-legs {
      position: absolute;
      right: 2px; bottom: 22px;
      width: 42px; height: 6px;
      background: #5576a0;
      border-radius: 3px;
      transform-origin: left center;
      animation: pushupLegs 1.6s ease-in-out infinite;
    }

    .sweat {
      position: absolute;
      left: 45%; bottom: 88px;
      font-size: 16px;
      animation: sweatDrop 1.6s ease-in infinite;
      opacity: 0;
    }

    @keyframes pushupDrop {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(14px); }
    }

    @keyframes pushupHead {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(2px) rotate(3deg); }
    }

    @keyframes pushupBody {
      0%, 100% { transform: rotate(-10deg); }
      50%      { transform: rotate(-3deg); }
    }

    @keyframes pushupArmL {
      0%, 100% { height: 24px; transform: rotate(12deg); }
      50%      { height: 16px; transform: rotate(34deg); }
    }

    @keyframes pushupArmR {
      0%, 100% { height: 24px; transform: rotate(2deg); }
      50%      { height: 16px; transform: rotate(22deg); }
    }

    @keyframes pushupLegs {
      0%, 100% { transform: rotate(0deg); }
      50%      { transform: rotate(2deg); }
    }

    @keyframes sweatDrop {
      0%   { opacity: 0; transform: translateY(0); }
      30%  { opacity: 1; }
      100% { opacity: 0; transform: translateY(20px); }
    }

    /* ═══════════════════════════════════
       4 ─ SHOPPING CART: pushed along
       ═══════════════════════════════════ */
    .store-floor {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40px;
      background: linear-gradient(0deg, #2d2d3d, #3a3a4d);
    }

    .cart-group {
      position: absolute;
      bottom: 40px;
      animation: pushCart 5s linear infinite;
    }

    .cart-person .cp-head {
      width: 18px; height: 18px;
      background: #ffcc70;
      border-radius: 50%;
      position: absolute; top: -52px; left: -22px;
    }
    .cart-person .cp-body {
      width: 8px; height: 28px;
      background: #5e88c4;
      border-radius: 3px;
      position: absolute; top: -32px; left: -18px;
    }
    .cart-person .cp-arm {
      width: 24px; height: 5px;
      background: #ffcc70;
      border-radius: 2px;
      position: absolute; top: -24px; left: -10px;
      transform: rotate(-8deg);
    }

    .cart-basket {
      width: 50px; height: 32px;
      border: 3px solid #aab;
      border-top: none;
      border-radius: 0 0 4px 4px;
      position: relative;
    }
    .cart-basket::before {
      content: '';
      position: absolute;
      top: -8px; left: -2px; right: -2px;
      height: 3px;
      background: #aab;
      border-radius: 2px;
    }
    .cart-handle {
      position: absolute;
      top: -18px; right: -14px;
      width: 3px; height: 20px;
      background: #aab;
      border-radius: 2px;
      transform: rotate(-15deg);
    }
    .cart-wheel {
      position: absolute;
      bottom: -10px;
      width: 12px; height: 12px;
      background: #333;
      border: 2px solid #888;
      border-radius: 50%;
    }
    .cart-wheel.cw-l { left: 4px; }
    .cart-wheel.cw-r { right: 4px; }

    .cart-wheel::after {
      content: '';
      position: absolute;
      top: 3px; left: 3px;
      width: 2px; height: 2px;
      background: #ccc;
      border-radius: 50%;
      animation: wheelSpin 0.4s linear infinite;
    }

    .cart-item {
      position: absolute;
      border-radius: 3px;
    }
    .cart-item:nth-child(1) { width: 14px; height: 18px; background: #e8524a; top: 4px; left: 4px; }
    .cart-item:nth-child(2) { width: 12px; height: 14px; background: #4ac462; top: 8px; left: 22px; }
    .cart-item:nth-child(3) { width: 10px; height: 10px; background: #f0c040; top: 2px; left: 34px; border-radius: 50%; }

    @keyframes pushCart {
      0%   { left: -80px; }
      100% { left: 110%; }
    }

    @keyframes wheelSpin {
      to { transform: rotate(360deg); }
    }

    /* ═══════════════════════════════════
       5 ─ PUSH BUTTON: big red button
       ═══════════════════════════════════ */
    .button-stage {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    .btn-base {
      width: 100px; height: 20px;
      background: linear-gradient(180deg, #555, #333);
      border-radius: 6px;
      margin-top: -2px;
    }

    .btn-dome {
      width: 80px; height: 50px;
      margin: 0 auto;
      background: radial-gradient(circle at 40% 30%, #ff5040, #b81c10);
      border-radius: 50% 50% 8px 8px;
      box-shadow: 0 4px 10px rgba(180, 20, 10, 0.5);
      animation: buttonPush 2s ease-in-out infinite;
      position: relative;
    }

    .btn-dome::after {
      content: 'PUSH';
      position: absolute;
      bottom: 8px; left: 50%;
      transform: translateX(-50%);
      font-size: 0.6rem;
      font-weight: bold;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.15em;
    }

    .btn-finger {
      width: 18px; height: 40px;
      background: linear-gradient(180deg, #ffcc70, #e8a840);
      border-radius: 8px 8px 4px 4px;
      margin: 0 auto;
      position: relative;
      top: -20px;
      animation: fingerPush 2s ease-in-out infinite;
    }

    .btn-sparkle {
      position: absolute;
      top: 35%; left: 50%;
      font-size: 24px;
      opacity: 0;
      animation: sparkle 2s ease-in-out infinite;
    }

    @keyframes buttonPush {
      0%, 100% { transform: scaleY(1); }
      45%, 55% { transform: scaleY(0.7); }
    }

    @keyframes fingerPush {
      0%, 100% { transform: translateY(0); }
      45%, 55% { transform: translateY(18px); }
    }

    @keyframes sparkle {
      0%, 40%  { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
      50%      { opacity: 1; transform: translate(-50%, -10px) scale(1.2); }
      65%, 100%{ opacity: 0; transform: translate(-50%, -20px) scale(0.8); }
    }

    /* ═══════════════════════════════════
       6 ─ SWING: kid being pushed on swing
       ═══════════════════════════════════ */
    .swing-frame {
      position: absolute;
      top: 20px; left: 50%;
      transform: translateX(-50%);
    }

    .swing-bar {
      width: 160px; height: 6px;
      background: #8b6b4a;
      border-radius: 3px;
    }

    .swing-leg-l, .swing-leg-r {
      position: absolute;
      top: 6px;
      width: 5px; height: 66px;
      background: #8b6b4a;
    }
    .swing-leg-l { left: 10px; transform: rotate(8deg); }
    .swing-leg-r { right: 10px; transform: rotate(-8deg); }

    .swing-rope-group {
      position: absolute;
      top: 4px; left: 50%;
      transform: translateX(-50%);
      transform-origin: top center;
      animation: swingMotion 2.5s ease-in-out infinite alternate;
    }

    .swing-rope-l, .swing-rope-r {
      position: absolute;
      top: 0;
      width: 2px; height: 110px;
      background: #aaa;
    }
    .swing-rope-l { left: -12px; }
    .swing-rope-r { left: 12px; }

    .swing-seat {
      position: absolute;
      top: 108px; left: -16px;
      width: 32px; height: 6px;
      background: #c0522a;
      border-radius: 2px;
    }

    .swing-kid {
      position: absolute;
      top: 80px; left: -6px;
    }

    .swing-kid .sk-head {
      width: 14px; height: 14px;
      background: #ffcc70;
      border-radius: 50%;
      margin: 0 auto;
    }
    .swing-kid .sk-body {
      width: 8px; height: 16px;
      background: #50a0e0;
      border-radius: 3px;
      margin: 0 auto;
    }

    .swing-parent {
      position: absolute;
      top: 130px;
      left: 50px;
    }
    .swing-parent .sp-head {
      width: 16px; height: 16px;
      background: #ffcc70;
      border-radius: 50%;
      margin: 0 auto 2px;
    }
    .swing-parent .sp-body {
      width: 10px; height: 26px;
      background: #58a060;
      border-radius: 3px;
      margin: 0 auto;
    }
    .swing-parent .sp-arm {
      position: absolute;
      top: 20px; left: -10px;
      width: 16px; height: 5px;
      background: #ffcc70;
      border-radius: 2px;
      animation: parentPush 2.5s ease-in-out infinite alternate;
    }

    @keyframes swingMotion {
      0%   { transform: translateX(-50%) rotate(25deg); }
      100% { transform: translateX(-50%) rotate(-25deg); }
    }

    @keyframes parentPush {
      0%   { transform: rotate(-15deg); }
      100% { transform: rotate(15deg); }
    }

    .ground {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 24px;
      background: linear-gradient(0deg, #2a4a1a, #3a5a2a);
    }

    /* ═══════════════════════════════════
       7 ─ DOMINO PUSH: chain reaction
       ═══════════════════════════════════ */
    .domino-floor {
      position: absolute;
      bottom: 32px;
      left: 18px;
      right: 18px;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
    }

    .domino-row {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 36px;
      height: 92px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .domino {
      width: 14px;
      height: 64px;
      border-radius: 3px;
      transform-origin: bottom center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    .domino:nth-child(odd) { background: #ff8f60; }
    .domino:nth-child(even) { background: #68b0ff; }
    .domino:nth-child(1) { animation: tip1 3.2s ease-in-out infinite; }
    .domino:nth-child(2) { animation: tip2 3.2s ease-in-out infinite; }
    .domino:nth-child(3) { animation: tip3 3.2s ease-in-out infinite; }
    .domino:nth-child(4) { animation: tip4 3.2s ease-in-out infinite; }
    .domino:nth-child(5) { animation: tip5 3.2s ease-in-out infinite; }
    .domino:nth-child(6) { animation: tip6 3.2s ease-in-out infinite; }
    .domino:nth-child(7) { animation: tip7 3.2s ease-in-out infinite; }
    .domino:nth-child(8) { animation: tip8 3.2s ease-in-out infinite; }
    .domino:nth-child(9) { animation: tip9 3.2s ease-in-out infinite; }

    .domino-hand {
      position: absolute;
      left: 8px;
      bottom: 74px;
      width: 32px;
      height: 12px;
      background: linear-gradient(90deg, #f7d182, #dca24b);
      border-radius: 6px;
      transform-origin: right center;
      animation: handNudge 3.2s ease-in-out infinite;
    }

    @keyframes handNudge {
      0%, 12%, 100% { transform: rotate(0deg) translateX(0); }
      16% { transform: rotate(-12deg) translateX(6px); }
      20% { transform: rotate(0deg) translateX(0); }
    }

    @keyframes tip1 { 0%, 14%, 100% { transform: rotate(0deg); } 20%, 88% { transform: rotate(78deg); } }
    @keyframes tip2 { 0%, 18%, 100% { transform: rotate(0deg); } 24%, 88% { transform: rotate(78deg); } }
    @keyframes tip3 { 0%, 22%, 100% { transform: rotate(0deg); } 28%, 88% { transform: rotate(78deg); } }
    @keyframes tip4 { 0%, 26%, 100% { transform: rotate(0deg); } 32%, 88% { transform: rotate(78deg); } }
    @keyframes tip5 { 0%, 30%, 100% { transform: rotate(0deg); } 36%, 88% { transform: rotate(78deg); } }
    @keyframes tip6 { 0%, 34%, 100% { transform: rotate(0deg); } 40%, 88% { transform: rotate(78deg); } }
    @keyframes tip7 { 0%, 38%, 100% { transform: rotate(0deg); } 44%, 88% { transform: rotate(78deg); } }
    @keyframes tip8 { 0%, 42%, 100% { transform: rotate(0deg); } 48%, 88% { transform: rotate(78deg); } }
    @keyframes tip9 { 0%, 46%, 100% { transform: rotate(0deg); } 52%, 88% { transform: rotate(78deg); } }

    /* ═══════════════════════════════════
       8 ─ BULLDOZER PUSH: dirt mound
       ═══════════════════════════════════ */
    .site-ground {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 52px;
      background: linear-gradient(180deg, #58402a, #3e2d1e);
    }

    .dirt {
      position: absolute;
      bottom: 52px;
      left: -18px;
      width: 64px;
      height: 26px;
      border-radius: 40px 40px 8px 8px;
      background: linear-gradient(180deg, #9b6a3f, #6f4b2c);
      animation: moundMove 4.6s linear infinite;
      z-index: 3;
      transform-origin: left bottom;
    }

    .dirt::before {
      content: '';
      position: absolute;
      left: -10px;
      bottom: 3px;
      width: 18px;
      height: 14px;
      border-radius: 12px 6px 6px 12px;
      background: linear-gradient(180deg, #8e5f38, #694427);
      animation: dirtCompression 4.6s linear infinite;
    }

    .dirt::after {
      content: '';
      position: absolute;
      left: 8px;
      bottom: 18px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #a97545;
      box-shadow: 10px 5px 0 #8e6037, 18px 0 0 #7b512f;
      opacity: 0;
      animation: dirtSpray 4.6s linear infinite;
    }

    .dozer {
      position: absolute;
      bottom: 52px;
      left: -110px;
      width: 92px;
      height: 54px;
      animation: dozerDrive 4.6s linear infinite;
      z-index: 2;
    }

    .dozer::after {
      content: '';
      position: absolute;
      left: 16px;
      bottom: -3px;
      width: 54px;
      height: 4px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.24);
      filter: blur(2px);
      animation: dozerShadow 4.6s linear infinite;
    }

    .dozer-body {
      position: absolute;
      top: 6px;
      left: 10px;
      width: 58px;
      height: 26px;
      border-radius: 6px;
      background: #f1a820;
      border: 2px solid #9a6508;
      animation: dozerBounce 0.22s linear infinite;
    }

    .dozer-cabin {
      position: absolute;
      top: -8px;
      left: 34px;
      width: 26px;
      height: 18px;
      border-radius: 4px 4px 2px 2px;
      background: #5fb7db;
      border: 2px solid #2f6786;
      animation: dozerBounce 0.22s linear infinite;
    }

    .dozer-track {
      position: absolute;
      left: 6px;
      bottom: 2px;
      width: 74px;
      height: 14px;
      border-radius: 10px;
      background: #2f2f35;
      border: 2px solid #555;
      overflow: hidden;
    }

    .dozer-track::before {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: 999px;
      background: repeating-linear-gradient(
        90deg,
        #686868 0 8px,
        #2f2f35 8px 14px
      );
      animation: trackRoll 0.35s linear infinite;
    }

    .dozer-blade {
      position: absolute;
      top: 14px;
      right: -8px;
      width: 18px;
      height: 24px;
      border-radius: 4px;
      background: #d88c0a;
      border: 2px solid #895907;
      transform-origin: left center;
      animation: bladeFlex 4.6s ease-in-out infinite;
    }

    @keyframes dozerDrive {
      0% { left: -110px; }
      100% { left: 108%; }
    }

    @keyframes moundMove {
      0% { left: -8px; }
      100% { left: calc(108% + 102px); }
    }

    @keyframes dozerBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(1px); }
    }

    @keyframes dozerShadow {
      0%, 100% { transform: scaleX(1); opacity: 0.22; }
      50% { transform: scaleX(0.96); opacity: 0.28; }
    }

    @keyframes trackRoll {
      from { transform: translateX(0); }
      to { transform: translateX(-14px); }
    }

    @keyframes bladeFlex {
      0%, 18%, 100% { transform: rotate(0deg) scaleX(1); }
      28%, 84% { transform: rotate(-4deg) scaleX(1.03); }
    }

    @keyframes dirtCompression {
      0%, 18%, 100% { transform: scaleX(1) scaleY(1); }
      28%, 84% { transform: scaleX(1.35) scaleY(0.82); }
    }

    @keyframes dirtSpray {
      0%, 20%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
      30% { opacity: 0.75; transform: translate(8px, -3px) scale(0.8); }
      42% { opacity: 0.55; transform: translate(18px, -9px) scale(1); }
      55% { opacity: 0; transform: translate(28px, -2px) scale(0.7); }
    }

    /* ═══════════════════════════════════
       9 ─ STROLLER PUSH: sidewalk roll
       ═══════════════════════════════════ */
    .walkway {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 48px;
      background: linear-gradient(180deg, #505a66, #39414a);
    }

    .stroller-group {
      position: absolute;
      bottom: 48px;
      left: -140px;
      width: 128px;
      height: 96px;
      animation: stroll 5.4s linear infinite;
    }

    .walker-head {
      position: absolute;
      top: 4px;
      left: 8px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #ffd18a;
    }

    .walker-body {
      position: absolute;
      top: 20px;
      left: 12px;
      width: 10px;
      height: 34px;
      border-radius: 4px;
      background: #66a86a;
    }

    .walker-arm {
      position: absolute;
      top: 34px;
      left: 18px;
      width: 28px;
      height: 4px;
      border-radius: 2px;
      background: #ffd18a;
      transform: rotate(-14deg);
    }

    .stroller {
      position: absolute;
      top: 24px;
      left: 44px;
      width: 64px;
      height: 44px;
    }

    .stroller-hood {
      position: absolute;
      top: 0;
      left: 10px;
      width: 38px;
      height: 24px;
      border-radius: 18px 18px 4px 4px;
      background: linear-gradient(180deg, #f38e76, #d26952);
      border: 2px solid #8d4030;
    }

    .stroller-base {
      position: absolute;
      top: 22px;
      left: 6px;
      width: 44px;
      height: 16px;
      border-radius: 4px;
      background: #d7dbe3;
      border: 2px solid #8d94a0;
    }

    .stroller-wheel {
      position: absolute;
      bottom: -2px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #2d2f36;
      border: 2px solid #8f95a0;
    }

    .stroller-wheel.sw1 { left: 4px; }
    .stroller-wheel.sw2 { right: 8px; }

    .stroller-wheel::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 2px;
      height: 2px;
      border-radius: 50%;
      background: #d9dce2;
      animation: wheelSpin 0.38s linear infinite;
    }

    @keyframes stroll {
      0% { left: -140px; }
      100% { left: 108%; }
    }

    /* ═══════════════════════════════════
       10 ─ PUSH NOTIFICATION: ping pop
       ═══════════════════════════════════ */
    .phone {
      position: absolute;
      top: 26px;
      left: 50%;
      width: 124px;
      height: 198px;
      border-radius: 18px;
      border: 3px solid #7f8da1;
      background: linear-gradient(180deg, #1c293d, #0f1724);
      transform: translateX(-50%);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
    }

    .phone::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      width: 40px;
      height: 5px;
      border-radius: 3px;
      background: #3e4d62;
      transform: translateX(-50%);
    }

    .phone-screen {
      position: absolute;
      top: 22px;
      left: 10px;
      right: 10px;
      bottom: 10px;
      border-radius: 12px;
      background: linear-gradient(180deg, #17243a, #1e3658);
      overflow: hidden;
    }

    .app-card {
      position: absolute;
      left: 10px;
      right: 10px;
      height: 18px;
      border-radius: 6px;
      background: rgba(255,255,255,0.15);
    }

    .app-card.c1 { top: 14px; }
    .app-card.c2 { top: 40px; }
    .app-card.c3 { top: 66px; }

    .notif {
      position: absolute;
      top: 16px;
      right: 12px;
      width: 84px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(90deg, #ff7a60, #ffb24f);
      box-shadow: 0 8px 16px rgba(0,0,0,0.35);
      animation: notifDrop 3s ease-in-out infinite;
    }

    .notif::before {
      content: 'DailyPush';
      position: absolute;
      top: 7px;
      left: 10px;
      font-size: 10px;
      color: #2f1400;
      font-weight: bold;
      letter-spacing: 0.02em;
    }

    .notif-ring {
      position: absolute;
      top: 32px;
      right: 54px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid rgba(255, 183, 89, 0.8);
      animation: ringPulse 1.6s ease-out infinite;
    }

    @keyframes notifDrop {
      0%, 100% { transform: translateY(-48px); opacity: 0; }
      20% { transform: translateY(0); opacity: 1; }
      70% { transform: translateY(0); opacity: 1; }
      85% { transform: translateY(-12px); opacity: 0; }
    }

    @keyframes ringPulse {
      0% { transform: scale(0.4); opacity: 0.9; }
      100% { transform: scale(2.4); opacity: 0; }
    }
