:root {
  color-scheme: light;
  font-family: Arial, sans-serif;
  color: #18181b;
  background: #f6f1ef;
}

* { box-sizing: border-box; }
body { margin: 0; line-height: 1.65; }
a { color: #7f3158; }
.topbar { display: flex; justify-content: space-between; gap: 16px; padding: 20px max(20px, calc((100vw - 980px) / 2)); background: #fff; border-bottom: 1px solid #e7e5e4; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: auto; height: 34px; }
.back { font-weight: 700; }
main { width: min(980px, calc(100% - 32px)); margin: 32px auto 64px; }
.hero { padding: clamp(28px, 6vw, 64px); border-radius: 16px; color: #fff; background: #24131f; }
.hero h1 { max-width: 720px; margin: 8px 0 16px; font-size: clamp(36px, 7vw, 68px); line-height: 1; }
.hero p { max-width: 720px; color: #f4dfe8; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.content { display: grid; gap: 16px; margin-top: 24px; }
article { padding: 24px; border: 1px solid #e7e5e4; border-radius: 8px; background: #fff; }
article h2 { margin-top: 0; font-size: 21px; }
article p:last-child { margin-bottom: 0; }
footer { padding: 24px; text-align: center; color: #71717a; }

@media (max-width: 560px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  main { margin-top: 16px; }
  article { padding: 20px; }
}
