:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --ink: #17211d;
  --muted: #61706a;
  --line: #dce1da;
  --green: #117a49;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.shell {
  min-height: 100vh;
}

.hero {
  background: #102019;
  color: #ffffff;
  min-height: 88svh;
  overflow: hidden;
  padding: 0 clamp(18px, 4vw, 54px) 56px;
  position: relative;
}

.hero::after {
  background: rgba(16, 32, 25, 0.55);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-template {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  position: absolute;
}

.hero-template-a {
  height: min(78svh, 780px);
  right: 10%;
  top: 8%;
  transform: rotate(2deg);
}

.hero-template-b {
  height: min(48svh, 520px);
  right: 34%;
  top: 32%;
  transform: rotate(-4deg);
}

.hero-template-c {
  height: min(46svh, 500px);
  right: -2%;
  top: 44%;
  transform: rotate(4deg);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 82px;
  position: relative;
  z-index: 1;
}

.nav div {
  align-items: center;
  display: flex;
  gap: 18px;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.brand {
  color: #ffffff;
  font-size: 22px;
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 690px;
  padding: 92px 0 36px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  max-width: 660px;
}

h2 {
  font-size: 30px;
  line-height: 1.12;
}

h3 {
  font-size: 18px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
  max-width: 620px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary,
.secondary {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
}

.primary {
  background: #ffffff;
  color: #102019;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.band,
.workflow,
.price {
  margin: 0 auto;
  max-width: 1180px;
  padding: 70px clamp(18px, 4vw, 54px);
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 680px;
}

.benefit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

article,
.price-panel,
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
}

article p,
.workflow-copy p,
.price p {
  color: var(--muted);
  line-height: 1.55;
}

.workflow,
.price {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
}

.workflow-copy {
  display: grid;
  gap: 14px;
}

.steps {
  counter-reset: setup;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: center;
  counter-increment: setup;
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 62px;
  padding: 12px;
}

.steps li::before {
  background: #eef2ed;
  border-radius: 50%;
  content: counter(setup);
  display: grid;
  font-weight: 900;
  height: 32px;
  place-items: center;
  width: 32px;
}

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

.price > div:first-child {
  display: grid;
  gap: 10px;
}

.price-panel {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.price-panel strong {
  font-size: 54px;
  line-height: 1;
}

.price-panel span {
  color: var(--green);
  font-weight: 900;
}

.price-panel small {
  color: var(--muted);
  margin-bottom: 12px;
}

.price-panel .primary {
  background: var(--green);
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }

  .nav div {
    flex-wrap: wrap;
  }

  .hero-template-a {
    height: 520px;
    opacity: 0.62;
    right: -130px;
    top: 150px;
  }

  .hero-template-b,
  .hero-template-c {
    display: none;
  }

  .hero-copy {
    padding-top: 54px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .benefit-grid,
  .workflow,
  .price {
    grid-template-columns: 1fr;
  }
}
