:root {
  --bg-top: #fbf4e8;
  --bg-bottom: #e5d6b6;
  --surface: rgba(255, 250, 241, 0.92);
  --surface-strong: #fffaf1;
  --ink: #211a12;
  --muted: #6f614f;
  --line: rgba(90, 69, 40, 0.14);
  --accent: #8d5a2b;
  --accent-dark: #6b421c;
  --accent-soft: rgba(141, 90, 43, 0.12);
  --shadow: 0 24px 60px rgba(73, 53, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 30%),
    linear-gradient(140deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  font: 16px/1.6 "Avenir Next", "Segoe UI", sans-serif;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand span {
  color: var(--muted);
  font-size: 14px;
}

.site-nav {
  display: flex;
  gap: 16px;
}

.site-nav a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

p {
  margin: 0 0 14px;
}

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
}

.button-row,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button.secondary {
  border-color: rgba(141, 90, 43, 0.25);
  background: transparent;
  color: var(--accent-dark);
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.instructions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.screenshot {
  width: 100%;
  height: auto;
  margin-top: 18px;
  border-radius: 18px;
}

.single {
  max-width: 760px;
}

.how-it-works {
  margin-top: 28px;
  max-width: 860px;
  padding: 44px 52px;
}

.how-it-works p {
  max-width: 62ch;
  margin-bottom: 18px;
}

.footer-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header,
  .hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero,
  .how-it-works {
    padding: 30px 24px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .instructions {
    grid-template-columns: 1fr;
  }
}
