/* ============================================================
   MailToPDF — Editorial / Legal-Archival aesthetic
   Palette: parchment cream + ink black + oxblood accent
   Type: Instrument Serif (display) / Fraunces (body) / JetBrains Mono
============================================================ */

:root {
  /* Palette */
  --bg: #f3ede0;
  --bg-warm: #ede5d2;
  --bg-deeper: #e6dcc4;
  --paper: #faf6ec;
  --ink: #1a1612;
  --ink-soft: #3a322a;
  --ink-muted: #6b6052;
  --ink-faint: #8a7e6e;
  --rule: #c9bfa8;
  --rule-soft: #ddd2b8;
  --accent: #722f2f;
  --accent-deep: #5a2424;
  --accent-bright: #8d3838;
  --gold: #b08838;
  --green: #4a6840;
  --red: #a83232;

  /* Typography */
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-body: "Fraunces", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --max: 1200px;
  --max-narrow: 880px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-gap: clamp(80px, 10vw, 140px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 14, "wght" 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(114, 47, 47, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(176, 136, 56, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--paper); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
code { font-family: var(--font-mono); font-size: 0.86em; }
em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ============================================================
   Notice bar
============================================================ */
.notice-bar {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.notice-dot {
  width: 6px; height: 6px;
  background: #6dbb70;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   Navigation
============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark {
  width: 28px; height: 28px;
  color: var(--accent);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 18px;
  font-size: 14px;
  border: 1px solid var(--ink);
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ============================================================
   Hero
============================================================ */
.hero {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) var(--gutter) clamp(50px, 8vw, 90px);
  text-align: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 36px;
  padding: 8px 18px;
  border: 1px solid var(--rule);
  background: rgba(250, 246, 236, 0.5);
}
.meta-label { color: var(--ink-faint); }
.meta-value { color: var(--ink-soft); font-weight: 500; }
.meta-divider { width: 1px; height: 12px; background: var(--rule); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 104px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero-title em {
  color: var(--accent);
  font-style: italic;
}

.hero-lede {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 48px;
  font-variation-settings: "opsz" 18, "wght" 380;
}
.hero-lede code {
  background: var(--paper);
  padding: 2px 8px;
  border: 1px solid var(--rule-soft);
  font-size: 0.82em;
  color: var(--accent);
}

/* ============================================================
   Dropzone
============================================================ */
.dropzone {
  position: relative;
  background: var(--paper);
  border: 1.5px dashed var(--rule);
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  margin: 0 auto;
  max-width: 700px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  outline: none;
}
.dropzone:hover,
.dropzone:focus-visible,
.dropzone.is-drag {
  border-color: var(--accent);
  background: #fbf7ec;
  transform: translateY(-2px);
}
.dropzone.is-drag {
  border-style: solid;
  background: #fdf3eb;
}
.dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.dropzone-icon {
  width: 60px; height: 60px;
  color: var(--accent);
  opacity: 0.85;
  transition: transform 0.4s ease-out;
}
.dropzone:hover .dropzone-icon,
.dropzone.is-drag .dropzone-icon {
  transform: translateY(-4px);
}
.dropzone-text {
  text-align: center;
}
.dropzone-text strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}
.dropzone-text strong code {
  color: var(--accent);
  font-family: var(--font-mono);
  background: var(--bg-deeper);
  padding: 1px 8px;
  font-size: 0.7em;
  vertical-align: 2px;
}
.dropzone-text span {
  font-size: 15px;
  color: var(--ink-muted);
}
.link-button {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-size: inherit;
  padding: 0;
}
.link-button:hover { color: var(--accent-deep); }

.dropzone-supports {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  margin-top: 6px;
}
.supports-tag {
  background: var(--bg-warm);
  padding: 3px 9px;
  border: 1px solid var(--rule-soft);
  color: var(--ink-soft);
}

/* Dropzone corner brackets */
.dropzone-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink-soft);
  pointer-events: none;
}
.dropzone-corner.top-left    { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.dropzone-corner.top-right   { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.dropzone-corner.bottom-left { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.dropzone-corner.bottom-right{ bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* Dropped files */
.dropped-files {
  max-width: 700px;
  margin: 24px auto 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 24px 28px;
  text-align: left;
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropped-files-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 12px;
}
.files-list {
  list-style: none;
  margin-bottom: 18px;
  max-height: 200px;
  overflow-y: auto;
}
.files-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--rule-soft);
}
.files-list li:last-child { border-bottom: none; }
.files-list .file-name { font-family: var(--font-mono); font-size: 13px; }
.files-list .file-size { color: var(--ink-faint); font-family: var(--font-mono); font-size: 12px; }

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--paper);
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--accent);
  transition: background 0.2s, transform 0.2s, gap 0.25s;
}
.primary-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  gap: 14px;
}
.primary-cta.large {
  padding: 18px 34px;
  font-size: 17px;
}

/* Hero trust */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-icon {
  color: var(--green);
  font-size: 8px;
}

/* ============================================================
   Sections
============================================================ */
.section-header {
  max-width: var(--max-narrow);
  margin: 0 auto clamp(40px, 5vw, 60px);
  padding: 0 var(--gutter);
  display: flex;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 20px;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em { color: var(--accent); }

main > section { padding: clamp(50px, 7vw, 90px) 0; }

/* ============================================================
   Proof section
============================================================ */
.proof {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 100px) var(--gutter) !important;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(to bottom, transparent, rgba(250, 246, 236, 0.4), transparent);
}
.proof-mark {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.8;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.proof-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.proof-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 60ch;
}
.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 10px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.25s;
}
.proof-link:hover { gap: 12px; }

/* ============================================================
   Features grid
============================================================ */
.features-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.feature {
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(250, 246, 236, 0.3);
  transition: background 0.3s;
  position: relative;
}
.feature:hover {
  background: rgba(250, 246, 236, 0.8);
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.feature-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.feature-body code {
  background: var(--bg-warm);
  padding: 1px 6px;
  font-size: 0.85em;
  color: var(--accent);
  border: 1px solid var(--rule-soft);
}

/* ============================================================
   Comparison table
============================================================ */
.comparison-table {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.comparison-row:first-child { border-top: 1px solid var(--rule); }
.comparison-cell {
  padding: 18px 16px;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-cell.label {
  text-align: left;
  justify-content: flex-start;
  color: var(--ink);
  font-weight: 500;
}
.comparison-head .comparison-cell {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  padding: 22px 16px;
  flex-direction: column;
  gap: 4px;
  background: rgba(250, 246, 236, 0.5);
}
.comparison-head .comparison-cell span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-weight: 400;
}
.comparison-cell.highlight {
  background: var(--ink) !important;
  color: var(--paper) !important;
}
.comparison-cell.highlight span { color: rgba(243, 237, 224, 0.7); }
.comparison-row .comparison-cell.highlight {
  background: rgba(26, 22, 18, 0.92) !important;
  color: var(--paper) !important;
}
.mark-yes { color: var(--green); font-size: 22px; font-weight: 600; }
.mark-no { color: var(--red); font-size: 22px; font-weight: 600; opacity: 0.7; }
.mark-partial { color: var(--gold); font-size: 22px; font-weight: 600; }
.comparison-cell.highlight .mark-yes { color: #8fc488; }

@media (max-width: 760px) {
  .comparison-row {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .comparison-cell { padding: 14px 8px; font-size: 13px; }
  .comparison-head .comparison-cell { font-size: 14px; }
  .comparison-head .comparison-cell span { font-size: 9px; }
}

/* ============================================================
   Use cases
============================================================ */
.cases-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.case {
  padding: clamp(24px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.case:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 22, 18, 0.08);
}
.case-marker {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
}
.case-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  padding-right: 40px;
  line-height: 1.15;
}
.case-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   Steps
============================================================ */
.steps-list {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.step-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 10px;
  grid-column: 2;
}
.step-body {
  grid-column: 2;
}
.step-title code {
  background: var(--bg-warm);
  padding: 1px 8px;
  font-size: 0.6em;
  color: var(--accent);
  vertical-align: 4px;
  border: 1px solid var(--rule-soft);
}
.step-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.inline-link:hover { color: var(--accent-deep); }

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 40px; }
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}
.faq-item summary code {
  background: var(--bg-warm);
  padding: 1px 6px;
  font-size: 0.7em;
  color: var(--accent);
}
.faq-item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ============================================================
   Final CTA
============================================================ */
.final-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--gutter) !important;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(114, 47, 47, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(176, 136, 56, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.final-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 0 auto 40px;
  position: relative;
}
.final-title em { color: #d49b9b; }
.final-cta .primary-cta {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.final-cta .primary-cta:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--paper);
}
.final-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(243, 237, 224, 0.5);
  margin-top: 24px;
  position: relative;
}

/* ============================================================
   Footer
============================================================ */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
.footer-brand .brand-name {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  font-family: var(--font-display);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
}
.footer-fineprint {
  font-style: italic;
  font-family: var(--font-body);
  font-size: 12px;
  max-width: 60ch;
}

/* ============================================================
   Reduced motion
============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
