/* paperloft.app: the only stylesheet.
   Colors come from the app icon. Every text pairing below meets WCAG AA:
   ink on cream 14.8:1, deep green on cream 11.5:1, muted on cream 6.8:1,
   cream on deep green 11.5:1, cream on tray green 9.7:1, muted on tray green 7.0:1. */

:root {
  --deep: #083920;   /* deep green: dark background, headings on cream */
  --tray: #10462A;   /* tray green: cards in dark mode */
  --line: #104A2E;   /* line green: dividers in dark mode */
  --cream: #F8F1E0;  /* paper cream: light background */
  --ink: #1A1F1C;    /* near-black: body text on cream */

  --bg: var(--cream);
  --surface: #FFFBF2;
  --text: var(--ink);
  --heading: var(--deep);
  --muted: #4A564F;
  --link: var(--deep);
  --border: rgba(8, 57, 32, 0.14);
  --tint: rgba(8, 57, 32, 0.06);
  --focus: var(--deep);
  --shadow: 0 1px 2px rgba(8, 57, 32, 0.05), 0 8px 24px rgba(8, 57, 32, 0.06);
  --icon-ring: rgba(8, 57, 32, 0.08);

  --radius: 18px;
  --radius-sm: 10px;
  --measure: 720px;
  --gutter: 20px;

  --font: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--deep);
    --surface: var(--tray);
    --text: var(--cream);
    --heading: var(--cream);
    --muted: #C8D2C6;
    --link: var(--cream);
    --border: rgba(248, 241, 224, 0.14);
    --tint: rgba(248, 241, 224, 0.06);
    --focus: var(--cream);
    --shadow: none;
    --icon-ring: rgba(248, 241, 224, 0.16);
  }
}

/* Base */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 6vw, 2.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 1.5rem; font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }

p, ul, ol, dl { margin: 0 0 1em; }

a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; }

.num, time, .date { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Layout */

.wrap {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 10;
  padding: 0.5em 1em;
  background: var(--surface);
  color: var(--heading);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 22.5%;
  box-shadow: 0 0 0 1px var(--icon-ring);
}

.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--heading); text-decoration: underline; }

main { display: block; padding-bottom: 64px; }

section { margin-top: 64px; }

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9375rem;
}
.site-footer .wrap { padding-top: 32px; padding-bottom: 40px; }
.site-footer p { margin: 0 0 0.5em; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--heading); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 1em;
}

/* Shared pieces */

.lead { font-size: 1.25rem; color: var(--muted); line-height: 1.5; }

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--tint);
  color: var(--heading);
  font-size: 0.875rem;
  font-weight: 600;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.card > :last-child { margin-bottom: 0; }

.fine-print { color: var(--muted); font-size: 0.9375rem; }

.app-icon {
  display: block;
  border-radius: 22.5%;
  box-shadow: 0 0 0 1px var(--icon-ring), 0 10px 30px rgba(8, 57, 32, 0.18);
}

/* Home */

.hero { padding-top: 40px; text-align: center; }
.hero .app-icon { width: 128px; height: 128px; margin: 0 auto 24px; }
.wordmark {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.promise {
  color: var(--heading);
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.hero .lead { max-width: 34em; margin: 0 auto; }

.app-card h3 { font-size: 1.375rem; margin-bottom: 0.25em; }
.app-card .eyebrow { margin-bottom: 12px; }
.more-link { font-weight: 600; }

.principles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .principles { grid-template-columns: repeat(3, 1fr); }
}
.principles li {
  border-top: 2px solid var(--heading);
  padding-top: 12px;
}
.principles h3 { margin-bottom: 0.25em; }
.principles p { color: var(--muted); margin: 0; font-size: 0.9875rem; }

.on-the-way { text-align: center; color: var(--muted); }

/* Receipts */

.page-intro { padding-top: 32px; }
.page-intro .app-icon { width: 96px; height: 96px; margin: 0 0 24px; }

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--heading);
  color: var(--bg);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  display: grid;
  place-items: center;
}
.steps h3 { margin: 4px 0 0.25em; }
.steps p { margin: 0; }

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .features { grid-template-columns: 1fr 1fr; }
}
.features li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.features h3 { font-size: 1.0625rem; margin-bottom: 0.2em; }
.features p { margin: 0; color: var(--muted); font-size: 0.9875rem; }

.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 0.5em; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--heading);
  border-bottom: 2px solid var(--heading);
  transform: rotate(-45deg);
}

.status {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-weight: 600;
  color: var(--heading);
}

/* Before-and-after illustration (drawn in HTML and CSS, not a screenshot) */

.illustration { margin: 0; }
.illo {
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
@media (min-width: 640px) {
  .illo { grid-template-columns: auto auto 1fr; gap: 24px; }
}
.illo-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.illo-arrow {
  color: var(--heading);
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  transform: rotate(90deg);
  justify-self: start;
  margin-left: 6px;
}
@media (min-width: 640px) {
  .illo-arrow { transform: none; justify-self: center; margin: 24px 0 0; }
}
.filename {
  font-family: var(--mono);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.file-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}
.tree, .tree ul { list-style: none; margin: 0; padding: 0; }
.tree ul { padding-left: 18px; border-left: 1px solid var(--border); margin-left: 7px; }
.tree li > .file-row { padding-left: 4px; }

.ico-file, .ico-photo, .ico-folder { flex: none; display: inline-block; position: relative; }
.ico-file, .ico-photo {
  width: 13px;
  height: 16px;
  border: 1.5px solid var(--heading);
  border-radius: 2px 5px 2px 2px;
}
.ico-photo::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 5px;
  background: var(--heading);
  opacity: 0.55;
  border-radius: 1px;
}
.ico-folder {
  width: 17px;
  height: 12px;
  margin-top: 3px;
  background: var(--heading);
  border-radius: 1px 3px 3px 3px;
}
.ico-folder::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 4px;
  background: var(--heading);
  border-radius: 2px 2px 0 0;
}
.file-row.is-new {
  background: var(--tint);
  border-radius: 6px;
  padding-right: 6px;
}

.illustration figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Text pages (privacy, support) */

.prose h2 { font-size: 1.25rem; margin-top: 2em; }
.prose h3 { margin-top: 1.75em; }
.meta { color: var(--muted); }

.contact-card { margin-top: 24px; }
.contact-card .email { font-size: 1.25rem; font-weight: 600; }

/* 404 */

.not-found { padding-top: 64px; text-align: center; }
.not-found .app-icon { width: 96px; height: 96px; margin: 0 auto 24px; }

/* Visually hidden, still read by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .card { padding: 22px 20px; }
  .illo { padding: 20px 16px; }
  .filename { font-size: 0.75rem; }
  .tree ul { padding-left: 12px; margin-left: 6px; }
  .site-nav ul { gap: 14px; }
  section { margin-top: 48px; }
}

/* Paperloft's bold, product-led landing direction. */
.landing { --measure: 1160px; --bg: #fff; --surface: #f3f4ef; --heading: #152019; --text: #152019; --muted: #4c574e; --link: #152019; --border: #dce1d9; --focus: #10462a; --accent: #c9dfa8; background: var(--bg); }
.landing .site-header { background: var(--accent); }
.landing .site-header .wrap { padding-block: 24px; }
.landing .brand { font-size: 1.4rem; letter-spacing: -.04em; }
.landing main { padding: 0; }
.landing section { margin-top: 0; }
.landing h1,.landing h2,.landing h3 { font-family: var(--font); letter-spacing: -.045em; }
.landing h2 { font-size: clamp(2rem,4vw,3.5rem); line-height: 1.04; font-weight: 650; }
.landing p { line-height: 1.5; }
.kicker { font-size: 1rem; font-weight: 550; margin-bottom: 22px; }
.launch-hero { background: var(--accent); padding: 38px 0 36px; color: #152019; }
.hero-heading { text-align: center; }
.hero-heading h1 { font-size: clamp(3.2rem,6.5vw,5.5rem); line-height: .99; font-weight: 700; margin-bottom: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; background: #152019; color: #fff; border-radius: 100px; padding: 17px 26px; text-decoration: none; font-size: 1rem; font-weight: 600; }
.button:hover { background: #284b32; }
.availability { font-size: .9375rem; margin: 14px 0 0; }
.hero-stage { display: grid; grid-template-columns: 1fr 1.6fr 1fr; align-items: center; gap: 30px; margin-top: 34px; }
.stage-copy h2 { font-size: 1.65rem; letter-spacing: -.03em; }
.stage-copy p,.stage-note p { font-size: 1.0625rem; }
.stage-copy a { font-weight: 600; font-size: 1rem; }
.stage-note { align-self: end; padding-bottom: 65px; }
.step-tag { display: block; font-size: .875rem; margin-bottom: 20px; font-weight: 600; }
.stage-note h3 { font-size: 1.6rem; }
.local-badge { display: block; font-size: .9375rem; border-top: 1px solid #15201940; padding-top: 16px; }
.paper-scene { position: relative; height: 510px; margin: 0; border-radius: 48% 48% 8px 8px; background: #e2e7d8; color: #083920; isolation: isolate; }
.scene-grid { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; background-image: linear-gradient(#08392008 1px, transparent 1px),linear-gradient(90deg,#08392008 1px,transparent 1px); background-size: 28px 28px; z-index: -1; }
.scene-note { position: absolute; top: 38px; width: 100%; text-align: center; font: .75rem var(--mono); letter-spacing: .06em; }
.receipt-slip { position: absolute; width: 240px; top: 90px; left: 17%; padding: 24px 23px; background: #fffaf0; box-shadow: 0 18px 35px #173a2026; transform: rotate(-9deg); display: flex; align-items: center; flex-direction: column; font-family: var(--mono); color: #283b2c; border-bottom: 5px dotted #e2e7d8; }
.receipt-mark { font: italic 2.2rem Georgia,serif; margin-bottom: 13px; }
.receipt-slip strong { font-size: .72rem; letter-spacing: .04em; }
.receipt-slip small { font-size: .48rem; margin-top: 8px; letter-spacing: .06em; }
.receipt-rule { width: 100%; border-top: 1px dashed #899383; margin: 20px 0 12px; }
.receipt-item,.receipt-total { display: flex; width: 100%; justify-content: space-between; font-size: .58rem; margin-bottom: 10px; }
.receipt-total { border-top: 1px dashed #899383; padding-top: 13px; font-weight: 700; font-size: .8rem; }
.barcode { background: repeating-linear-gradient(90deg,#314434 0 1px,transparent 1px 3px,#314434 3px 5px,transparent 5px 7px); width: 100px; height: 23px; margin-top: 5px; }
.filing-card { position: absolute; bottom: 56px; right: 5%; width: 88%; max-width: 365px; background: #083920; color: #f8f1e0; border: 1px solid #43644b; border-radius: 12px; padding: 18px; box-shadow: 0 20px 34px #08392030; transform: rotate(4deg); }
.filing-top { display: flex; align-items: center; gap: 9px; font-size: .875rem; }
.small-icon { font-size: 1.1rem; }
.file-check { margin-left: auto; }
.filing-path { font: .8125rem var(--mono); margin: 16px 0 12px; color: #d1dccb; }
.filing-path span { padding: 0 9px; }
.file-record { flex-wrap: wrap; display: flex; align-items: center; gap: 10px; padding: 13px 10px; border: 1px solid #69816b; border-radius: 5px; background: #154a2c; }
.file-record strong { display: block; font-size: .875rem; }
.file-record small { display: block; font-size: .75rem; margin-top: 3px; }
.file-record b { margin-left: auto; font-size: .875rem; font-variant-numeric: tabular-nums; }
.paper-symbol { font-size: 1.5rem; }
.file-caption { font-size: .75rem; margin-top: 12px; color: #d1dccb; }
.paper-scene figcaption { position: absolute; bottom: 14px; width: 100%; text-align: center; font-size: .8125rem; color: #475842; }

.landing .paper-scene { height: 430px; background: transparent; border-radius: 0; }
.landing .scene-grid,.landing .scene-note { display: none; }
.landing .receipt-slip { top: 15px; left: 17%; }
.landing .filing-card { bottom: 50px; right: 0; width: 100%; transform: rotate(3deg); }
.landing .paper-scene figcaption { font-size: .875rem; color: #263b24; bottom: 8px; }
.feature-section { display: grid; grid-template-columns: 1fr 1.25fr; gap: 100px; padding-top: 88px; padding-bottom: 88px; }
.section-side p:not(.kicker) { font-size: 1.25rem; color: var(--muted); max-width: 360px; margin-top: 26px; }
.feature-stack>div { position: relative; padding: 0 0 28px 40px; border-bottom: 1px solid var(--border); margin-bottom: 26px; }
.feature-stack>div>span { position: absolute; left: 0; top: 13px; color: var(--muted); font-size: .875rem; }
.feature-stack h3 { font-size: 3.4rem; line-height: 1; margin-bottom: 14px; }
.feature-stack p { color: var(--muted); font-size: 1.125rem; margin: 0; max-width: 440px; }
.feature-stack .more-link { font-size: 1.0625rem; margin-left: 40px; }
.formats-section { background: var(--surface); padding: 70px 0; }
.formats-section h2,.formats-section>.wrap>.kicker { text-align: center; }
.format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; list-style: none; padding: 0; margin: 42px 0 0; }
.format-art { display: flex; flex-direction: column; justify-content: space-between; height: 190px; padding: 24px; background: #e3ebdc; color: #193725; font: 1rem var(--mono); }
.format-art>span { font: 5rem var(--font); line-height: 1; align-self: end; }
.photo-art { background: #c9dfa8; }
.mail-art { background: #dcdfe7; }
.format-grid h3 { margin-top: 22px; font-size: 1.35rem; }
.format-grid p { color: var(--muted); font-size: 1.0625rem; }
.privacy-band { background: #12271b; color: #fff; padding: 80px 0; }
.privacy-band h2 { color: #fff; font-size: clamp(2.6rem,4.5vw,4.3rem); }
.privacy-band .kicker { color: #c9dfa8; }
.privacy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; }
.privacy-copy>p { font-size: 1.4rem; }
.privacy-copy ul { list-style: none; padding: 0; margin: 28px 0; }
.privacy-copy li { padding: 10px 0; border-bottom: 1px solid #ffffff30; font-size: 1.0625rem; }
.privacy-copy li::before { content: '✓'; color: #c9dfa8; margin-right: 14px; }
.privacy-band a { color: #fff; }
.faq-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; padding-top: 80px; padding-bottom: 50px; }
.faq-section h2 { font-size: 2.5rem; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { padding: 22px 26px 22px 0; cursor: pointer; font-size: 1.125rem; font-weight: 600; }
.faq-list summary::marker { color: var(--heading); }
.faq-list p { font-size: 1.0625rem; color: var(--muted); padding-right: 20px; }
.closing { text-align: center; padding-top: 40px; padding-bottom: 80px; }
.closing p { font-size: 2rem; font-weight: 650; letter-spacing: -.04em; }
.closing .button { padding: 26px 36px; font-size: 1.125rem; }
.closing>span { display: block; color: var(--muted); margin-top: 16px; font-size: .9375rem; }
.landing .site-footer { background: #111b14; color: #d3dccc; border: 0; font-size: 1rem; }
.landing .site-footer a { color: #d3dccc; }
.landing .site-footer .wrap { padding-block: 38px; }
@media (prefers-color-scheme: dark) {
 .landing { --bg: #152019; --surface: #202d24; --heading: #f5f7ef; --text: #f5f7ef; --muted: #c3cebf; --link: #f5f7ef; --border: #405043; --focus: #c9dfa8; }
 .landing .site-header,.launch-hero { --heading: #152019; --muted: #263b24; --link: #152019; --focus: #152019; }
 .landing .site-header .brand { color: #152019; }
 .closing .button { background: #c9dfa8; color: #152019; }
}
@media (max-width: 950px) {
 .hero-stage { grid-template-columns: 1fr 1.6fr; gap: 20px; }
 .stage-note { grid-column: 1 / -1; display: flex; gap: 24px; align-items: center; padding-bottom: 0; }
 .stage-note>* { flex: 1; margin: 0; }
 .stage-note .step-tag { display: none; }
 .stage-note h3 { font-size: 1.25rem; }
 .feature-section,.privacy-grid,.faq-section { gap: 40px; }
}
@media (max-width: 640px) {
 .launch-hero { padding-top: 25px; }
 .hero-heading h1 { font-size: clamp(2.7rem,10.5vw,4rem); }
 .hero-heading .kicker { font-size: .9375rem; }
 .hero-stage { grid-template-columns: 1fr; gap: 24px; }
 .hero-stage .paper-scene { grid-row: 1; max-width: 390px; width: 100%; justify-self: center; height: 430px; }
 .landing .filing-card { right: 4%; width: 92%; }
 .stage-copy { padding-top: 10px; }
 .stage-copy h2 { font-size: 2rem; }
 .stage-note { display: block; border-top: 1px solid #15201940; padding-top: 24px; }
 .stage-note h3 { font-size: 1.4rem; margin-bottom: 12px; }
 .stage-note p { margin-bottom: 16px; }
 .feature-section,.privacy-grid,.faq-section { grid-template-columns: 1fr; gap: 32px; }
 .feature-section,.faq-section { padding-top: 48px; padding-bottom: 48px; }
 .feature-stack h3 { font-size: 2.6rem; }
 .formats-section,.privacy-band { padding-block: 48px; }
 .format-grid { grid-template-columns: 1fr; gap: 20px; }
 .format-art { height: 160px; }
 .format-grid p { margin-bottom: 8px; }
 .closing { padding-top: 12px; padding-bottom: 48px; }
 .closing .button { padding: 20px 24px; font-size: 1rem; }
}

/* Receipts uses the same product-page language as the home page. */
.receipts-lead { max-width: 660px; margin: 0 auto 26px; font-size: 1.25rem; }
.receipts-transformation { max-width: 920px; margin: 42px auto 8px; }
.receipts-transformation>.kicker { text-align: center; }
.receipts-page .illo { background: #f8fbf1; color: #152019; --heading: #152019; --muted: #4c574e; --border: #c9d6bd; --tint: #e3ebdc; border: 0; border-radius: 12px; padding: 32px; box-shadow: 0 14px 40px #15201912; }
.receipts-page .illo-label { font-size: .9375rem; text-transform: none; letter-spacing: 0; }
.receipts-page .filename { font-size: 1rem; }
.receipts-page .illustration figcaption { color: #263b24; font-size: .9375rem; max-width: 760px; margin: 18px auto 0; text-align: center; }
.receipts-page .features { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; margin-top: 44px; counter-reset: feature; }
.receipts-page .features li { counter-increment: feature; padding: 24px 0 12px; background: transparent; border: 0; border-top: 1px solid var(--border); border-radius: 0; }
.receipts-page .features li::before { content: '0' counter(feature); display: block; font-size: .9375rem; color: var(--muted); margin-bottom: 28px; }
.receipts-page .features h3 { font-size: 1.5rem; margin-bottom: 12px; }
.receipts-page .features p { font-size: 1.125rem; }
.receipts-page .receipts-disclaimer { font-size: .9375rem; font-weight: 400; letter-spacing: 0; color: var(--muted); margin-top: 26px; }
@media (max-width: 900px) { .receipts-page .features { grid-template-columns: repeat(2,minmax(0,1fr)); } .receipts-page .illo { grid-template-columns: 1fr; } .receipts-page .illo-arrow { transform: rotate(90deg); justify-self: start; margin: 0; } }
@media (max-width: 640px) { .receipts-page .features { grid-template-columns: 1fr; gap: 12px; } .receipts-page .features li::before { margin-bottom: 16px; } .receipts-page .illo { padding: 22px 18px; } .receipts-page .filename { font-size: .9375rem; } .receipts-transformation { margin-top: 32px; } }

/* Keep the accountant handover benefit ahead of the first call to action. */
.accountant-lead { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 650; margin: 0 auto 10px; max-width: 700px; letter-spacing: -.02em; }
.accountant-detail { font-size: 1.125rem; max-width: 630px; margin: 0 auto 24px; }
