:root {
  --bg: #0a0a0a;
  --paper: #14130f;
  --fg: #faf7f2;
  --soft: #d5d0c5;
  --muted: #999590;
  --aurum: #c9b477;
  --line: rgba(201, 180, 119, 0.22);
  --sans: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--soft);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: auto;
}
.top {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg);
  font-size: 14px;
}
.brand strong {
  color: var(--aurum);
}
.back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  font-size: 13px;
  text-decoration: none;
}
.back:hover {
  color: var(--aurum);
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7vw;
  align-items: end;
  padding: 96px 0 80px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--aurum);
  margin-bottom: 24px;
}
.hero h1 {
  margin: 0;
  color: var(--fg);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 450;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.lede {
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  color: var(--soft);
  max-width: 660px;
}
.hero figure {
  margin: 0;
  position: relative;
  transform: translateY(42px);
}
.hero picture {
  display: block;
  width: 100%;
}
.hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.hero figcaption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
.section {
  padding: 96px 0;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}
.grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9vw;
}
.section h2 {
  margin: 0;
  color: var(--fg);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 450;
  letter-spacing: -0.03em;
}
.copy {
  max-width: 700px;
}
.copy p {
  margin: 0 0 22px;
  font-size: 17px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 24px 0 24px 70px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  position: relative;
}
.steps li:before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 25px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--aurum);
}
.steps strong {
  display: block;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 4px;
}
.proof {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  margin-top: 48px;
}
.proof picture {
  display: block;
  height: 100%;
  min-width: 0;
}
.proof img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid rgba(250, 247, 242, 0.1);
}
.cta {
  padding: 96px 0;
  background: var(--fg);
  color: #0a0a0a;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
}
.cta h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}
.cta p {
  margin: 0 0 26px;
  color: rgba(10, 10, 10, 0.7);
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  color: var(--fg);
  text-decoration: none;
  padding: 13px 24px;
  border: 1px solid #0a0a0a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button:hover {
  background: var(--aurum);
  color: #0a0a0a;
}
.foot {
  padding: 32px 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
:focus-visible {
  outline: 2px solid var(--aurum);
  outline-offset: 4px;
}
@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }
  .top {
    min-height: 68px;
  }
  .hero,
  .grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 72px 0 56px;
  }
  .hero figure {
    transform: none;
  }
  .hero img {
    aspect-ratio: 16/10;
  }
  .section,
  .cta {
    padding: 72px 0;
  }
  .proof {
    grid-template-columns: 1fr;
  }
  .proof img {
    min-height: 220px;
  }
  .steps li {
    padding-left: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
