@font-face {
  font-family: Perks;
  src: local("Inter"), local("Arial");
  font-display: swap;
}
:root {
  --ink: #172e2b;
  --teal: #12554d;
  --teal-light: #e6f0eb;
  --lime: #d2ed88;
  --paper: #fff;
  --muted: #596863;
  --line: #d9e2dc;
  --coral: #ed9b86;
  --radius: 8px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Perks, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.08;
}
h2 {
  font-size: 56px;
  font-weight: 550;
}
h3 {
  font-size: 26px;
  font-weight: 550;
}
p {
  color: var(--muted);
}
a,
button {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #d38852;
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 4.5%;
  background: #fffffff5;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
}
.wordmark {
  position: relative;
  display: block;
  width: 212px;
  height: 48px;
  overflow: hidden;
}
.wordmark img {
  position: absolute;
  width: 130.3704%;
  max-width: none;
  height: 320%;
  left: -16.2037%;
  top: -110%;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 550;
}
nav a {
  position: relative;
}
nav a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--teal);
  transition: width 0.2s;
}
nav a:hover:after {
  width: 100%;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--teal);
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-2px);
  background: #1c6a5f;
}
.button.small {
  min-height: 44px;
  padding: 9px 17px;
  font-size: 13px;
  gap: 18px;
}
.button.lime {
  background: var(--lime);
  color: var(--ink);
}
.button.lime:hover {
  background: #e1f4b2;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  background: var(--ink);
  width: 24px;
  height: 2px;
  margin: 6px 0;
  transition: transform 0.2s;
}
.hero {
  height: 650px;
  max-height: calc(100svh - 260px);
  min-height: 420px;
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 23, 20, 0.62);
  z-index: -2;
}
.hero-content {
  padding: 30px 20px 70px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--teal);
  margin-bottom: 22px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #edf6dd;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #91bb53;
  flex-shrink: 0;
}
.hero h1 {
  font-size: 72px;
  font-weight: 650;
}
.hero h1 > span {
  display: block;
  font-size: 42px;
  font-weight: 400;
  margin-top: 14px;
  line-height: 1.05;
}
.hero h1 br {
  display: none;
}
.hero-description {
  color: #f1f4ed;
  font-size: 17px;
  margin: 25px auto 0;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #ffffff65;
  padding: 9px 0;
}
.launch-note {
  font-size: 11px;
  color: #d4ddd4;
  margin-top: 22px;
}
.hero-footer {
  position: absolute;
  bottom: 0;
  left: 4.5%;
  right: 4.5%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ffffff40;
  padding: 16px 0;
  font-size: 11px;
  color: #e2e9df;
}
.section-pad {
  padding: 95px max(5%, calc((100% - 1240px) / 2));
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 46px;
}
.section-head > div:first-child {
  flex: 1;
}
.section-head > p,
.section-head > div + div {
  max-width: 390px;
  flex: 1;
}
.section-head p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.75;
}
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.discovery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef3ee;
}
.discovery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}
.discovery-item:hover img {
  transform: scale(1.025);
}
.discovery-item > div {
  padding: 24px 26px 26px;
  position: relative;
  background: inherit;
}
.discovery-item:nth-child(2) {
  background: #f9eae5;
}
.discovery-item:nth-child(3) {
  background: #eff0e6;
}
.discovery-item span {
  font-size: 11px;
  color: var(--muted);
}
.discovery-item h3 {
  margin: 16px 0 24px;
}
.discovery-item a {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.discovery-item a span {
  font-size: 24px;
  color: var(--ink);
}
.category-note {
  font-size: 12px;
  text-align: center;
  margin-top: 24px;
}
.app-preview {
  background: #edf3f8;
}
.preview-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.feature-row {
  display: flex;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid #cddbd0;
}
.feature-row:first-child {
  padding-top: 0;
}
.feature-row h3 {
  font-size: 21px;
  margin: 0 0 12px;
}
.feature-row p {
  font-size: 14px;
  line-height: 1.7;
}
.feature-number {
  font-size: 12px;
  color: var(--teal);
  padding-top: 3px;
}
.phone-gallery {
  height: 630px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.phone-frame {
  background: #152523;
  border: 7px solid #152523;
  padding: 0;
  border-radius: 30px;
  overflow: hidden;
  width: 252px;
  flex-shrink: 0;
  box-shadow: 0 22px 40px #1b403d25;
  transition: transform 240ms ease;
}
.phone-frame img {
  width: 100%;
  height: auto;
}
.main-phone {
  transform: translateY(-28px) rotate(-4deg);
  z-index: 2;
}
.second-phone {
  transform: translateY(35px) rotate(5deg);
  margin-left: -18px;
}
.main-phone:hover {
  transform: translateY(-36px) rotate(-2deg);
}
.second-phone:hover {
  transform: translateY(27px) rotate(2deg);
}
.preview-stamp {
  position: absolute;
  right: 3%;
  top: 0;
  background: var(--coral);
  padding: 14px 20px;
  border-radius: 3px;
  transform: rotate(6deg);
  font-size: 14px;
  z-index: 3;
  box-shadow: 0 5px 10px #00000008;
}
.screen-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.screen-tabs button {
  border: 1px solid #bbccc1;
  background: transparent;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--ink);
  display: flex;
  gap: 18px;
  align-items: center;
}
.screen-tabs button:hover {
  background: white;
}
.fine-print {
  font-size: 11px;
  margin: 20px auto 0;
  max-width: 850px;
  text-align: center;
}
.mobile-preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.mobile-preview-strip figure {
  margin: 0;
  min-width: 0;
}
.mobile-preview-strip button {
  display: block;
  width: min(100%, 260px);
  margin: 0 auto;
  padding: 7px;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}
.mobile-preview-strip button:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px #172e2b20;
}
.mobile-preview-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  border-radius: 3px;
}
.mobile-preview-strip figcaption {
  max-width: 280px;
  margin: 24px auto 0;
}
.mobile-preview-strip figcaption span {
  font-size: 11px;
  color: var(--teal);
}
.mobile-preview-strip h3 {
  font-size: 20px;
  margin: 10px 0;
}
.mobile-preview-strip p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 600px) {
  .mobile-preview-strip {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-preview-strip button {
    transition: none;
  }
  .mobile-preview-strip button:hover {
    transform: none;
  }
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  list-style: none;
  padding: 10px 0 55px;
  margin: 0;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.steps li > span {
  font-size: 13px;
  color: var(--teal);
}
.steps h3 {
  margin: 28px 0 18px;
  font-size: 24px;
}
.steps p {
  font-size: 14px;
}
.promise-line {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.promise-line strong {
  font-size: 19px;
}
.promise-line p {
  font-size: 14px;
  max-width: 450px;
}
.merchant-section {
  background: #123e37;
  color: white;
}
.merchant-section .eyebrow {
  color: var(--lime);
}
.merchant-section p {
  color: #becfc8;
}
.merchant-section .button {
  margin-top: 25px;
}
.merchant-preview {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 60px;
}
.dashboard-preview {
  border: 1px solid #4b7164;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: #172e2b;
  transition: transform 0.3s;
}
.dashboard-preview:hover {
  transform: translateY(-5px);
}
.dashboard-preview img {
  width: 100%;
  height: auto;
}
.merchant-benefits > div {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #426058;
}
.merchant-benefits h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.merchant-benefits p {
  font-size: 13px;
  line-height: 1.75;
}
.commercial-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  margin-top: 75px;
  border-top: 1px solid #426058;
  padding-top: 60px;
}
.commercial-section h3 {
  font-size: 34px;
  margin-bottom: 20px;
}
.commercial-section > div > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 325px;
}
.model-tabs {
  display: flex;
  border-bottom: 1px solid #426058;
  gap: 24px;
}
.model-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  color: #b5c9c1;
  background: none;
  padding: 10px 0 15px;
  font-weight: 600;
  font-size: 14px;
}
.model-tabs [aria-selected="true"] {
  color: var(--lime);
  border-color: var(--lime);
}
#model-panel {
  min-height: 248px;
  padding-top: 27px;
}
#model-panel h4 {
  font-size: 22px;
  margin-bottom: 12px;
}
#model-panel p,
#model-panel li {
  font-size: 13px;
  color: #d3dfd8;
}
#model-panel ul {
  padding-left: 18px;
}
#model-panel li {
  padding: 3px 0;
}
.onboarding {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #426058;
  padding-top: 28px;
  margin-top: 25px;
  font-size: 12px;
  color: #d9e5dc;
}
.onboarding span[aria-hidden] {
  color: var(--lime);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}
.trust-grid article {
  padding-top: 22px;
  border-top: 2px solid var(--teal);
}
.small-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-grid h3 {
  font-size: 24px;
  margin: 20px 0 16px;
}
.trust-grid p {
  font-size: 14px;
}
.text-button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-size: 13px;
  padding: 12px 0;
  display: flex;
  gap: 30px;
}
.rollout-note {
  font-size: 12px;
  margin-top: 40px;
  max-width: 1000px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
details:first-child {
  padding-top: 0;
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 550;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 26px;
  font-weight: 400;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 14px;
  padding: 14px 35px 0 0;
  line-height: 1.75;
}
.contact-section {
  background: #e7efd8;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 360px;
}
.city-label {
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
#direct-contact {
  margin-top: 40px;
}
#direct-contact span {
  font-size: 13px;
  display: block;
}
#direct-contact a {
  display: inline-flex;
  gap: 20px;
  font-size: 16px;
  color: var(--teal);
  margin-top: 10px;
}
form label {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  display: block;
}
input:not([type="radio"]):not([type="checkbox"]),
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #b7c7aa;
  background: #f8faf3;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  color: var(--ink);
  margin: 8px 0 18px;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.audience-options {
  border: 0;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  gap: 30px;
}
.audience-options legend {
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}
.audience-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--teal);
  width: 17px;
  height: 17px;
  margin: 0;
  flex-shrink: 0;
}
.optional {
  color: var(--muted);
  font-weight: 400;
  margin-left: 7px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  font-weight: 400;
  margin: 4px 0 22px;
}
.consent input {
  margin-top: 2px;
}
.consent a {
  text-decoration: underline;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  font-size: 10px;
  margin-top: 12px;
}
#form-status {
  font-size: 13px;
  margin-top: 12px;
  font-weight: 600;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer {
  padding: 48px 5% 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 35px;
}
.footer-top p {
  font-size: 14px;
}
.footer-top > a:last-child {
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
dialog {
  border: 1px solid #61766c;
  border-radius: 8px;
  padding: 0;
  width: min(1100px, 94%);
  max-height: 94svh;
  background: #f5f8f4;
  color: var(--ink);
  overflow: auto;
}
dialog::backdrop {
  background: #10241eed;
  backdrop-filter: blur(5px);
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  position: sticky;
  top: 0;
  background: #f5f8f4;
  z-index: 2;
  border-bottom: 1px solid var(--line);
}
.dialog-header h2 {
  font-size: 20px;
}
.dialog-header p {
  font-size: 11px;
  margin-top: 5px;
}
.dialog-header button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: white;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.dialog-image {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.dialog-image img {
  max-width: 100%;
  max-height: 70svh;
  object-fit: contain;
}
.dialog-footer {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  padding: 0 20px 20px;
  font-size: 12px;
}
.dialog-footer button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 50%;
  font-size: 20px;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: none;
}
.legal-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
}
.legal-page h1 {
  font-size: 42px;
  margin-bottom: 30px;
}
.legal-page h2 {
  font-size: 24px;
  margin: 30px 0 14px;
}
.legal-page p {
  margin-bottom: 16px;
}
.legal-page a {
  text-decoration: underline;
  color: var(--teal);
}
@media (min-width: 1600px) {
  .hero {
    height: 680px;
  }
  .section-pad {
    padding-top: 105px;
    padding-bottom: 105px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 15px;
  }
  .wordmark {
    width: 180px;
    height: 41px;
  }
  nav {
    gap: 18px;
    font-size: 12px;
  }
  .header-cta {
    display: none;
  }
  .section-pad {
    padding: 70px 5%;
  }
  .section-head {
    gap: 35px;
  }
  h2 {
    font-size: 44px;
  }
  .preview-layout {
    gap: 30px;
  }
  .phone-frame {
    width: 210px;
  }
  .phone-gallery {
    height: 540px;
  }
  .commercial-section {
    gap: 40px;
  }
  .merchant-preview {
    gap: 30px;
  }
  .contact-section {
    gap: 40px;
  }
  .discovery-item img {
    height: 200px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }
  .wordmark {
    width: 190px;
    height: 43px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px;
    box-shadow: 0 15px 20px #0b302013;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    font-size: 16px;
    padding: 12px;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    height: 610px;
    min-height: 400px;
    max-height: calc(100svh - 180px);
  }
  .hero-content {
    padding: 35px 22px 55px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero h1 > span {
    font-size: 34px;
    margin-top: 16px;
  }
  .hero h1 br {
    display: block;
  }
  .hero-eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 330px;
    margin-top: 23px;
  }
  .hero-actions {
    gap: 22px;
    flex-direction: column;
    margin-top: 24px;
  }
  .hero-actions .button {
    min-height: 48px;
  }
  .text-link {
    padding: 0 0 4px;
    font-size: 12px;
  }
  .launch-note {
    font-size: 10px;
    margin-top: 16px;
  }
  .hero-footer {
    left: 22px;
    right: 22px;
    font-size: 10px;
    padding: 12px 0;
  }
  .hero-footer > span:first-child {
    display: none;
  }
  .hero-footer > span:last-child {
    width: 100%;
    text-align: center;
  }
  .desktop-only {
    display: none;
  }
  .section-pad {
    padding: 60px 22px;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head > p,
  .section-head > div + div {
    margin-top: 23px;
    max-width: 100%;
  }
  .section-head p:not(.eyebrow) {
    font-size: 14px;
  }
  h2 {
    font-size: 38px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .discovery-item {
    display: grid;
    grid-template-columns: 43% 57%;
  }
  .discovery-item img {
    height: 100%;
    min-height: 210px;
  }
  .discovery-item > div {
    padding: 24px 18px;
  }
  .discovery-item h3 {
    font-size: 23px;
    margin: 16px 0;
  }
  .discovery-item span {
    font-size: 10px;
  }
  .discovery-item a {
    font-size: 11px;
  }
  .category-note {
    text-align: left;
    font-size: 11px;
  }
  .preview-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .phone-gallery {
    width: 100%;
    height: 475px;
    overflow: hidden;
    padding: 20px 0;
  }
  .phone-frame {
    width: 192px;
    border-width: 5px;
    border-radius: 24px;
  }
  .main-phone {
    transform: translateY(-8px) rotate(-3deg);
  }
  .second-phone {
    margin-left: -34px;
    transform: translateY(22px) rotate(5deg);
  }
  .preview-stamp {
    display: none;
  }
  .feature-row {
    padding: 22px 0;
  }
  .feature-row h3 {
    font-size: 20px;
  }
  .feature-row p {
    font-size: 13px;
  }
  .feature-list {
    width: 100%;
  }
  .screen-tabs {
    justify-content: flex-start;
    gap: 8px;
  }
  .screen-tabs button {
    padding: 9px 11px;
    font-size: 11px;
    gap: 12px;
  }
  .fine-print {
    text-align: left;
    font-size: 10px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 35px;
  }
  .steps li {
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 15px;
  }
  .steps h3 {
    margin: 0 0 14px;
    font-size: 23px;
  }
  .steps p {
    grid-column: 2;
    font-size: 13px;
  }
  .promise-line {
    display: block;
  }
  .promise-line strong {
    font-size: 18px;
  }
  .promise-line p {
    margin-top: 15px;
    font-size: 13px;
  }
  .merchant-preview {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
  .merchant-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .merchant-benefits > div {
    padding-bottom: 18px;
    margin: 0;
  }
  .merchant-benefits h3 {
    font-size: 19px;
  }
  .merchant-benefits p {
    font-size: 12px;
  }
  .commercial-section {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    padding-top: 35px;
  }
  .commercial-section h3 {
    font-size: 30px;
  }
  .commercial-section > div > p:not(.eyebrow) {
    max-width: none;
  }
  .model-tabs {
    gap: 24px;
  }
  .model-tabs button {
    font-size: 13px;
  }
  #model-panel {
    min-height: 260px;
  }
  .onboarding {
    display: grid;
    grid-template-columns: 1fr;
    font-size: 12px;
    gap: 8px;
  }
  .onboarding span[aria-hidden] {
    transform: rotate(90deg);
    width: 14px;
    margin-left: 7px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .trust-grid h3 {
    margin: 13px 0;
    font-size: 23px;
  }
  .rollout-note {
    font-size: 11px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  summary {
    font-size: 15px;
  }
  details p {
    font-size: 13px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: none;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer {
    padding: 35px 22px 25px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
  }
  .dialog-header {
    padding: 12px;
  }
  .dialog-header h2 {
    font-size: 17px;
  }
  .dialog-image {
    padding: 10px;
  }
  .legal-page h1 {
    font-size: 34px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero h1 > span {
    font-size: 30px;
  }
  .phone-frame {
    width: 170px;
  }
  .phone-gallery {
    height: 415px;
  }
  .discovery-item h3 {
    font-size: 21px;
  }
  .discovery-item > div {
    padding: 18px 14px;
  }
  .merchant-benefits {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 760px) and (max-height: 700px) {
  .hero-content {
    padding: 16px 20px 48px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero h1 > span {
    font-size: 27px;
    margin-top: 10px;
  }
  .hero-eyebrow {
    margin-bottom: 14px;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 15px;
  }
  .hero-actions {
    flex-direction: row;
    gap: 18px;
    margin-top: 18px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 10px 14px;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 5px;
  }
  .launch-note {
    font-size: 9px;
    margin-top: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
