:root {
  --background: #ffffff;
  --foreground: #000000;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --primary-foreground: #ffffff;
  --accent: #059669; /* emerald-600 */
}

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

html {
  background: var(--background);
}

body {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.page {
  display: flex;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.container {
  width: 100%;
  max-width: 24rem; /* max-w-sm */
}

/* Wordmark */
.wordmark {
  text-align: center;
}

.wordmark__title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 0.35em;
  /* nudge for the letterspacing so it stays centered */
  text-indent: 0.35em;
}

.wordmark__rule {
  width: 40px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--foreground);
}

/* Headline */
.headline {
  margin-top: 40px;
  text-align: center;
}

.headline__eyebrow {
  margin-top: 19px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.headline__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.15;
  text-wrap: balance;
}

.headline__sub {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Steps */
.steps-section {
  margin-top: 32px;
}

.steps {
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.step {
  display: flex;
  gap: 16px;
}

.step + .step {
  border-top: 1px solid var(--border);
}

.step--1 {
  padding-top: 6px;
  padding-bottom: 2px;
}
.step--2 {
  padding-top: 14px;
  padding-bottom: 13px;
}
.step--3 {
  padding-top: 8px;
  padding-bottom: 2px;
}
.step--4 {
  padding-top: 9px;
  padding-bottom: 14px;
}

.step__num {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}

.step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step__title {
  font-size: 0.875rem;
  line-height: 1.6;
}

.step__note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* CTA */
.cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta__button {
  width: 100%;
  margin: 0 1px;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  background: var(--accent);
  color: var(--primary-foreground);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cta__button:hover {
  opacity: 0.8;
}

.cta__urgency {
  align-self: flex-start;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

/* Trust */
.trust {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star {
  width: 16px;
  height: 16px;
  display: block;
}

.trust__score {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  margin-top: 48px;
  text-align: center;
}

.footer__note {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}
