.home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}

.home-hero {
  width: 100%;
  max-width: 760px;
  padding: 52px 20px 24px;
  background: transparent;
  border-bottom: none;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.home-hero h1 {
  color: var(--text);
  font-size: clamp(2rem, 9vw, 3.5rem);
  letter-spacing: .08em;
}
.home-tagline {
  max-width: 32rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.home-main {
  display: grid;
  gap: 16px;
  width: min(100%, 760px);
  padding: 0 8px 24px;
}

.home-start,
.home-steps,
.home-note {
  padding: 20px;
}

.home-start {
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--surface) 86%, var(--accent) 14%),
    var(--surface) 58%);
}

.home-main h2 {
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.4;
}

.home-lead {
  margin-top: 10px;
}

.home-primary-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
}
.home-primary-action small {
  font-size: .72rem;
  font-weight: 400;
  opacity: .85;
}

.step-list {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  list-style: none;
}
.step-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.step-list li:first-child { border-top: none; }
.step-number {
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  border-radius: 99px;
  background: color-mix(in srgb, var(--accent) 18%, var(--border));
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
}
.step-list strong { font-size: .92rem; }
.step-list p,
.home-note p {
  margin-top: 3px;
  color: var(--text-dim);
  font-size: .82rem;
  line-height: 1.6;
}

.home-note {
  border-style: dashed;
}
.home-note strong { color: var(--text-mid); font-size: .88rem; }

.home-page footer {
  width: min(100%, 760px);
  margin-top: auto;
}

@media (min-width: 700px) {
  .home-hero { padding-top: 72px; }
  .home-main { grid-template-columns: 1.08fr .92fr; }
  .home-start { display: flex; flex-direction: column; }
  .home-primary-action { margin-top: auto; }
  .home-note { grid-column: 1 / -1; }
}
