:root {
  color-scheme: light;
  --ink: #111315;
  --paper: #f8faf6;
  --muted: #5f6b62;
  --line: #d7ded2;
  --blue: #2b7fff;
  --gold: #ffcb45;
  --red: #e65045;
  --lime: #d7ff42;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { 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);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
h1, h2, p { margin: 0; letter-spacing: 0; }
.top {
  display: flex;
  max-width: 1160px;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 0 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 28px; height: 28px; border-radius: 6px; }
nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 800; }
.hero {
  display: grid;
  min-height: min(700px, 76svh);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 20px 74px;
}
.eyebrow { margin-bottom: 14px; color: var(--red); font-size: 13px; font-weight: 950; text-transform: uppercase; }
h1 { max-width: 720px; font-size: clamp(46px, 7vw, 86px); line-height: 0.92; }
h2 { max-width: 680px; font-size: clamp(32px, 5vw, 58px); line-height: 0.98; }
.lede, .section-copy { max-width: 600px; margin-top: 22px; color: var(--muted); font-size: 20px; font-weight: 650; line-height: 1.45; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.button.ghost { background: white; color: var(--ink); }
.proof-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 34px;
  box-shadow: rgba(17, 19, 21, 0.25) 0 30px 70px;
}
.stripe { position: absolute; inset-block: 0; width: 26%; transform: skewX(-12deg); }
.stripe.one { right: 20%; background: var(--blue); }
.stripe.two { right: 9%; background: var(--gold); }
.stripe.three { right: -4%; background: var(--red); }
.proof-card p, .proof-card strong, .metrics { position: relative; z-index: 1; }
.proof-card p { color: #b9c1b6; font-size: 18px; font-weight: 800; }
.proof-card strong { display: block; max-width: 430px; margin-top: 18px; font-size: clamp(42px, 6vw, 72px); line-height: 0.92; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 70px; }
.metrics span { color: #b9c1b6; font-size: 13px; font-weight: 800; }
.metrics b { display: block; color: white; font-size: 34px; line-height: 1; }
.proof-row { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: white; }
.proof-row div { min-height: 118px; border-right: 1px solid var(--line); padding: 22px; }
.proof-row div:last-child { border-right: 0; }
.proof-row strong { display: block; font-size: 27px; line-height: 1; }
.proof-row span { display: block; margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.42; }
.section { max-width: 1160px; margin: 0 auto; padding: 78px 20px; }
.split { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 54px; }
.steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 6px 16px; border: 1px solid var(--line); border-radius: 8px; background: white; padding: 18px; }
.steps span { grid-row: span 2; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 8px; background: var(--ink); color: white; font-weight: 950; }
.steps strong { font-size: 20px; }
.steps p { color: var(--muted); line-height: 1.42; }
footer { display: flex; max-width: 1160px; justify-content: space-between; gap: 18px; margin: 0 auto; padding: 28px 20px; color: var(--muted); font-weight: 760; }
@media (max-width: 820px) {
  nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 28px; }
  .proof-row, .metrics { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  h1 { font-size: 42px; }
  .proof-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
