:root {
  --sm-primary: #0ea5e9; /* cyan-500 */
  --sm-primary-600: #f0f3f4; /* cyan-600 */
  --sm-text: #0f172a; /* slate-900 */
  --sm-muted: #475569; /* slate-600 */
  --sm-border: #e2e8f0; /* slate-200 */
  --sm-bg: #ffffff;
  --sm-bg-soft: #ffffff;
}

/* Dark mode override - keep black background */
@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #000000 !important;
    color: #ffffff;
  }
}

/* Base */
html,
body {
  background: #000000 !important;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-narrow {
  max-width: 880px;
  margin-inline: auto;
}

.page-offset {
  padding-top: clamp(72px, 10vh, 120px);
}

/* Headings */
.section-title {
  color: #ffffff;
  letter-spacing: -0.01em;
}
h1.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 2.75rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}
h2.section-title {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.75rem);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* Meta text */
.meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}

/* Divider */
.divider {
  height: 2px;
  width: 100%;
  border: 0;
  margin: 1.25rem 0 1.75rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(9, 241, 76, 0.4) 15%,
    rgba(9, 241, 76, 0.4) 85%,
    transparent 100%
  );
}

/* Content blocks */
.policy-card {
  background: rgba(9, 241, 76, 0.15);
  border: 2px solid rgba(9, 241, 76, 0.4);
  border-radius: 16px;
  padding: clamp(1rem, 1rem + 1vw, 1.5rem);
  box-shadow: 0 4px 20px rgba(9, 241, 76, 0.2);
}

.policy-card p {
  color: #ffffff;
  line-height: 1.7;
  font-size: 1rem;
}

.policy-card + .policy-card {
  margin-top: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Lists */
.policy-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.policy-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  line-height: 1.7;
  font-size: 1rem;
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #09F14C;
  box-shadow: 0 0 0 3px rgba(9, 241, 76, 0.3);
}
.policy-list strong {
  color: #ffffff;
  font-weight: 700;
}

/* Links */
a {
  color: #09F14C;
  text-decoration: none;
}
a:hover {
  color: #00FF63;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: #000000;
  border-top: 1px solid rgba(9, 241, 76, 0.3);
}
.cta-section .section-title span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 241, 76, 0.2);
  color: #09F14C;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid rgba(9, 241, 76, 0.3);
}
.footer .footer-content {
  padding: 24px 0;
}
.copyright-wrapper p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Scroll-to-top button */
.scroll-top {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.15);
}

/* Utility spacing */
.mb-50 {
  margin-bottom: 1.2rem !important;
}
.pt-120 {
  padding-top: clamp(3rem, 4vw, 6rem) !important;
}

/* Preloader */
.preloader .spinner-circle {
  background: #09F14C !important;
}

/* ===== Footer visibility fix (no wording changes) ===== */
#footer { position: relative; z-index: 2; }
#footer .copyright-wrapper p { display: block; color: rgba(255, 255, 255, 0.8) !important; }
#footer .copyright-wrapper a { color: #09F14C !important; text-decoration: none; }
#footer .copyright-wrapper a:hover { color: #00FF63 !important; text-decoration: underline; }
/* Ensure nothing overlaps the footer */
.cta-section { position: relative; z-index: 1; }

.footer p.color-white {
  color: #ffffff;
}

.footer p.m-0 a {
  color: inherit;
}
