@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #f6faf5;
  --bg-alt: #e9f4e3;
  --text: #1e2b21;
  --text-muted: #56685a;
  --accent: #2f7d4f;
  --accent-dark: #1f5c3a;
  --accent-light: #8bc57e;
  --card: #ffffff;
  --border: #d7e8cf;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

body {
  margin: 0;
  font-family: 'Work Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

h1, h2 {
  font-family: 'Poppins', system-ui, sans-serif;
}

main a, footer a {
  color: var(--accent);
}

main a:hover, footer a:hover {
  color: var(--accent-dark);
}

header {
  background: var(--accent-dark);
  color: #fff;
  padding: 1.5rem 2rem;
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

header h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

header .tagline {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--accent-light);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--accent-light);
}

/* Full-bleed color bands, each with a constrained inner wrapper */
.band {
  width: 100%;
  padding: 3rem 2rem;
}

.band-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

.wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
}

main {
  display: block;
  width: 100%;
}

main > .band:first-child {
  padding-top: 3.5rem;
}

h2 {
  color: var(--accent-dark);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.4rem;
  font-size: 1.6rem;
}

h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--accent-dark);
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
}

table + h3 {
  margin-top: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: var(--wrap);
  margin: 0 auto;
}

.two-col ul {
  margin: 0;
  padding-left: 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.5rem 2.2rem;
}

.two-col li {
  margin-bottom: 0.6rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.poster-grid img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: block;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem 1.2rem;
  text-align: center;
}

.stat-card .num {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-card .label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.placeholder {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin: 1rem 0;
}

.timeline {
  counter-reset: step;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.timeline li {
  counter-increment: step;
  position: relative;
  margin: 0;
  padding: 1.4rem 1.4rem 1.2rem 3.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.timeline li::before {
  content: counter(step);
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline strong {
  color: var(--accent-dark);
  display: block;
  margin-bottom: 0.3rem;
}

footer {
  text-align: center;
  padding: 1.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

.table-scroll {
  overflow-x: auto;
  max-width: var(--wrap);
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  max-width: var(--wrap);
}

.table-scroll table {
  margin: 0;
}

.note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  text-align: left;
}

th {
  background: var(--bg-alt);
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  header {
    padding: 1.2rem;
  }
  .band {
    padding: 2rem 1.2rem;
  }
}
