:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #5d6a62;
  --line: #d8ded8;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --accent: #2e6b4f;
  --accent-strong: #184634;
  --gold: #c59a43;
  --blue: #315f80;
  --shadow: 0 18px 50px rgba(33, 49, 40, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
}

a {
  color: var(--accent-strong);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
}

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

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

nav a:hover,
nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 210px);
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero-copy h1,
.legal-header h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.legal-header p {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(140deg, rgba(46, 107, 79, 0.1), rgba(197, 154, 67, 0.12)),
    var(--surface);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
}

.panel-top strong {
  color: var(--ink);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid div,
.task-list div,
.feature-grid article,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.metric-grid div {
  padding: 16px;
}

.metric-grid span,
.task-list em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 32px;
  line-height: 1;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.task-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.content-band {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 72px 0;
}

.section-heading,
.feature-grid,
.legal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading h2,
.legal-section h2,
.support-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

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

.feature-grid article,
.support-card {
  padding: 22px;
}

.feature-grid h3 {
  margin: 0 0 8px;
}

.feature-grid p,
.legal-section p,
.legal-section li,
.support-card p {
  color: var(--muted);
}

.legal-page {
  padding: 56px 0 80px;
}

.legal-header {
  margin-bottom: 44px;
}

.legal-header h1 {
  font-size: clamp(38px, 6vw, 62px);
}

.legal-section {
  max-width: 840px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-section ul {
  padding-left: 22px;
}

.support-card {
  max-width: 760px;
  margin-bottom: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 15vw, 66px);
  }

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

  .task-list div {
    flex-direction: column;
    gap: 4px;
  }
}
