:root {
  color-scheme: light;
  --ink: #111315;
  --muted: #5f6b62;
  --paper: #f8faf6;
  --soft: #f0f5e8;
  --line: #d7ded2;
  --red: #e65045;
  --blue: #2b7fff;
  --gold: #ffcb45;
  --green: #14784a;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.35;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--paper);
}

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

.top {
  display: flex;
  max-width: 1160px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--red) 55%, var(--blue));
  content: "";
  box-shadow: 4px 4px 0 var(--ink);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 44px 20px 54px;
}

.copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 950;
  line-height: 0.92;
}

h2 {
  max-width: 690px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 930;
  line-height: 0.98;
}

h3 {
  font-size: 20px;
  font-weight: 900;
}

.lede {
  max-width: 550px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
}

.preview {
  min-width: 0;
}

.preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(17, 19, 21, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: rgba(17, 19, 21, 0.24) 0 24px 60px;
}

.embed-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  max-width: 620px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px;
}

code {
  overflow: hidden;
  color: #27322c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  padding: 0 16px;
}

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.stats div {
  min-height: 118px;
  border-right: 1px solid rgba(248, 250, 246, 0.18);
  padding: 24px clamp(18px, 4vw, 42px);
}

.stats strong {
  display: block;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: #bbc5b8;
  font-size: 15px;
  font-weight: 760;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 76px 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
}

.points {
  display: grid;
  gap: 16px;
}

.points article {
  border-left: 6px solid var(--red);
  background: white;
  padding: 22px 24px;
}

.points article:nth-child(2) {
  border-left-color: var(--blue);
}

.points article:nth-child(3) {
  border-left-color: var(--gold);
}

.points p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 620;
}

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

ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

li {
  min-height: 142px;
  background: var(--soft);
  padding: 18px;
  color: #27322c;
  font-size: 16px;
  font-weight: 760;
  counter-increment: step;
}

li::before {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  content: "0" counter(step);
  font-size: 24px;
  font-weight: 950;
}

footer {
  display: flex;
  max-width: 1160px;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 20px 42px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

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

  .hero {
    padding-top: 22px;
  }

  .band {
    grid-template-columns: repeat(2, 1fr);
  }

  .embed-box {
    grid-template-columns: 1fr;
  }

  code {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 44px;
  }

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