:root {
  color-scheme: light;
  --ink: #141816;
  --muted: #52615a;
  --line: #dce5df;
  --panel: #ffffff;
  --soft: #f4f8f5;
  --mint: #1f9d6d;
  --mint-dark: #0f6848;
  --gold: #c98917;
  --night: #101513;
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body {
  margin: 0;
  min-width: 320px;
}

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

a {
  color: var(--mint-dark);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.nav,
.footer-inner,
.section,
.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand span {
  font-size: 1rem;
  font-weight: 900;
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 44px;
  padding: 56px 0 40px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--mint-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.08rem;
}

.lede {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  border-color: var(--mint);
  background: var(--mint);
  color: #07130f;
}

.feature-image {
  overflow: hidden;
  border: 1px solid #1f2a25;
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 20px 50px rgba(16, 21, 19, 0.18);
}

.feature-image img {
  width: 100%;
  height: auto;
}

.section {
  padding: 52px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading p,
.text-block p,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.68;
}

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

.feature-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.info-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--soft);
}

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

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.status-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.status-list strong {
  color: var(--ink);
}

.status-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(31, 157, 109, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--mint-dark);
  background: #eaf7f0;
  font-size: 0.78rem;
  font-weight: 900;
}

.policy {
  max-width: 820px;
}

.policy h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.policy h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.policy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.policy li + li {
  margin-top: 8px;
}

.meta {
  color: var(--gold);
  font-weight: 900;
}

.footer-inner {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 820px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .links {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

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

@media (max-width: 480px) {
  .nav,
  .footer-inner,
  .section,
  .hero {
    width: min(100% - 28px, 1120px);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .status-list li {
    align-items: flex-start;
    flex-direction: column;
  }
}
