:root {
  --bg: #f3efff;
  --surface: #ffffff;
  --surface-soft: #f5eeff;
  --text: #1c2143;
  --text-muted: #5d628c;
  --primary: #5b40d0;
  --primary-dark: #2f1c78;
  --secondary: #ff7b72;
  --accent: #f4b400;
  --accent-2: #2ec4b6;
  --border: #e7dbff;
  --shadow: 0 24px 60px rgba(28, 33, 67, 0.12);
  --surface-glow: rgba(255, 255, 255, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, rgba(94, 64, 208, 0.12), transparent 28%),
              radial-gradient(circle at bottom right, rgba(253, 123, 114, 0.1), transparent 28%),
              var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92, 64, 208, 0.12);
}

.header-inner,
.footer-inner,
.hero-grid,
.split-section,
.impact-grid,
.news-grid {
  display: grid;
}

.header-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
}

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

.brand-logo-image {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.brand-tag {
  margin: 0.1rem 0 0;
  color: var(--secondary);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--primary);
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 18px 40px rgba(91, 64, 208, 0.18);
}

.button-secondary {
  background: rgba(46, 196, 182, 0.12);
  color: var(--primary-dark);
  border-color: rgba(46, 196, 182, 0.25);
}

.button-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(91, 64, 208, 0.24);
}

.button-facebook {
  background: #1877f2;
  color: white;
  border-color: transparent;
}

.button-facebook:hover {
  background: #145dbf;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(126, 80, 255, 0.06), rgba(255, 123, 114, 0.04));
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2.25rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(91, 64, 208, 0.16), rgba(255, 183, 62, 0.16));
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(148, 83, 255, 0.08));
  border: 1px solid rgba(91, 64, 208, 0.15);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0.5rem;
  color: var(--primary-dark);
  font-size: 1.75rem;
}

.hero-card p {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: #f8fbff;
}

.section-accent {
  background: #eef7fb;
}

.section-dark {
  background: var(--primary);
  color: white;
}

.split-section {
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(235, 225, 255, 0.7));
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(91, 64, 208, 0.16);
  box-shadow: 0 18px 50px rgba(91, 64, 208, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-dark);
}

.stat-card span {
  color: var(--text-muted);
}

.section-light {
  background: #f8f4ff;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 195, 170, 0.16), rgba(255, 255, 255, 0.82));
}

.section-dark {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.section-head {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.18), rgba(255, 183, 62, 0.18));
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.split-section h2 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.impact-card {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(94, 64, 208, 0.06));
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(91, 64, 208, 0.14);
  box-shadow: 0 18px 50px rgba(91, 64, 208, 0.08);
}

.impact-card h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.management-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 183, 62, 0.18);
  box-shadow: 0 18px 50px rgba(91, 64, 208, 0.06);
}

.management-card h3 {
  margin-top: 0;
  color: var(--secondary);
}

.management-card p {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.policy-panel {
  background: linear-gradient(180deg, rgba(242, 232, 255, 0.98), rgba(255, 255, 255, 0.95));
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(91, 64, 208, 0.14);
  box-shadow: 0 18px 50px rgba(91, 64, 208, 0.08);
  max-width: 760px;
}

.policy-dropdown {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.policy-dropdown select {
  flex: 1 1 260px;
  min-width: 220px;
  border: 1px solid rgba(91, 64, 208, 0.16);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: white;
  color: var(--text);
  font-size: 1rem;
}

.policy-dropdown button {
  min-width: 120px;
}

.policy-description {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.news-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 232, 255, 0.9));
  border-radius: 22px;
  border: 1px solid rgba(91, 64, 208, 0.14);
  padding: 1.8rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(91, 64, 208, 0.06);
}

.news-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.news-card p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.news-card a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
}

.news-footer {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-end;
}

.callout-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 183, 62, 0.18), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(255, 183, 62, 0.24);
  border-radius: 28px;
  padding: 2rem;
}

.site-footer {
  padding: 2rem 0;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.loading-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split-section,
  .impact-grid,
  .news-grid,
  .callout-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-footer {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .button {
    width: 100%;
  }
}
