:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101820;
  color: #eef6f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(16, 24, 32, 0.72), rgba(16, 24, 32, 0.88)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.shell {
  min-height: 100vh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 48px;
  display: grid;
  align-content: space-between;
  gap: 56px;
}

.hero {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #7ee5a0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.94;
}

.lede {
  margin: 24px 0 0;
  max-width: 620px;
  color: #d3e4e7;
  font-size: 22px;
  line-height: 1.45;
}

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

.button {
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(238, 246, 247, 0.38);
  color: #eef6f7;
  text-decoration: none;
  font-weight: 800;
  background: rgba(16, 24, 32, 0.42);
}

.button.primary {
  border-color: #7ee5a0;
  background: #7ee5a0;
  color: #101820;
}

.panel {
  width: min(760px, 100%);
  padding-top: 26px;
  border-top: 1px solid rgba(238, 246, 247, 0.32);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
}

h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.panel p {
  margin: 0;
  color: #c2d2d5;
  line-height: 1.5;
}

dl {
  margin: 0;
  display: grid;
  gap: 8px 14px;
  grid-template-columns: auto auto;
  align-content: start;
}

dt {
  color: #7ee5a0;
  font-weight: 800;
}

dd {
  margin: 0;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #f5dd82;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1120px);
    padding-top: 44px;
  }

  .lede {
    font-size: 18px;
  }

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