:root {
  --bg: hsl(51, 18%, 9%); --fg: hsl(51, 15%, 92%); --muted: hsl(51, 10%, 66%); --card: hsl(51, 18%, 16%); --line: hsl(51, 12%, 24%);
  --accent: hsl(51, 69%, 68%); --accent-fg: hsl(51, 30%, 10%); --soft: hsl(51, 30%, 20%);
  --radius: 18px; --maxw: 1160px;
  --font: "Segoe UI", Roboto, Ubuntu, sans-serif; --font-head: "Palatino Linotype", Palatino, "Book Antiqua", serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg); font: 16px/1.65 var(--font); }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
img { max-width: 100%; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: 0; line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.site-header { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--fg); text-decoration: none; }
.logo img { width: 30px; height: 30px; }
.site-header nav { display: flex; gap: .4rem 1.4rem; flex-wrap: wrap; }
.site-header nav a { color: var(--fg); text-decoration: none;  }
.site-header nav a:hover, .site-header nav a[aria-current] { color: var(--accent); }
.eyebrow { color: var(--accent); font-weight: 600; font-size: .9rem; margin-bottom: .8rem; }
p.lead { font-size: 1.15rem; color: var(--muted); max-width: 38em; }

.hero { padding-top: 4rem; padding-bottom: 0; }
.hero img { width: 100%; height: 280px; object-fit: cover; margin-top: 2.5rem; display: block; border-radius: var(--radius); }
.btn { display: inline-block; background: var(--accent); color: var(--accent-fg); padding: .8rem 1.4rem; border-radius: calc(var(--radius) * .7); text-decoration: none; font-weight: 600; margin-top: .6rem; }
.btn:hover { filter: brightness(1.08); }
section { padding-top: 3rem; padding-bottom: 3rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.card { background: var(--card); border-radius: var(--radius); padding: 1.5rem; background: var(--soft); }
.card p { color: var(--muted); margin: 0; }
.price { font-weight: 700; color: var(--fg); white-space: nowrap; }
.list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.list li p { color: var(--muted); margin: .2rem 0 0; }
.note { color: var(--muted); font-size: .92rem; margin-top: 1.2rem; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.stats div { padding: 1.2rem 0; border-top: 2px solid var(--accent); }
.stats b { display: block; font-size: 2rem; font-family: var(--font-head); }
.stats span { color: var(--muted); }
blockquote { margin: 0; }
blockquote p { color: var(--fg); font-style: italic; }
blockquote footer { color: var(--muted); margin-top: .8rem; font-size: .92rem; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
dl { margin: 0; }
dt { font-weight: 600; margin-top: 1.1rem; }
dd { margin: .2rem 0 0; color: var(--muted); }
.page-head { padding-top: 3.5rem; padding-bottom: 1rem; }
.prose { max-width: 44em; }
.site-footer { border-top: 1px solid var(--line); margin-top: 3rem; padding: 2rem 0; color: var(--muted); font-size: .92rem; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.center { text-align: center; padding-top: 6rem; padding-bottom: 6rem; }
.center p.lead { margin-left: auto; margin-right: auto; }
@media (max-width: 760px) {
  h1 { font-size: 2.1rem; }
  .hero, .two { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: 3rem; }
  .list li { flex-direction: column; gap: .3rem; }
}
