:root {
  color-scheme: dark;
  --bg: #11100e;
  --panel: #1c1b18;
  --line: #3b3832;
  --text: #f3ede3;
  --muted: #aaa49a;
  --accent: #e17850;
  --accent-soft: #f1a080;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 14%, rgba(197, 90, 53, .18), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand { color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .24em; text-decoration: none; }
nav { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
nav a:hover, footer a:hover { color: var(--text); }
.hero { padding: 90px 0 76px; max-width: 850px; }
.eyebrow { color: var(--accent-soft); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 820px; margin: 14px 0 22px; font-size: clamp(42px, 7vw, 76px); line-height: 1.01; letter-spacing: -.045em; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(18px, 2.2vw, 24px); line-height: 1.5; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 12px; background: var(--accent); color: #fff9f2; font-weight: 850; text-decoration: none; }
.button.secondary { border: 1px solid var(--line); background: transparent; color: var(--text); }
.proof { margin-top: 18px; color: #d7cfc3; font-size: 13px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 70px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: rgba(28, 27, 24, .88); }
.card span { color: var(--accent); font-size: 12px; font-weight: 900; }
.card h2 { margin: 10px 0 8px; font-size: 21px; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); }
.section { padding: 64px 0; border-top: 1px solid var(--line); }
.section h2 { max-width: 760px; margin: 0 0 18px; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; letter-spacing: -.025em; }
.section > p { max-width: 760px; color: var(--muted); font-size: 18px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 38px; }
.step b { color: var(--accent-soft); }
.step h3 { margin: 8px 0; font-size: 19px; }
.step p { margin: 0; color: var(--muted); }
.note { margin: 42px 0 0; padding: 18px 20px; border-left: 3px solid var(--accent); background: var(--panel); color: var(--muted); }
footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 36px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 760px) {
  nav { display: none; }
  .hero { padding: 58px 0; }
  .grid, .steps { grid-template-columns: 1fr; }
  .grid { margin-bottom: 44px; }
}
