body {
  font-family: "Inter", sans-serif;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

html {
  scroll-behavior: smooth;
}

#home {
  .glass-panel {
    background: rgba(16, 21, 34, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17, 66, 212, 0.2);
  }
  .hero-gradient {
    background: radial-gradient(
      circle at 50% 50%,
      rgba(17, 66, 212, 0.15) 0%,
      rgba(16, 21, 34, 1) 100%
    );
  }
}

#solutions {
  .animate-spin-slow {
    animation: spin 8s linear infinite;
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
}

#contact {
  .form-select-icon {
    background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuCCWddrnd5UoZ_Q8T92qs-uEmd5-rbfNuwFOvGmHgsugth-qHzEPp-6aS48SFg0x3ip5VjIdmhBrJw4c66DJp_k1MDQ_TBigsqw5WhMSTmuZoI4YChJWJ2H97N8g09gJk1vmM8g-HDPQ0lobk2fumuf1Df9IjuG1H18CDyJLtPdsoqE7o3NdBtw_wPX9iHounlqHlmWruR_Hg-TZUFtxDwNnez9bL0udwpfyoMS0E15N8BhGshbEI39tWxBGs5ck5zZnJxjvjAHPw);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em 1.5em;
  }
}

#legal {
  section[id] {
    scroll-margin-top: 6rem; /* 依照你的 header 高度調整，例如 5rem, 80px 都可以 */
  }
  .prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #92a0c9;
  }
  .prose h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  .prose h3 {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
  .prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #92a0c9;
  }
  .prose li {
    margin-bottom: 0.5rem;
  }
}

#global {
  .map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #1142d4;
    border-radius: 50%;
    box-shadow: 0 0 15px #1142d4;
  }
}
