:root {
  color-scheme: light;
  --ink: #16211f;
  --muted: #52615f;
  --surface: #fbfbf7;
  --paper: #ffffff;
  --line: #d8ded7;
  --solar: #f2b705;
  --teal: #087f73;
  --coral: #d96b4c;
  --shadow: 0 18px 48px rgba(22, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(242, 183, 5, 0.09), rgba(8, 127, 115, 0.06) 38%, transparent 70%),
    var(--surface);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  min-height: 76px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(22, 33, 31, 0.14);
}

.hero-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(22, 33, 31, 0.18);
}

.site-nav,
.site-footer {
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.site-nav a,
.site-footer a {
  text-decoration-color: rgba(8, 127, 115, 0.45);
  text-underline-offset: 4px;
}

.intro {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 6vw, 5.1rem);
  line-height: 0.96;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  background: var(--paper);
}

.app-snapshot {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.snapshot-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
}

.snapshot-header strong {
  color: var(--teal);
}

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

.metric-grid div {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: #fcfdfb;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.35rem;
}

.snapshot-note {
  border-left: 4px solid var(--coral);
  padding-left: 12px;
  color: var(--muted);
}

.content-band {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 54px 0 66px;
}

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

.section-heading h2,
.policy h1,
.policy h2 {
  margin: 0;
}

.section-heading p {
  max-width: 680px;
  color: var(--muted);
}

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

.feature-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

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

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.policy-page {
  padding: 34px 0 62px;
}

.policy {
  max-width: 860px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.policy h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.policy h2 {
  margin-top: 30px;
  font-size: 1.35rem;
}

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

.site-footer {
  min-height: 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

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

  .intro {
    margin-top: 18px;
    gap: 28px;
  }

  .actions,
  .button {
    width: 100%;
  }

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