:root {
  color-scheme: light;
  --ink: #18202a;
  --muted: #5d6875;
  --line: #d9dee7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --green: #2f7d59;
  --amber: #c47a1f;
  --blue: #2e5aac;
  --shadow: 0 22px 70px rgba(24, 32, 42, 0.16);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

main {
  min-height: 100vh;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 28px 42px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
  text-decoration: none;
}

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

.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: white;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.product-shot {
  border: 1px solid #cbd3df;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #eef2f6;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #aab4c0;
}

.window-bar span:first-child {
  background: #d76a5e;
}

.window-bar span:nth-child(2) {
  background: #d6a33f;
}

.window-bar span:nth-child(3) {
  background: #5aaf78;
}

.app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  padding: 18px;
  min-height: 410px;
  background: #f9fafc;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
}

.label {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.field,
.line,
.check,
.code-block div {
  border-radius: 6px;
  background: #e7ebf1;
}

.field {
  height: 34px;
  margin-bottom: 12px;
}

.field.wide {
  height: 72px;
}

.field.short {
  width: 68%;
}

.check {
  height: 32px;
  margin-bottom: 10px;
  border-left: 5px solid var(--amber);
}

.check.complete {
  border-left-color: var(--green);
}

.line {
  height: 12px;
  margin-bottom: 11px;
}

.line.wide {
  width: 92%;
}

.line.short {
  width: 58%;
}

.code-block {
  margin-top: 24px;
  padding: 14px;
  border-radius: 8px;
  background: #253142;
}

.code-block div {
  height: 10px;
  margin-bottom: 9px;
  background: #9fb0c6;
}

.code-block div:nth-child(2) {
  width: 78%;
}

.code-block div:nth-child(3) {
  width: 54%;
  margin-bottom: 0;
}

.export-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.export-row span {
  display: inline-flex;
  height: 34px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: white;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.band,
.split,
.cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 28px;
}

.band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.band p,
.split p,
.cta p {
  color: var(--muted);
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.features li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: white;
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split > div {
  border-top: 3px solid var(--green);
  padding-top: 18px;
}

.split > div:nth-child(2) {
  border-top-color: var(--amber);
}

.cta {
  padding-bottom: 70px;
  text-align: center;
}

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

  .hero {
    padding-top: 34px;
    gap: 34px;
  }

  .product-shot {
    min-width: 0;
  }

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

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
