:root {
  --ink: #171717;
  --muted: #555762;
  --paper: #fcf9f8;
  --white: #ffffff;
  --line: #dcd8d5;
  --blue: #0646c7;
  --blue-dark: #002a79;
  --blue-soft: #dce5ff;
  --pink: #efdbd8;
  --green: #20704a;
  --green-soft: #def6e9;
  --amber: #8a5100;
  --app-navy: #1d3b63;
  --app-surface: #f4f7fb;
  --app-muted: #778292;
  --shadow: 18px 18px 0 rgb(6 70 199 / 0.12);
  --page: 78rem;
  --radius: 0.8rem;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgb(6 70 199 / 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.is-opening-app {
  overflow: hidden;
}

.site-navigation-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  height: 0.2rem;
  overflow: hidden;
  background: rgb(6 70 199 / 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 80ms ease;
}

body.is-navigating .site-navigation-progress {
  opacity: 1;
}

a[data-navigation-pending] {
  opacity: 0.68;
  cursor: progress;
}

.site-navigation-progress-bar {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--blue);
  box-shadow: 0 0 0.7rem rgb(6 70 199 / 0.5);
  animation: site-navigation-progress 820ms ease-in-out infinite;
}

@keyframes site-navigation-progress {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(345%);
  }
}

.app-transition {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 1.5rem;
  background: #f2f2f7;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 140ms ease,
    visibility 0s linear 140ms;
}

body.is-opening-app .app-transition {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.app-transition-panel {
  display: grid;
  width: min(100%, 30rem);
  justify-items: center;
  text-align: center;
  transform: translateY(-6vh);
}

.app-transition-mascot {
  width: clamp(6rem, 18vw, 7.5rem);
  height: auto;
  object-fit: contain;
}

.app-transition-brand {
  margin: clamp(0.6rem, 2.5vw, 0.85rem) 0 0;
  color: var(--blue);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.65rem, 7.9vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.app-transition-brand span {
  color: var(--ink);
}

.app-transition-progress {
  width: min(8rem, 38vw);
  height: 0.2rem;
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--blue-soft);
}

.app-transition-progress span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  animation: app-transition-progress 760ms ease-in-out infinite;
}

@keyframes app-transition-progress {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(245%);
  }
}

.page-width {
  width: min(calc(100% - 2rem), var(--page));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(220 216 213 / 0.9);
  background: rgb(252 249 248 / 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 2rem), var(--page));
  min-height: 5rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  color: var(--blue);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-right: auto;
  margin-left: 2rem;
}

.desktop-nav a,
.login-link,
.footer-links a,
.footer-choice-settings {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  color: var(--muted);
}

.desktop-nav a:hover,
.login-link:hover,
.footer-links a:hover,
.footer-choice-settings:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 0.6rem;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 2.8rem;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button-primary {
  padding: 1rem 1.55rem;
  box-shadow: var(--shadow);
}

.button-primary:hover {
  box-shadow: 22px 22px 0 rgb(23 23 23 / 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  border-left: 1px solid var(--line);
  background: #f0edec;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 47rem;
  grid-template-columns: minmax(0, 1.04fr) minmax(24rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 48rem;
}

.eyebrow,
.section-label,
.card-kicker,
.choice-label,
.price-kicker,
.boundary-tag {
  margin: 0;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #2da96b;
  box-shadow: 0 0 0 0.3rem rgb(45 169 107 / 0.14);
}

.hero h1,
.section-heading h2,
.recognition h2,
.mobile-experience h2,
.offer-grid h2,
.application-copy h2,
.faq h2,
.legal-hero h1 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 47rem;
  margin-top: 1.4rem;
  font-size: clamp(3.75rem, 5vw, 4.45rem);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lede {
  max-width: 41rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 560;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.35rem;
}

.hero-offer {
  max-width: 36rem;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.55;
}

.text-link {
  padding-block: 0.75rem;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 2.5rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-proof li::before {
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.product-preview-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 35rem;
  justify-self: end;
}

.product-preview {
  overflow: hidden;
  border: 1px solid #d7dee8;
  border-radius: 1rem;
  background: var(--app-surface);
  box-shadow: 2.1rem 2.3rem 5rem -2rem rgb(29 59 99 / 0.38);
}

.product-preview-header {
  display: flex;
  min-height: 7.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #d7dee8;
  background: var(--white);
  padding: 1.35rem 1.5rem;
}

.product-preview-header h2 {
  margin: 0.25rem 0 0;
  font-size: 1.65rem;
  line-height: 1.15;
}

.product-preview-header > div > p:last-child {
  margin: 0.25rem 0 0;
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.product-preview-count {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #ffe0e7;
  color: #d20b3f;
  font-size: 0.9rem;
  font-weight: 900;
}

.product-preview-list {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.product-preview-item {
  display: grid;
  min-height: 6.3rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid #d7dee8;
  border-radius: 0.8rem;
  background: var(--white);
  padding: 1rem;
}

.product-preview-item.is-priority {
  border-color: #e7d8b7;
  background: #fffaf0;
}

.product-preview-copy > span,
.product-preview-copy strong,
.product-preview-copy small {
  display: block;
}

.product-preview-copy > span {
  color: #284a92;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-preview-item.is-priority .product-preview-copy > span {
  color: #9a4b00;
}

.product-preview-copy strong {
  margin-top: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.25;
}

.product-preview-copy small {
  margin-top: 0.2rem;
  color: var(--app-muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.product-preview-action {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.65rem;
  background: var(--app-navy);
  color: var(--white);
  padding-inline: 0.9rem;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-preview-chevron {
  color: var(--app-navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.product-preview-footer {
  display: grid;
  min-height: 6.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #d7dee8;
  background: var(--white);
  padding: 1rem 1.5rem;
}

.product-preview-footer .product-preview-copy > span {
  color: #0f6a4f;
}

.product-preview-waiting {
  border-radius: 999px;
  background: #edf1f6;
  color: #657184;
  padding: 0.45rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 850;
}

.floating-note {
  position: absolute;
  right: -2rem;
  bottom: -3.7rem;
  margin: 0;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.2rem;
  box-shadow: 0.8rem 0.8rem 0 rgb(6 70 199 / 0.2);
  font-size: 0.82rem;
  transform: rotate(-3deg);
}

.recognition {
  background: var(--white);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.recognition-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem 6rem;
}

.recognition h2,
.section-heading h2,
.offer-grid h2,
.application-copy h2,
.faq h2 {
  max-width: 45rem;
  margin-top: 1rem;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  text-transform: uppercase;
}

.recognition-intro > p:last-child {
  max-width: 35rem;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.invoice-choice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns:
    minmax(12rem, 0.5fr)
    minmax(0, 1.35fr)
    minmax(12rem, 0.6fr);
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  background: var(--blue-soft);
  padding: 1.4rem 1.6rem;
}

.invoice-choice > div {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0.85rem;
  font-weight: 850;
}

.invoice-choice > div > span:not(.choice-or) {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #9eb8ff;
  border-radius: 999px;
  background: var(--white);
  padding: 0.65rem 0.9rem;
  line-height: 1.25;
  text-align: center;
}

.choice-or {
  align-self: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.invoice-choice > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.workflow {
  border-top: 1px solid var(--line);
  background: #f3f0ef;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  align-items: end;
  gap: 3rem;
}

.split-heading > p {
  max-width: 30rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mobile-experience {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #bdcaef;
  background: var(--blue-soft);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.mobile-experience::before {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgb(6 70 199 / 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgb(255 255 255 / 0.18),
    0 0 0 10rem rgb(255 255 255 / 0.12);
  content: "";
}

.mobile-experience-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(27rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.mobile-experience h2 {
  max-width: 43rem;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  text-transform: uppercase;
}

.mobile-experience-copy > p:not(.section-label) {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: #3e4659;
  font-size: 1.05rem;
  line-height: 1.75;
}

.mobile-experience-copy .mobile-reminder-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-top: 1px solid rgb(6 70 199 / 0.22);
  padding-top: 1.25rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-reminder-copy::before {
  color: var(--blue);
  content: "↳";
  font-size: 1.2rem;
  line-height: 1.25;
}

.mobile-demo {
  position: relative;
  min-height: 42rem;
}

.mobile-device {
  position: absolute;
  top: 0;
  right: 4.5rem;
  width: min(21rem, calc(100% - 5rem));
  border: 0.65rem solid #101319;
  border-radius: 3rem;
  background: #101319;
  box-shadow: 2.2rem 2.6rem 4rem -1.7rem rgb(0 42 121 / 0.44);
  transform: rotate(2deg);
}

.mobile-device::before {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 50%;
  width: 5.5rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #101319;
  content: "";
  transform: translateX(-50%);
}

.mobile-device-screen {
  min-height: 39rem;
  overflow: hidden;
  border-radius: 2.35rem;
  background: #f2f2f7;
  color: #172238;
  padding: 1rem 0.9rem 1.5rem;
}

.mobile-status-bar,
.mobile-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-status-bar {
  padding: 0.05rem 0.5rem 0.8rem;
  font-size: 0.63rem;
}

.mobile-status-bar span {
  letter-spacing: 0.1em;
}

.mobile-app-bar {
  border-radius: 0.85rem;
  background: var(--white);
  padding: 0.85rem 0.8rem;
  box-shadow: 0 0.45rem 1rem rgb(29 59 99 / 0.06);
}

.mobile-app-brand {
  color: var(--blue);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.mobile-avatar {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.62rem;
  font-weight: 900;
}

.mobile-screen-copy {
  padding: 2rem 0.5rem 1rem;
}

.mobile-screen-copy p {
  margin: 0;
  color: var(--app-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.mobile-screen-copy h3 {
  max-width: 14rem;
  margin: 0.3rem 0 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.mobile-task {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.75rem;
  border: 1px solid #d7dee8;
  border-radius: 0.85rem;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 0.4rem 1.2rem rgb(29 59 99 / 0.05);
}

.mobile-task.is-primary {
  border-color: #e7d8b7;
  background: #fffaf0;
}

.mobile-task > span {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-task.is-primary > span {
  color: #9a4b00;
}

.mobile-task strong {
  font-size: 0.83rem;
}

.mobile-task small {
  color: var(--app-muted);
  font-size: 0.68rem;
}

.mobile-notification-stack {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0.8rem;
  display: grid;
  width: min(23rem, calc(100% - 1rem));
  gap: 0.65rem;
}

.mobile-notification {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgb(255 255 255 / 0.82);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.9);
  padding: 0.75rem;
  box-shadow: 0 1rem 2.4rem rgb(0 42 121 / 0.16);
  backdrop-filter: blur(18px);
}

.mobile-notification:nth-child(1) {
  transform: translateX(-2.2rem);
}

.mobile-notification:nth-child(2) {
  transform: translateX(0.7rem);
}

.mobile-notification:nth-child(3) {
  transform: translateX(-1rem);
}

.mobile-notification img {
  border-radius: 0.7rem;
}

.mobile-notification p,
.mobile-notification strong,
.mobile-notification span {
  display: block;
}

.mobile-notification p {
  min-width: 0;
  margin: 0;
}

.mobile-notification strong {
  font-size: 0.79rem;
  line-height: 1.2;
}

.mobile-notification span {
  margin-top: 0.18rem;
  color: #5d6677;
  font-size: 0.68rem;
  line-height: 1.35;
}

.accounting-trust {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.accounting-trust::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 0.35rem;
  background: var(--blue);
  content: "";
}

.accounting-trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.58fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.accounting-trust h2 {
  max-width: 52rem;
  margin: 1rem 0 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.accounting-trust-intro {
  max-width: 31rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.accounting-trust-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 3.75rem 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.accounting-trust-principles li {
  display: grid;
  min-height: 12rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-content: start;
  gap: 1rem;
  border-right: 1px solid var(--line);
  padding: 1.6rem;
}

.accounting-trust-principles li:first-child {
  padding-left: 0;
}

.accounting-trust-principles li:last-child {
  border-right: 0;
  padding-right: 0;
}

.accounting-trust-principles li > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid #9eb8ff;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.accounting-trust-principles h3 {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.accounting-trust-principles p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.accounting-trust-controls {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
  border-radius: 1rem;
  background: var(--blue);
  color: var(--white);
}

.accounting-trust-controls article {
  display: grid;
  min-height: 9.5rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-content: start;
  gap: 1rem;
  padding: 1.6rem;
}

.accounting-trust-controls article + article {
  border-left: 1px solid rgb(255 255 255 / 0.25);
}

.accounting-trust-controls article > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: 50%;
  color: #d7e1ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.accounting-trust-controls h3 {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.accounting-trust-controls p {
  margin: 0.75rem 0 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 0.9rem;
  line-height: 1.65;
}

.accounting-trust-note {
  display: grid;
  max-width: 55rem;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  color: var(--muted);
}

.accounting-trust-note > span {
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.35;
}

.accounting-trust-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.accounting-trust-note strong {
  color: var(--ink);
}

.section-label-light {
  color: #b9c9ff;
}

.access-offer {
  border-block: 1px solid var(--line);
  background: var(--pink);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.7fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.price-card {
  border: 1px solid var(--ink);
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 1rem 1rem 0 rgb(23 23 23 / 0.12);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 1rem 0 0;
}

.price strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  margin-right: 0.6rem;
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.price-note {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.application {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.application-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.02fr;
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
}

.application-copy {
  position: sticky;
  top: 8rem;
}

.application-copy > p:not(.section-label) {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.response-promise {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  padding-top: 1.4rem;
}

.response-promise > span {
  color: #b9c9ff;
  font-size: 1.5rem;
}

.response-promise p {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  font-size: 0.85rem;
}

.response-promise strong {
  color: var(--white);
}

.lead-form {
  position: relative;
  display: grid;
  gap: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.field legend {
  font-size: 0.78rem;
  font-weight: 850;
}

.field label span {
  color: #787a83;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid #c9c8c7;
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
}

.field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #85888f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgb(6 70 199 / 0.16);
}

.field [aria-invalid="true"],
.consent input[aria-invalid="true"] {
  border-color: #b3261e;
  outline-color: rgb(179 38 30 / 0.16);
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.radio-grid label {
  cursor: pointer;
}

.radio-grid input {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  margin: 0;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.radio-grid span {
  display: grid;
  min-height: 3.2rem;
  place-items: center;
  border: 1px solid #c9c8c7;
  border-radius: 0.45rem;
  padding: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.radio-grid input:checked + span {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.radio-grid input:focus-visible + span {
  outline: 3px solid rgb(6 70 199 / 0.24);
  outline-offset: 2px;
}

.consent {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--blue);
}

.consent a {
  color: var(--blue);
  font-weight: 750;
}

.button-submit {
  width: 100%;
  min-height: 3.7rem;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-feedback {
  display: none;
  border-radius: 0.45rem;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-error {
  background: #ffdad6;
  color: #7d0010;
}

.form-feedback.is-success {
  background: var(--green-soft);
  color: #0d5a39;
}

.form-smallprint {
  margin: 0;
  color: #72747d;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.honeypot input {
  width: 1px;
  min-height: 0;
}

.faq {
  background: var(--white);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--blue);
  content: "+";
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 42rem;
  margin: -0.25rem 0 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid #313131;
  background: var(--ink);
  color: var(--white);
  padding-block: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.brand-footer span {
  color: var(--white);
}

.footer-grid > div:first-child p {
  margin: 0.9rem 0 0;
  color: rgb(255 255 255 / 0.55);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-choice-settings {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  border-top: 1px solid #313131;
  padding-top: 1.5rem;
  color: rgb(255 255 255 / 0.42);
  font-size: 0.72rem;
}

.footer-company-link {
  color: rgb(255 255 255 / 0.68);
  font-weight: 750;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.footer-company-link:hover {
  color: #9eb8ff;
  text-decoration: underline;
}

.footer-company-link:focus-visible {
  border-radius: 2px;
  outline: 2px solid #9eb8ff;
  outline-offset: 3px;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-hero h1 {
  max-width: 55rem;
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
}

.legal-hero > p:last-child {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 4rem;
  padding-block: 4rem 7rem;
}

.legal-meta {
  position: sticky;
  top: 7rem;
  align-self: start;
  border-top: 3px solid var(--blue);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.legal-meta strong {
  color: var(--ink);
}

.legal-sections {
  max-width: 50rem;
}

.legal-sections section {
  border-top: 1px solid var(--line);
  padding-block: 2rem;
}

.legal-sections section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-sections h2 {
  margin: 0;
  font-size: 1.35rem;
}

.legal-sections p,
.legal-sections li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-sections a {
  color: var(--blue);
  font-weight: 750;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  padding: 1rem;
}

.thanks-card {
  width: min(100%, 40rem);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: clamp(2rem, 7vw, 4rem);
  box-shadow: 1.5rem 1.5rem 0 rgb(23 23 23 / 0.2);
}

.thanks-card h1 {
  margin: 1rem 0 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.thanks-card > p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.thanks-card .button {
  margin-top: 2rem;
  padding-inline: 1.5rem;
}

@media (max-width: 64rem) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .button-small {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    width: 2.5rem;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(13 17 23 / 0.1);
    border-radius: 999px;
    background: #f2f2f7;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav-toggle::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-icon {
    display: grid;
    width: 0.9rem;
    gap: 0.17rem;
  }

  .mobile-nav-icon span {
    display: block;
    height: 1.5px;
    border-radius: 999px;
    background: currentcolor;
  }

  .mobile-nav[open] .mobile-nav-toggle {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
  }

  .mobile-nav-popover {
    position: fixed;
    z-index: 110;
    top: 5.65rem;
    right: 0.75rem;
    display: grid;
    width: min(20rem, calc(100vw - 1.5rem));
    border: 1px solid rgb(13 17 23 / 0.1);
    border-radius: 1.25rem;
    background: rgb(255 255 255 / 0.96);
    box-shadow: 0 1rem 2.5rem rgb(13 17 23 / 0.14);
    overflow: hidden;
    padding: 0.45rem;
    backdrop-filter: blur(18px);
  }

  .mobile-nav-title {
    margin: 0;
    padding: 0.75rem 0.8rem 0.45rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-nav-links {
    display: grid;
  }

  .mobile-nav-links a,
  .mobile-nav-apply {
    display: flex;
    min-height: 2.9rem;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.85rem;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 760;
    text-decoration: none;
    padding: 0.55rem 0.8rem;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:focus-visible {
    background: #f2f2f7;
    color: var(--blue);
  }

  .mobile-nav-apply {
    min-height: 3.1rem;
    margin-top: 0.35rem;
    background: #f2f2f7;
    color: var(--blue);
  }

  .login-link {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 0.55rem 0.85rem;
  }

  .login-link:hover,
  .login-link:focus-visible {
    background: #05399f;
    color: var(--white);
  }

  .hero::before {
    width: 37%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
    gap: 3rem;
  }

  .floating-note {
    right: 0;
  }

}

@media (max-width: 48rem) {
  html {
    scroll-padding-top: 5rem;
  }

  .page-width,
  .header-inner {
    width: min(calc(100% - 1.5rem), var(--page));
  }

  .header-inner {
    min-height: 4.5rem;
    gap: 1rem;
  }

  .login-link {
    font-size: 0.72rem;
  }

  .mobile-nav-popover {
    top: 5.15rem;
  }

  .button-small {
    min-height: 2.65rem;
    padding-inline: 1rem;
    font-size: 0.7rem;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-block: 3.5rem 5.5rem;
  }

  .hero h1 {
    margin-top: 1.2rem;
    font-size: clamp(1.8rem, 9vw, 4rem);
    line-height: 0.91;
  }

  .hero-lede {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .button-primary {
    width: 100%;
    box-shadow: 0.75rem 0.75rem 0 rgb(6 70 199 / 0.12);
  }

  .text-link {
    align-self: center;
  }

  .hero-proof {
    display: grid;
    gap: 0.55rem;
    margin-top: 2rem;
  }

  .product-preview-wrap {
    max-width: none;
  }

  .product-preview {
    box-shadow: 0.75rem 0.75rem 0 rgb(23 23 23 / 0.1);
  }

  .product-preview-item,
  .product-preview-footer {
    grid-template-columns: 1fr;
  }

  .product-preview-action {
    justify-self: start;
  }

  .product-preview-chevron {
    display: none;
  }

  .product-preview-waiting {
    justify-self: start;
  }

  .floating-note {
    right: 0.5rem;
    bottom: -3.25rem;
  }

  .recognition-grid,
  .split-heading,
  .mobile-experience-grid,
  .accounting-trust-heading,
  .offer-grid,
  .application-grid,
  .faq-grid,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .recognition-grid {
    gap: 2.5rem;
  }

  .invoice-choice {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .invoice-choice > div {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .choice-or {
    text-align: center;
  }

  .mobile-experience-grid {
    gap: 2.5rem;
  }

  .mobile-experience h2 {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
  }

  .mobile-demo {
    min-height: 37rem;
  }

  .mobile-device {
    right: 0;
    left: 0;
    width: min(18.5rem, calc(100% - 2rem));
    margin-inline: auto;
  }

  .mobile-device-screen {
    min-height: 34rem;
  }

  .mobile-notification-stack {
    right: 0;
    bottom: 0;
    width: min(20rem, calc(100% - 0.75rem));
  }

  .mobile-notification:nth-child(1),
  .mobile-notification:nth-child(2),
  .mobile-notification:nth-child(3) {
    transform: none;
  }

  .accounting-trust-heading {
    gap: 1.5rem;
  }

  .accounting-trust h2 {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
  }

  .accounting-trust-intro {
    margin: 0;
  }

  .accounting-trust-principles {
    grid-template-columns: 1fr;
    margin-top: 2.75rem;
  }

  .accounting-trust-principles li,
  .accounting-trust-principles li:first-child,
  .accounting-trust-principles li:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
  }

  .accounting-trust-principles li:last-child {
    border-bottom: 0;
  }

  .accounting-trust-controls {
    grid-template-columns: 1fr;
  }

  .accounting-trust-controls article {
    min-height: 0;
  }

  .accounting-trust-controls article + article {
    border-top: 1px solid rgb(255 255 255 / 0.25);
    border-left: 0;
  }

  .price {
    align-items: flex-start;
    flex-direction: column;
  }

  .application-copy {
    position: static;
  }

  .form-row-two,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .radio-grid span {
    justify-items: start;
    padding-inline: 1rem;
  }

  .faq summary {
    min-height: 4.5rem;
    font-size: 0.96rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-legal {
    grid-column: auto;
  }

  .legal-content {
    gap: 2.5rem;
  }

  .legal-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
    overflow-wrap: anywhere;
  }

  .legal-meta {
    position: static;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .app-transition-progress span {
    width: 100%;
    animation: none;
    transform: none;
  }

  .site-navigation-progress-bar {
    width: 72%;
    animation: none;
    transform: none;
  }
}
