@font-face {
  font-family: 'Poppins';
  src: url('/brand/fonts/Poppins-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/brand/fonts/Poppins-SemiBold.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/brand/fonts/Poppins-Bold.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #1c1c1c;
  --paper: #f6f6ef;
  --white: #ffffff;
  --yellow: #f0ff08;
  --yellow-soft: #f8ffc0;
  --blue: #d1e8f0;
  --blue-deep: #accfdb;
  --line: rgba(28, 28, 28, 0.18);
  --muted: #5d5d59;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #577bc1;
  outline-offset: 3px;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--ink);
  background: rgba(246, 246, 239, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.login-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after,
.login-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.login-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  gap: 22px;
}

.button {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.button:hover {
  background: #f5ff72;
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 13px;
  box-shadow: 3px 3px 0 var(--ink);
}

.button-large {
  min-height: 56px;
  padding: 15px 24px;
  font-size: 15px;
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 4px 4px 0 #728a00;
}

.button-dark:hover {
  background: #363632;
  box-shadow: 2px 2px 0 #728a00;
}

.mobile-menu {
  display: none;
}

.hero {
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  padding-block: 62px 72px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4c4c49;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--ink);
}

.hero h1,
.section h2,
.ai-section h2,
.closing-section h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 5vw, 64px);
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 0.1em;
  left: -4px;
  height: 0.3em;
  background: var(--yellow);
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #454542;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.text-link:hover {
  border-bottom-color: transparent;
}

.commercial-note,
.handoff-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.commercial-note {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.handoff-note {
  margin: 8px 0 0;
}

.checkout-demo {
  border: 1px solid var(--ink);
  background: var(--blue);
  box-shadow: 14px 14px 0 var(--ink);
  scroll-margin-top: 96px;
}

#how-it-works,
#nz-details,
#pricing {
  scroll-margin-top: 76px;
}

.demo-browser {
  min-height: 40px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-browser > span:first-child {
  display: flex;
  gap: 5px;
}

.demo-browser i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: block;
  background: var(--white);
}

.demo-browser i:first-child {
  background: var(--yellow);
}

.demo-body {
  padding: 28px;
}

.demo-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.demo-heading p,
.receipt-context {
  margin: 0 0 5px;
  color: #3e5c67;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.demo-heading h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.demo-heading > strong {
  flex: 0 0 auto;
  font-size: 18px;
}

.demo-description {
  max-width: 390px;
  margin: 13px 0 22px;
  color: #47575d;
  font-size: 12px;
  line-height: 1.6;
}

.scenario-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--white);
}

.scenario-picker button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  padding: 8px 7px;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.scenario-picker button:last-child {
  border-right: 0;
}

.scenario-picker button[aria-pressed='true'] {
  background: var(--yellow);
  font-weight: 700;
}

.receipt-card {
  min-height: 265px;
  margin-top: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  padding: 19px 20px 16px;
}

.receipt-card dl {
  margin: 12px 0 0;
}

.receipt-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.receipt-card dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.receipt-card .receipt-total {
  padding-block: 12px;
  border-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.receipt-result {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--ink);
  padding-top: 13px;
  font-size: 11px;
  font-weight: 700;
}

.receipt-card > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.demo-pay {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: not-allowed;
  opacity: 1;
}

.demo-disclaimer {
  margin: 9px 0 0;
  color: #405a64;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.proof-strip {
  border-bottom: 1px solid var(--ink);
  background: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid > div {
  min-height: 112px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--ink);
}

.proof-grid strong {
  font-size: 14px;
  line-height: 1.35;
}

.proof-grid span {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding-block: 112px;
  border-bottom: 1px solid var(--ink);
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.section h2,
.ai-section h2,
.closing-section h2 {
  font-size: clamp(38px, 4.2vw, 59px);
}

.section-heading > p:last-child,
.split-heading > p,
.section-lead,
.pricing-copy > p,
.faq-grid > div:first-child > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 22px 0 0;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 90px;
}

.split-heading > p {
  margin: 0;
}

.journey-grid {
  margin: 68px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.journey-grid li {
  min-height: 260px;
  border-right: 1px solid var(--ink);
  padding: 27px 32px 34px;
}

.journey-grid li:first-child {
  border-left: 1px solid var(--ink);
}

.journey-grid li > span {
  color: #70706b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.journey-grid h3 {
  margin: 62px 0 12px;
  font-size: 21px;
  line-height: 1.3;
}

.journey-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.available-row {
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  gap: 44px;
  margin-top: 32px;
}

.availability {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.availability i {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: #12885b;
  box-shadow: 0 0 0 4px rgba(18, 136, 91, 0.13);
}

.available-row ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  list-style: none;
}

.available-row li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.available-row svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.nz-section {
  background: var(--blue);
}

.nz-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 108px);
}

.nz-visual {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--white);
  padding: 13px;
  box-shadow: 13px 13px 0 var(--ink);
}

.nz-visual img {
  width: 100%;
  height: clamp(430px, 47vw, 565px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.local-stamp {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 15px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.nz-copy h2 {
  max-width: 660px;
}

.section-lead {
  margin: 24px 0 0;
}

.detail-list {
  margin: 33px 0 30px;
  border-top: 1px solid var(--ink);
}

.detail-list article {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.35);
}

.detail-list strong {
  font-size: 12px;
  line-height: 1.55;
}

.detail-list p {
  margin: 0;
  color: #46565b;
  font-size: 11px;
  line-height: 1.65;
}

.money-section {
  background: var(--ink);
  color: var(--white);
}

.money-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(64px, 9vw, 128px);
}

.eyebrow-on-dark {
  color: #cdcdc6;
}

.eyebrow-on-dark::before {
  background: var(--yellow);
}

.money-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: #cfcfca;
  font-size: 15px;
  line-height: 1.75;
}

.trust-points {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.trust-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eeeeea;
  font-size: 12px;
  font-weight: 600;
}

.trust-points svg {
  color: var(--yellow);
}

.money-diagram {
  border: 1px solid var(--white);
  background: #292927;
  padding: 24px;
  box-shadow: 13px 13px 0 var(--yellow);
}

.flow-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.flow-top > div,
.operator-node {
  border: 1px solid #6c6c67;
  background: #343431;
  padding: 19px;
}

.flow-top small,
.operator-node span,
.operator-node b,
.fee-note span {
  display: block;
  color: #bcbcb5;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: uppercase;
}

.flow-top strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.45;
}

.account-node {
  border-color: var(--yellow) !important;
}

.operator-node {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--blue);
  color: var(--ink);
}

.operator-node span {
  color: #46585e;
}

.operator-node b {
  border: 1px solid var(--ink);
  background: var(--yellow);
  padding: 5px 7px;
  color: var(--ink);
  text-align: center;
}

.fee-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #5a5a56;
}

.fee-note strong {
  display: block;
  font-size: 11px;
  line-height: 1.55;
}

.fee-note span {
  margin-top: 5px;
  text-transform: none;
}

.ai-section {
  padding-block: 82px;
  border-bottom: 1px solid var(--ink);
  background: var(--yellow-soft);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.ai-grid h2 {
  max-width: 620px;
}

.ai-grid > div:last-child > p {
  margin: 0 0 16px;
  color: #51514d;
  font-size: 14px;
  line-height: 1.75;
}

.ai-grid .text-link {
  margin-top: 8px;
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 0.65fr);
  align-items: center;
  gap: clamp(70px, 12vw, 180px);
}

.pricing-copy > p {
  max-width: 600px;
  margin: 24px 0 0;
}

.founder-mini {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.founder-mini img {
  width: 64px;
  height: 64px;
  border: 1px solid var(--ink);
  object-fit: cover;
}

.founder-mini div {
  display: grid;
}

.founder-mini strong {
  font-size: 12px;
}

.founder-mini span,
.founder-mini a {
  color: var(--muted);
  font-size: 10px;
}

.founder-mini a {
  text-decoration: underline;
}

.price-card {
  border: 1px solid var(--ink);
  background: var(--yellow);
  padding: 36px;
  box-shadow: 13px 13px 0 var(--ink);
}

.price-card > p:first-child {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: center;
  gap: 13px;
}

.price strong {
  font-size: 48px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.annual-price {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.price-card ul {
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  gap: 12px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.price-card li svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

.price-card > small {
  display: block;
  margin: 0 0 17px;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1fr);
  align-items: start;
  gap: clamp(70px, 11vw, 165px);
}

.faq-grid > div:first-child > p {
  margin: 24px 0 28px;
}

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

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

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  width: 17px;
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.closing-section {
  padding-block: 76px;
  border-bottom: 1px solid var(--ink);
  background: var(--blue);
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.closing-grid h2 {
  max-width: 760px;
}

.closing-grid > div:last-child {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.closing-grid > div:last-child p {
  margin: 0;
  color: #516269;
  font-size: 12px;
}

.site-footer {
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.6fr 0.85fr;
  gap: 65px;
  padding-block: 68px 56px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.footer-brand span,
.footer-local a {
  color: var(--muted);
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid nav strong,
.footer-local strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.footer-grid nav a,
.footer-local a {
  width: max-content;
  font-size: 12px;
}

.footer-grid nav a:hover,
.footer-local a:hover {
  text-decoration: underline;
}

.footer-local {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-local svg {
  margin-bottom: 11px;
}

.footer-bottom {
  min-height: 54px;
  border-top: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(46px, 5vw, 62px);
  }

  .detail-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .desktop-nav,
  .nav-actions .button {
    display: none;
  }

  .nav-shell {
    gap: 12px;
  }

  .nav-actions {
    display: flex;
    margin-left: auto;
  }

  .nav-actions .login-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 8px;
  }

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

  .mobile-menu summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
  }

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

  .mobile-menu[open] summary svg {
    transform: rotate(180deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    width: min(280px, calc(100vw - 36px));
    border: 1px solid var(--ink);
    background: var(--white);
    padding: 10px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .mobile-menu nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .nz-grid,
  .money-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 70px 82px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .checkout-demo {
    width: min(100%, 560px);
    justify-self: center;
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 1px solid var(--ink);
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--ink);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .available-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .nz-grid,
  .money-grid,
  .pricing-grid,
  .faq-grid {
    gap: 64px;
  }

  .nz-visual {
    width: min(100%, 620px);
    justify-self: center;
  }

  .pricing-copy,
  .faq-grid > div:first-child {
    max-width: 680px;
  }

  .price-card {
    width: min(100%, 520px);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.6fr 0.6fr;
  }

  .footer-local {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 94px;
    height: auto;
  }

  .hero-grid {
    min-height: 0;
    gap: 52px;
    padding-block: 54px 66px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .button-large {
    width: 100%;
  }

  .checkout-demo {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .demo-body {
    padding: 18px;
  }

  .demo-heading {
    display: block;
  }

  .demo-heading > strong {
    display: block;
    margin-top: 6px;
  }

  .scenario-picker {
    grid-template-columns: 1fr;
  }

  .scenario-picker button {
    min-height: 44px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .scenario-picker button:last-child {
    border-bottom: 0;
  }

  .receipt-card {
    min-height: 278px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:nth-child(3) {
    min-height: 84px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
    padding: 17px 20px;
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .section h2,
  .ai-section h2,
  .closing-section h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid li,
  .journey-grid li:first-child {
    min-height: 0;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
    padding: 25px 24px 29px;
  }

  .journey-grid li:last-child {
    border-bottom: 0;
  }

  .journey-grid h3 {
    margin-top: 32px;
  }

  .available-row ul {
    grid-template-columns: 1fr;
  }

  .nz-grid,
  .money-grid,
  .pricing-grid,
  .faq-grid {
    gap: 48px;
  }

  .nz-visual {
    padding: 8px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .nz-visual img {
    height: clamp(250px, 70vw, 290px);
    aspect-ratio: auto;
    object-position: 40% center;
  }

  .local-stamp {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding-inline: 10px;
  }

  .detail-list article {
    padding-block: 17px;
  }

  .money-diagram {
    padding: 15px;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .flow-top {
    grid-template-columns: 1fr;
  }

  .flow-top > svg {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .operator-node {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .ai-section {
    padding-block: 72px;
  }

  .ai-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .price-card {
    padding: 28px 22px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .price strong {
    font-size: 43px;
  }

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

  .closing-grid > div:last-child {
    justify-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .footer-brand,
  .footer-local {
    grid-column: 1 / -1;
  }
}

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

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

[hidden]{display:none!important}.skip-link{position:fixed;top:8px;left:8px;transform:translateY(-160%);z-index:9999;padding:12px 18px;background:#f0ff08;color:#1c1c1c}.skip-link:focus{transform:none}
