html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
}
#site-header.scrolled {
  background: rgba(250, 255, 251, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
[data-aos] {
  transition-property: transform, opacity;
}
#site-header {
  background-color: #ffff;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafffb;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.5s, visibility 0.5s;
  pointer-events: all;
}
#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader .preloader-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}
#preloader .preloader-icon-inner {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: grid;
  place-items: center;
  color: #fff;
  animation: 1.4s ease-in-out infinite preloaderPulse;
}
#preloader .preloader-text,
.article-content h2 {
  color: #052e16;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
}
#preloader .preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #16a34a;
  border-right-color: #22c55e;
  animation: 1s linear infinite preloaderSpin;
}
#preloader .preloader-text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
#preloader .preloader-dots {
  display: flex;
  gap: 6px;
}
#preloader .preloader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  animation: 1.3s ease-in-out infinite preloaderDotBounce;
}
#preloader .preloader-dots span:nth-child(2) {
  animation-delay: 0.15s;
  background: #22c55e;
}
#preloader .preloader-dots span:nth-child(3) {
  animation-delay: 0.3s;
  background: #16a34a;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
@keyframes preloaderDotBounce {
  0%,
  100%,
  80% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  #preloader.preloader-fallback {
    animation: 0.6s 4s forwards preloaderFadeOut;
  }
}
@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-content h3 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f1f18;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #5a6b65;
  font-size: 1.05rem;
}
.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #5a6b65;
}
.article-content blockquote {
  border-left: 4px solid #16a34a;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #f0fdf4;
  border-radius: 0.75rem;
  font-style: italic;
  color: #0f1f18;
}
.article-content img {
  border-radius: 1.25rem;
  margin: 2rem 0;
  width: 100%;
}
body,
html {
  overflow-x: hidden;
}
.policy-content h2 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #052e16;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dcfce7;
}
.policy-content h3,
.sitemap-section h3 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.15rem;
}
.policy-content h2:first-child {
  margin-top: 0;
}
.policy-content h3 {
  font-weight: 600;
  color: #0f1f18;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #5a6b65;
}
.policy-content ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.policy-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #5a6b65;
}
.policy-content a {
  color: #16a34a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-content a:hover {
  color: #15803d;
}
.policy-content .highlight-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.policy-content .highlight-box p {
  margin-bottom: 0;
}
.sitemap-section h3 {
  font-weight: 700;
  color: #052e16;
  margin-bottom: 0.75rem;
}
.sitemap-section a {
  transition: color 0.15s;
}
.sitemap-section a:hover {
  color: #16a34a;
}