:root {
  color-scheme: light;
  --canvas: #f3f6f4;
  --surface: #ffffff;
  --ink: #131512;
  --muted: #686d68;
  --coral: #f6413c;
  --line: rgb(19 21 18 / 0.13);
}

* { box-sizing: border-box; letter-spacing: 0; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, a { font: inherit; }
.site-header, .site-footer {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.site-header { min-height: 72px; border-bottom: 1px solid var(--line); }
.wordmark { color: var(--ink); font-size: 22px; font-weight: 900; text-decoration: none; }
.domain, .site-footer { color: var(--muted); font-size: 13px; font-weight: 700; }
.handoff-shell {
  display: grid;
  min-height: calc(100svh - 144px);
  place-items: center;
  padding: 36px 20px;
}
.handoff {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.handoff.empty { grid-template-columns: minmax(0, 760px); justify-content: center; }
.eyebrow { margin: 0 0 14px; color: var(--coral); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.92;
  text-wrap: balance;
}
.lede {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 540;
  line-height: 1.45;
}
.lede strong { color: var(--ink); }
.actions { display: flex; gap: 10px; margin-top: 30px; }
.action {
  min-width: 132px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}
.action.primary { border-color: var(--coral); background: var(--coral); color: #fff; }
.action.secondary { background: var(--surface); color: var(--ink); }
.status { min-height: 42px; margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.support-link { display: inline-flex; gap: 8px; color: var(--ink); font-weight: 800; text-decoration: none; }
.support-link:hover, .site-footer a:hover { color: var(--coral); }
.handoff-visual { margin: 0; }
.handoff-visual img { display: block; width: 100%; height: auto; filter: drop-shadow(0 28px 42px rgb(19 21 18 / 0.16)); }
.site-footer { min-height: 72px; border-top: 1px solid var(--line); }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { color: var(--muted); text-decoration: none; }

@media (max-width: 720px) {
  .handoff-shell { min-height: auto; padding-top: 54px; padding-bottom: 72px; }
  .handoff { grid-template-columns: 1fr; gap: 40px; }
  .handoff-visual { width: min(78vw, 340px); margin: 0 auto; }
  .actions { display: grid; }
  .action { width: 100%; }
  .site-footer { min-height: 88px; }
}
