:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5b675f;
  --line: #d8e1dc;
  --paper: #f8faf8;
  --white: #ffffff;
  --green: #0d6b4f;
  --green-deep: #0a4638;
  --blue: #245b8f;
  --amber: #a7641b;
}

* {
  box-sizing: border-box;
}

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

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

.top {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  font-size: 21px;
}

.brand span {
  color: var(--green);
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.hero {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 40px;
  align-items: center;
}

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

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0 0 20px;
}

h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 18px;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

.btn.secondary {
  background: var(--white);
  color: var(--green);
}

.screen {
  background: #0d1713;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 24px 80px rgba(21, 45, 38, 0.18);
}

.screen-inner {
  min-height: 410px;
  background: #f6f8f7;
  border-radius: 4px;
  padding: 18px;
  overflow: hidden;
}

.screen-bar {
  height: 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -18px -18px 18px;
  padding: 0 16px;
  background: var(--white);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.metric-grid,
.cards,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.card,
.price,
.band {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 28px;
  color: var(--green-deep);
}

.metric span,
.card p,
.price p,
.small {
  color: var(--muted);
}

.section {
  padding: 38px 0;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.list {
  padding-left: 20px;
  margin: 12px 0 0;
}

.list li {
  margin: 7px 0;
}

.price strong {
  display: block;
  font-size: 30px;
  margin: 10px 0 8px;
}

.tag {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}

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

  .metric-grid,
  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .links {
    gap: 10px;
    font-size: 13px;
  }
}
