* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0c0c0f;
      font-family: "Geist", sans-serif;
      color: oklch(82% 0.01 268);
      overflow: hidden;
    }
    .loader-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .logo-mark {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, oklch(58% 0.19 var(--accent-h, 268)), oklch(50% 0.21 298));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Geist Mono", monospace;
      font-weight: 700;
      font-size: 18px;
      color: white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
      animation: fadeInScale 0.6s ease-out;
    }
    .brand-name {
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: white;
      opacity: 0;
      animation: fadeIn 0.4s 0.2s forwards;
    }
    .loader-bar {
      width: 180px;
      height: 3px;
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      animation: fadeIn 0.4s 0.4s forwards;
    }
    .loader-bar-fill {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, oklch(58% 0.19 var(--accent-h, 268)), oklch(70% 0.14 230));
      border-radius: 2px;
      animation: fillBar 1.2s 0.6s ease-out forwards;
    }
    @keyframes fadeInScale {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes fillBar {
      0% { width: 0%; }
      100% { width: 100%; }
    }
