:root {
  --ink: #241c17;
  --muted: #655d54;
  --paper: #faf9f5;
  --line: #deddd6;
  --blue: #0875df;
  --navy: #112e4b;
  --yellow: #ffda66;
  --green: #1d6449;
  --font-sans: "Geist", sans-serif;
  --font-mono: "Geist Mono", monospace;
  /* Shared sign-in dialogs retain the existing authentication flow. */
  --color-text: var(--ink);
  --color-text-secondary: var(--muted);
  --color-text-tertiary: var(--muted);
  --color-accent: #956715;
  --color-border: var(--line);
  --color-border-hover: #b6b4aa;
  --color-surface: #f4f1e7;
  --color-surface-elevated: #fff;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --space-lg: 24px;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(42px, 5.1vw, 72px);
}
h2 {
  font-size: clamp(32px, 3.2vw, 46px);
}
h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid #b56a00;
  outline-offset: 5px;
}
svg {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 20px;
  padding: 12px 20px;
  background: var(--yellow);
  z-index: 3000;
  color: var(--ink);
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  background: rgba(250, 249, 245, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font: 500 16px var(--font-mono);
  letter-spacing: 0.15em;
}
.brand img {
  display: block;
  flex: none;
}
#site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
#site-nav a {
  font-size: 14px;
  text-decoration: none;
  padding-block: 8px;
  white-space: nowrap;
}
#site-nav a:hover,
#site-nav a[aria-current] {
  color: #0065be;
}
#site-nav a[aria-current] {
  text-decoration: underline;
  text-underline-offset: 8px;
}
#site-nav .nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 17px;
  border-radius: 4px;
}
.menu-toggle {
  display: none;
}
.blue-grid {
  color: white;
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(115deg, #136cce, #0875ce 67%, #087caa);
  background-size:
    72px 72px,
    72px 72px,
    100% 100%;
}
.blue-grid p {
  color: #f1f6fe;
}
.blue-grid a:focus-visible {
  outline-color: var(--yellow);
}
.eyebrow {
  font: 500 12px/1.5 var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 22px;
}
.blue-grid .eyebrow {
  color: #eff5ff;
}
.home-hero {
  padding: 92px 0 98px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.home-hero h1 {
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
h1 em {
  color: var(--yellow);
  font-style: normal;
}
.lead {
  font-size: 19px;
  line-height: 1.65;
  max-width: 540px;
  margin-top: 26px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button svg {
  width: 19px;
  height: 19px;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.button--primary:hover {
  background: #ffe390;
}
.button--outline {
  background: transparent;
  border-color: currentColor;
}
.button--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.button--dark {
  background: var(--ink);
  color: white;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link svg {
  width: 19px;
  height: 19px;
}
.home-ledger {
  background: #fcfbf8;
  border: 1px solid #d3d9e0;
  color: var(--ink);
  border-radius: 10px;
  box-shadow: 0 26px 64px #064b913d;
  transform: rotate(1deg);
}
.ledger-heading {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font: 11px/1.5 var(--font-mono);
  letter-spacing: 0.03em;
}
.ledger-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #237349;
  margin-left: auto;
}
.ledger-company {
  display: flex;
  flex-direction: column;
  padding: 29px 30px 20px;
}
.ledger-company small {
  color: var(--muted);
  font: 10px var(--font-mono);
  letter-spacing: 0.1em;
}
.ledger-company strong {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 6px 0 2px;
}
.ledger-company > span {
  color: var(--muted);
  font-size: 14px;
}
.home-ledger > a {
  margin: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.home-ledger > a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-ledger > a > svg {
  margin-left: auto;
  width: 20px;
}
.ledger-icon {
  width: 44px;
  height: 44px;
  background: #edf0e6;
  color: var(--green);
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.home-ledger > a:nth-of-type(2) .ledger-icon {
  background: #f5ead0;
  color: #88651c;
}
.home-ledger > a:nth-of-type(3) .ledger-icon {
  background: #e6edf9;
  color: #145cc0;
}
.home-ledger a strong {
  font-size: 16px;
  font-weight: 500;
  display: block;
}
.home-ledger a small {
  color: var(--muted);
  font-size: 12px;
}
.ledger-bottom {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 10px var(--font-mono);
  letter-spacing: 0.07em;
}
.tiny-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.section {
  padding: 96px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 46px;
}
.section-heading > p {
  max-width: 350px;
}
.product-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.product-preview {
  padding: 34px 28px 32px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.product-preview:last-child {
  border: 0;
}
.preview-backup {
  background: #f0f3f7;
}
.preview-copy {
  background: #f4efdf;
}
.preview-import {
  background: #eaf1e9;
}
.preview-symbol {
  margin: 0 0 29px;
  color: var(--green);
}
.preview-symbol svg {
  width: 32px;
  height: 32px;
}
.product-preview h3 {
  font-size: 27px;
  margin-bottom: 16px;
}
.product-preview p {
  font-size: 15px;
  margin-bottom: 25px;
}
.product-preview small {
  color: var(--muted);
  font-size: 12px;
  margin-top: auto;
  margin-bottom: 24px;
}
.product-preview .text-link {
  padding-top: 20px;
  border-top: 1px solid #c9cabe;
  align-self: stretch;
}
.product-preview .text-link svg {
  margin-left: auto;
}
.trust-band {
  background: #e9e9e0;
  padding: 37px 0;
}
.trust-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.trust-band .container > div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.trust-band h2 {
  font-size: 21px;
  max-width: none;
  white-space: nowrap;
}
.trust-band p {
  font-size: 14px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact-layout h2 + p {
  max-width: 370px;
  margin-top: 22px;
}
.contact-layout .text-link {
  margin-top: 25px;
}
.contact-form {
  display: grid;
  gap: 18px;
  align-content: start;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #bbbeb3;
  border-radius: 3px;
  padding: 12px;
  color: var(--ink);
  background: white;
  font-size: 15px;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .button {
  justify-self: start;
}
#contact-form-status {
  font-size: 14px;
}
.site-footer {
  padding: 50px 0 25px;
  background: var(--navy);
  color: white;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 38px;
  border-bottom: 1px solid #ffffff30;
}
.footer-top p {
  font-size: 15px;
  color: #d1dbe1;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 32px;
  padding: 34px 0;
}
.footer-links nav {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 8px;
}
.footer-links span {
  color: #aebdca;
  font: 11px var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: #eff2f5;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #ffffff30;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: #bbc9d6;
}
.footer-bottom > div {
  display: flex;
  gap: 22px;
}
.product-hero {
  padding: 27px 0 85px;
  background-color: #f3efe4;
}
.page-backup .product-hero {
  background-color: var(--blue);
}
.page-import .product-hero {
  background: #e9f0e7;
}
.product-hero .hero-layout {
  margin-top: 52px;
  gap: 48px;
}
.product-hero h1 {
  font-size: clamp(43px, 4.7vw, 65px);
}
.product-hero .lead {
  font-size: 18px;
}
.product-hero .button {
  padding-inline: 18px;
  gap: 14px;
}
.hero-note {
  font-size: 12px;
  margin-top: 20px;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs > span:not([aria-hidden]) {
  opacity: 0.8;
}
.product-demo {
  border: 1px solid #cdd5ce;
  border-radius: 8px;
  background: #fffefb;
  color: var(--ink);
  box-shadow: 0 20px 60px #24382012;
  min-width: 0;
}
.blue-grid .product-demo p {
  color: var(--muted);
}
.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  gap: 15px;
}
.demo-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 11px var(--font-mono);
  letter-spacing: 0.04em;
}
.demo-top svg {
  width: 18px;
  height: 18px;
}
.demo-live {
  color: var(--green);
  font-size: 11px;
  white-space: nowrap;
}
.demo-live:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  vertical-align: middle;
}
.demo-body {
  padding: 25px 22px;
}
.demo-company {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.demo-caption {
  font-size: 12px;
  margin: 3px 0 24px;
}
.record {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.record-icon {
  display: grid;
  place-items: center;
  color: #356cb2;
  background: #eef3fa;
  border-radius: 4px;
  width: 36px;
  height: 36px;
}
.record-icon svg {
  width: 18px;
  height: 18px;
}
.record strong {
  display: block;
  font-weight: 500;
  font-size: 13px;
}
.record small {
  color: var(--muted);
  font-size: 11px;
}
.tag {
  margin-left: auto;
  border: 1px solid #7897b8;
  color: #46688d;
  border-radius: 3px;
  padding: 2px 7px;
  font-size: 10px;
}
.tag--red {
  color: #a94737;
  border-color: #c68d85;
}
.restore-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 14px 12px;
  background: #e9f0e7;
  color: var(--green);
  font-size: 11px;
}
.restore-strip > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.restore-strip svg {
  width: 15px;
  height: 15px;
}
.restore-strip > span:last-child {
  font-weight: 600;
  text-align: right;
}
.demo-foot {
  border-top: 1px solid var(--line);
  padding: 10px 20px;
  font: 9px var(--font-mono);
  color: var(--muted);
  letter-spacing: 0.08em;
}
.company-pair {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}
.company-pair > div {
  padding: 17px 12px;
  border: 1px solid #d5d2c1;
  background: #f9f6ed;
  min-width: 0;
}
.company-pair small,
.company-pair strong,
.company-pair div > span {
  display: block;
}
.company-pair small {
  font: 9px var(--font-mono);
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
.company-pair strong {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 7px;
}
.company-pair div > span {
  font-size: 10px;
  color: var(--muted);
}
.copy-connector {
  display: flex;
  color: var(--green);
  justify-content: center;
}
.copy-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  font-size: 12px;
}
.copy-row > span:last-child {
  display: flex;
  gap: 6px;
  color: var(--green);
}
.copy-row svg {
  width: 14px;
  height: 14px;
}
.file-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  margin: 6px 0 30px;
}
.file-line > span {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted);
}
.file-line svg {
  width: 18px;
  height: 18px;
}
.file-line strong {
  min-width: 0;
  overflow-wrap: anywhere;
}
.sheet-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.6fr;
  border-bottom: 1px solid var(--line);
}
.sheet-row span {
  font-size: 11px;
  padding: 14px 7px;
  border-right: 1px solid var(--line);
}
.sheet-row span:last-child {
  border-right: 0;
}
.sheet-heading {
  background: #eaf0e5;
}
.sheet-heading span {
  font: 9px var(--font-mono);
  letter-spacing: 0.03em;
}
.ready {
  color: var(--green);
}
.split-copy {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
}
.split-copy > div > p + p {
  margin-top: 18px;
}
.intro {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
}
.feature-lines {
  margin-top: 28px;
}
.feature-lines > div {
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.feature-lines > div:last-child {
  padding-bottom: 0;
}
.feature-lines h3 {
  font-size: 20px;
  margin-bottom: 11px;
}
.feature-lines p {
  font-size: 15px;
}
.workflow h2 {
  max-width: 750px;
  font-size: clamp(34px, 4vw, 54px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  gap: 45px;
}
.steps li {
  border-top: 1px solid #ffffff70;
  padding-top: 22px;
}
.step-number {
  display: block;
  font: 13px var(--font-mono);
  color: var(--yellow);
  margin-bottom: 32px;
}
.steps h3 {
  margin-bottom: 18px;
  font-size: 26px;
}
.steps p {
  font-size: 16px;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 42px;
}
.coverage-grid > div {
  padding-top: 25px;
  border-top: 1px solid #a9ad9e;
}
.coverage-grid h3 {
  font-size: 20px;
  margin-bottom: 17px;
}
.coverage-grid p {
  font-size: 15px;
}
.scope-note {
  margin-top: 43px;
  padding: 25px 30px;
  border-left: 3px solid #a08441;
  background: #f0ece1;
}
.scope-note strong {
  font-size: 16px;
  font-weight: 600;
}
.scope-note p {
  margin-top: 8px;
  font-size: 14px;
}
.pricing-section {
  background: #eee9db;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: center;
}
.pricing-layout h2 + p {
  margin-top: 22px;
}
.price-panel {
  padding: 36px;
  background: #fffdf5;
  border: 1px solid #d3cab6;
}
.price {
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.price strong {
  font-weight: 500;
  letter-spacing: -0.05em;
  font-size: 64px;
  line-height: 1.1;
}
.price span {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}
.price-panel ul {
  padding-left: 20px;
  margin: 25px 0;
}
.price-panel li {
  margin-bottom: 7px;
  font-size: 15px;
}
.fine-print {
  font-size: 13px;
  margin-top: 20px;
}
.pricing-section .split-copy .button {
  margin-top: 26px;
}
.undo-section {
  background: #e9f0e7;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
}
.faq-layout h2 + p {
  margin-top: 26px;
  font-size: 15px;
}
.faq-list {
  border-top: 1px solid #a4a99c;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  flex: none;
  font-size: 23px;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
details[open] summary > span {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 30px 24px 0;
  font-size: 15px;
}
.end-cta {
  background: var(--navy);
  color: white;
  padding: 62px 0;
}
.end-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.end-cta h2 {
  font-size: 38px;
}
.end-cta p {
  margin-top: 16px;
  color: #d1dbe7;
}
.end-cta .button {
  flex: none;
}
.related {
  padding-block: 55px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.related-grid a {
  text-decoration: none;
  border-top: 1px solid #c2c6b9;
  padding-top: 20px;
}
.related-grid a:hover strong {
  text-decoration: underline;
}
.related-grid span {
  font-size: 13px;
  color: var(--muted);
}
.related-grid strong {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
  gap: 20px;
  margin-top: 8px;
}
.facts-page .eyebrow {
  margin-top: 55px;
}
.facts-page h2 {
  font-size: 28px;
  margin: 42px 0 15px;
}
.facts-page h2 + p {
  margin-bottom: 12px;
}
.facts-page ul {
  padding-left: 20px;
  color: var(--muted);
}
.facts-page li {
  margin-bottom: 9px;
}
/* Content remains visible without JavaScript; motion is limited to the initial hero. */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: arrive 0.55s both;
  }
  .home-ledger,
  .product-hero .product-demo {
    animation: arrive 0.7s 0.1s both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      translate: 0 12px;
    }
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  #site-nav {
    gap: 20px;
  }
  .hero-layout {
    gap: 35px;
  }
  .brand {
    font-size: 14px;
    gap: 9px;
  }
  .split-copy,
  .faq-layout,
  .contact-layout,
  .pricing-layout {
    gap: 55px;
  }
  .home-hero {
    padding: 70px 0;
  }
  .product-preview {
    padding: 28px 22px;
  }
  .product-preview h3 {
    font-size: 24px;
  }
}
@media (max-width: 850px) {
  .site-header {
    height: 72px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    padding: 11px;
  }
  .menu-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--ink);
  }
  #site-nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 32px 28px;
    flex-wrap: wrap;
    gap: 15px 25px;
    box-shadow: 0 15px 20px #00000010;
  }
  #site-nav.is-open {
    display: flex;
  }
  #site-nav a {
    font-size: 16px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .home-hero .hero-copy {
    max-width: 600px;
  }
  .home-hero h1 br:nth-child(2) {
    display: none;
  }
  .home-ledger,
  .product-demo {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .section {
    padding: 72px 0;
  }
  .product-previews {
    grid-template-columns: 1fr;
  }
  .product-preview {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px;
  }
  .preview-symbol {
    margin-bottom: 19px;
  }
  .product-preview p {
    max-width: 580px;
  }
  .trust-band .container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 26px 45px;
  }
  .trust-band h2 {
    max-width: none;
  }
  .split-copy,
  .faq-layout,
  .contact-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-copy h2 br,
  .contact-layout h2 br,
  .faq-layout h2 br {
    display: none;
  }
  .contact-layout h2 + p {
    max-width: 550px;
  }
  .steps {
    gap: 25px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-hero .hero-layout {
    gap: 45px;
  }
  .product-hero .hero-copy {
    max-width: 660px;
  }
  .product-hero .lead {
    max-width: 640px;
  }
  .price-panel {
    max-width: 560px;
  }
  .end-cta .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .related-grid {
    gap: 30px;
  }
}
@media (max-width: 540px) {
  .container {
    width: calc(100% - 40px);
  }
  .brand {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .home-hero {
    padding: 48px 0 52px;
  }
  .home-hero h1 {
    font-size: 49px;
  }
  .home-hero h1 br:nth-child(2) {
    display: initial;
  }
  .lead {
    font-size: 17px;
    margin-top: 23px;
  }
  .actions {
    gap: 12px;
    margin-top: 27px;
  }
  .button {
    padding: 12px 16px;
    min-height: 48px;
    gap: 12px;
    font-size: 13px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .home-ledger {
    transform: none;
  }
  .ledger-heading {
    padding: 18px;
    gap: 10px;
    font-size: 9px;
  }
  .ledger-company {
    padding: 22px 20px 15px;
  }
  .ledger-company strong {
    font-size: 26px;
  }
  .home-ledger > a {
    margin-inline: 20px;
    gap: 12px;
    padding: 15px 0;
  }
  .home-ledger a strong {
    font-size: 15px;
  }
  .ledger-bottom {
    padding: 18px;
    font-size: 8px;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 23px;
    font-size: 15px;
  }
  .product-preview {
    padding: 26px;
  }
  .product-preview h3 {
    font-size: 26px;
  }
  .trust-band .container {
    gap: 22px;
  }
  .trust-band .container > div {
    gap: 14px;
  }
  .trust-band h2 {
    font-size: clamp(18px, 5.5vw, 22px);
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 26px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .footer-links nav:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-hero {
    padding: 23px 0 50px;
  }
  .product-hero .hero-layout {
    margin-top: 32px;
  }
  .product-hero h1 {
    font-size: 43px;
  }
  .product-hero .lead {
    font-size: 17px;
  }
  .product-hero .button {
    gap: 10px;
    padding-inline: 13px;
  }
  .hero-note {
    font-size: 11px;
  }
  .demo-top {
    padding: 14px;
    gap: 8px;
  }
  .demo-top > span:first-child {
    font-size: 9px;
    gap: 6px;
  }
  .demo-live {
    font-size: 9px;
  }
  .demo-body {
    padding: 20px 15px;
  }
  .record {
    gap: 8px;
  }
  .restore-strip {
    padding: 12px 9px;
    gap: 8px;
    font-size: 9px;
  }
  .company-pair {
    gap: 7px;
    grid-template-columns: 1fr 20px 1fr;
  }
  .company-pair > div {
    padding: 15px 10px;
  }
  .company-pair strong {
    font-size: 12px;
  }
  .copy-row {
    font-size: 11px;
  }
  .file-line {
    font-size: 10px;
    gap: 5px;
  }
  .file-line > span {
    font-size: 9px;
  }
  .sheet-row span {
    font-size: 10px;
    padding-inline: 5px;
  }
  .sheet-heading span {
    font-size: 8px;
  }
  .sheet-row {
    grid-template-columns: 1.5fr 1fr 0.65fr;
  }
  .intro {
    font-size: 19px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 38px;
  }
  .step-number {
    margin-bottom: 17px;
  }
  .steps h3 {
    margin-bottom: 12px;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .scope-note {
    padding: 21px;
    margin-top: 30px;
  }
  .price-panel {
    padding: 27px;
  }
  .price strong {
    font-size: 58px;
  }
  .faq-layout {
    gap: 32px;
  }
  summary {
    padding: 21px 0;
    gap: 18px;
  }
  .faq-answer {
    padding-right: 0;
  }
  .end-cta {
    padding: 48px 0;
  }
  .end-cta h2 {
    font-size: 34px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .related-grid strong {
    font-size: 21px;
  }
  .facts-page h1 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 850px) {
  html:not(.js) .site-header {
    height: auto;
    position: static;
  }
  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 14px;
  }
  html:not(.js) #site-nav {
    display: flex;
    position: static;
    padding: 0;
    box-shadow: none;
    border: 0;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
}

/* Pricing uses the same product palette and typography as the marketing pages. */
.pricing-intro {
  padding: 28px 0 64px;
  background: #eee9db;
}
.pricing-intro .eyebrow {
  margin-top: 48px;
}
.pricing-intro .lead {
  max-width: 680px;
}
.pricing-plans-section {
  padding-top: 64px;
}
.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pricing-plan {
  display: flex;
  flex-direction: column;
  max-width: none;
  padding: 38px;
}
.pricing-plan h3 {
  font-size: 28px;
}
.pricing-plan .plan-description {
  margin-top: 12px;
  font-size: 15px;
}
.pricing-plan .price {
  min-height: 100px;
  justify-content: center;
  margin-top: 30px;
}
.price--quote strong {
  font-size: 38px;
  letter-spacing: -0.04em;
}
.pricing-plan--priority {
  background: #eaf0e7;
  border-color: #c8d4c3;
}
.pricing-plan ul {
  margin-block: 27px 32px;
}
.pricing-plan .button {
  margin-top: auto;
  align-self: flex-start;
}
.pricing-plan .fine-print {
  margin-top: 16px;
  font-size: 12px;
}
.pricing-copy {
  background: #eee9db;
}
.pricing-copy .text-link {
  margin-top: 24px;
}
.pricing-copy .button {
  margin-top: 28px;
}
.pricing-help .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.pricing-help h2 {
  font-size: 34px;
}
.pricing-help p {
  max-width: 660px;
  margin-top: 20px;
}
.pricing-help .button {
  flex: none;
}
@media (max-width: 850px) {
  .pricing-plans {
    gap: 20px;
  }
  .pricing-plan {
    padding: 27px;
  }
  .price--quote strong {
    font-size: 32px;
  }
  .pricing-help .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 620px) {
  .pricing-intro {
    padding-bottom: 44px;
  }
  .pricing-intro h1 {
    font-size: 43px;
  }
  .pricing-intro .eyebrow {
    margin-top: 32px;
  }
  .pricing-plans {
    grid-template-columns: 1fr;
  }
  .pricing-plans-section {
    padding-top: 48px;
  }
  .pricing-plan .price {
    min-height: 0;
  }
  .pricing-help h2 {
    font-size: 30px;
  }
}
