* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Segoe UI', 'Poppins', system-ui, sans-serif;
      background: #0a0a12;
      padding: 1.5rem;
      overflow-x: hidden;
      position: relative;
    }
    #network-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }
    .hero {
      position: relative;
      z-index: 1;
      max-width: 820px;
      width: 100%;
      background: rgba(10, 10, 22, 0.65);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 3.5rem 2rem 3.5rem 2rem;
      padding: 3.5rem 3rem;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 30px 70px -20px #000000cc, 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 80px rgba(99, 102, 241, 0.08);
      text-align: center;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hero:hover { transform: scale(1.008) translateY(-4px); }
    .neon-icon {
      display: inline-flex;
      background: rgba(99, 102, 241, 0.08);
      padding: 1.2rem;
      border-radius: 60% 40% 60% 40%;
      margin-bottom: 1.6rem;
      border: 1px solid rgba(99, 102, 241, 0.15);
      box-shadow: 0 0 40px rgba(99, 102, 241, 0.15), inset 0 0 30px rgba(99, 102, 241, 0.05);
      animation: pulseGlow 3s ease-in-out infinite;
    }
    .neon-icon svg {
      width: 60px; height: 60px;
      fill: none; stroke: #a5b4fc;
      stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
      filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.1), inset 0 0 20px rgba(99, 102, 241, 0.02); }
      50% { box-shadow: 0 0 70px rgba(99, 102, 241, 0.25), inset 0 0 40px rgba(99, 102, 241, 0.08); }
    }
    h1 {
      font-size: 4rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      background: linear-gradient(145deg, #e0e7ff, #818cf8, #c7d2fe);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.2rem;
      text-shadow: 0 0 50px rgba(99, 102, 241, 0.15);
    }
    .tagline {
      font-size: 1.3rem;
      font-weight: 300;
      color: #9aa2cf;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      padding-bottom: 1.2rem;
      margin-bottom: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .tagline .badge {
      background: rgba(99, 102, 241, 0.12);
      padding: 0.2rem 1rem;
      border-radius: 60px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #a5b4fc;
      border: 1px solid rgba(99, 102, 241, 0.15);
      backdrop-filter: blur(4px);
    }
    .timer-grid {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin: 2rem 0 2.4rem 0;
    }
    .time-block {
      background: rgba(8, 8, 24, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 2.2rem 1.2rem 2.2rem 1.2rem;
      padding: 0.8rem 1.2rem;
      min-width: 90px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 10px 30px -10px #000000aa, inset 0 1px 0 rgba(255, 255, 255, 0.02);
      transition: 0.25s ease;
    }
    .time-block:hover {
      border-color: rgba(99, 102, 241, 0.15);
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.06);
    }
    .time-number {
      font-size: 3.2rem;
      font-weight: 700;
      color: #eef2ff;
      letter-spacing: 2px;
      display: block;
      line-height: 1.2;
      font-variant-numeric: tabular-nums;
      text-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    }
    .time-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: #7b83ae;
      display: block;
      font-weight: 500;
      margin-top: 0.1rem;
    }
    .description {
      background: rgba(255, 255, 255, 0.015);
      border-radius: 2.5rem 1rem 2.5rem 1rem;
      padding: 1.2rem 1.8rem;
      margin: 1.8rem 0 2.2rem 0;
      border: 1px solid rgba(255, 255, 255, 0.02);
      font-size: 1.05rem;
      color: #c2c9ec;
      line-height: 1.7;
      backdrop-filter: blur(2px);
    }
    .description strong {
      color: #d4dcff;
      font-weight: 500;
      background: linear-gradient(135deg, #a5b4fc, #818cf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cta-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 0.6rem;
    }
    .cta-form input {
      flex: 1 1 220px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 1rem 1.8rem;
      border-radius: 60px;
      color: #f0f0f5;
      font-size: 1rem;
      outline: none;
      transition: 0.3s ease;
      backdrop-filter: blur(4px);
      font-weight: 300;
      letter-spacing: 0.2px;
    }
    .cta-form input::placeholder { color: #6a729c; font-weight: 300; }
    .cta-form input:focus {
      border-color: #818cf8;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.12), 0 0 40px rgba(99, 102, 241, 0.03);
    }
    .cta-form button {
      background: linear-gradient(145deg, #6366f1, #4338ca);
      border: none;
      padding: 1rem 2.8rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1rem;
      color: white;
      cursor: pointer;
      transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 10px 30px -8px #3b3f9baa, inset 0 1px 0 rgba(255, 255, 255, 0.08);
      letter-spacing: 0.6px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }
    .cta-form button::after {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      opacity: 0;
      transition: 0.4s;
    }
    .cta-form button:hover {
      transform: translateY(-3px) scale(1.02);
      background: linear-gradient(145deg, #818cf8, #6366f1);
      box-shadow: 0 16px 40px -10px #4f46e5cc, 0 0 60px rgba(99, 102, 241, 0.08);
    }
    .cta-form button:hover::after { opacity: 1; }
    .cta-form button:active { transform: scale(0.96); }
    .footer-links {
      margin-top: 2.8rem;
      font-size: 0.8rem;
      color: #4d5480;
      letter-spacing: 0.3px;
      border-top: 1px solid rgba(255, 255, 255, 0.02);
      padding-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #7b84b0;
      text-decoration: none;
      transition: 0.25s;
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
      font-weight: 400;
    }
    .footer-links a:hover { color: #c7ceff; border-bottom-color: #6366f1; }
    .footer-links .dot { color: #3a3f66; }
    @media (max-width: 600px) {
      .hero { padding: 2rem 1.5rem; border-radius: 2.5rem 1.5rem 2.5rem 1.5rem; }
      h1 { font-size: 2.8rem; }
      .time-number { font-size: 2.4rem; }
      .time-block { min-width: 70px; padding: 0.6rem 0.8rem; }
      .tagline { font-size: 1rem; }
      .cta-form input { flex: 1 1 100%; }
      .cta-form button { width: 100%; }
      .neon-icon svg { width: 44px; height: 44px; }
    }
    @media (max-width: 420px) {
      h1 { font-size: 2.2rem; }
      .timer-grid { gap: 0.6rem; }
      .time-block { min-width: 60px; padding: 0.4rem 0.5rem; }
      .time-number { font-size: 1.8rem; }
    }
