:root {
  color-scheme: light dark;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #1a1d24;
  --muted: #5c6370;
  --border: #e2e5eb;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --max: 800px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12141a;
    --surface: #1a1d26;
    --text: #eef0f4;
    --muted: #9aa3b2;
    --border: #2a2f3a;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu,
    "Helvetica Neue", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  text-align: center;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.hero {
  margin-bottom: 2.75rem;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}

.hero__lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.steps > li {
  min-width: 0;
}

.step__title {
  margin: 0 0 1rem;
  font-size: clamp(1.02rem, 2.35vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--text) 62%, transparent);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .step__title {
    white-space: normal;
    text-wrap: balance;
  }
}

.shot {
  margin: 0 auto;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.shot picture,
.shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
