:root {
  color-scheme: light;
  --ink: #16201d;
  --muted: #66716c;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d9ded5;
  --green: #2f7d56;
  --green-dark: #1f5e41;
  --amber: #b97818;
  --charcoal: #111816;
  --shadow: 0 24px 70px rgba(22, 32, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  padding: 2px 6px;
  font-size: 0.92em;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 58px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-header nav a {
  border: 1px solid rgba(23, 114, 193, 0.45);
  border-radius: 4px;
  padding: 8px 13px;
  color: #1772c1;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-header nav a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  display: flex;
  min-height: auto;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  padding: 64px max(22px, calc((100vw - 1120px) / 2)) 24px;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 460px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 125, 86, 0.12), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(185, 120, 24, 0.12), transparent 32%);
  content: "";
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--ink);
  text-align: center;
}

.hero-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(22, 32, 29, 0.16);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 4px;
  font-size: clamp(3.5rem, 6vw, 5.6rem);
  font-weight: 420;
  line-height: 0.98;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.05;
}

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

.tagline {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 1.1rem;
  font-weight: 680;
}

.hero-shot {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto 16px;
}

.hero-shot img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 26px 64px rgba(22, 32, 29, 0.23);
}

.hero-bottom {
  max-width: 820px;
}

.hero-summary {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 760;
}

.button-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(47, 125, 86, 0.28);
}

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

.button-secondary {
  border: 1px solid rgba(47, 125, 86, 0.2);
  background: rgba(47, 125, 86, 0.08);
  color: var(--green-dark);
}

.button-secondary:hover {
  background: rgba(47, 125, 86, 0.13);
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

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

  .hero-shot {
    width: min(720px, 100%);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 102px;
    padding-bottom: 18px;
  }

  .hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .tagline {
    font-size: 0.98rem;
  }

  .hero-summary {
    font-size: 0.96rem;
  }

  .site-header nav a {
    padding: 7px 8px;
    font-size: 0.84rem;
  }

  .button {
    width: 100%;
  }
}
