:root {
  --ink: #1d1d1f;
  --black: #0b0b0c;
  --paper: #f5f5f7;
  --white: #fbfbfd;
  --gray: #6e6e73;
  --line: #d2d2d7;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Outfit", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 100;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
}
.skip:focus {
  top: 12px;
}
.site-nav {
  height: 56px;
  padding: 0 max(22px, calc((100% - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 245, 247, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.mark {
  height: 20px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.mark i {
  width: 7px;
  background: currentColor;
  border-radius: 4px 4px 1px 1px;
}
.mark i:first-child {
  height: 13px;
}
.mark i:last-child {
  height: 19px;
}
.site-nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav nav a,
.language {
  border: 0;
  background: none;
  font: 400 13px var(--sans);
  text-decoration: none;
  cursor: pointer;
}
.site-nav nav .nav-cta {
  padding: 8px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}
.seo-hero {
  min-height: 850px;
  padding: 100px max(26px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 70px;
}
.hero-copy {
  max-width: 560px;
}
.eyebrow,
.section-heading > p {
  margin: 0 0 20px;
  font: 600 12px var(--mono);
  letter-spacing: 0.14em;
}
.hero-copy h1,
.privacy-section h2 {
  margin: 0;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.lead {
  margin: 28px 0 0;
  color: var(--gray);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.button {
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
}
.button.dark {
  color: var(--white);
  background: var(--ink);
}
.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}
.text-link {
  text-underline-offset: 4px;
}
.trust-line {
  margin-top: 24px;
  color: var(--gray);
  font: 400 11px/1.5 var(--mono);
}
.receipt-scene {
  height: 590px;
  position: relative;
}
.paper {
  background: #fdfcf8;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.13);
}
.receipt {
  width: 350px;
  min-height: 500px;
  padding: 48px 38px;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(-1.4deg);
  font-family: var(--mono);
}
.receipt small {
  color: var(--gray);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.receipt h2 {
  margin: 25px 0 10px;
  font: 600 26px/1.1 var(--sans);
}
.receipt > p:not(.line):not(.total) {
  color: var(--gray);
  font-size: 10px;
}
.rule {
  margin: 31px 0;
  border-top: 1px dashed #a1a1a1;
}
.line,
.total {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.line b {
  font-weight: 500;
}
.total {
  font-size: 16px;
}
.field {
  padding: 16px 18px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.field small {
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  color: var(--gray);
}
.field b {
  margin: 5px 0;
  font-size: 16px;
}
.field span {
  font: 400 9px var(--mono);
  color: var(--gray);
}
.field.merchant {
  left: 0;
  top: 105px;
}
.field.amount {
  right: 0;
  top: 325px;
}
.field.amount b {
  font: 600 27px var(--mono);
}
.stamp {
  padding: 10px 13px;
  position: absolute;
  left: 60px;
  bottom: 70px;
  transform: rotate(-7deg);
  border: 2px solid var(--ink);
  font: 600 12px var(--mono);
  letter-spacing: 0.12em;
}
.proof-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.proof-strip div {
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-strip b {
  font-size: 18px;
}
.proof-strip span {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}
.dark-section {
  padding: 130px max(26px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--black);
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.steps {
  margin: 90px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #3a3a3c;
}
.steps li {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid #3a3a3c;
}
.steps > li > span {
  font: 400 12px var(--mono);
  color: #a1a1a6;
}
.steps h3 {
  margin: 0 0 10px;
  font-size: 28px;
}
.steps p {
  max-width: 590px;
  margin: 0;
  color: #a1a1a6;
  font-size: 17px;
  line-height: 1.55;
}
.privacy-section {
  padding: 140px max(26px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.privacy-section h2 {
  font-size: clamp(46px, 5vw, 72px);
}
.privacy-copy {
  padding-top: 38px;
}
.privacy-copy p {
  margin: 0 0 24px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.65;
}
.faq-section {
  padding: 120px max(26px, calc((100% - 1180px) / 2));
  background: var(--white);
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
summary {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
details p {
  max-width: 650px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}
.final-cta {
  padding: 110px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--white);
  background: var(--black);
}
.final-cta p {
  margin: 0;
  font-size: 28px;
}
footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  font-size: 13px;
  text-decoration: none;
}
footer small {
  grid-column: 1/-1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gray);
}
@media (max-width: 900px) {
  .seo-hero,
  .privacy-section,
  .faq-section {
    grid-template-columns: 1fr;
  }
  .seo-hero {
    padding-top: 70px;
  }
  .receipt-scene {
    margin-top: 10px;
  }
  .proof-strip {
    padding-left: 24px;
    padding-right: 24px;
  }
  .faq-section,
  .privacy-section {
    gap: 55px;
  }
}
@media (max-width: 640px) {
  .site-nav nav > a:not(.nav-cta) {
    display: none;
  }
  .site-nav nav {
    gap: 12px;
  }
  .seo-hero {
    min-height: auto;
    padding-bottom: 65px;
  }
  .hero-copy h1 {
    font-size: 50px;
  }
  .lead {
    font-size: 19px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .receipt-scene {
    height: 500px;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -70px;
  }
  .field.merchant {
    left: -5%;
  }
  .field.amount {
    right: -5%;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .dark-section,
  .privacy-section,
  .faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .steps li {
    grid-template-columns: 55px 1fr;
  }
  .final-cta {
    flex-direction: column;
    text-align: center;
  }
  footer {
    margin: 0 24px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
}
