:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --ink: #172018;
  --muted: #5d665c;
  --green: #2f6f46;
  --green-dark: #1f4c32;
  --green-soft: #dcebdd;
  --gold: #b58932;
  --line: #ded8cb;
  --shadow: 0 10px 28px rgba(23, 32, 24, 0.08);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface);
}

.brand-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--green-dark);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero,
.page-hero {
  background: linear-gradient(90deg, #eef5ec 0%, #fffaf0 64%, #f7f5ef 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 20px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 42px;
  align-items: center;
}

.page-hero .container {
  padding-top: 68px;
  padding-bottom: 58px;
}

.eyebrow,
.section-label,
.status-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  text-transform: none;
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero-copy,
.lead {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(47, 111, 70, 0.2);
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  background: var(--surface);
  color: var(--green-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--green-soft);
}

section {
  padding: 70px 20px;
}

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

.section-header {
  max-width: 830px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.panel,
.card,
.status-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.panel p,
.card p,
.status-panel p {
  margin-bottom: 0;
}

.status-panel {
  background: rgba(255, 255, 255, 0.9);
}

.status-panel img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  min-width: 42px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dark {
  background: var(--green-dark);
  color: #fff;
}

.dark .section-label,
.dark .tag {
  color: #d8f0dc;
}

.dark p,
.dark .section-header p,
.dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.phase-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.phase {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.phase-number {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.phase-title {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 900;
}

.current {
  border-color: rgba(47, 111, 70, 0.35);
  background: #f2f7f0;
}

.list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list li,
.clean-list li {
  padding: 15px 16px;
  border-radius: 8px;
}

.list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.clean-list li {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--muted);
}

.progress-list {
  counter-reset: progress;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.progress-list li {
  counter-increment: progress;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font-weight: 850;
}

.progress-list li::before {
  content: counter(progress);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 8px;
  font-weight: 900;
}

.badge {
  border-radius: 8px;
  padding: 5px 8px;
  background: #ece7dc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.badge.live {
  background: var(--green-soft);
  color: var(--green-dark);
}

.feature-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 900;
}

.feature-link span {
  color: var(--muted);
  font-weight: 700;
}

.contact {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
}

.contact p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 860px;
  margin: 0 auto 24px;
}

.contact-paths {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px auto 0;
  max-width: 920px;
}

.contact-paths span {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 14px;
}

.contact .button {
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
  margin-top: 30px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .hero-inner,
  .grid.two,
  .grid.three,
  .progress-list {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 44px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: auto;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .hero-inner,
  .page-hero .container {
    padding: 40px 20px 48px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy,
  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 54px 18px;
  }

  .panel,
  .card,
  .status-panel {
    padding: 20px;
  }

  .phase,
  .progress-list li {
    grid-template-columns: 1fr;
  }

  .badge {
    justify-self: start;
  }
}
