canvas#stars {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 72px clamp(20px,5vw,80px) 0;
    overflow: hidden;
    z-index: 1;
  }

  .hero-content {
    position: relative; z-index: 10;
    max-width: 560px;
    padding-top: 40px;
  }

  /* countdown */
  .countdown-bar {
    display: inline-flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: .78rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: .04em;
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: fadeSlideIn .8s ease both;
  }
  .countdown-bar .seg {
    display: flex; align-items: baseline; gap: 3px;
    padding: 0 8px;
    border-right: 1px solid var(--glass-border);
  }
  .countdown-bar .seg:last-of-type { border-right: none; }
  .countdown-bar .seg:first-child { padding-left: 0; }
  .countdown-bar .num {
    font-weight: 700; color: #fff; font-size: .9rem;
  }
  .countdown-bar .suffix { font-size: .68rem; }
  .countdown-bar .label {
    margin-left: 10px; color: var(--text-muted);
  }

  @keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }


  /* ─── GLOBE CANVAS ─── */
  #globe-wrap {
    position: absolute;
    right: clamp(-60px, -4vw, 0px);
    top: 50%; transform: translateY(-50%);
    width: clamp(480px, 58vw, 900px);
    height: clamp(480px, 58vw, 900px);
    pointer-events: none;
    z-index: 5;
  }
  #globe {
    width: 100%; height: 100%;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    #globe-wrap {
      position: absolute;
      right: 50%; top: 55%;
      transform: translate(50%, -50%);
      width: min(92vw, 480px);
      height: min(92vw, 480px);
      opacity: 0.45;
    }
  }
  @media (max-width: 500px) {
    .hero-form { flex-direction: column; }
    .btn-cta { width: 100%; justify-content: center; }
  }