
        @import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&family=DM+Sans:wght@300;400;500&display=swap');

        .ld-wrap {
          position: fixed;
          inset: 0;
          background: #0a0f1e;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 9999;
          font-family: 'DM Sans', sans-serif;
          transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .ld-wrap--leaving {
          opacity: 0;
          pointer-events: none;
          transform: scale(1.03);
        }

        /* Fine dot grid */
        .ld-wrap::before {
          content: '';
          position: absolute;
          inset: 0;
          background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
          background-size: 28px 28px;
          pointer-events: none;
        }

        /* Gold ambient glow */
        .ld-wrap::after {
          content: '';
          position: absolute;
          top: 50%; left: 50%;
          transform: translate(-50%, -50%);
          width: 600px; height: 600px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
          pointer-events: none;
          animation: ldPulse 3s ease-in-out infinite;
        }

        @keyframes ldPulse {
          0%,100% { transform: translate(-50%,-50%) scale(1); opacity:1; }
          50%      { transform: translate(-50%,-50%) scale(1.15); opacity:0.7; }
        }

        /* ── Card ── */
        .ld-card {
          position: relative;
          z-index: 1;
          display: flex;
          flex-direction: column;
          align-items: center;
          width: 360px;
          animation: ldCardIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
        }

        @keyframes ldCardIn {
          from { opacity:0; transform: translateY(24px) scale(0.95); }
          to   { opacity:1; transform: translateY(0) scale(1); }
        }

        /* ── Logo mark ── */
        .ld-logo {
          display: flex;
          align-items: center;
          gap: 11px;
          margin-bottom: 48px;
        }

        .ld-logo-mark {
          width: 44px; height: 44px;
          border-radius: 12px;
          background: linear-gradient(135deg, #c9a84c, #e8c97a);
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
          animation: ldMarkPing 2s ease infinite;
        }

        @keyframes ldMarkPing {
          0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.35); }
          70%  { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
          100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
        }

        .ld-logo-name {
          font-family: 'Lora', Georgia, serif;
          font-size: 24px;
          font-weight: 700;
          color: #ffffff;
          letter-spacing: -0.01em;
        }

        .ld-logo-pill {
          font-size: 9px;
          font-weight: 500;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: #c9a84c;
          background: rgba(201,168,76,0.12);
          border: 1px solid rgba(201,168,76,0.25);
          border-radius: 100px;
          padding: 2px 7px;
        }

        /* ── SVG dashboard illustration ── */
        .ld-illustration {
          width: 260px;
          height: 160px;
          margin-bottom: 40px;
          position: relative;
        }

        /* SVG elements that draw in */
        .ld-svg-panel {
          rx: 10;
          fill: #1e293b;
          stroke: rgba(255,255,255,0.07);
          stroke-width: 1;
        }

        /* Bar animation */
        .ld-bar {
          transform-origin: bottom;
          animation: ldBarGrow 1.8s cubic-bezier(0.34,1.2,0.64,1) forwards;
        }

        .ld-bar:nth-child(1) { animation-delay: 0.2s; }
        .ld-bar:nth-child(2) { animation-delay: 0.35s; }
        .ld-bar:nth-child(3) { animation-delay: 0.5s; }
        .ld-bar:nth-child(4) { animation-delay: 0.65s; }
        .ld-bar:nth-child(5) { animation-delay: 0.8s; }
        .ld-bar:nth-child(6) { animation-delay: 0.95s; }

        @keyframes ldBarGrow {
          from { transform: scaleY(0); opacity:0; }
          to   { transform: scaleY(1); opacity:1; }
        }

        /* Shimmer line */
        .ld-line {
          stroke-dasharray: 200;
          stroke-dashoffset: 200;
          animation: ldLineDraw 1.6s ease forwards;
        }

        .ld-line:nth-child(1) { animation-delay: 0.1s; }
        .ld-line:nth-child(2) { animation-delay: 0.6s; }

        @keyframes ldLineDraw {
          to { stroke-dashoffset: 0; }
        }

        /* Fade-in dots */
        .ld-dot-fade {
          opacity: 0;
          animation: ldFadeIn 0.4s ease forwards;
        }

        .ld-dot-fade:nth-child(1) { animation-delay: 0.4s; }
        .ld-dot-fade:nth-child(2) { animation-delay: 0.7s; }
        .ld-dot-fade:nth-child(3) { animation-delay: 1.0s; }

        @keyframes ldFadeIn {
          to { opacity:1; }
        }

        /* KPI cards fade in */
        .ld-kpi {
          opacity: 0;
          animation: ldFadeUp 0.5s ease forwards;
        }
        .ld-kpi:nth-child(1) { animation-delay: 0.3s; }
        .ld-kpi:nth-child(2) { animation-delay: 0.55s; }
        .ld-kpi:nth-child(3) { animation-delay: 0.8s; }

        @keyframes ldFadeUp {
          from { opacity:0; transform: translateY(6px); }
          to   { opacity:1; transform: translateY(0); }
        }

        /* ── Progress track ── */
        .ld-track {
          width: 100%;
          height: 3px;
          background: rgba(255,255,255,0.07);
          border-radius: 100px;
          overflow: hidden;
          margin-bottom: 16px;
        }

        .ld-fill {
          height: 100%;
          background: linear-gradient(90deg, #c9a84c, #e8c97a);
          border-radius: 100px;
          transition: width 0.1s linear;
          position: relative;
        }

        /* Moving shimmer on progress fill */
        .ld-fill::after {
          content: '';
          position: absolute;
          top: 0; right: 0;
          width: 40px; height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
          animation: ldShimmer 1.2s ease infinite;
        }

        @keyframes ldShimmer {
          from { opacity:0; transform: translateX(-20px); }
          50%  { opacity:1; }
          to   { opacity:0; transform: translateX(20px); }
        }

        /* ── Status row ── */
        .ld-status-row {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          margin-bottom: 8px;
        }

        .ld-step-text {
          font-size: 12.5px;
          font-weight: 300;
          color: #64748b;
          min-height: 18px;
          transition: opacity 0.3s;
          letter-spacing: 0.01em;
        }

        .ld-pct {
          font-family: 'Lora', serif;
          font-size: 13px;
          font-weight: 700;
          color: #c9a84c;
          min-width: 36px;
          text-align: right;
        }

        /* ── Orbiting dot ── */
        .ld-orbit {
          position: absolute;
          bottom: -20px;
          left: 50%;
          transform: translateX(-50%);
          width: 60px; height: 60px;
        }

        .ld-orbit-ring {
          position: absolute;
          inset: 0;
          border-radius: 50%;
          border: 1px solid rgba(201,168,76,0.12);
          animation: ldSpin 3s linear infinite;
        }

        .ld-orbit-dot {
          position: absolute;
          top: -3px; left: 50%;
          transform: translateX(-50%);
          width: 6px; height: 6px;
          border-radius: 50%;
          background: #c9a84c;
          box-shadow: 0 0 8px rgba(201,168,76,0.8);
        }

        @keyframes ldSpin {
          from { transform: rotate(0deg); }
          to   { transform: rotate(360deg); }
        }

        /* ── Orbit rings (background) ── */
        .ld-bg-ring {
          position: absolute;
          border-radius: 50%;
          border: 1px solid rgba(201,168,76,0.05);
          top: 50%; left: 50%;
          transform: translate(-50%,-50%);
          pointer-events: none;
          animation: ldSpin linear infinite;
        }

        .ld-bg-ring:nth-child(1) {
          width: 320px; height: 320px;
          animation-duration: 30s;
        }
        .ld-bg-ring:nth-child(2) {
          width: 440px; height: 440px;
          animation-duration: 48s;
          animation-direction: reverse;
          border-color: rgba(99,102,241,0.04);
        }
        .ld-bg-ring:nth-child(3) {
          width: 580px; height: 580px;
          animation-duration: 70s;
          border-color: rgba(255,255,255,0.025);
        }
    