:root {
  color-scheme: light;
  --ink: #121722;
  --muted: #5e6a7d;
  --line: #d9e0ea;
  --soft: #f5f7fb;
  --panel: #ffffff;
  --blue: #1f6feb;
  --green: #15803d;
  --gold: #d98a12;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--panel);
  color: var(--ink);
  font: 16px/1.6 Arial, Helvetica, sans-serif;
}

a {
  color: var(--blue);
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a,
.site-footer a,
.text-link {
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 48px;
  align-items: center;
  padding: 58px 0 46px;
}

.hero-copy {
  min-width: 0;
}

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

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.15;
}

h1 {
  max-width: 740px;
  font-size: 56px;
}

h2 {
  font-size: 30px;
}

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

.hero-image {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
}

.section p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
  font-weight: 700;
}

.privacy-band {
  padding-bottom: 58px;
}

.privacy-band .text-link {
  display: inline-block;
  margin-top: 20px;
}

.policy-page {
  padding: 50px 0 60px;
}

.policy {
  max-width: 860px;
}

.policy h1 {
  font-size: 46px;
}

.policy section {
  padding: 32px 0 0;
}

.policy p,
.policy li {
  color: var(--muted);
  font-size: 18px;
}

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

.site-footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 38px;
  }

  h1 {
    font-size: 40px;
  }

  .policy h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 18px;
  }
}
