:root {
  --teal: #2F6B6A;
  --teal-deep: #255655;
  --clay: #D9825C;
  --clay-deep: #BF6F4B;
  --sage: #7E8C7A;
  --sand: #F4EFE9;
  --chalk: #FFFCF7;
  --ink: #1D2328;
  --muted: #4B575F;
  --line: #E3DDD4;
  --shadow-sm: 0 10px 26px rgba(20, 24, 28, 0.08);
  --shadow-md: 0 26px 60px rgba(20, 24, 28, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-logo img {
  height: 54px;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--teal);
  color: var(--chalk);
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--chalk);
}

.btn.light {
  background: var(--chalk);
  color: var(--teal);
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--chalk);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 700;
}

.hero {
  padding: 4.8rem 0 4rem;
  position: relative;
  background: var(--chalk);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(47, 107, 106, 0.12);
  top: -60px;
  right: 10%;
  z-index: 0;
}

.hero::after {
  width: 160px;
  height: 160px;
  background: rgba(217, 130, 92, 0.12);
  top: 220px;
  right: 55%;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tag-row span {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  background: var(--chalk);
  color: var(--teal-deep);
  font-weight: 600;
}

.hero-panel {
  background: var(--chalk);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.hero-panel h3 {
  font-family: 'Sora', sans-serif;
  margin: 0 0 0.8rem;
}

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

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.panel-top span {
  font-weight: 700;
  color: var(--teal);
}

.chart-wrap {
  background: var(--sand);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.stats-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 1.6rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--sand);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--teal-deep);
}

.section {
  padding: 4.2rem 0;
}

.section.alt {
  background: var(--chalk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
}

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

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

.card {
  background: var(--chalk);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-top: 0;
  font-family: 'Sora', sans-serif;
}

.card-accent {
  border-left: 4px solid var(--clay);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-list span {
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(217, 130, 92, 0.14);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--clay-deep);
}

.timeline {
  display: grid;
  gap: 1.2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--teal);
  color: var(--chalk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.board {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
}

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

.board-tile {
  background: var(--chalk);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.switcher {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.switcher button {
  border: 1px solid var(--line);
  background: var(--chalk);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.switcher button.is-active {
  background: var(--teal);
  color: var(--chalk);
  border-color: var(--teal);
}

.cta-section {
  padding: 4.2rem 0;
}

.cta-box {
  background: var(--teal-deep);
  color: var(--chalk);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.cta-box h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.footer {
  background: #1a1f22;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0;
}

.footer a {
  color: var(--chalk);
}

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

.footer small {
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 1rem;
    flex-direction: column;
    background: var(--chalk);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

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

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

  .nav-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero-panel {
    padding: 1.6rem;
  }

  .cta-box {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .nav-logo img {
    height: 42px;
  }
}
