:root {
  --ink: #090b10;
  --band: #2f323a;
  --paper: #f3f1ec;
  --white: #fffcf8;
  --text: #090b10;
  --muted: #5a5f6b;
  --blue: #0066ff;
  --blue-hot: #3d8bff;
  --line: rgba(9, 11, 16, 0.12);
  --radius: 28px;
  --wrap: 1180px;
  --header: 76px;
  --display: "Unbounded", "Arial Black", Impact, sans-serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: #004ed1;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--white);
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.logo:hover {
  color: var(--ink);
}

.logo img {
  width: 48px;
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--blue);
}

.nav .btn {
  display: none;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--blue);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  height: 2px;
  background: var(--white);
  transform-origin: center;
  transition:
    transform 0.2s ease,
    width 0.2s ease,
    top 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
  width: 22px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
  width: 12px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
  width: 22px;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  width: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  width: 22px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--blue);
}

.btn-primary:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost {
  background: var(--blue);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--blue);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 #001a4d;
}

.btn-light:hover {
  background: var(--ink);
  color: var(--white);
}

.hero .kicker {
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  right: -12vw;
  top: -18vw;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__line:first-child {
  white-space: nowrap;
}

.hero p:not(.kicker) {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  text-wrap: balance;
}

.hero__lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero .btn {
  display: flex;
  flex-shrink: 0;
  width: fit-content;
  min-height: 68px;
  padding: 0 40px;
  font-size: 18px;
  box-shadow: 8px 8px 0 var(--ink);
}

.hero .btn:hover {
  box-shadow: 8px 8px 0 var(--blue);
}

.hero-shot {
  padding: 48px 0 0;
}

.hero-shot img {
  width: 100%;
  display: block;
  background: transparent;
}

.facts {
  padding: 72px 0 96px;
}

.facts .int-miss {
  margin-bottom: 18px;
}

.facts > .fact {
  margin-bottom: 0;
}

.facts__intro {
  max-width: 820px;
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.facts__intro span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}

.facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fact {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.fact__n {
  position: absolute;
  top: -8px;
  right: 8px;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 112px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--blue);
  opacity: 0.12;
  pointer-events: none;
}

.fact__fields {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 14px;
  width: min(72%, 240px);
  margin: 6px 0 auto;
}

.fact__field {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  min-height: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.fact__field::before,
.fact__field::after {
  content: "";
  display: block;
  height: 5px;
  background: currentColor;
  opacity: 0.14;
}

.fact__field::before {
  width: 38%;
  height: 4px;
  opacity: 0.2;
}

.fact__field::after {
  width: 82%;
}

.fact__meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.fact h2 {
  position: relative;
  margin: 16px 0 14px;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.fact p:not(.kicker) {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.fact .more {
  width: 100%;
  margin-top: 24px;
}

.fact--alt {
  background: var(--ink);
  color: var(--white);
}

.fact--alt .kicker {
  color: var(--blue-hot);
}

.fact--alt .fact__n {
  color: var(--white);
  opacity: 0.1;
}

.fact--alt p:not(.kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.fact--alt .fact__field {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.fact a {
  position: relative;
  margin-top: 18px;
  font-weight: 800;
}

.fact--alt a {
  color: var(--blue-hot);
}

.fact--alt a:hover {
  color: var(--white);
}

.fact:has(img),
.fact:has(.fact__media) {
  min-height: 0;
}

.fact:has(img) h2,
.fact:has(.fact__media) h2 {
  margin: 16px 0 14px;
}

.fact img {
  position: relative;
  width: 100%;
  margin-top: 24px;
  object-fit: contain;
}

.fact__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 280px;
  min-height: 280px;
  margin-top: auto;
  padding-top: 24px;
}

.fact__media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
}

.nfc {
  position: relative;
  min-height: 560px;
  color: var(--white);
  isolation: isolate;
}

.nfc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nfc::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.82) 0%, rgba(9, 11, 16, 0.28) 58%, transparent 100%),
    linear-gradient(0deg, rgba(9, 11, 16, 0.45), transparent 40%);
}

.nfc__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  padding: 72px 0;
}

.nfc__copy h2,
.section-head h2,
.cta__copy h2,
.page-404 h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.nfc__copy h2 {
  max-width: 12ch;
}

.cta__copy h2 {
  max-width: 11ch;
  font-size: clamp(32px, 5.4vw, 52px);
}

.nfc .kicker {
  color: var(--blue-hot);
}

.nfc__copy p:not(.kicker) {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 600;
}

.band {
  padding: 96px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.section-head {
  max-width: 960px;
  margin: 0 0 40px;
}

.section-head p:not(.kicker),
.page-404 p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.band .kicker {
  color: var(--blue-hot);
}

.band .section-head p:not(.kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  background: #12151d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:first-child {
  background:
    radial-gradient(circle at 80% 120%, rgba(0, 102, 255, 0.28), transparent 42%),
    #12151d;
}

.card:last-child {
  background:
    radial-gradient(circle at 20% 120%, rgba(0, 102, 255, 0.22), transparent 46%),
    #10131a;
}

.card__copy {
  padding: 36px 32px 8px;
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

.card img {
  width: min(380px, 88%);
  margin: auto auto 0;
}

.more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 0;
  padding: 20px 24px;
  background: #161a22;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.more > span:first-child {
  min-width: 0;
}

a.more:hover {
  background: #1c2230;
  color: var(--white);
  border-color: rgba(61, 139, 255, 0.45);
}

.facts > .more {
  margin-top: 20px;
  margin-bottom: 56px;
}

.more--light {
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border: 0;
}

a.more--light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
}

.more__arrow {
  flex-shrink: 0;
  color: var(--blue-hot);
  font-size: 1.15em;
  line-height: 1;
}

.demo {
  padding: 96px 0;
}

.demo .section-head {
  margin-bottom: 36px;
}

.video {
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--blue);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.cta .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 24px;
  padding-top: 72px;
}

.cta__copy {
  padding: 0 0 72px;
}

.cta__copy h2 {
  color: var(--white);
}

.cta .kicker {
  color: #dbe7ff;
}

.cta__copy p:not(.kicker) {
  color: #fff;
  margin: 0 0 28px;
  max-width: 38ch;
  font-size: 18px;
  font-weight: 600;
}

.cta img {
  width: min(340px, 100%);
  margin-left: auto;
}

.footer {
  background: var(--ink);
  color: #8d93a3;
  padding: 72px 0 40px;
  font-size: 14px;
}

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

.footer a:hover {
  color: var(--blue-hot);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--blue-hot);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 8px;
}

.footer__meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.legal {
  line-height: 1.6;
}

.page-404 {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 80px 0;
}

.page-404 h1 {
  font-size: clamp(42px, 10vw, 96px);
}

.page-404 .btn {
  margin-top: 32px;
}

.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  width: min(420px, calc(100% - 32px));
  padding: 18px 42px 18px 18px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--blue);
  font-size: 13px;
  line-height: 1.45;
}

.cookie.is-open {
  display: block;
}

.cookie a {
  color: var(--blue-hot);
  text-decoration: underline;
}

.cookie__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 900px) {
  :root {
    --header: 64px;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header__login {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    padding: 8px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav .btn {
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
  }

  .nav a.btn-primary,
  .nav a.btn-primary:hover {
    color: var(--white);
  }

  .facts__grid,
  .cards,
  .cta .wrap,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

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

  .nfc,
  .nfc__copy {
    min-height: 480px;
  }

  .nfc::after {
    background: linear-gradient(180deg, rgba(9, 11, 16, 0.15), rgba(9, 11, 16, 0.88));
  }

  .cta .wrap {
    padding-top: 48px;
  }

  .cta__copy {
    padding-bottom: 8px;
  }

  .cta img {
    margin: 0 auto;
  }

  .demo,
  .facts {
    padding: 56px 0;
  }

  .band {
    padding: 56px 0 80px;
  }

  .card {
    min-height: 0;
  }

  .feature,
  .feature--flip,
  .doc-toc,
  .doc .help-toc-grid,
  .plans,
  .logo-grid,
  .use-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature {
    padding: 48px 0;
  }

  .feature > div {
    padding-bottom: 0;
    align-self: start;
  }

  .feature img {
    width: 100%;
    max-height: 380px;
  }

  .feature img.feature__phone {
    width: auto;
    max-width: 180px;
    max-height: 220px;
    justify-self: center;
  }

  .feature--phone {
    min-height: 0;
  }

  .feature--flush {
    padding-bottom: 0;
  }

  .features .feature {
    grid-template-columns: 1fr;
  }

  .features .feature img {
    max-height: 460px;
  }

  .features .feature img.feature__phone {
    max-width: 240px;
    max-height: 280px;
  }

  .feature:not(:has(img)),
  .feature--solo,
  .features .feature.feature--solo {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

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

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

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

.page-hero {
  padding: 48px 0 32px;
}

.page-hero:has(.hero__lead) {
  padding-bottom: 28px;
}

.page-hero h1 {
  margin: 0 0 16px;
  max-width: min(100%, 12em);
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.page-hero .hero__lead {
  margin-top: 8px;
}

.page-hero .hero__lead .btn {
  display: flex;
  flex-shrink: 0;
  width: fit-content;
  min-height: 56px;
  padding: 0 32px;
  font-size: 16px;
  box-shadow: 8px 8px 0 var(--ink);
}

.page-hero .hero__lead .btn:hover {
  box-shadow: 8px 8px 0 var(--blue);
}

.page-hero .more {
  display: flex;
  margin-top: 20px;
  width: 100%;
  max-width: none;
}

.page-hero p:not(.kicker) {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.page-hero p.page-hero__sub {
  max-width: 56ch;
}

.nav a[aria-current="page"] {
  color: var(--blue);
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: end;
  padding: 72px 0;
}

.feature > div {
  padding-bottom: 0;
  align-self: center;
}

.feature h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.feature p + p,
.feature p + a,
.feature a {
  margin-top: 16px;
}

.feature a {
  display: inline-block;
  font-weight: 800;
}

.feature img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
  justify-self: center;
  align-self: end;
}

.feature img.feature__phone {
  width: auto;
  max-width: 240px;
  max-height: 280px;
}

.feature--phone {
  min-height: 520px;
}

.feature--flush {
  padding-bottom: 0;
}

.features .feature {
  grid-template-columns: 0.8fr 1.25fr;
}

.features .feature img {
  width: 100%;
  max-height: 720px;
}

.features .feature img.feature__phone {
  width: auto;
  max-width: 340px;
  max-height: 400px;
}

.feature:not(:has(img)),
.feature--solo {
  grid-template-columns: 1fr;
  max-width: none;
  margin-inline: auto;
  padding: 72px 0;
  text-align: center;
}

.feature:not(:has(img)) > div,
.feature--solo > div {
  padding-bottom: 0;
  max-width: 36em;
  margin-inline: auto;
}

.features .feature.feature--solo {
  grid-template-columns: 1fr;
}

.feature-links {
  display: grid;
  gap: 12px;
  padding: 72px 0 96px;
  text-align: center;
}

.feature-links p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-band {
  overflow: hidden;
  background: var(--band);
  color: var(--white);
}

.feature-band h2 {
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band a {
  color: var(--blue-hot);
}

.feature-band a:hover {
  color: var(--white);
}

.marketplace .feature {
  padding: 72px 0;
  align-items: center;
}

.marketplace .feature > div {
  padding-bottom: 0;
}

.marketplace .feature img {
  align-self: center;
  object-position: center;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
  margin-top: 8px;
  padding: 32px 0 80px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  opacity: 0.72;
}

.prose {
  padding: 8px 0 96px;
  max-width: 820px;
}

body.legal .prose {
  padding-top: 56px;
}

.prose h2,
.prose h3 {
  margin: 32px 0 12px;
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.prose h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.prose p,
.prose li {
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
}

.prose p {
  margin: 0 0 14px;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.prose img,
.prose figure {
  display: block;
  width: min(100%, 720px);
  margin: 24px 0;
}

.prose .btn {
  margin: 8px 0 24px;
}

.doc {
  padding: 40px 0 96px;
}

.doc .help-back {
  margin: 0 0 18px;
  font-weight: 700;
}

.doc .help-title {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.doc .help-lead {
  margin: 0 0 36px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.doc .help-h2,
.doc .help-toc-section h2 {
  margin: 36px 0 14px;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.04em;
}

.doc .help-h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.doc .help-body,
.doc .help-body p,
.doc .help-body li {
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
}

.doc .help-body p {
  margin: 0 0 14px;
}

.doc .help-note {
  margin: 0 0 18px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.doc-toc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 24px;
  margin: 0 0 28px;
}

.doc .help-toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 24px;
  margin: 0 0 28px;
}

.doc .help-toc-section {
  margin: 0 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.doc .help-toc-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.doc .help-toc-section h2 a {
  color: var(--ink);
}

.doc .help-toc-section h2 a:hover {
  color: var(--blue);
}

.doc .help-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.doc .help-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.api-page {
  padding: 0 0 48px;
}

.api-page .api-code,
.api-page .api-code pre,
.api-page .api-code code,
.api-page .api-code span,
.api-page .api-code [class*="hljs"] {
  color: #fff;
}

.feature--flip {
  direction: rtl;
}

.feature--flip > * {
  direction: ltr;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 0 0 48px;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 28px 22px 22px;
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.plan:hover {
  border-color: var(--blue);
  box-shadow: 6px 6px 0 var(--blue);
}

.plan h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(16px, 1.15vw + 12px, 22px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.plan ul {
  margin: 0;
  padding-left: 18px;
}

.plan li {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.plan sup {
  font-size: 0.72em;
  font-weight: 700;
}

.plan .price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.plan .price span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.plan .btn {
  width: 100%;
}

.logo-grid,
.use-grid {
  display: grid;
  gap: 16px;
  padding: 8px 0 72px;
}

.logo-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: #fff;
  border: 0;
  color: var(--ink);
  text-align: center;
  font-weight: 800;
}

a.logo-card:hover {
  color: var(--blue);
}

.logo-card img {
  width: min(160px, 100%);
  height: 56px;
  object-fit: contain;
}

.use-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease;
}

.use-card:hover {
  color: var(--ink);
  border-color: var(--blue);
}

.use-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 0;
  background: var(--paper);
}

.use-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.use-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.use-card__title::after {
  content: "→";
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1.15em;
  line-height: 1;
}

.prose table,
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 8px 0 28px;
}

.table-wrap {
  padding: 8px 0 72px;
  overflow-x: auto;
}

.prose th,
.prose td,
.table-wrap th,
.table-wrap td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th,
.table-wrap th {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc .help-body a,
.doc .help-toc-grid a,
.doc .help-list a,
.doc .help-back a {
  color: var(--blue);
  font-weight: 700;
}

.doc .help-body img {
  display: block;
  max-width: 100%;
  margin: 16px 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 0 32px;
}

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--ink);
}

.pricing-toolbar__note,
.pricing-toolbar__fx {
  margin: 0;
}

.pricing-toolbar__note {
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-toolbar__fx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.pricing-toolbar__fx .is-current {
  color: var(--ink);
  font-weight: 800;
}

.pricing-toolbar__fx a {
  font-weight: 800;
}

.pricing-toolbar__fx span[aria-hidden] {
  color: var(--muted);
  font-weight: 500;
}

.pricing-notes {
  padding: 8px 0 40px;
}

.pricing-notes.wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .feature,
  .feature--flip,
  .features .feature,
  .doc-toc,
  .doc .help-toc-grid,
  .plans,
  .logo-grid,
  .use-grid,
  .country-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .plans,
  .logo-grid,
  .country-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plans {
    gap: 12px;
  }

  .plan {
    padding: 20px 12px 14px;
    gap: 12px;
  }

  .plan h3 {
    font-size: 15px;
  }

  .plan .price {
    font-size: 15px;
  }

  .pricing-toolbar {
    justify-content: center;
    margin-bottom: 28px;
    padding: 12px 16px;
    gap: 8px 16px;
    text-align: center;
  }

  .pricing-toolbar__fx {
    justify-content: center;
  }
}

.int-crm {
  margin: 0 0 40px;
}

.int-api {
  display: grid;
  gap: 12px;
  max-width: none;
  margin: 0 0 72px;
}

.int-api h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.int-api p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.int-api a {
  font-weight: 800;
}

.int-miss {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 600;
}

.logo-grid {
  gap: 12px;
  padding: 8px 0 48px;
}

.logo-card {
  min-height: 128px;
  font-size: 13px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.story-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 48px;
}

.story-meta__item {
  padding: 20px 24px;
  background: var(--white);
}

.story-meta dt {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-meta dd {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.story {
  padding: 0;
}

section.story {
  padding: 72px 0;
}

.story-block {
  max-width: 820px;
  margin: 0 0 40px;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block h2,
.story-row h2,
.story-row h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.story-block h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.story-row h3 {
  font-size: clamp(22px, 2.4vw, 28px);
}

.story-block p,
.story-row p,
.story-block li {
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
}

.story-copy {
  display: flex;
  flex-direction: column;
}

.story-copy + .story-copy {
  margin-top: 28px;
}

.story-copy > p:last-of-type {
  margin-bottom: 0;
}

.story-copy .fact__fields {
  width: min(100%, 280px);
  margin: 18px 0 0;
}

.story-band .fact__field {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.story-figure {
  margin: 0 0 40px;
}

.story-figure img,
.story-row img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: none;
  border: 0;
  box-shadow: none;
}

.story-row img {
  max-height: 500px;
  justify-self: center;
}

.story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0;
}

.story-band .story-row {
  padding-bottom: 0;
}

.story-band .story-row:has(.story-copy) {
  padding-bottom: 72px;
  align-items: start;
}

.story-row--flip {
  direction: rtl;
}

.story-row--flip > * {
  direction: ltr;
}

.story-band {
  background: var(--ink);
  color: var(--white);
}

.story-band h3 {
  color: var(--white);
}

.story-band p {
  color: rgba(255, 255, 255, 0.72);
}

.story-results {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.story-results li {
  padding: 20px 24px;
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.story-results strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding: 8px 0 40px;
}

.market-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(0, 0.8fr);
  gap: 28px 40px;
  align-items: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.market-card:nth-child(even) {
  direction: rtl;
}

.market-card:nth-child(even) > * {
  direction: ltr;
}

.market-card:not(:has(.market-card__media)) {
  grid-template-columns: 1fr;
  direction: ltr;
}

.market-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  min-height: 420px;
  min-width: 0;
  padding: 0;
  background: transparent;
}

.market-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.market-card__copy {
  min-width: 0;
}

.market-card .kicker {
  margin-bottom: 10px;
}

.market-card h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.market-card p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.market-card p + p {
  margin-top: 12px;
}

.market-card a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
}

.market-contact {
  margin: 0;
  padding: 8px 0 96px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.pricing-note {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 36rem;
  padding: 22px 24px;
  background: var(--white);
}

.pricing-note > p:not(.pricing-co2) {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.pricing-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  font-weight: 700;
  color: var(--ink);
}

.pricing-footnotes {
  display: grid;
  gap: 6px;
}

.pricing-footnotes__label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.pricing-footnotes ol {
  margin: 0;
  padding: 0 0 0 1.35em;
}

.pricing-footnotes li {
  max-width: 72ch;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-footnotes li + li {
  margin-top: 4px;
}

.pricing-footnotes li strong {
  font-weight: 700;
  color: var(--ink);
}

.pricing-co2 {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .story-meta {
    grid-template-columns: 1fr 1fr;
  }

  .story-row,
  .story-row--flip,
  .market-card {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .market-card__media {
    height: 280px;
    min-height: 280px;
  }

  .int-api,
  .pricing-note {
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
  .story-meta {
    grid-template-columns: 1fr;
  }
}

.contact {
  padding: 8px 0 96px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-card {
  padding: 32px 28px;
  background: var(--white);
}

.contact__grid .contact-card:nth-child(even) {
  background: var(--ink);
  color: var(--white);
}

.contact__grid .contact-card:nth-child(even) p,
.contact__grid .contact-card:nth-child(even) p strong {
  color: rgba(255, 255, 255, 0.72);
}

.contact__grid .contact-card:nth-child(even) p:first-child,
.contact__grid .contact-card:nth-child(even) p:first-child strong {
  color: var(--white);
}

.contact-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card p:first-child {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact-card p:first-child strong {
  font-weight: 800;
}

.contact-card p:first-child a {
  font-weight: 800;
}

.contact-card p strong {
  color: var(--ink);
  font-weight: 700;
}

.contact-card--mark {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: center;
  padding: 28px;
}

.contact-card--mark p:first-child {
  margin-bottom: 0;
  max-width: 12em;
}

.contact-card--mark img {
  width: 100%;
  max-width: 720px;
  justify-self: end;
  margin: 0;
}

@media (max-width: 900px) {
  .contact__grid,
  .contact-card--mark {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card--mark {
    padding: 24px 20px;
  }

  .contact-card--mark p:first-child {
    max-width: none;
  }
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 0 72px;
}

.blog-card {
  background: var(--white);
}

.blog-card a {
  display: block;
  color: inherit;
}

.blog-card a:hover {
  color: var(--blue);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card h2 {
  margin: 16px 16px 8px;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.blog-card p {
  margin: 0 16px 20px;
  color: var(--muted);
  font-weight: 600;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}

.case-metrics > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

.case-metrics strong {
  display: block;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.case-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 800px) {
  .case-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}
