:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #172026;
  --muted: #5f686f;
  --line: #d9d1c6;
  --accent: #e83e8c;
  --accent-ink: #ffffff;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.panel {
  padding: 44px 0 0;
}

.panel h2 {
  font-size: 1.4rem;
}

.panel ol {
  margin: 18px 0 0;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.8;
}

code {
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: #ece7df;
  color: var(--ink);
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, 1040px);
    padding: 36px 0;
  }

  .hero {
    min-height: 62vh;
  }

  .actions {
    flex-direction: column;
  }
}
