:root {
  --ink: #080908;
  --paper: #f2f0e9;
  --white: #fcfbf7;
  --muted: #65635e;
  --line: #c9c5bb;
  --coral: #e17654;
  --coral-light: #f19a79;
  --green: #8ebc91;
  --font: "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: var(--white); padding: 8px 12px; z-index: 9; }
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid #30332f;
}
.brand { font-weight: 700; text-decoration: none; letter-spacing: -0.02em; }
.top nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: 13px; }
.top nav a { color: #a7aaa4; text-decoration: none; }
.top nav a:hover { color: var(--white); }
.top .cta {
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
}
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}
.hero.narrow { max-width: 420px; }
.kicker {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.promise { margin: 0 0 10px; color: #555; font-weight: 650; font-size: 14px; }
h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.lead { margin: 14px 0 0; color: #444; font-size: 17px; }
.actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.btn {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #595c56;
  border-radius: 2px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary { background: var(--coral); border-color: var(--coral); color: #120d0a; }
.btn.ghost { color: #222; }
.note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.band {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}
.band.dark {
  max-width: none;
  background: var(--ink);
  color: var(--white);
  padding: 48px 24px;
}
.band.dark > * { max-width: 720px; margin-left: auto; margin-right: auto; }
.steps { padding-left: 1.2rem; line-height: 1.8; }
.reqs { margin: 20px 0 0; padding-left: 1.1rem; color: #444; font-size: 14px; }
.status {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
}
.auth-panel {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 10px;
}
.auth-panel label { display: grid; gap: 4px; font-size: 12px; font-weight: 650; }
.auth-panel input {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
}
.auth-panel .err {
  color: #8b2e1f;
  font-size: 13px;
}
.pricing {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.pricing article {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}
.foot {
  padding: 28px 24px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.foot a { color: var(--ink); }
@media (max-width: 720px) {
  .top { flex-direction: column; align-items: flex-start; }
}
