:root {
  --bg: #f3eee4;
  --card: #faf7f1;
  --ink: #171614;
  --muted: #6f6a62;
  --line: #e2d9cc;
  --steel: #3a4d63;
  --good: #5c7a62;
  --bad: #8b3d3d;
  --ink-soft: #2a2824;
  --shadow: 0 1px 0 rgba(40, 32, 20, 0.06);
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif;
  min-height: 100vh;
}
h1, h2, h3, .display { font-family: Newsreader, Georgia, serif; font-weight: 500; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
header.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.brand .mark {
  width: 28px; height: 28px; border-radius: 6px; background: #1c242e; color: #f3eee4;
  display: grid; place-items: center; font-size: 13px;
}
nav.links { display: flex; gap: 22px; font-size: 14px; color: var(--ink-soft); }
nav.links a.active { font-weight: 600; }
.hero { display: grid; grid-template-columns: 1fr 420px; gap: 48px; padding: 56px 0 24px; align-items: start; }
.kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero h1 { font-size: clamp(40px, 6vw, 64px); line-height: 0.98; margin: 14px 0 18px; }
.lede { color: var(--muted); line-height: 1.55; max-width: 42ch; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.stats dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.stats dd { margin: 6px 0 0; font-family: Newsreader, serif; font-size: 22px; }
.card {
  background: var(--card); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow); border: 1px solid rgba(40,32,20,.04);
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label.lbl { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
input, select {
  width: 100%; height: 44px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; padding: 0 12px; color: var(--ink);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 16px; }
.chip {
  height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 12px; color: var(--muted); cursor: pointer;
}
.chip:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 18px; border: 0; border-radius: 999px; cursor: pointer;
  background: #171614; color: #f6f1ea; font-weight: 600;
}
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.full { width: 100%; }
.err { color: var(--bad); font-size: 13px; }
.section { padding: 48px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.muted { color: var(--muted); }
.fast { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { text-align: left; font-size: 12px; color: var(--muted); font-weight: 500; padding: 10px 8px; border-bottom: 1px solid var(--line); }
td { padding: 12px 8px; border-bottom: 1px solid var(--line); }
.gauge-wrap { text-align: center; padding: 28px 12px 18px; }
.gauge-num { font-family: Newsreader, serif; font-size: 42px; margin-top: 8px; }
.bands { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); max-width: 420px; margin: 8px auto 0; }
.prices { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 16px; }
.price-card.dark { background: #171614; color: #f6f1ea; }
.price-card .k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-card.dark .k { color: #b9b2a6; }
.price-card .v { font-family: Newsreader, serif; font-size: 28px; margin: 8px 0 4px; }
.badge { display: inline-flex; align-items: center; height: 28px; padding: 0 10px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px; background: #fff; }
.row-actions { display: flex; gap: 8px; margin: 18px 0; flex-wrap: wrap; }
footer { border-top: 1px solid var(--line); padding: 28px 0 48px; color: var(--muted); font-size: 13px; }
.hidden { display: none !important; }
@media (max-width: 880px) {
  .hero, .steps, .fast, .prices, .stats, .grid2 { grid-template-columns: 1fr; }
  nav.links { gap: 12px; font-size: 13px; }
}
