:root {
  --navy: #081d3a;
  --navy-2: #0d2d55;
  --navy-3: #143d6d;
  --blue: #1959e8;
  --teal: #00a98f;
  --teal-dark: #007c6d;
  --lime: #c8e24b;
  --ink: #0d1b2f;
  --ink-2: #415169;
  --muted: #69778b;
  --cloud: #f4f8fc;
  --paper: #ffffff;
  --line: #dce6f0;
  --soft-blue: #eaf2ff;
  --soft-mint: #e2f8f3;
  --soft-sand: #fff3dc;
  --shadow: 0 26px 75px rgba(8, 29, 58, .14);
  --soft-shadow: 0 14px 42px rgba(8, 29, 58, .08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(0, 169, 143, .09), transparent 24rem),
    radial-gradient(circle at 95% 9%, rgba(25, 89, 232, .08), transparent 27rem),
    #fbfdff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .42;
  pointer-events: none;
  background-image: linear-gradient(rgba(8, 29, 58, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 29, 58, .025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

main {
  overflow: clip;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-family: "Archivo", sans-serif;
}

h1,
h2 {
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 1.06;
}

h3 {
  letter-spacing: -.025em;
}

p {
  color: var(--ink-2);
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(var(--container), calc(100% - 32px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 9px 11px 9px 16px;
  border: 1px solid rgba(220, 230, 240, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 35px rgba(8, 29, 58, .08);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 15px 40px rgba(8, 29, 58, .13);
}

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

.brand img {
  width: 118px;
  height: 48px;
  padding: 6px 9px;
  border-radius: 12px;
  background: #343294;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: #314259;
  font-size: .91rem;
  font-weight: 700;
}

.nav a::after {
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--teal);
  transition: right .2s ease, left .2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.header-login,
.header-app,
.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 800;
}

.header-login {
  color: var(--navy);
}

.header-login:hover {
  background: var(--cloud);
}

.header-app {
  color: var(--blue);
  border: 1px solid #cbdaf3;
  background: #f5f8ff;
}

.header-app:hover {
  border-color: #9bb8ec;
  background: #eaf1ff;
}

.header-cta {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(8, 29, 58, .18);
}

.header-cta:hover {
  background: var(--navy-3);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 11px;
  background: var(--cloud);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
  width: min(var(--container), calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: 70px 0 82px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 169, 143, .12);
}

.eyebrow.light {
  color: #9de7d8;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 4.4vw, 4.25rem);
  line-height: .99;
}

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

.hero-lead {
  max-width: 610px;
  margin-bottom: 29px;
  color: #42536a;
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(25, 89, 232, .22);
}

.btn.primary:hover {
  background: #1049cb;
  box-shadow: 0 17px 34px rgba(25, 89, 232, .28);
}

.btn.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, .84);
}

.btn.secondary:hover {
  border-color: #b7c9dc;
  background: #fff;
}

.btn.app-store {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(8, 29, 58, .17);
}

.btn.app-store:hover {
  background: var(--navy-3);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 23px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 700;
}

.hero-proof svg,
.payment-toast svg,
.feature-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero-proof svg {
  width: 16px;
  color: var(--teal-dark);
}

.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 26px 0 44px 24px;
  animation: hero-in .75s .12s both ease-out;
}

.product-glow {
  position: absolute;
  z-index: -1;
  top: -14%;
  right: -18%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 143, .21), rgba(25, 89, 232, .09) 54%, transparent 70%);
  filter: blur(8px);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(174, 194, 215, .72);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(8, 29, 58, .18);
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg);
  transform-origin: center left;
}

.browser-toolbar {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  min-height: 43px;
  padding: 0 14px;
  border-bottom: 1px solid #e6edf5;
  background: #f5f8fb;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9c6d4;
}

.browser-dots span:first-child { background: #ff8076; }
.browser-dots span:nth-child(2) { background: #ffd36f; }
.browser-dots span:nth-child(3) { background: #70d8aa; }

.browser-address {
  justify-self: center;
  min-width: 190px;
  padding: 6px 16px;
  border-radius: 7px;
  color: #7b899b;
  background: #fff;
  font-size: .65rem;
  text-align: center;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 405px;
  background: #f2f7fc;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding-top: 18px;
  background: var(--navy);
}

.preview-logo {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-bottom: 11px;
  border-radius: 9px;
  color: var(--navy);
  background: linear-gradient(135deg, #30d5bd, #74a5ff);
  font-size: .63rem;
  font-weight: 900;
}

.preview-sidebar > span {
  width: 17px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .25);
}

.preview-sidebar > span.active {
  background: var(--teal);
}

.preview-main {
  min-width: 0;
  padding: 25px;
}

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

.preview-heading small,
.preview-card small,
.bank-cards small {
  display: block;
  color: #75859a;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.preview-heading strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 1.18rem;
}

.preview-heading > span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #007765;
  background: #dff8f2;
  font-size: .6rem;
  font-weight: 900;
}

.preview-summary {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(125deg, var(--navy), #174978);
  box-shadow: 0 15px 30px rgba(8, 29, 58, .16);
}

.preview-summary small,
.preview-summary strong,
.preview-summary span {
  display: block;
}

.preview-summary small {
  color: #a8c0d8;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.preview-summary strong {
  margin-top: 7px;
  font-size: 1.35rem;
}

.preview-summary span {
  margin-top: 5px;
  color: #b9ccdc;
  font-size: .62rem;
}

.summary-pulse {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.summary-pulse i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41e0b8;
  box-shadow: 0 0 0 6px rgba(65, 224, 184, .12);
}

.summary-pulse b {
  font-size: .62rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 13px;
}

.preview-card {
  min-width: 0;
  min-height: 130px;
  padding: 14px;
  border: 1px solid #e1eaf2;
  border-radius: 13px;
  background: #fff;
}

.preview-card > i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-bottom: 11px;
  border-radius: 9px;
  color: #2460dd;
  background: var(--soft-blue);
  font-style: normal;
  font-size: .72rem;
  font-weight: 900;
}

.preview-card.mint > i {
  color: var(--teal-dark);
  background: var(--soft-mint);
}

.preview-card.sand > i {
  color: #b45d00;
  background: var(--soft-sand);
}

.preview-card strong,
.preview-card > span {
  display: block;
}

.preview-card strong {
  overflow: hidden;
  margin-top: 6px;
  font-size: .75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-card > span {
  margin-top: 7px;
  color: #728096;
  font-size: .58rem;
  line-height: 1.35;
}

.phone-preview {
  position: absolute;
  z-index: 4;
  right: -24px;
  bottom: 0;
  width: 145px;
  min-height: 282px;
  padding: 8px;
  border: 3px solid #14243a;
  border-radius: 28px;
  background: #f8fbff;
  box-shadow: 0 27px 54px rgba(8, 29, 58, .28);
  transform: rotate(2deg);
}

.phone-speaker {
  width: 38px;
  height: 4px;
  margin: 3px auto 8px;
  border-radius: 99px;
  background: #cad4de;
}

.phone-content {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  background: linear-gradient(180deg, #edf5ff, #fff);
}

.phone-label {
  color: #55708c;
  font-size: .49rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.mini-qr {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  width: 88px;
  height: 88px;
  margin: 13px 0;
  padding: 8px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(8, 29, 58, .1);
}

.mini-qr span {
  border-radius: 1px;
  background: var(--navy);
}

.mini-qr span:nth-child(3n),
.mini-qr span:nth-child(7n) {
  background: transparent;
}

.phone-content strong {
  font-size: 1rem;
}

.phone-content small {
  margin-top: 4px;
  color: #8290a2;
  font-size: .52rem;
}

.payment-toast {
  position: absolute;
  z-index: 5;
  right: 78px;
  bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 202px;
  padding: 12px 14px;
  border: 1px solid rgba(194, 232, 218, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(8, 29, 58, .16);
  animation: toast-in .7s .6s both ease-out;
}

.payment-toast > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--teal);
}

.payment-toast svg {
  width: 19px;
}

.payment-toast strong,
.payment-toast small {
  display: block;
}

.payment-toast strong {
  font-size: .74rem;
}

.payment-toast small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .62rem;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--container), calc(100% - 32px));
  margin: -18px auto 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--soft-shadow);
}

.outcome-strip article {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 20px 28px;
}

.outcome-strip article + article {
  border-left: 1px solid var(--line);
}

.outcome-strip article > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--soft-mint);
  font-size: .7rem;
  font-weight: 900;
}

.outcome-strip strong,
.outcome-strip small {
  display: block;
}

.outcome-strip strong {
  font-size: .98rem;
}

.outcome-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
}

.human-story {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  overflow: hidden;
  width: min(var(--container), calc(100% - 32px));
  min-height: 470px;
  margin: 105px auto 0;
  border-radius: var(--radius-xl);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.human-story::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 35%, rgba(8, 29, 58, .28) 57%, var(--navy) 73%);
}

.human-story > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: 58% center;
}

.human-story-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
  padding: 58px 54px 58px 42px;
  color: #fff;
}

.human-story-copy h2 {
  max-width: 480px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.human-story-copy p {
  max-width: 470px;
  color: #c4d5e3;
}

.human-story-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 9px;
  color: #a6eadc;
  font-weight: 900;
}

.section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 105px 0;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-intro > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  gap: 18px;
}

.feature-primary {
  display: grid;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 30px;
  min-height: 500px;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 219, 188, .2), transparent 22rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.feature-copy {
  align-self: center;
}

.feature-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #a7eadc;
  font-size: .78rem;
  font-weight: 900;
}

.feature-primary h3 {
  max-width: 440px;
  margin-bottom: 17px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.feature-primary p {
  color: #bed0e1;
}

.feature-primary a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #a6eadc;
  font-weight: 800;
}

.charge-demo {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 23px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .22);
  transform: rotate(2.5deg);
}

.charge-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.charge-demo label {
  display: block;
  margin: 15px 0 7px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
}

.charge-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 14px 0;
  border-bottom: 2px solid var(--teal);
}

.charge-value small {
  color: var(--teal-dark);
  font-weight: 900;
}

.charge-value strong {
  font-size: 2.15rem;
}

.charge-input {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #68778a;
  font-size: .83rem;
}

.charge-button {
  margin-top: 18px;
  padding: 13px;
  border-radius: 11px;
  color: #fff;
  background: var(--blue);
  font-size: .83rem;
  font-weight: 900;
  text-align: center;
}

.feature-compact {
  display: flex;
  min-height: 241px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.feature-compact h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
}

.feature-compact p {
  margin-bottom: 0;
  font-size: .9rem;
}

.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
}

.feature-icon svg {
  width: 23px;
}

.dark-card {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: var(--soft-shadow);
}

.dark-card .feature-icon {
  color: var(--navy);
  background: var(--lime);
}

.dark-card p {
  color: #c5eee7;
}

.light-card {
  border: 1px solid #d6e4f2;
  background: linear-gradient(145deg, #edf5ff, #fff);
}

.light-card .feature-icon {
  color: var(--blue);
  background: #dce9ff;
}

.how-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
  padding-top: 80px;
}

.how-heading {
  position: sticky;
  top: 120px;
}

.steps-list {
  border-top: 1px solid var(--line);
}

.steps-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-dark);
  background: var(--soft-mint);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}

.steps-list h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.steps-list p {
  margin-bottom: 0;
}

.integrations-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .94fr;
  gap: 60px;
  overflow: hidden;
  padding: 68px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(13, 45, 85, .97), rgba(8, 29, 58, .98)),
    var(--navy);
  box-shadow: var(--shadow);
}

.integrations-section::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .018);
}

.integration-copy,
.bank-cards {
  position: relative;
  z-index: 2;
}

.integration-copy p {
  color: #bfd0e0;
}

.security-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.security-inline span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #d8e6f2;
  font-size: .75rem;
  font-weight: 700;
}

.security-inline b {
  margin-right: 5px;
  color: var(--lime);
}

.bank-cards {
  display: grid;
  gap: 13px;
}

.bank-cards article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.bank-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}

.bank-mark.bb {
  color: #17279c;
  background: #ffe632;
}

.bank-mark.efi {
  color: #fff;
  background: var(--teal);
}

.bank-mark.inter {
  color: #fff;
  background: #ff7a00;
  font-size: .9rem;
}

.bank-cards small {
  color: #89a4bd;
}

.bank-cards h3 {
  margin: 5px 0 6px;
}

.bank-cards p {
  margin: 0;
  color: #c2d2e0;
  font-size: .78rem;
  line-height: 1.45;
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}

.pricing-heading p {
  margin-bottom: 8px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.payment-method {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 166px;
  padding: 24px 150px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.payment-method::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: '';
  opacity: .55;
}

.google-method::after {
  background: #e1ebff;
}

.pix-method::after {
  background: #d9f8ef;
}

.payment-method-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: max-content;
  min-width: 48px;
  height: 48px;
  place-items: center;
  padding: 0 10px;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-size: .88rem;
  font-weight: 900;
  justify-self: start;
}

.pix-method .payment-method-icon {
  color: var(--navy);
  background: var(--lime);
}

.payment-method > div {
  position: relative;
  z-index: 1;
}

.payment-method small {
  color: var(--blue);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.pix-method small {
  color: var(--teal-dark);
}

.payment-method h3 {
  margin: 5px 0 8px;
  font-size: 1.08rem;
}

.payment-method p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.method-badge {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.method-badge.recurring {
  color: #19489c;
  background: #e8efff;
}

.method-badge.one-time {
  color: #086c5d;
  background: #ddf8f1;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--soft-shadow);
}

.plan-period {
  color: var(--teal-dark);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 22px 0 16px;
}

.plan-price small {
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 900;
}

.plan-price strong {
  font-size: clamp(2.3rem, 3.4vw, 3.2rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.plan-card p {
  font-size: .9rem;
}

.plan-duration {
  display: block;
  margin: -3px 0 13px;
  color: var(--navy);
  font-size: .82rem;
}

.featured-plan .plan-duration {
  color: #fff;
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-btn {
  color: var(--navy);
  border-color: var(--line);
  background: var(--cloud);
}

.featured-plan {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 26px 62px rgba(8, 29, 58, .2);
  transform: translateY(-10px);
}

.featured-plan .plan-period {
  color: #9de7d8;
}

.featured-plan p {
  color: #bdcede;
}

.best-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lime);
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 85px;
  padding-top: 80px;
}

.faq-intro {
  align-self: start;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 900;
}

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

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

.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

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

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--soft-mint);
  transition: transform .2s ease;
}

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

.faq-list details p {
  margin: -7px 45px 22px 0;
  font-size: .92rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: min(var(--container), calc(100% - 32px));
  margin: 12px auto 80px;
  padding: 54px 60px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 226, 75, .27), transparent 19rem),
    linear-gradient(125deg, #075d55, var(--teal-dark));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

.final-actions {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
}

.btn.white {
  color: var(--navy);
  background: #fff;
}

.final-login {
  color: #d8f4ee;
  font-size: .84rem;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 5px;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #788698;
  font-size: .74rem;
}

/* Legal pages */
.legal-main {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 40px;
}

.legal-hero {
  margin-bottom: 30px;
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
}

.legal-card {
  min-width: 0;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.legal-card h2 {
  margin: 36px 0 13px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -.03em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-2);
  line-height: 1.7;
}

.legal-card a {
  color: var(--blue);
  font-weight: 700;
}

.legal-note {
  padding: 14px 16px;
  border: 1px solid #f0d9a6;
  border-radius: 13px;
  color: #805610 !important;
  background: #fff9e9;
  font-weight: 700;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  align-items: center;
  color: var(--muted);
  font-size: .86rem;
}

.legal-meta span {
  position: relative;
}

.legal-meta span + span::before {
  position: absolute;
  left: -11px;
  content: "•";
}

.legal-meta a {
  color: var(--blue);
  font-weight: 700;
}

.legal-summary {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  margin: -10px -10px 34px;
  padding: 30px;
  border: 1px solid #cfe3f2;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef8ff, #f1fbf7);
}

.legal-summary > *,
.legal-checks,
.legal-toc,
.cookie-notice > * {
  min-width: 0;
}

.legal-card p,
.legal-card li,
.cookie-notice p {
  overflow-wrap: anywhere;
}

.legal-summary h2 {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.legal-summary p,
.legal-summary ul {
  margin: 0;
}

.legal-kicker {
  color: var(--teal-dark);
  font-family: "Archivo", sans-serif;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-checks {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.legal-checks li {
  position: relative;
  padding-left: 25px;
}

.legal-checks li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--teal-dark);
  content: "✓";
  font-weight: 900;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin-bottom: 36px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
}

.legal-toc strong {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.legal-toc a {
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 600;
}

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

.legal-table-wrap {
  max-width: 100%;
  margin: 18px 0 26px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  font-size: .88rem;
}

.legal-table th,
.legal-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--navy);
  background: #eef5fb;
  font-family: "Archivo", sans-serif;
  font-size: .78rem;
  letter-spacing: .02em;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table code {
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--navy);
  background: #e8f0f8;
  font-size: .8rem;
}

.legal-steps {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 34px;
}

.legal-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: #f3faf8;
}

.legal-footer {
  margin-top: 12px;
}

.cookie-notice {
  position: fixed;
  z-index: 1400;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid #cbd8e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 65px rgba(8, 29, 58, .22);
  animation: cookie-in .35s ease both;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice-copy {
  display: grid;
  gap: 5px;
}

.cookie-notice strong {
  color: var(--navy);
  font-size: .95rem;
}

.cookie-notice p {
  max-width: 900px;
  margin: 0;
  color: var(--ink-2);
  font-size: .82rem;
  line-height: 1.5;
}

.cookie-notice a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice button {
  min-width: 112px;
  padding: 11px 18px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}

.cookie-notice button:hover {
  background: #124bc8;
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

body:has(.legal-main) > .footer {
  grid-template-columns: 1.2fr .8fr;
}

body:has(.legal-main) > .footer > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  color: var(--muted);
  font-size: .82rem;
  text-align: right;
}

body:has(.legal-main) > .footer img {
  width: 118px;
  height: 48px;
  padding: 6px 9px;
  border-radius: 12px;
  background: #343294;
  object-fit: contain;
}

body:has(.legal-main) > .footer p {
  max-width: 420px;
  color: var(--muted);
  font-size: .85rem;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 16px;
  }

  .nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    gap: 34px;
  }

  .phone-preview {
    right: -6px;
  }

  .payment-toast {
    right: 84px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--soft-shadow);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
  }

  .nav a:hover {
    background: var(--cloud);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 72px 0 92px;
  }

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

  .hero-product {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .human-story {
    grid-template-columns: 1fr 1fr;
  }

  .human-story-copy {
    padding: 44px 32px;
  }

  .human-story-copy h2 {
    font-size: clamp(1.85rem, 4vw, 2.55rem);
  }

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

  .feature-primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .how-section,
  .integrations-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .how-section,
  .faq-section {
    gap: 42px;
  }

  .how-heading {
    position: static;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .integrations-section {
    gap: 35px;
    padding: 52px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .final-actions {
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .footer-column:nth-of-type(4) {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    top: 7px;
    width: calc(100% - 20px);
    min-height: 62px;
    margin-top: 7px;
    gap: 8px;
    padding: 7px 8px 7px 10px;
    border-radius: 15px;
  }

  .brand img {
    width: 102px;
    height: 42px;
    padding: 5px 7px;
  }

  .header-login,
  .header-app,
  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: .8rem;
  }

  .header-cta,
  .header-app {
    display: none;
  }

  .hero,
  .outcome-strip,
  .human-story,
  .section,
  .final-cta,
  .footer {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 58px 0 76px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.5vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-product {
    padding: 8px 0 58px;
  }

  .browser-frame {
    border-radius: 18px;
    transform: none;
  }

  .dashboard-preview {
    grid-template-columns: 40px 1fr;
    min-height: 330px;
  }

  .preview-sidebar {
    gap: 15px;
    padding-top: 13px;
  }

  .preview-logo {
    width: 27px;
    height: 27px;
  }

  .preview-main {
    padding: 16px;
  }

  .preview-summary {
    min-height: 90px;
    padding: 14px;
  }

  .preview-summary strong {
    font-size: 1.05rem;
  }

  .summary-pulse {
    display: none;
  }

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

  .preview-card:last-child {
    display: none;
  }

  .phone-preview {
    right: 8px;
    width: 118px;
    min-height: 228px;
    border-radius: 23px;
  }

  .phone-content {
    min-height: 195px;
  }

  .mini-qr {
    width: 70px;
    height: 70px;
  }

  .payment-toast {
    right: 84px;
    bottom: 10px;
    min-width: 172px;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .outcome-strip article {
    min-height: 76px;
    padding: 16px 20px;
  }

  .outcome-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .human-story {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    margin-top: 76px;
  }

  .human-story::after {
    background: linear-gradient(180deg, transparent 20%, rgba(8, 29, 58, .55) 48%, var(--navy) 66%);
  }

  .human-story > img {
    min-height: 390px;
    object-position: 62% center;
  }

  .human-story-copy {
    min-width: 0;
    margin: -150px 0 0;
    padding: 55px 26px 34px;
  }

  .human-story-copy .eyebrow,
  .human-story-copy h2,
  .human-story-copy p,
  .human-story-copy a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature-primary {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px;
  }

  .charge-demo {
    width: min(360px, 100%);
    margin: 8px auto 0;
    transform: none;
  }

  .feature-compact {
    min-height: 210px;
  }

  .integrations-section {
    width: calc(100% - 24px);
    padding: 38px 25px;
    border-radius: 28px;
  }

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

  .payment-method {
    min-height: 0;
    padding: 22px 145px 22px 20px;
  }

  .plan-card {
    min-height: 300px;
  }

  .featured-plan {
    transform: none;
  }

  .final-cta {
    margin-bottom: 60px;
    padding: 38px 26px;
    border-radius: 28px;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

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

  .footer-column:nth-of-type(4) {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .legal-main {
    width: calc(100% - 24px);
    padding-top: 60px;
  }

  .legal-card {
    padding: 26px 21px;
  }

  .legal-summary {
    grid-template-columns: minmax(0, 1fr);
    margin: -5px -5px 28px;
    padding: 23px;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }

  .legal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-actions .btn {
    justify-content: center;
    text-align: center;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
    gap: 14px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }

  .cookie-notice button {
    width: 100%;
  }

  body:has(.legal-main) > .footer {
    grid-template-columns: 1fr;
  }

  body:has(.legal-main) > .footer > div:last-child {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .legal-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .legal-meta span + span::before {
    display: none;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-table {
    min-width: 600px;
  }
}

@media (max-width: 470px) {
  .payment-method {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .method-badge {
    position: relative;
    top: auto;
    right: auto;
    width: max-content;
    margin-top: 3px;
  }

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

  .browser-address {
    min-width: 120px;
  }

  .preview-heading > span {
    display: none;
  }

  .phone-preview {
    display: none;
  }

  .payment-toast {
    right: 12px;
    bottom: 8px;
  }

  .bank-cards article {
    grid-template-columns: 52px 1fr;
    padding: 17px;
  }

  .bank-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* SEO guides and integration pages */
.guide-page .site-header {
  margin-bottom: 0;
}

.guide-hero,
.guide-directory-hero {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  min-height: 590px;
  padding: 92px 36px 74px;
}

.guide-hero-copy {
  max-width: 650px;
}

.guide-hero h1,
.guide-directory-hero h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(2.65rem, 5.1vw, 5.35rem);
  line-height: .98;
}

.guide-hero-copy > p,
.guide-directory-hero > p {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.guide-hero-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.guide-hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, transparent 22%, rgba(8, 29, 58, .54));
}

.guide-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.guide-hero-visual span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 22px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(8, 29, 58, .74);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.guide-hero-visual b {
  color: #bdf5e9;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.guide-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 92px;
}

.guide-highlight {
  min-height: 174px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 32px rgba(8, 29, 58, .045);
}

.guide-highlight span,
.guide-callout > span,
.guide-directory-card > span {
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guide-highlight p {
  margin: 17px 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.guide-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 96px;
}

.guide-content-block {
  padding: 34px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.guide-content-block:first-child {
  grid-column: 1 / -1;
  padding: 42px;
  background: linear-gradient(130deg, var(--soft-blue), #fff 72%);
}

.guide-content-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.guide-content-block p {
  margin-bottom: 0;
}

.guide-callout {
  display: flex;
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 270px;
  background: var(--navy);
}

.guide-callout h2,
.guide-callout p {
  max-width: 670px;
  color: #fff;
}

.guide-callout p {
  color: rgba(255, 255, 255, .72);
}

.guide-callout > span {
  color: var(--lime);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: var(--lime);
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.guide-faq {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
  gap: 70px;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto 100px;
}

.guide-faq h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

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

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

.guide-faq summary {
  position: relative;
  padding: 20px 34px 20px 0;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  list-style: none;
}

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

.guide-faq summary::after {
  position: absolute;
  top: 17px;
  right: 2px;
  content: "+";
  color: var(--teal-dark);
  font-size: 1.45rem;
  font-weight: 400;
}

.guide-faq details[open] summary::after {
  content: "−";
}

.guide-faq details p {
  margin: -2px 0 20px;
}

.guide-directory-hero {
  max-width: 980px;
  padding: 108px 0 66px;
  text-align: center;
}

.guide-directory-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.guide-directory-hero > p {
  margin-right: auto;
  margin-left: auto;
}

.guide-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 70px;
}

.guide-directory-card {
  display: flex;
  min-height: 285px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 35px rgba(8, 29, 58, .05);
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.guide-directory-card:hover {
  border-color: rgba(0, 169, 143, .38);
  box-shadow: var(--soft-shadow);
  transform: translateY(-5px);
}

.guide-directory-card h2 {
  margin: 18px 0 13px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.guide-directory-card p {
  margin-bottom: 22px;
  font-size: .96rem;
  line-height: 1.55;
}

.guide-directory-card b {
  margin-top: auto;
  color: var(--teal-dark);
  font-family: "Archivo", sans-serif;
}

.guide-directory-card em {
  margin-left: 6px;
  font-style: normal;
}

.guide-directory-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 96px;
  padding: 44px clamp(26px, 5vw, 62px);
  border-radius: 30px;
  color: #fff;
  background: var(--navy);
}

.guide-directory-cta span {
  color: var(--lime);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.guide-directory-cta h2 {
  max-width: 670px;
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

@media (max-width: 900px) {
  .guide-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .guide-hero-visual { max-width: 620px; width: 100%; min-height: 320px; }
  .guide-hero-visual img { min-height: 320px; }
  .guide-highlights, .guide-directory { grid-template-columns: repeat(2, 1fr); }
  .guide-faq { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 640px) {
  .guide-hero { width: min(var(--container), calc(100% - 24px)); padding: 54px 0 50px; }
  .guide-hero h1, .guide-directory-hero h1 { font-size: clamp(2.4rem, 12vw, 3.45rem); }
  .guide-hero-visual, .guide-hero-visual img { min-height: 270px; }
  .guide-highlights, .guide-directory { grid-template-columns: 1fr; width: min(var(--container), calc(100% - 24px)); }
  .guide-highlights { margin-bottom: 60px; }
  .guide-article { grid-template-columns: 1fr; margin-bottom: 65px; }
  .guide-content-block, .guide-content-block:first-child { padding: 27px 23px; }
  .guide-callout { min-height: 240px; }
  .guide-faq { width: min(1040px, calc(100% - 24px)); margin-bottom: 70px; }
  .guide-directory-hero { width: min(var(--container), calc(100% - 24px)); padding: 66px 0 45px; text-align: left; }
  .guide-directory-hero > p { margin-left: 0; }
  .guide-directory-card { min-height: 235px; }
  .guide-directory-cta { width: min(var(--container), calc(100% - 24px)); align-items: flex-start; flex-direction: column; margin-bottom: 70px; padding: 31px 25px; }
}
