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

:root {
  --deep: #0c100e;
  --surface: #181e1a;
  --accent: #8eaf82;
  --accent-hover: #a8c69c;
  --warm-gold: #c4a96a;
  --cream: #e4e8e0;
  --cream-muted: #889080;
  --cream-faint: #4a5248;
  --coral: #c97a6a;
  --header-h: 56px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--deep);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 16, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(142, 175, 130, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-divider {
  width: 1px;
  height: 20px;
  background: var(--cream-faint);
  opacity: 0.5;
}

.header-title {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--cream-muted);
  letter-spacing: 0.03em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-right a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  transition: color 0.2s;
}

.header-right a:hover {
  color: var(--cream);
}

.header-cta {
  color: var(--deep) !important;
  background: var(--accent);
  padding: 0.375rem 1.125rem;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}

.header-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--deep) !important;
  transform: translateY(-1px);
}

/* ---- CONTENT ---- */
.page {
  margin-top: var(--header-h);
  display: flex;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
}

.content {
  max-width: 720px;
  width: 100%;
  padding: 3rem 3rem 6rem;
}

.content h1 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.content .subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.content .effective-date {
  font-size: 0.8125rem;
  color: var(--cream-faint);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.content h2 {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(142, 175, 130, 0.08);
}

.content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.content strong {
  color: var(--cream);
  font-weight: 500;
}

.content ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.content li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 0.375rem;
}

.content a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.content a:hover {
  color: var(--accent-hover);
}

/* ---- FOOTER ---- */
.footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(142, 175, 130, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(720px + 6rem);
  margin: 0 auto;
}

.footer-logo {
  opacity: 0.5;
}

.footer span {
  font-size: 0.75rem;
  color: var(--cream-faint);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .content {
    padding: 2rem 1.5rem 5rem;
  }

  .footer {
    padding: 1.5rem;
  }
}
