:root {
  color-scheme: light;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --surface-soft: #f0f1ea;
  --ink: #111c19;
  --muted: #65706b;
  --line: #daddd4;
  --green: #0f765d;
  --green-dark: #095743;
  --lime: #c9ee72;
  --blue: #174ea6;
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; min-width: 320px; background: var(--paper); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; cursor: pointer; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 16px max(24px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid rgb(17 28 25 / 9%);
  background: rgb(247 247 242 / 90%);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 14px; font-weight: 760; letter-spacing: -.03em; text-decoration: none; }
.brand-mark { display: block; width: 36px; height: 36px; border: 1px solid #d9ddd3; border-radius: 10px; object-fit: cover; }
.site-header nav { display: flex; gap: 32px; }
.site-header nav a { color: #46514c; font-size: 14px; font-weight: 650; text-decoration: none; }
.site-header nav a:hover { color: var(--green); }
.header-cta { justify-self: end; padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 750; text-decoration: none; }
.header-cta:hover { color: white; background: var(--ink); }

main { overflow: hidden; }
.hero, .tool-section, .steps-section, .examples-section, .use-cases, .faq-section, footer { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.hero { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 700px; padding: 86px 0 110px; }
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.privacy-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid #c7d5ca; border-radius: 999px; color: var(--green-dark); background: #eef5ed; font-size: 12px; font-weight: 760; letter-spacing: .02em; text-transform: uppercase; }
.privacy-pill span { color: var(--green); font-size: 10px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin: 22px 0 22px; font-size: clamp(55px, 7.6vw, 100px); line-height: .88; letter-spacing: -.075em; }
.hero-lede { max-width: 600px; margin-bottom: 30px; color: #55615c; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; border: 0; border-radius: 12px; font-weight: 760; text-decoration: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: white; background: var(--green); box-shadow: 0 10px 24px rgb(15 118 93 / 18%); }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { border: 1px solid var(--line); background: var(--surface-soft); }
.text-button { padding: 4px 0; border: 0; border-bottom: 1px solid #7f8884; background: none; font-weight: 700; }
.trust-list { display: flex; flex-wrap: wrap; gap: 9px 24px; margin: 30px 0 0; padding: 0; color: #53605a; font-size: 13px; font-weight: 650; list-style: none; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.hero-visual { position: relative; min-height: 520px; }
.hero-visual::before { content: ""; position: absolute; top: 10%; right: 2%; width: 410px; height: 410px; border-radius: 50%; background: var(--lime); opacity: .62; filter: blur(2px); }
.paper-card { position: absolute; width: min(410px, 84%); padding: 14px; border: 1px solid rgb(17 28 25 / 12%); border-radius: 18px; background: white; box-shadow: 0 34px 60px rgb(32 47 40 / 13%); }
.paper-card > span { display: block; margin-bottom: 10px; color: var(--muted); font-size: 12px; font-weight: 700; }
.paper-card img { width: 100%; aspect-ratio: 1.5; border-radius: 10px; object-fit: cover; }
.paper-card-back { top: 26px; left: 0; transform: rotate(-7deg); }
.paper-card-front { z-index: 2; right: 0; bottom: 24px; transform: rotate(4deg); }
.paper-card-front img { object-fit: contain; }
.ready-badge { position: absolute; right: -14px; bottom: 34px; padding: 9px 13px; border-radius: 999px; color: #11211b; background: var(--lime); box-shadow: 0 8px 20px rgb(48 67 31 / 18%); font-size: 12px; font-weight: 800; transform: rotate(-4deg); }

.tool-section { padding: 90px 0 120px; }
.section-kicker { margin-bottom: 13px; color: var(--green); font-size: 11px; font-weight: 850; letter-spacing: .17em; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-heading h2, .steps-section h2, .examples-section h2, .use-cases h2, .faq-section h2, .final-cta h2 { margin-bottom: 10px; font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.055em; }
.section-heading p, .use-cases p, .faq-heading p { max-width: 600px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.local-badge { flex: 0 0 auto; padding: 10px 14px; border: 1px solid #c9d8cc; border-radius: 999px; color: var(--green-dark); background: #edf6ef; font-size: 12px; font-weight: 750; }

.tool-card { position: relative; overflow: hidden; border: 1px solid #ccd2ca; border-radius: var(--radius); background: var(--surface); box-shadow: 0 30px 80px rgb(40 54 48 / 10%); }
.tool-status { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #8e9993; }
.tool-status.is-error { color: #a4362c; }
.tool-status.is-error .status-dot { background: #d05448; }
.tool-error { margin: 0 20px 16px; padding: 10px 12px; border: 1px solid #efd0cc; border-radius: 10px; background: #fff6f4; }
.tool-error[hidden] { display: none; }
.tool-upload-bar { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 18px 18px 14px; }
.upload-help { color: var(--muted); font-size: 11px; font-weight: 620; }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 18px 18px; }
.preview-panel { display: flex; min-width: 0; flex-direction: column; }
.preview-caption { padding: 10px 3px 0; }
.preview-caption h3 { margin: 0; font-size: 14px; letter-spacing: -.015em; }
.preview-upload-button { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 8px 15px; border: 1px solid var(--green); border-radius: 10px; color: white; background: var(--green); box-shadow: 0 8px 18px rgb(15 118 93 / 20%); font-size: 12px; font-weight: 780; white-space: nowrap; cursor: pointer; transition: background .16s, box-shadow .16s, transform .16s; }
.preview-upload-button:hover { background: var(--green-dark); box-shadow: 0 10px 22px rgb(15 118 93 / 26%); transform: translateY(-1px); }
.preview-upload-button:active { transform: translateY(1px); }
.preview-upload-button span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; color: var(--green-dark); background: white; font-size: 14px; font-weight: 850; line-height: 1; }
.canvas-frame { position: relative; display: grid; place-items: center; width: 100%; height: 390px; min-height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.original-frame { background: #eeeae0; }
.checkerboard { background-color: #fff; background-image: linear-gradient(45deg,#e7eae6 25%,transparent 25%),linear-gradient(-45deg,#e7eae6 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#e7eae6 75%),linear-gradient(-45deg,transparent 75%,#e7eae6 75%); background-position: 0 0,0 12px,12px -12px,-12px 0; background-size: 24px 24px; }
canvas { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; }
.drop-overlay { position: absolute; z-index: 10; inset: 18px 18px 167px; display: grid; place-content: center; border: 2px dashed var(--green); border-radius: 18px; color: var(--green-dark); background: rgb(237 249 239 / 94%); text-align: center; opacity: 0; pointer-events: none; transform: scale(.98); transition: opacity .16s, transform .16s; }
.drop-overlay strong { font-size: 23px; }
.drop-overlay span { margin-top: 8px; color: var(--muted); font-size: 13px; }
.tool-card.is-dragging .drop-overlay { opacity: 1; transform: scale(1); }

.controls { display: grid; grid-template-columns: 1fr 1fr 1.35fr .85fr; gap: 26px; padding: 22px 20px; border-top: 1px solid var(--line); background: #fbfbf8; }
.controls label, .ink-control { min-width: 0; }
.range-control { display: grid; gap: 8px; }
.range-control > span { display: flex; justify-content: space-between; font-size: 13px; }
.range-control output { color: var(--green); font: 700 12px ui-monospace, monospace; }
.controls small { color: #616d67; font-size: 11px; line-height: 1.4; }
input[type="range"] { width: 100%; accent-color: var(--green); }
.ink-control { margin: 0; padding: 0; border: 0; }
.ink-control legend { margin-bottom: 9px; font-size: 13px; font-weight: 700; }
.color-options { display: flex; flex-wrap: wrap; gap: 7px; }
.color-option, .custom-color { display: inline-flex; align-items: center; gap: 6px; min-height: 31px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 8px; background: white; font-size: 11px; font-weight: 700; }
.color-option.is-active { border-color: var(--green); box-shadow: 0 0 0 2px rgb(15 118 93 / 12%); }
.swatch { width: 13px; height: 13px; border: 1px solid rgb(17 28 25 / 18%); border-radius: 50%; }
.swatch-original { background: linear-gradient(135deg, #121212 45%, #174ea6 55%); }
.swatch-black { background: #111827; }
.swatch-blue { background: var(--blue); }
.custom-color { cursor: pointer; }
.custom-color input { width: 14px; height: 14px; padding: 0; border: 0; background: transparent; }
.trim-control { display: flex; align-items: flex-start; gap: 9px; padding-top: 25px; }
.trim-control input { margin-top: 2px; accent-color: var(--green); }
.trim-control span { display: grid; gap: 3px; }
.trim-control strong { font-size: 13px; }
.download-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border-top: 1px solid var(--line); }
.privacy-note { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 12px; }
.privacy-note strong { display: block; color: var(--ink); }
.privacy-icon { display: grid; place-items: center; flex: 0 0 28px; height: 28px; border-radius: 50%; color: var(--green); background: #e9f4eb; font-weight: 900; }
.button-download { min-width: 255px; color: #102018; background: var(--lime); }
.button-download:hover { background: #bde260; box-shadow: 0 10px 22px rgb(114 146 45 / 20%); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.drop-hint { margin: 13px 0 0; color: #616d67; font-size: 12px; text-align: center; }

.steps-section, .examples-section { padding: 110px 0; border-top: 1px solid var(--line); }
.narrow-heading { display: block; max-width: 760px; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { min-height: 255px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fbfbf7; }
.steps-grid li:nth-child(2) { color: white; border-color: var(--green); background: var(--green); transform: translateY(18px); }
.step-index { display: block; margin-bottom: 62px; color: var(--green); font: 750 12px ui-monospace, monospace; }
.steps-grid li:nth-child(2) .step-index { color: #e6f8b1; }
.steps-grid h3 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.03em; }
.steps-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.steps-grid li:nth-child(2) p { color: #eef6f3; }

.examples-list { display: grid; gap: 36px; }
.example-row { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(270px, .75fr); align-items: stretch; gap: 16px; overflow: hidden; min-height: 420px; padding: 14px; border: 1px solid rgb(24 54 44 / 12%); border-radius: 30px; background: radial-gradient(circle at 96% 8%, rgb(202 238 114 / 18%), transparent 29%), #fdfdf9; box-shadow: 0 20px 55px rgb(39 58 50 / 8%), 0 2px 8px rgb(39 58 50 / 4%); }
.example-row:nth-child(2) { border-color: rgb(15 118 93 / 22%); background: radial-gradient(circle at 5% 95%, rgb(15 118 93 / 10%), transparent 34%), #fbfdf9; box-shadow: 0 28px 70px rgb(34 69 55 / 12%), 0 3px 10px rgb(34 69 55 / 5%); }
.example-row:nth-child(3) { background: radial-gradient(circle at 92% 92%, rgb(23 78 166 / 9%), transparent 32%), #fdfdf9; }
.example-row.is-reversed { grid-template-columns: minmax(270px, .75fr) minmax(0, 1.55fr); }
.example-row.is-reversed .comparison { order: 2; }
.example-row.is-reversed .example-copy { order: 1; }
.comparison { --position: 52%; position: relative; overflow: hidden; width: 100%; height: 100%; min-height: 390px; border: 1px solid rgb(24 54 44 / 12%); border-radius: 20px; background-color: #fff; box-shadow: inset 0 0 0 1px rgb(255 255 255 / 45%), 0 9px 28px rgb(27 48 40 / 8%); }
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; }
.comparison-before { position: absolute; inset: 0; overflow: hidden; background: #f0ece3; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-before img { width: 100%; max-width: none; }
.comparison-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; background: rgb(255 255 255 / 92%); box-shadow: 0 0 0 1px rgb(17 28 25 / 12%), 0 0 24px rgb(17 28 25 / 20%); transform: translateX(-50%); pointer-events: none; }
.comparison-divider span { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 46px; height: 46px; border: 4px solid white; border-radius: 50%; color: white; background: var(--green); box-shadow: 0 10px 24px rgb(15 118 93 / 30%); font-size: 16px; font-weight: 800; transform: translate(-50%, -50%); }
.comparison-range { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison-label { position: absolute; z-index: 2; top: 18px; padding: 7px 11px; border: 1px solid rgb(255 255 255 / 18%); border-radius: 999px; color: white; background: rgb(17 31 27 / 78%); box-shadow: 0 6px 16px rgb(17 28 25 / 13%); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(10px); }
.label-before { left: 18px; }
.label-after { right: 18px; }
.example-copy { align-self: center; padding: 46px 36px; }
.example-number { display: inline-flex; width: max-content; margin-bottom: 24px; padding: 7px 11px; border: 1px solid rgb(15 118 93 / 15%); border-radius: 999px; color: var(--green); background: rgb(232 244 236 / 78%); font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.example-copy h3 { margin-bottom: 15px; font-size: clamp(29px, 2.5vw, 38px); line-height: 1; letter-spacing: -.05em; }
.example-copy p { margin-bottom: 26px; color: #5c6963; font-size: 14px; line-height: 1.75; }
.example-copy ul { display: grid; gap: 11px; margin: 0; padding: 0; color: #405049; font-size: 12px; font-weight: 680; list-style: none; }
.example-copy li { display: flex; align-items: center; gap: 9px; }
.example-copy li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 19px; width: 19px; height: 19px; border-radius: 50%; color: var(--green); background: #e7f3ea; font-size: 11px; font-weight: 900; }

.use-cases { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 630px; padding: 100px 70px; border-radius: 28px; color: white; background: var(--ink); }
.use-cases p { max-width: 480px; color: #b8c3be; }
.use-cases .section-kicker { color: var(--lime); }
.inline-link { display: inline-flex; gap: 10px; margin-top: 23px; color: var(--lime); font-weight: 750; text-underline-offset: 5px; }
.document-stack { position: relative; min-height: 380px; }
.document-card { position: absolute; overflow: hidden; width: 300px; height: 350px; padding: 22px; border-radius: 16px; color: var(--ink); background: #f9f8f0; box-shadow: 0 24px 50px rgb(0 0 0 / 28%); }
.document-back { top: 42px; left: 22px; color: #2e5145; background: #b7d7ca; transform: rotate(-10deg); }
.document-middle { top: 20px; right: 17px; color: #5b6b31; background: var(--lime); transform: rotate(10deg); }
.document-front { z-index: 2; top: 24px; left: 50%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; transform: translateX(-50%); }
.document-front img { width: 90%; height: 112px; object-fit: contain; }
.document-label { margin-bottom: auto; color: #5f6a64; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.document-line { width: 100%; margin: 6px 0 10px; border-top: 1px solid #bcc2bc; }
.document-front strong { font-size: 12px; }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 130px 0; }
.faq-heading { position: sticky; top: 115px; align-self: start; }
.faq-heading h2 { font-size: clamp(38px, 4.6vw, 58px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 42px 23px 0; font-size: 17px; font-weight: 760; line-height: 1.4; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 20px; color: var(--green); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -4px 52px 23px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 76px max(24px, calc((100vw - 1160px) / 2)); color: white; background: var(--green); }
.final-cta .section-kicker { color: #e6f8b1; }
.final-cta h2 { margin-bottom: 8px; }
.final-cta p { margin-bottom: 0; color: #eef6f3; }
.button-light { flex: 0 0 auto; color: var(--ink); background: white; }
.cta-line { position: absolute; top: 0; left: 9%; width: 120px; border-top: 4px solid var(--lime); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 36px 0 44px; color: var(--muted); font-size: 12px; }
footer p { margin: 0; }
.footer-meta { display: grid; justify-items: end; gap: 8px; }
.footer-meta nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.footer-meta a { font-weight: 700; text-underline-offset: 3px; }

.content-page { width: min(840px, calc(100% - 40px)); min-height: calc(100vh - 190px); margin: 0 auto; padding: 95px 0 120px; }
.content-page .section-kicker { margin-bottom: 18px; }
.content-page h1 { margin-bottom: 24px; font-size: clamp(48px, 7vw, 78px); }
.content-lede { max-width: 720px; margin-bottom: 55px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.content-page article { display: grid; gap: 32px; }
.content-page section { padding-top: 30px; border-top: 1px solid var(--line); }
.content-page h2 { margin-bottom: 12px; font-size: 27px; letter-spacing: -.035em; }
.content-page p, .content-page li { color: #53605a; font-size: 15px; line-height: 1.8; }
.content-page ul { padding-left: 21px; }
.content-page a { color: var(--green-dark); font-weight: 700; text-underline-offset: 3px; }
.content-callout { padding: 25px; border: 1px solid #c4d8ca; border-radius: 15px; background: #edf6ef; }
.content-callout p { margin: 0; color: #284b3d; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: start; gap: 34px; }
.feedback-form { display: grid; gap: 22px; padding: 34px; border: 1px solid #cbd2c9; border-radius: 22px; background: #fcfcf8; box-shadow: 0 24px 60px rgb(40 54 48 / 9%); }
.form-heading { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.form-heading h2 { margin: 10px 0 8px; font-size: 32px; }
.form-heading p { margin: 0; font-size: 14px; }
.form-step { color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 8px; }
.form-field > span { color: #34423c; font-size: 12px; font-weight: 780; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #cbd2c9; border-radius: 10px; color: var(--ink); background: white; font: inherit; outline: none; transition: border-color .15s, box-shadow .15s; }
.form-field input, .form-field select { min-height: 47px; padding: 0 13px; }
.form-field textarea { min-height: 170px; padding: 13px; line-height: 1.55; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgb(15 118 93 / 12%); }
.form-field input:user-invalid, .form-field select:user-invalid, .form-field textarea:user-invalid { border-color: #b75046; }
.form-field small { justify-self: end; color: #7b857f; font-size: 10px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; color: #53605a; font-size: 12px; line-height: 1.55; }
.form-consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--green); }
.form-actions { display: flex; align-items: center; gap: 16px; }
.form-actions .button { flex: 0 0 auto; }
.form-status { margin: 0; color: #53605a; font-size: 12px; line-height: 1.45; }
.form-status.is-success { color: var(--green-dark); font-weight: 700; }
.form-status.is-error { color: #a43e36; font-weight: 700; }
.form-privacy { margin: -7px 0 0; color: #7b857f; font-size: 10px; line-height: 1.55; }
.form-privacy a { color: inherit; }
.honeypot { position: absolute !important; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.contact-notes { display: grid; gap: 28px; }
.contact-notes section { padding-top: 25px; border-top: 1px solid var(--line); }
.contact-notes h2 { font-size: 20px; }
.contact-notes p, .contact-notes li { font-size: 13px; }
.contact-notes ul { margin-bottom: 0; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(650px, 100%); margin: 25px auto 0; }
  .controls { grid-template-columns: 1fr 1fr; }
  .trim-control { padding-top: 6px; }
  .example-row { grid-template-columns: 1.35fr .85fr; }
  .example-copy { padding: 30px 26px; }
  .use-cases { padding-inline: 42px; }
  .document-card { width: 250px; height: 320px; }
  .faq-section { gap: 45px; }
}

@media (max-width: 760px) {
  .site-header { padding: 12px 16px; }
  .header-cta { padding: 9px 12px; }
  .hero, .tool-section, .steps-section, .examples-section, .use-cases, .faq-section, footer { width: min(100% - 24px, 1200px); }
  .hero { min-height: auto; padding: 56px 0 80px; }
  h1 { font-size: clamp(51px, 16vw, 76px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .text-button { align-self: flex-start; }
  .hero-visual { min-height: 400px; }
  .paper-card { width: 76%; }
  .paper-card-back { top: 10px; }
  .paper-card-front { bottom: 5px; }
  .tool-section { padding: 70px 0 90px; }
  .section-heading { display: block; }
  .local-badge { display: inline-block; margin-top: 18px; }
  .download-row { align-items: stretch; flex-direction: column; }
  .preview-grid { grid-template-columns: 1fr; }
  .tool-upload-bar { flex-wrap: wrap; }
  .canvas-frame { height: 280px; }
  .controls { grid-template-columns: 1fr; }
  .drop-overlay { inset: 18px 18px 270px; }
  .button-download { width: 100%; }
  .steps-section, .examples-section { padding: 80px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { min-height: 220px; }
  .steps-grid li:nth-child(2) { transform: none; }
  .step-index { margin-bottom: 45px; }
  .example-row { grid-template-columns: 1fr; min-height: 0; padding: 10px; border-radius: 24px; }
  .comparison { min-height: 300px; border-radius: 17px; }
  .example-row.is-reversed { grid-template-columns: 1fr; }
  .example-row.is-reversed .comparison { order: 1; }
  .example-row.is-reversed .example-copy { order: 2; }
  .example-copy { padding: 28px 20px 30px; }
  .example-number { margin-bottom: 20px; }
  .use-cases { grid-template-columns: 1fr; min-height: auto; padding: 68px 24px 45px; }
  .document-stack { margin-top: 35px; transform: scale(.88); transform-origin: top center; }
  .faq-section { display: block; padding: 90px 0; }
  .faq-heading { position: static; margin-bottom: 40px; }
  .final-cta { align-items: flex-start; flex-direction: column; padding-block: 64px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-meta { justify-self: center; }
  .footer-meta { justify-items: center; }
  .footer-meta nav { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-notes { grid-template-columns: 1fr 1fr; }
  .contact-notes .content-callout { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
  .brand { max-width: 200px; font-size: 12px; line-height: 1.05; }
  .brand-mark { flex: 0 0 30px; width: 30px; height: 30px; }
  .header-cta { font-size: 11px; }
  .hero-visual { min-height: 330px; }
  .ready-badge { right: -5px; bottom: 20px; }
  .tool-card { border-radius: 18px; }
  .button { width: 100%; }
  .canvas-frame { height: 230px; }
  .tool-upload-bar { align-items: stretch; flex-direction: column; }
  .preview-upload-button { justify-content: center; width: 100%; }
  .upload-help { text-align: center; }
  .color-options { gap: 5px; }
  .color-option, .custom-color { padding-inline: 7px; }
  .document-stack { min-height: 320px; transform: scale(.76); }
  .comparison { min-height: 245px; }
  .comparison-divider span { width: 42px; height: 42px; }
  .feedback-form { padding: 25px 20px; }
  .form-grid, .contact-notes { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-status { min-height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
