:root {
  color-scheme: light;
  --ink: #111315;
  --muted: #5d666f;
  --line: #d8dde1;
  --panel: #f6f7f5;
  --accent: #94d8b2;
  --accent-ink: #152019;
  --dark: #17191b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfbf8;
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
  padding: 72px max(32px, calc((100vw - 1180px) / 2)) 42px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2ef 100%);
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #3f7055;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.lede {
  max-width: 520px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.4;
}

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

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

.button.primary {
  border-color: #75bd93;
  background: var(--accent);
  color: var(--accent-ink);
}

.button.secondary {
  background: #fff;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
}

.download-links a {
  color: #3f7055;
  font-weight: 700;
  text-decoration: none;
}

.download-links a:hover {
  text-decoration: underline;
}

.hero-image,
.screenshot img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(17, 19, 21, 0.10);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.16);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.feature-strip div {
  min-height: 180px;
  padding: 34px;
  background: #fff;
}

.feature-strip strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.feature-strip span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.screenshot {
  padding: 96px max(32px, calc((100vw - 1180px) / 2));
  background: var(--panel);
}

.section-copy {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-copy p:not(.eyebrow),
.download p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.download {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.6fr);
  gap: 48px;
  align-items: center;
  padding: 86px max(32px, calc((100vw - 1180px) / 2)) 100px;
  background: var(--dark);
  color: #fff;
}

.download p {
  color: rgba(255, 255, 255, 0.68);
}

pre {
  margin: 0;
  padding: 24px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .hero,
  .download {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

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

  .feature-strip div {
    min-height: 0;
  }
}
