/* MinimalDocDesign palette: Plain Document */
:root {
  --palette-id: plain-document;
  --bg: #ffffff;
  --ink: #111111;
  --muted: #555555;
  --rule: #e4e4e4;
  --accent: #1740c7;
  --serif: Charter, "Iowan Old Style", Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100% - 32px, 650px);
  margin: 0 auto;
  padding: 32px 0 72px;
}

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.brand { color: var(--ink); font-weight: 700; text-decoration: none; }

section { margin-top: 64px; }
.hero { margin-top: 72px; }
h1, h2 {
  margin: 0 0 18px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 8vw, 4.4rem); }
h2 { font-size: clamp(1.55rem, 5vw, 2.15rem); }
p { margin: 0 0 18px; }
.lead { font-size: 1.25rem; color: var(--muted); }

.label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-block {
  margin: 30px 0;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.price-block p { margin: 0; }
.price-block p + p { margin-top: 4px; }

.cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 10px 16px;
  color: var(--bg);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}
.cta:hover, .cta:focus-visible { color: var(--ink); background: var(--bg); }
.cta.secondary { color: var(--ink); background: var(--bg); }
.cta.secondary:hover, .cta.secondary:focus-visible { color: var(--bg); background: var(--ink); }
.cta:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.button:disabled { cursor: wait; opacity: 0.55; }

.facts { width: 100%; margin-top: 36px; border-collapse: collapse; }
.facts td { padding: 10px 0; border-top: 1px solid var(--rule); vertical-align: top; font-size: 15px; }
.facts td:first-child {
  width: 120px;
  padding-top: 13px;
  padding-right: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.proof-frame {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #fafafa;
}
.proof-frame img, .proof-frame video { display: block; width: 100%; height: auto; }
.caption { margin-top: 10px; color: var(--muted); font-size: 14px; }

details { border-top: 1px solid var(--rule); padding: 14px 0; }
details:last-of-type { border-bottom: 1px solid var(--rule); }
summary { display: flex; gap: 10px; align-items: baseline; font-weight: 600; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::before { content: "+"; color: var(--muted); font-family: var(--mono); }
details[open] summary::before { content: "−"; }
details .body { padding: 12px 0 2px 24px; color: var(--muted); }

.start { scroll-margin-top: 24px; }
form { margin-top: 28px; }
.field { margin-bottom: 20px; }
label { display: block; margin-bottom: 7px; font-weight: 600; }
input, textarea {
  display: block;
  width: 100%;
  border: 1px solid #b9b9b9;
  border-radius: 0;
  padding: 12px;
  color: var(--ink);
  background: var(--bg);
  font: inherit;
}
textarea { resize: vertical; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy { margin: -4px 0 14px; color: var(--muted); font-size: 14px; }
.form-status { min-height: 1.6em; margin-top: 12px; font-size: 15px; }
.form-status[data-state="error"] { color: #9b1c1c; }
.form-status[data-state="success"] { color: #17623b; }
.or { display: flex; align-items: center; gap: 12px; margin: 26px 0 18px; color: var(--muted); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.or::before, .or::after { content: ""; height: 1px; flex: 1; background: var(--rule); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

@media (max-width: 480px) {
  .page { width: min(100% - 28px, 650px); padding-top: 22px; }
  .hero { margin-top: 50px; }
  section { margin-top: 52px; }
  .facts td:first-child { width: 94px; padding-right: 10px; white-space: normal; }
  footer { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
