@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Actor&display=swap');

:root {
  --green: #669b1c;
  --dark-green: #002810;
  --blue: #0a0a4e;
  --teal: #027e63;
  --text: #0f172a;
  --muted: #4b5563;
  --surface: #ffffff;
  --surface-alt: #f5f8fb;
  --border: rgba(15, 23, 42, 0.08);
}

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

body {
  margin: 0;
  font-family: "Actor", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(11, 166, 166, 0.08), transparent 32%),
              radial-gradient(circle at 80% 0%, rgba(17, 35, 105, 0.08), transparent 28%),
              var(--surface);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: "Bree Serif", "Actor", serif;
  margin: 0 0 0.5rem;
  color: var(--blue);
}

p {
  margin: 0 0 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--blue);
}

.brand-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  color: var(--text);
}

.nav a:hover {
  background: rgba(11, 166, 166, 0.12);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--teal), var(--blue));
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(17, 35, 105, 0.18);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(11, 166, 166, 0.24);
}

.btn.ghost {
  border-color: rgba(17, 35, 105, 0.2);
  color: var(--blue);
  background: rgba(11, 166, 166, 0.06);
}

.btn.ghost:hover {
  border-color: rgba(17, 35, 105, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  padding: 5rem 2.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
}

.badge {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 35, 105, 0.1);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-meta {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 12px;
  background: rgba(17, 35, 105, 0.08);
  margin-right: 0.4rem;
  font-size: 0.9rem;
}

.hero-card {
  background: linear-gradient(160deg, rgba(17, 35, 105, 0.06), rgba(11, 166, 166, 0.08));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1rem;
}

.checklist li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.small {
  color: #6b7280;
  font-size: 0.92rem;
}

.section {
  padding: 4rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section.alt {
  background: var(--surface-alt);
  width: 100%;
}

.section-header {
  max-width: 900px;
  margin-bottom: 2rem;
}

.section-lead {
  color: var(--muted);
  max-width: 760px;
}

.identity {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(120, 170, 66, 0.12), rgba(11, 166, 166, 0.1));
  border: 1px solid var(--border);
  align-items: center;
}

.identity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.card {
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  background: rgba(120, 170, 66, 0.14);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
}

.tag.accent {
  background: rgba(11, 166, 166, 0.14);
  color: var(--blue);
}

.tag.neutral {
  background: rgba(15, 23, 42, 0.06);
  color: var(--blue);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pillar {
  padding: 1.2rem;
  border-radius: 14px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  padding: 1.2rem;
  border-radius: 12px;
  background: rgba(17, 35, 105, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
}

.stat h3 {
  margin-bottom: 0.4rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item .dot {
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--green), var(--blue));
  box-shadow: 0 0 0 6px rgba(17, 35, 105, 0.1);
}

.agenda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.agenda-card {
  padding: 1.3rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.support-card {
  padding: 1.3rem;
  border-radius: 14px;
  background: #eef7ef;
  border: 1px solid rgba(120, 170, 66, 0.25);
}

.support-card .btn {
  margin-top: 0.5rem;
}

.contact {
  display: flex;
  justify-content: center;
}

.contact-card {
  max-width: 900px;
  width: 100%;
  padding: 2rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.label {
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin-bottom: 0.5rem;
}

.links a {
  color: var(--text);
  text-decoration: underline;
}

.note {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(17, 35, 105, 0.08);
  color: var(--text);
  border: 1px solid rgba(17, 35, 105, 0.18);
}

.footer {
  padding: 1.8rem 2.5rem;
  text-align: center;
  background: #f1f5f9;
  color: #334155;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.page-hero {
  padding: 3rem 2.5rem 2rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2.5rem 3rem;
}

.two-column {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
}

.sidebar {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.sidebar li a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.sidebar li:last-child a {
  border-bottom: none;
}

.sidebar a.active {
  background: rgba(11, 166, 166, 0.08);
  color: var(--blue);
}

.page-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.list-title {
  font-family: "Bree Serif", "Actor", serif;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.list-item {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 1rem;
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
}

.section-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.section-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 1rem;
}

.section-icon {
  width: 100%;
  height: 100%;
  min-height: 90px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
}

.section-title {
  margin: 0 0 0.35rem;
  font-family: "Bree Serif", "Actor", serif;
  color: var(--blue);
  font-size: 1.05rem;
}

.section-meta {
  margin: 0 0 0.2rem;
  font-weight: 700;
  color: var(--green);
}

.schedule {
  display: grid;
  gap: 0.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(17, 35, 105, 0.12);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.86rem;
}

.schedule-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.icon-green { background: #0b7c3a; }
.icon-blue { background: #0a3a8a; }
.icon-teal { background: #0ba6a6; }
.icon-yellow { background: #d39f00; }
.icon-cyan { background: #0f9ad6; }
.icon-emerald { background: #0f6640; }
.icon-magenta { background: #9a1d55; }
.icon-red { background: #c3312b; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-family: "Actor", system-ui, -apple-system, sans-serif;
}

.form-control:focus {
  outline: 2px solid rgba(11, 166, 166, 0.25);
  border-color: rgba(11, 166, 166, 0.4);
}

.temporary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 35, 105, 0.08);
  color: var(--blue);
  font-weight: 700;
}

.section-block {
  margin-bottom: 2rem;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}

.timeline-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--green), var(--blue));
  box-shadow: 0 0 0 6px rgba(17, 35, 105, 0.08);
}

.quote {
  border-left: 4px solid var(--teal);
  padding-left: 1rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
}

.columns-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-inline li {
  background: rgba(17, 35, 105, 0.06);
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 960px) {
  .sections-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .topbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
  }

  .cta {
    flex-direction: row;
  }

  .identity {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0.9rem 1.3rem;
  }

  .section, .hero {
    padding: 3rem 1.3rem;
  }

  .nav a {
    padding: 0.35rem 0.55rem;
  }
}
