@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --serif: 'DM Serif Display', serif;
  --sans: 'DM Sans', sans-serif;

  --bg:        #22223B;
  --surface:   #4A4E69;
  --card:      #32365A;
  --muted:     #B0A5B0;
  --ink:       #DDD0CB;
  --highlight: #F2E9E4;

  --accent:     #E8284E;
  --accent-bg:  rgba(232, 40, 78, 0.15);
  --accent-dark:#FF7090;

  --positive:   #1D9E75;

  --border:     rgba(242, 233, 228, 0.10);
  --border-mid: rgba(242, 233, 228, 0.18);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-w: 1100px;
}

html {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--highlight);
}

h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

strong {
  color: var(--highlight);
  font-weight: 500;
}

em {
  color: var(--accent-dark);
  font-style: italic;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3.75rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--surface {
  background: rgba(74, 78, 105, 0.3);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
  border: none;
  text-decoration: none;
}

.btn--dark {
  background: var(--highlight);
  color: var(--bg);
}

.btn--dark:hover { opacity: 0.85; }

.btn--green {
  background: var(--accent);
  color: #fff;
}

.btn--green:hover { opacity: 0.88; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--border-mid);
}

.btn--outline:hover {
  border-color: var(--highlight);
  color: var(--highlight);
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  color: var(--accent-dark);
}

.pill {
  display: inline-block;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 0.5px solid var(--border-mid);
  color: var(--ink);
  background: var(--card);
}

.card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.card p {
  text-align: justify;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 0.5px solid var(--border);
}

.stat-card__num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot-list li {
  font-size: 1rem;
  color: var(--ink);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.7;
}

.dot-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

hr.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 34, 59, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--highlight);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--highlight);
}

.nav__cta {
  font-size: 0.85rem;
  padding: 0.55rem 1.15rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover { opacity: 0.88; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--highlight);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid var(--border);
  padding: 0.5rem 0;
  background: rgba(34, 34, 59, 0.98);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 1rem;
  color: var(--muted);
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: color 0.15s;
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--highlight);
}

.nav__mobile .nav__cta--mobile {
  margin: 0.75rem 2rem;
  text-align: center;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 500;
}

.footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__links a:hover { color: var(--highlight); }

.footer__copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .nav__links, .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}