:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --text: #24211c;
  --muted: #605a50;
  --line: #ddd7ca;
  --accent: #236b5b;
  --accent-dark: #17493e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.75;
}

a {
  color: var(--accent);
  font-weight: 700;
}

.page {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.35;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

p,
li,
.app-list span {
  color: var(--muted);
}

.lead {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

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

.section p:last-child,
.section ul:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
}

.link-list,
.app-list {
  display: grid;
  gap: 8px;
  padding-left: 1.25rem;
}

.app-list li {
  padding-bottom: 8px;
}

.app-list span {
  display: block;
  font-size: 0.94rem;
}

.footer {
  padding: 28px 0 0;
}

.footer p {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 24px, 880px);
    padding: 24px 0;
  }

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