:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --ink: #101426;
  --muted: #687088;
  --line: #dfe4ee;
  --panel: #ffffff;
  --brand: #2155d9;
  --brand-dark: #173db0;
  --soft: #eef3ff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.topbar,
.hero,
.section,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand,
.nav,
.actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav-button,
.primary,
.secondary {
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.nav-button {
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: center;
  min-height: 620px;
  padding: 48px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

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

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

.primary,
.secondary {
  padding: 13px 18px;
}

.primary {
  background: var(--brand);
  color: #fff;
}

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

.status-panel,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-panel {
  padding: 10px;
}

.status-panel div {
  display: grid;
  gap: 3px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.status-panel div:last-child {
  border-bottom: 0;
}

.status-panel span,
.price-card p,
.steps,
.footer {
  color: var(--muted);
}

.status-panel strong {
  font-size: 18px;
}

.copy-button {
  width: fit-content;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  padding: 8px 12px;
}

.section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 620px;
}

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

.price-card {
  padding: 22px;
}

.price {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
}

.steps {
  margin: 0;
  padding-left: 22px;
  font-size: 18px;
}

.steps li + li {
  margin-top: 14px;
}

code {
  border-radius: 6px;
  background: var(--soft);
  padding: 2px 6px;
  color: var(--brand-dark);
}

pre {
  overflow-x: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f172a;
  padding: 22px;
}

pre code {
  background: transparent;
  color: #e6edf7;
  padding: 0;
}

.footer {
  justify-content: flex-start;
  gap: 18px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer span {
  color: var(--ink);
  font-weight: 800;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .hero,
  .split,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  h1 {
    font-size: 42px;
  }
}
