:root {
  color-scheme: light;
  --orange: #f85a16;
  --orange-deep: #b8350b;
  --orange-soft: #fff0e8;
  --ink: #171717;
  --body: #404044;
  --muted: #73737a;
  --line: #dfdfe3;
  --surface: #ffffff;
  --canvas: #f7f7f8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  min-height: 100vh;
  margin: 0;
}

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

.site-header {
  min-height: 72px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 40px 28px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 12px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 64px;
  line-height: 68px;
}

h2 {
  font-size: 24px;
  line-height: 30px;
}

.lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--body);
  font-size: 19px;
  line-height: 30px;
  font-weight: 520;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
}

.button.primary {
  background: var(--orange);
  color: var(--surface);
}

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

.phone-visual {
  min-height: 560px;
  border: 1px solid #d7d7dc;
  border-radius: 34px;
  background: #f2f2f4;
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.16);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.phone-top {
  width: 82px;
  height: 6px;
  border-radius: 999px;
  background: #cbcbcf;
  align-self: center;
  margin-bottom: 28px;
}

.phone-card {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.phone-card.active {
  border-color: var(--orange);
}

.step {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 900;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: #d9d9de;
  margin-top: 24px;
  overflow: hidden;
}

.progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.status-band {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 34px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 32px;
  align-items: start;
}

.status-list {
  margin: 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 14px;
  line-height: 24px;
  font-weight: 650;
}

.plain-page {
  max-width: 760px;
  padding: 72px 28px 120px;
  margin: 0 auto;
}

.plain-page p:not(.eyebrow) {
  color: var(--body);
  font-size: 18px;
  line-height: 29px;
}

.plain-page .small {
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 30px 18px 56px;
    gap: 34px;
  }

  h1 {
    font-size: 42px;
    line-height: 46px;
  }

  .lede {
    font-size: 16px;
    line-height: 25px;
  }

  .phone-visual {
    min-height: 420px;
    border-radius: 24px;
  }

  .status-band {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }
}
