/* Common */
:root {
  --primary-gold-start: rgba(216, 129, 5, 1);
  --primary-gold-end: rgba(240, 209, 92, 1);
  --ash-start: #9e9e9e;
  --ash-mid: #757575;
  --ash-end: #616161;
  --dark-hero-bg: #0b0f19;
  --dark-section-bg: #05070a;
  --light-section-bg: #f4f6f9;
  --card-border-gold: rgba(212, 175, 55, 0.3);
  --: #121824;
  --text-black: #000;
  --: #5e6d82;
  --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-heading-poppins: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  --header-total-h: 108px;
  /* fallback: top-header ~36px + nav-bar ~72px; JS overrides this */
}

/* ==========================================
   Global Scrollbar (Mandatory — defined once)
========================================== */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f4f6f9;
  border-radius: 16px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg,
      rgba(216, 129, 5, 1) 0%,
      rgba(240, 209, 92, 1) 100%);
  border-radius: 16px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(0deg,
      rgba(216, 129, 5, 1) 0%,
      rgba(240, 209, 92, 1) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-family-base);
  color: var(--);
  background-color: #ffffff;
  overflow-x: clip;
  line-height: 1.6;
}

/* The nav bar becomes position:fixed once scrolled (.nav-scrolled), so in-page
   anchor jumps must stop short of it or the target lands underneath. */
html {
  scroll-padding-top: 100px;
}

/* Content */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Section */
.section-space {
  padding: 60px 0;
}

.section-space-sm {
  padding: 32px 0;
}

.section-space-lg {
  padding: 96px 0;
}

/* Section Background */
.white-bg {
  background-color: #ffffff;
  padding: 60px 0;
}

.grey-bg {
  background-color: #E9E9E9;
  padding: 60px 0;
}

.dark-bg {
  background-color: #05070a;
  color: #ffffff;
  padding: 60px 0;
}

.primary-bg {
  background-color: #0b0f19;
  color: #ffffff;
  padding: 60px 0;
}

.divider-white-top {
  border-top: 1px solid #fff;
}

.divider-grey-top {
  border-top: 1px solid #A8A8A8;
  ;
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: inherit;
}

/* Sub Heading */
.sub-heading-text {
  font-size: 15px;
  color: var(--text-black);
  margin-bottom: 30px !important;
}

/* Title */
.section-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-family: var(--font-family-heading-poppins);
  color: #000;
}

.section-title-white {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-family: var(--font-family-heading-poppins);
  color: #fff;
}

/* Sub Title */
.section-subtitle {
  font-size: 1.05rem;
  color: #5e6d82;
  margin-bottom: 32px;
}

.sub-tittle-heading {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px !important;
}

/* Paragraph */
p {
  margin-bottom: 1rem;
}

.disclaimer-text-muted {
  font-size: 15px;
  color: #000;
  margin-top: 20px;
}

/* Large disclaimer / sample-data note (pair with .text-center where centred) */
.disclaimer-text-lg {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Cards */
.custom-card {
  border: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Lists */
ul,
ol {
  padding-left: 1.25rem;
}

/* Footer */
footer {
  background-color: #06090e;
  color: #a0aec0;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .white-bg,
  .grey-bg,
  .dark-bg,
  .primary-bg,
  .section-space {
    padding: 36px 0;
  }
}