@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --charcoal: #1E1E1E;
  --navy: #0D1B2A;
  --navy-deep: #081420;
  --navy-mid: #132d47;
  --lime: #8DC63F;
  --lime-dim: rgba(141, 198, 63, 0.15);
  --lime-glow: rgba(141, 198, 63, 0.08);
  --white: #F0F2F5;
  --off-white: #E4E7EC;
  --gray-200: #C8CCD4;
  --gray-500: #6E7786;
  --gray-700: #3A4150;
  --border: rgba(141, 198, 63, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--off-white);
  background: var(--navy-deep);
  line-height: 1.75;
  font-weight: 300;
  min-height: 100vh;
}

/* ═══ NOISE TEXTURE OVERLAY ═══ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ═══ HEADER ═══ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 20, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-brand .mark {
  width: 8px;
  height: 24px;
  background: var(--lime);
  border-radius: 2px;
}

.header-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

header nav { display: flex; gap: 8px; }

header nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gray-500);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

header nav a:hover,
header nav a.active {
  color: var(--lime);
  background: var(--lime-glow);
}

/* ═══ PAGE HERO ═══ */
.page-hero {
  position: relative;
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--lime-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--lime);
}

.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.effective-date {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 300;
}

/* ═══ MAIN CONTENT ═══ */
main {
  position: relative;
  z-index: 1;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 48px 100px;
}

/* ═══ SECTION HEADINGS ═══ */
h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ═══ BODY TEXT ═══ */
p {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--off-white);
}

p strong {
  font-weight: 500;
  color: var(--white);
}

/* ═══ LISTS ═══ */
ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}

li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--off-white);
}

li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--lime);
}

li strong {
  font-weight: 500;
  color: var(--white);
}

/* ═══ LINKS ═══ */
a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(141, 198, 63, 0.3);
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: var(--lime);
}

/* ═══ HIGHLIGHT BOX ═══ */
.highlight-box {
  background: linear-gradient(135deg, rgba(141, 198, 63, 0.06) 0%, rgba(13, 27, 42, 0.8) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  padding: 24px 28px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p:last-child,
.highlight-box ul:last-child { margin-bottom: 0; }

/* ═══ CONTACT BLOCK ═══ */
.contact-info {
  margin-top: 56px;
  padding: 32px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
}

.contact-info p {
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-info p:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

/* ═══ INDEX CARDS ═══ */
.doc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  border-bottom: none;
  transition: all 0.25s ease;
}

.doc-card:hover {
  border-color: rgba(141, 198, 63, 0.35);
  background: var(--navy-mid);
  transform: translateX(4px);
}

.doc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.doc-card-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.doc-card-text p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

/* ═══ FOOTER ═══ */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
}

footer nav { display: flex; gap: 24px; }

footer nav a {
  color: var(--gray-500);
  text-decoration: none;
  border: none;
  font-size: 12px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

footer nav a:hover { color: var(--lime); border: none; }

.footer-copy { font-size: 12px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  header { padding: 0 24px; }
  header nav { display: none; }
  .page-hero { padding: 48px 24px 40px; }
  .content { padding: 32px 24px 80px; }
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ═══ SCROLL INDICATOR ═══ */
.scroll-progress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 2px;
  background: var(--lime);
  z-index: 101;
  transition: width 0.1s ease;
}
