@font-face {
  font-family: "IBM Plex Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 700;
  src: url("assets/ibm-plex-sans-latin-ext-wght-normal.woff2") format("woff2-variations");
}
@font-face {
  font-family: "IBM Plex Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 700;
  src: url("assets/ibm-plex-sans-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --ink: #101114;
  --ink-2: #202227;
  --paper: #fff;
  --soft: #f4f5f6;
  --line: #dfe2e6;
  --muted: #666d78;
  --green: #22c58b;
  --green-dark: #087f5b;
  --blue: #2368d8;
  --amber: #f4a340;
  --radius: 6px;
  --shadow: 0 22px 70px rgba(15, 18, 24, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans Variable", "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.shell {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid #2b2e34;
  border-radius: 9px;
  background: #111318;
  overflow: hidden;
  box-shadow: 0 5px 14px rgba(16, 17, 20, 0.14);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 25px;
  border-radius: 5px 5px 2px 2px;
  transform: skew(-24deg);
}
.brand-mark::before {
  left: 10px;
  bottom: 7px;
  background: #24d69a;
}
.brand-mark::after {
  right: 10px;
  top: 7px;
  background: linear-gradient(to bottom, #8cf0ca 0 48%, #24d69a 48% 100%);
}
.brand-mark i {
  display: none;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 23px;
  line-height: 1.05;
  font-weight: 740;
}
.brand small {
  display: none;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav a,
.text-link {
  font-size: 14px;
  font-weight: 600;
  color: #464b54;
}
.main-nav a:hover,
.text-link:hover {
  color: var(--green-dark);
}
.main-nav a.active {
  color: var(--green-dark);
  box-shadow: inset 0 -2px var(--green);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.language-button {
  height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.menu-button {
  display: none;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  min-height: 38px;
  padding: 0 15px;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-green {
  background: var(--green);
  color: #092a20;
}
.button-light {
  border-color: var(--line);
  background: #fff;
}
.button-white {
  background: #fff;
  color: var(--ink);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background: linear-gradient(180deg, #f7f8f8 0%, #fff 70%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.hero-copy {
  position: relative;
  text-align: center;
}
.eyebrow,
.kicker {
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--green-dark);
  letter-spacing: 0.08em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.hero h1 {
  margin: 22px 0 10px;
  font-size: clamp(60px, 9vw, 126px);
  line-height: 0.88;
  font-weight: 700;
}
.hero-lead {
  max-width: 800px;
  margin: 28px auto 0;
  font-size: clamp(24px, 3.3vw, 44px);
  line-height: 1.12;
  font-weight: 560;
}
.hero-support {
  max-width: 670px;
  margin: 21px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-actions.left {
  justify-content: flex-start;
}
.trust-line {
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #535963;
  font-size: 13px;
}
.trust-line span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-line b {
  color: var(--green-dark);
}
.product-stage {
  position: relative;
  margin-top: 68px;
  padding-bottom: 74px;
}
.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #2b2d33;
  border-radius: 14px;
  background: #101114;
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(1.4deg);
}
.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: #8b9099;
  font-size: 10px;
}
.browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6258;
}
.browser-bar i:nth-child(2) {
  background: #ffbd2e;
}
.browser-bar i:nth-child(3) {
  background: #29c941;
}
.browser-bar span {
  margin: auto;
}
.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: contain;
}
.floating-note {
  position: absolute;
  width: 190px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(10, 13, 18, 0.12);
}
.floating-note small,
.floating-note strong,
.floating-note span {
  display: block;
}
.floating-note small {
  color: var(--muted);
  font-size: 11px;
}
.floating-note strong {
  margin-top: 4px;
  font-size: 21px;
}
.floating-note span {
  margin-top: 3px;
  font-size: 11px;
}
.note-left {
  left: -35px;
  bottom: 105px;
}
.note-right {
  right: -35px;
  top: 80px;
}
.platform-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}
.platform-row {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.platform-row p {
  max-width: 260px;
  font-weight: 600;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.platforms span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 650;
}
.platforms b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
}
.google {
  color: #356ae6;
  background: #eef3ff;
}
.meta {
  color: #1467e8;
  background: #edf5ff;
}
.tiktok {
  color: #111;
  background: #f1f1f2;
}
.ai {
  color: #8b40cc;
  background: #f7edff;
}
.section {
  padding: 110px 0;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  background: #f5f7f7;
}
.page-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 17, 20, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 17, 20, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.page-hero-inner,
.detail-split,
.audience-row,
.spend-explainer,
.compliance-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.page-hero h1,
.page-centered h1 {
  margin: 16px 0 22px;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1;
}
.page-hero p,
.page-centered p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.page-hero.compact {
  padding-block: 102px;
}
.page-centered {
  position: relative;
  max-width: 860px;
  text-align: center;
}
.page-centered p {
  max-width: 720px;
  margin-inline: auto;
}
.mini-product {
  padding: 14px;
  border: 1px solid #292c32;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}
.mini-product span,
.mini-product strong {
  display: block;
  padding: 3px 5px;
}
.mini-product span { color: #9298a2; font-size: 12px; }
.mini-product strong { margin-bottom: 12px; font-size: 20px; }
.mini-product img { display: block; width: 100%; border-radius: 4px; }
.feature-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.feature-matrix article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-matrix article > b { color: var(--green-dark); font-size: 12px; }
.feature-matrix h3 { margin: 48px 0 10px; font-size: 21px; }
.feature-matrix p { color: var(--muted); line-height: 1.65; }
.feature-matrix.three { grid-template-columns: repeat(3, 1fr); }
.data-panel,
.permission-card,
.audience-board,
.role-list {
  padding: 8px;
  border-radius: 8px;
  background: #dfe3e7;
}
.data-panel > div,
.permission-card > div,
.audience-board > div,
.role-list > span {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.data-panel > div:last-child,
.permission-card > div:last-child,
.audience-board > div:last-child,
.role-list > span:last-child { border-bottom: 0; }
.data-panel small,
.permission-card small,
.audience-board small { color: var(--muted); }
.data-panel span,
.permission-card p { margin: 0; color: var(--muted); font-size: 13px; }
.process-list article {
  display: grid;
  grid-template-columns: 70px 1fr 0.75fr;
  gap: 44px;
  align-items: center;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}
.process-list article > span { align-self: start; color: var(--green-dark); font-weight: 700; }
.process-list h2,
.audience-row h2,
.spend-explainer h2,
.compliance-row h2 { margin: 8px 0 16px; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.process-list p,
.audience-row p,
.spend-explainer p,
.compliance-row p { color: var(--muted); line-height: 1.7; }
.process-list ul { padding-left: 18px; color: #454b54; line-height: 1.8; }
.process-visual {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
}
.process-visual strong { font-size: 28px; }
.process-visual i { color: var(--green-dark); font-style: normal; }
.creative-visual { display: grid; grid-template-columns: repeat(3, 1fr); }
.creative-visual span { aspect-ratio: 1; background: #cad2d6; }
.creative-visual span:nth-child(2) { background: var(--green); }
.creative-visual b { grid-column: 1 / -1; }
.audience-row { min-height: 400px; }
.audience-row.reverse > :first-child { order: 2; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag-row span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 4px; font-size: 12px; }
.commerce-board { display: grid; grid-template-columns: 0.85fr 1.15fr; background: #fff; border: 1px solid var(--line); padding: 14px; gap: 20px; }
.commerce-board img { width: 100%; height: 250px; object-fit: cover; }
.commerce-board div { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.commerce-board span { color: var(--muted); }
.local-map { position: relative; min-height: 330px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); background: repeating-radial-gradient(circle, #e3e6e7 0 1px, transparent 1px 22px); }
.local-map > i { width: 190px; height: 190px; border: 2px solid var(--green); border-radius: 50%; background: rgba(34,197,139,.12); }
.local-map > b { position: absolute; font-size: 25px; }
.local-map > span { position: absolute; top: 20px; left: 20px; font-size: 12px; }
.local-map > div { position: absolute; right: 18px; bottom: 18px; padding: 14px; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.role-list > span { color: #9ca2ac; }
.role-list b { color: var(--ink); }
.security-seal { min-height: 390px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 14px; border: 1px solid #343840; background: var(--ink); color: #fff; }
.security-seal strong { font-size: 42px; color: var(--green); }
.security-seal i { font-style: normal; font-size: 22px; }
.security-seal span,
.security-seal small { color: #9198a3; }
.security-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.security-principles article { border-top: 3px solid var(--ink); padding-top: 24px; }
.security-principles article > span { color: var(--green-dark); font-size: 12px; }
.security-principles h2 { font-size: 25px; }
.security-principles p { color: var(--muted); line-height: 1.7; }
.number-list { list-style: none; padding: 0; }
.number-list li { display: grid; gap: 5px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.number-list span { color: var(--muted); line-height: 1.5; }
.permission-card header { display: flex; justify-content: space-between; padding: 18px 20px; background: var(--ink); color: #fff; }
.permission-card header b { color: var(--green); }
.compliance-row p { color: #a8adb7; }
.compliance-row > div:last-child { display: grid; gap: 16px; }
.compliance-row a { padding-bottom: 14px; border-bottom: 1px solid #343840; }
.pricing-page { background: #f6f7f7; }
.billing-note { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.billing-note b { color: var(--green-dark); }
.price-card h2 { margin: 22px 0 14px; font-size: 38px; }
.price-card h2 small { font-size: 13px; color: var(--muted); }
.price-card > em { position: absolute; top: -13px; right: 18px; padding: 5px 9px; background: var(--ink); color: #fff; border-radius: 4px; font-size: 10px; font-style: normal; text-transform: uppercase; }
.button.full { width: 100%; }
.spend-explainer > div:last-child { display: flex; align-items: center; gap: 15px; }
.spend-explainer > div:last-child div { flex: 1; padding: 24px; border: 1px solid var(--line); }
.spend-explainer > div:last-child span,
.spend-explainer > div:last-child strong { display: block; }
.spend-explainer > div:last-child span { margin-bottom: 8px; color: var(--muted); font-size: 12px; }
.section-white {
  background: #fff;
}
.section-heading h2,
.proof-copy h2,
.security-grid h2,
.pricing-intro h2,
.faq-grid h2,
.final-inner h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
  align-items: end;
}
.split-heading p,
.pricing-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.workflow {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.workflow article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.workflow article:last-child {
  border-right: 0;
}
.workflow em {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #c4c8cd;
  font-size: 12px;
  font-style: normal;
}
.workflow-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
}
.workflow h3 {
  margin: 66px 0 12px;
  font-size: 21px;
}
.workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.proof-section {
  background: var(--soft);
}
.proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.proof-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 31px 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 560;
}
.check-list i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff8ed;
  color: var(--green-dark);
  font-style: normal;
}
.inline-link {
  font-weight: 700;
  color: var(--green-dark);
}
.approval-panel {
  padding: 8px;
  border-radius: 10px;
  background: #dfe3e7;
}
.panel-head,
.campaign-summary,
.review-row {
  background: #fff;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  border-radius: 5px 5px 0 0;
}
.panel-head b {
  color: var(--green-dark);
  font-size: 12px;
}
.campaign-summary {
  padding: 24px 20px;
  border-top: 1px solid var(--line);
}
.campaign-summary small,
.campaign-summary strong,
.campaign-summary span {
  display: block;
}
.campaign-summary strong {
  margin: 7px 0;
  font-size: 24px;
}
.campaign-summary span {
  color: var(--muted);
}
.review-row {
  padding: 15px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-row span {
  display: flex;
  gap: 10px;
}
.review-row i {
  color: var(--green-dark);
  font-style: normal;
}
.review-row small {
  color: var(--muted);
}
.approval-panel button {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 0 0 5px 5px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.centered {
  text-align: center;
}
.centered p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--muted);
}
.solution-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.solution-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.solution-grid .solution-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  background: var(--soft);
}
.solution-photo {
  min-height: 220px;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
}
.ecommerce {
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.08), rgba(16, 17, 20, 0.08)),
    url("assets/ecommerce-product.jpg");
}
.solution-grid article > span,
.solution-large div > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
.solution-grid h3 {
  margin: 34px 0 10px;
  font-size: 23px;
}
.solution-large h3 {
  margin-top: 45px;
}
.solution-grid p {
  color: var(--muted);
  line-height: 1.6;
}
.solution-symbol {
  display: grid !important;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink) !important;
  font-size: 20px !important;
}
.security-section {
  background: #111317;
  color: #fff;
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.kicker-light {
  color: #74e0b7;
}
.security-grid > div > p {
  color: #a8adb7;
  font-size: 17px;
  line-height: 1.7;
}
.security-list {
  border-top: 1px solid #353940;
}
.security-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #353940;
}
.security-list article > span {
  color: #74e0b7;
}
.security-list h3 {
  margin: 0;
  font-size: 19px;
}
.security-list p {
  margin: 6px 0 0;
  color: #a8adb7;
  line-height: 1.6;
}
.pricing-intro {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: end;
}
.pricing-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.pricing-grid article {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.pricing-grid article > span {
  font-weight: 700;
}
.pricing-grid strong {
  margin: 22px 0 14px;
  font-size: 38px;
}
.pricing-grid strong small {
  font-size: 13px;
  color: var(--muted);
}
.pricing-grid p {
  min-height: 52px;
  color: var(--muted);
  line-height: 1.5;
}
.pricing-grid ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0 30px;
}
.pricing-grid li:before {
  content: "✓";
  margin-right: 9px;
  color: var(--green-dark);
}
.pricing-grid .button {
  margin-top: auto;
}
.featured {
  border: 2px solid var(--ink) !important;
}
.popular {
  position: absolute;
  top: -13px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}
.faq-section {
  background: var(--soft);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 100px;
}
.faq-grid > div > p {
  color: var(--muted);
  line-height: 1.6;
}
.faq-list details {
  border-top: 1px solid #cfd3d7;
  padding: 20px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid #cfd3d7;
}
.faq-list summary {
  font-size: 18px;
  font-weight: 650;
  cursor: pointer;
}
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}
.final-cta {
  padding: 70px 0;
  background: #1c4fb6;
  color: #fff;
}
.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.final-inner h2 {
  max-width: 760px;
}
.site-footer {
  padding: 70px 0 20px;
  background: #0c0d10;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}
.brand-footer small {
  color: #848a94;
}
.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-grid > div:first-child p {
  max-width: 300px;
  color: #888e98;
  line-height: 1.6;
}
.footer-grid strong {
  margin-bottom: 8px;
}
.footer-grid a:not(.brand):not(.button) {
  color: #9aa0a9;
  font-size: 14px;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #292c32;
  display: flex;
  justify-content: space-between;
  color: #777d87;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-button {
    display: grid;
    margin-left: auto;
    width: 38px;
    height: 38px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 5px;
  }
  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }
  .nav-actions .text-link {
    display: none;
  }
  .split-heading,
  .proof-grid,
  .security-grid,
  .pricing-intro,
  .faq-grid,
  .page-hero-inner,
  .detail-split,
  .audience-row,
  .spend-explainer,
  .compliance-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .workflow {
    grid-template-columns: 1fr 1fr;
  }
  .workflow article:nth-child(2) {
    border-right: 0;
  }
  .workflow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-grid .solution-large {
    grid-column: span 2;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .feature-matrix,
  .feature-matrix.three,
  .security-principles {
    grid-template-columns: 1fr 1fr;
  }
  .process-list article {
    grid-template-columns: 50px 1fr;
  }
  .process-visual {
    grid-column: 2;
  }
  .pricing-grid p {
    min-height: 0;
  }
  .floating-note {
    display: none;
  }
}
@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1200px);
  }
  .nav-wrap {
    height: 64px;
  }
  .main-nav {
    top: 64px;
  }
  .nav-actions .button {
    display: none;
  }
  .hero {
    padding-top: 62px;
  }
  .page-hero,
  .page-hero.compact {
    padding-block: 68px;
  }
  .page-hero h1,
  .page-centered h1 {
    font-size: 43px;
  }
  .hero-actions.left {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-lead {
    font-size: 28px;
  }
  .hero-support {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .trust-line {
    justify-content: flex-start;
    text-align: left;
  }
  .product-stage {
    margin-top: 45px;
    padding-bottom: 46px;
  }
  .browser-frame {
    border-radius: 8px;
  }
  .browser-bar {
    height: 28px;
  }
  .platform-row {
    padding: 25px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .platforms {
    gap: 16px;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading h2,
  .proof-copy h2,
  .security-grid h2,
  .pricing-intro h2,
  .faq-grid h2,
  .final-inner h2 {
    font-size: 35px;
  }
  .workflow {
    grid-template-columns: 1fr;
  }
  .workflow article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow article:last-child {
    border-bottom: 0;
  }
  .workflow h3 {
    margin-top: 36px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-grid .solution-large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .pricing-grid article {
    padding: 24px;
  }
  .feature-matrix,
  .feature-matrix.three,
  .security-principles {
    grid-template-columns: 1fr;
  }
  .process-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-visual {
    grid-column: auto;
  }
  .audience-row.reverse > :first-child { order: 0; }
  .commerce-board { grid-template-columns: 1fr; }
  .commerce-board img { height: 210px; }
  .security-seal { min-height: 300px; }
  .spend-explainer > div:last-child { align-items: stretch; flex-direction: column; }
  .billing-note { align-items: flex-start; flex-direction: column; }
  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}
