:root {
  color-scheme: light dark;
  --bg: #f6f8f4;
  --surface: #ffffff;
  --text: #151915;
  --muted: #5d675e;
  --line: rgba(21, 25, 21, 0.14);
  --accent: #2d6b4f;
  --shadow: 0 24px 70px rgba(37, 64, 48, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111611;
    --surface: #1a211b;
    --text: #eef4ec;
    --muted: #bac6b8;
    --line: rgba(238, 244, 236, 0.16);
    --accent: #7ec49e;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 85% 12%, rgba(126, 196, 158, 0.22), transparent 28rem), var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.nav,
.footer-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.links,
.footer {
  color: var(--muted);
}

.links a,
.footer a,
.button {
  text-decoration: none;
}

.hero {
  min-height: calc(100dvh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr);
  align-items: start;
  gap: 42px;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

p {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 12px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 720;
}

.hero-screens img {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-screens {
  justify-self: end;
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  padding-top: 8px;
}

.hero-screens img:nth-child(2) {
  margin-top: 42px;
}

.hero-screens img:nth-child(3) {
  margin-top: 84px;
}

.page {
  padding: 76px 0 96px;
}

.page h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 42px);
  background: var(--surface);
}

.card p:first-child {
  margin-top: 0;
}

.card p:last-child {
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

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

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .hero-screens {
    justify-self: stretch;
    gap: 8px;
  }

  .hero-screens img {
    border-radius: 18px;
  }

  .hero-screens img:nth-child(2) {
    margin-top: 22px;
  }

  .hero-screens img:nth-child(3) {
    margin-top: 44px;
  }
}
