* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', system-ui, sans-serif; background: #050816; color: #fff; overflow-x: hidden; }
    @keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:0.3 } }
    .anim-blink { animation: blink 2s ease-in-out infinite; }
    .step-connector { position:relative; }
    @media(min-width:1024px) {
      .step-connector::after { content:''; position:absolute; top:50%; right:-1.25rem; width:1.5rem; height:2px; background:linear-gradient(90deg, rgba(239,68,68,0.2), rgba(239,68,68,0.05)); }
      .step-connector:last-child::after { display:none; }
    .world-dot { position:absolute; width:6px; height:6px; border-radius:50%; }
    .gauge-ring { transition:stroke-dashoffset 1.5s ease-in-out; }
