*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue: #0078ff;
      --blue-dim: rgba(0, 120, 255, 0.12);
      --blue-glow: rgba(0, 120, 255, 0.35);
      --bg: #080c14;
      --bg2: #0d1525;
      --text: #e8f0fe;
      --muted: #4a5a7a;
      --border: rgba(0, 120, 255, 0.18);
    }

    html, body {
      height: 100%;
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      overflow: hidden;
    }

    /* ── Animated grid background ── */
    .bg-grid {
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridDrift 20s linear infinite;
      opacity: 0.5;
      z-index: 0;
    }

    @keyframes gridDrift {
      0%   { background-position: 0 0; }
      100% { background-position: 60px 60px; }
    }

    /* ── Radial glow ── */
    .bg-glow {
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,120,255,0.08) 0%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    /* ── Floating particles ── */
    .particles {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--blue);
      border-radius: 50%;
      opacity: 0;
      animation: float linear infinite;
    }

    @keyframes float {
      0%   { opacity: 0; transform: translateY(0) scale(1); }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.4; }
      100% { opacity: 0; transform: translateY(-100vh) scale(0.3); }
    }

    /* ── Main layout ── */
    .wrapper {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }

    /* ── Logo / Brand ── */
    .brand {
      margin-bottom: 3rem;
      animation: fadeDown 0.8s ease both;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Space Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.5px;
      text-decoration: none;
    }

    .brand-icon {
      width: 40px;
      height: 40px;
      border: 2px solid var(--blue);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 16px var(--blue-glow);
      position: relative;
      overflow: hidden;
    }

    .brand-icon::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--blue-dim), transparent);
    }

    .brand-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--blue);
      position: relative;
      z-index: 1;
    }

    /* ── Gear animation ── */
    .gear-wrap {
      position: relative;
      width: 120px;
      height: 120px;
      margin: 0 auto 2.5rem;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .gear-wrap svg {
      width: 100%;
      height: 100%;
    }

    .gear-outer {
      transform-origin: 50% 50%;
      animation: spinCW 8s linear infinite;
    }

    .gear-inner {
      transform-origin: 50% 50%;
      animation: spinCCW 5s linear infinite;
    }

    @keyframes spinCW  { to { transform: rotate(360deg); } }
    @keyframes spinCCW { to { transform: rotate(-360deg); } }

    /* ── Content ── */
    .content {
      max-width: 560px;
      animation: fadeUp 0.8s 0.35s ease both;
    }

    .tag {
      display: inline-block;
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      border: 1px solid var(--border);
      background: var(--blue-dim);
      padding: 0.3rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-family: 'Space Mono', monospace;
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      font-weight: 700;
      line-height: 1.15;
      color: #fff;
      margin-bottom: 1rem;
    }

    h1 span {
      color: var(--blue);
    }

    p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 2.5rem;
    }

    /* ── Progress bar ── */
    .progress-wrap {
      margin-bottom: 2.5rem;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 0.6rem;
    }

    .progress-bar {
      height: 4px;
      background: rgba(255,255,255,0.06);
      border-radius: 999px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--blue), #40a0ff);
      border-radius: 999px;
      box-shadow: 0 0 12px var(--blue-glow);
      animation: fillBar 2.5s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes fillBar {
      to { width: 72%; }
    }

    /* ── Status dots ── */
    .status-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .status-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.65rem;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dot-active {
      background: #22d46a;
      box-shadow: 0 0 8px rgba(34, 212, 106, 0.6);
      animation: pulse 2s ease infinite;
    }

    .dot-pending {
      background: var(--blue);
      box-shadow: 0 0 8px var(--blue-glow);
      animation: pulse 2s 0.4s ease infinite;
    }

    .dot-idle {
      background: var(--muted);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.7); }
    }

    /* ── Contact link ── */
    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: var(--blue);
      text-decoration: none;
      border: 1px solid var(--border);
      padding: 0.7rem 1.5rem;
      border-radius: 8px;
      background: var(--blue-dim);
      transition: all 0.3s ease;
      margin-bottom: 3rem;
    }

    .contact-link:hover {
      background: rgba(0,120,255,0.2);
      box-shadow: 0 0 20px var(--blue-glow);
      transform: translateY(-2px);
    }

    /* ── Footer ── */
    .footer-text {
      font-size: 0.75rem;
      color: var(--muted);
      font-family: 'Space Mono', monospace;
      animation: fadeUp 0.8s 0.6s ease both;
    }

    /* ── Animations ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Scanline overlay ── */
    .scanlines {
      position: fixed;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
      );
    }

    @media (max-width: 480px) {
      .status-row { gap: 1rem; }
      .brand { margin-bottom: 2rem; }
    }
    
    /* Fix scroll clipping */
    body { overflow-y: auto; }
    
    /* Scale gear on small screens */
    @media (max-width: 400px) {
      .gear-wrap { width: 80px; height: 80px; }
      .status-item { font-size: 0.6rem; }
    }