:root {
  --cream: #FBF6EF;
  --charcoal: #2B2622;
  --brick: #C0553B;
  --brick-dark: #A2432C;
  --moss: #6E7A5A;
  --line: #E6DDCF;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  padding: 24px 0;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hero */

.hero {
  padding: 48px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.subhead {
  font-size: 1.1rem;
  color: #55504A;
  max-width: 560px;
  margin: 0 auto 32px;
}

.coming-soon {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--brick);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* How it works */

.how {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.how h2 {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 40px;
}

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

.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.steps h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: #55504A;
}

/* Why section */

.why {
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
}

.why h2 {
  font-size: 1.4rem;
  margin: 0 0 16px;
  text-align: center;
}

.why p {
  color: #55504A;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: #8A8479;
}
