:root {
  --ink: #070a12;
  --ink-soft: #0b101c;
  --ink-raised: #111827;
  --ink-card: #121a2b;
  --paper: #f5f7f2;
  --paper-strong: #ffffff;
  --paper-soft: #edf1eb;
  --text: #f7f9f4;
  --text-dark: #10151d;
  --muted: #aab4c3;
  --muted-dark: #5e6976;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(13, 21, 31, 0.13);
  --lime: #b8ef45;
  --lime-soft: #d8ff86;
  --mint: #78d9a2;
  --teal: #28c8c4;
  --teal-soft: #7ee9e5;
  --blue: #77adff;
  --warning: #ffd166;
  --danger: #ff8a91;
  --shadow-sm: 0 12px 30px rgba(4, 9, 17, 0.1);
  --shadow-lg: 0 30px 90px rgba(1, 7, 15, 0.27);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 82px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--lime-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #497a1e;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(184, 239, 69, 0.12);
}

.micro-label,
.card-kicker {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.button svg,
.card-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: #071014;
  background: linear-gradient(135deg, var(--lime), #91df5c);
  box-shadow: 0 12px 34px rgba(159, 229, 73, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #c8ff56, #a2ee6c);
  box-shadow: 0 16px 42px rgba(159, 229, 73, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-dark {
  color: var(--text);
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}

.button-dark:hover {
  background: #131a27;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.full-width {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--text);
  background: rgba(7, 10, 18, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(7, 10, 18, 0.94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 26px;
}

/* ---------- Cross-site switcher (shared across About / Verifications / Consulting) ---------- */

.site-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.site-switcher a {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  color: #aab4c3;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.site-switcher a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.site-switcher a.is-current {
  background: rgba(184, 239, 69, 0.14);
  color: var(--lime);
}

.site-switcher a.is-current:hover {
  background: rgba(184, 239, 69, 0.2);
  color: var(--lime);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.brand-copy span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.23em;
}

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

.primary-nav a,
.text-link {
  position: relative;
  color: #c5ceda;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.primary-nav a:hover,
.text-link:hover {
  color: var(--text);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 160px 0 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 20%, rgba(40, 200, 196, 0.13), transparent 25%),
    radial-gradient(circle at 18% 70%, rgba(184, 239, 69, 0.08), transparent 30%),
    linear-gradient(135deg, #060811 0%, #0a101c 58%, #071317 100%);
}

.hero::before {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(126, 233, 229, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(184, 239, 69, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid-overlay,
.pricing-grid-overlay,
.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  padding-bottom: 74px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.2vw, 6.45rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(96deg, var(--lime) 5%, var(--mint) 55%, var(--teal-soft));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 665px;
  margin-bottom: 35px;
  color: #b8c2cf;
  font-size: clamp(1.05rem, 1.65vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 43px 0 0;
  padding: 0;
  color: #8794a5;
  font-size: 0.76rem;
  font-weight: 650;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-proof li + li {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.hero-proof span {
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  top: 60px;
  right: 45px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 35% 35%, rgba(40, 200, 196, 0.26), rgba(40, 200, 196, 0));
}

.orb-two {
  right: 175px;
  bottom: 48px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle at 50% 50%, rgba(184, 239, 69, 0.17), rgba(184, 239, 69, 0));
}

.workflow-card {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 0;
  width: min(100%, 500px);
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(19, 27, 44, 0.96), rgba(9, 14, 25, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.42);
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
}

.workflow-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 239, 69, 0.05), transparent 40%);
  content: "";
  pointer-events: none;
}

.workflow-topbar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.workflow-topbar > div {
  display: flex;
  flex-direction: column;
}

.workflow-topbar strong {
  margin-top: 2px;
  font-size: 1.08rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #ccf6dc;
  background: rgba(86, 203, 130, 0.1);
  border: 1px solid rgba(86, 203, 130, 0.22);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #61dc93;
  box-shadow: 0 0 0 5px rgba(97, 220, 147, 0.1);
}

.workflow-steps {
  position: relative;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-steps::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--teal), rgba(255, 255, 255, 0.1));
  content: "";
}

.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}

.workflow-steps li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.step-number {
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-soft);
  background: #101827;
  border: 1px solid rgba(126, 233, 229, 0.22);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 850;
}

.workflow-steps li > div {
  display: flex;
  flex-direction: column;
}

.workflow-steps strong {
  font-size: 0.88rem;
}

.workflow-steps li > div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.step-check {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.step-pulse {
  position: relative;
  width: 13px;
  height: 13px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(40, 200, 196, 0.09);
}

.result-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  padding: 17px;
  background: linear-gradient(135deg, rgba(184, 239, 69, 0.11), rgba(40, 200, 196, 0.07));
  border: 1px solid rgba(184, 239, 69, 0.24);
  border-radius: 16px;
}

.result-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
}

.result-icon svg {
  width: 27px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.result-card span {
  color: var(--lime-soft);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.result-card strong {
  margin-top: 2px;
  font-size: 0.85rem;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.workflow-tags span {
  padding: 6px 9px;
  color: #9aa8ba;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  color: var(--text);
  background: rgba(13, 20, 33, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-card-volume {
  bottom: 82px;
  left: -40px;
  flex-direction: column;
  padding: 15px 18px;
}

.floating-card-volume span {
  color: var(--teal);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.floating-card-volume strong {
  margin: 2px 0 0;
  font-size: 1.27rem;
}

.floating-card-volume small {
  color: var(--muted);
  font-size: 0.65rem;
}

.floating-card-api {
  right: -30px;
  bottom: 22px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
}

.floating-card-api svg {
  width: 26px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card-api div {
  display: flex;
  flex-direction: column;
}

.floating-card-api strong {
  font-size: 0.8rem;
}

.floating-card-api span {
  color: var(--muted);
  font-size: 0.63rem;
}

.trust-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 18px;
  padding: 21px 26px;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.trust-ribbon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 15px;
  color: #9ba6b6;
  font-size: 0.69rem;
  font-weight: 700;
  text-align: center;
}

.trust-ribbon span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.trust-ribbon span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-section {
  background: var(--paper);
}

.section-heading h2,
.process-copy h2,
.faq-intro h2,
.proof-stat-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.25rem);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.split-heading {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 45px rgba(22, 30, 39, 0.05);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.audience-card::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(40, 200, 196, 0.13);
  border-radius: 50%;
  content: "";
}

.audience-card:hover {
  border-color: rgba(40, 200, 196, 0.4);
  box-shadow: 0 26px 70px rgba(22, 30, 39, 0.11);
  transform: translateY(-5px);
}

.featured-card {
  color: var(--text);
  background:
    radial-gradient(circle at 95% 8%, rgba(40, 200, 196, 0.22), transparent 30%),
    linear-gradient(145deg, #0b111d, #101a29 65%, #0c1c1f);
  border-color: rgba(184, 239, 69, 0.25);
}

.featured-label {
  position: absolute;
  top: 22px;
  right: -39px;
  width: 164px;
  padding: 7px 0;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  transform: rotate(37deg);
}

.card-index {
  position: absolute;
  top: 26px;
  right: 27px;
  color: rgba(14, 21, 29, 0.2);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.featured-card .card-index {
  right: 46px;
  color: rgba(255, 255, 255, 0.25);
}

.audience-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 37px;
  place-items: center;
  color: #1d8a87;
  background: #e8f7f2;
  border: 1px solid rgba(40, 200, 196, 0.2);
  border-radius: 17px;
}

.audience-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-card .audience-icon {
  color: var(--lime);
  background: rgba(184, 239, 69, 0.08);
  border-color: rgba(184, 239, 69, 0.18);
}

.audience-card h3 {
  max-width: 320px;
  margin-bottom: 17px;
  font-size: 1.62rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.audience-card > p:not(.card-kicker) {
  margin-bottom: 27px;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.featured-card > p:not(.card-kicker) {
  color: #aeb9c8;
}

.audience-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.featured-card .audience-meta {
  border-color: var(--line);
}

.audience-meta strong {
  font-size: 1.25rem;
}

.audience-meta span {
  color: var(--muted-dark);
  font-size: 0.71rem;
  font-weight: 700;
}

.featured-card .audience-meta span {
  color: var(--muted);
}

.card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #176c69;
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.featured-card .card-link {
  color: var(--lime-soft);
}

.card-link svg {
  transition: transform var(--transition);
}

.card-link:hover svg {
  transform: translateX(4px);
}

.product-section {
  padding-top: 120px;
  background: var(--paper-soft);
  border-top: 1px solid var(--line-dark);
}

.centered-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 22px;
}

.centered-heading > p:last-child {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

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

.product-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  transition:
    background-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.product-card-large {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 74px 1fr auto;
  align-items: start;
  gap: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(40, 200, 196, 0.16), transparent 30%),
    #fff;
}

.product-card-accent {
  color: var(--text);
  background: linear-gradient(140deg, #0c1421, #11202a);
  border-color: rgba(184, 239, 69, 0.24);
}

.product-card-accent:hover {
  background: linear-gradient(140deg, #101a29, #13262f);
}

.product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: #1c8986;
  background: #e8f7f2;
  border-radius: 15px;
}

.product-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card-large .product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
}

.product-card-accent .product-icon {
  color: var(--lime);
  background: rgba(184, 239, 69, 0.08);
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.product-card p:not(.card-kicker) {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.87rem;
}

.product-card-accent p:not(.card-kicker) {
  color: var(--muted);
}

.product-tag {
  display: inline-block;
  align-self: start;
  padding: 8px 10px;
  color: #245f19;
  background: rgba(184, 239, 69, 0.16);
  border: 1px solid rgba(137, 197, 57, 0.25);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-card-accent .product-tag {
  margin-top: 19px;
  color: var(--lime-soft);
  background: rgba(184, 239, 69, 0.09);
  border-color: rgba(184, 239, 69, 0.2);
}

.global-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 18px;
  padding: 25px 28px;
  color: var(--text-dark);
  background: linear-gradient(100deg, rgba(184, 239, 69, 0.34), rgba(40, 200, 196, 0.22));
  border: 1px solid rgba(32, 110, 107, 0.2);
  border-radius: 20px;
}

.global-callout > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.global-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  place-items: center;
  color: #0b3c3b;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 1.45rem;
}

.global-callout strong {
  display: block;
  font-size: 1.02rem;
}

.global-callout p {
  margin: 3px 0 0;
  color: #44524e;
  font-size: 0.82rem;
}

.process-section {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 80%, rgba(184, 239, 69, 0.08), transparent 28%),
    linear-gradient(145deg, #070a12, #0b1320 64%, #071719);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 90px;
}

.process-copy h2 {
  margin-bottom: 24px;
}

.process-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.process-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.integration-console {
  overflow: hidden;
  background: #070b13;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.console-header {
  display: grid;
  padding: 14px 18px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #8490a0;
  background: #0c111c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.67rem;
}

.console-dots {
  display: flex;
  gap: 7px;
}

.console-dots i {
  width: 8px;
  height: 8px;
  background: #394353;
  border-radius: 50%;
}

.console-dots i:first-child {
  background: #ff7a83;
}

.console-dots i:nth-child(2) {
  background: #ffd166;
}

.console-dots i:last-child {
  background: #5dd28b;
}

.console-live {
  justify-self: end;
  color: var(--lime);
  font-weight: 850;
}

.console-body {
  padding: 28px 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 32px;
}

.console-line {
  display: grid;
  min-height: 32px;
  padding: 3px 26px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  color: #8a97a8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.75rem, 1.35vw, 0.92rem);
}

.console-line > span {
  color: #394456;
  font-size: 0.65rem;
}

.console-line code {
  color: #9facbd;
}

.console-line code b {
  color: var(--lime-soft);
  font-weight: 600;
}

.console-line.indent code {
  padding-left: 24px;
}

.console-line.indent-two code {
  padding-left: 50px;
  color: var(--teal-soft);
}

.console-line.active-code {
  background: linear-gradient(90deg, rgba(40, 200, 196, 0.12), transparent);
  border-left: 2px solid var(--teal);
}

.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #0d1420;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.console-footer > div:first-child {
  display: flex;
  flex-direction: column;
}

.console-footer strong {
  font-size: 0.82rem;
}

.console-footer span {
  color: var(--muted);
  font-size: 0.68rem;
}

.console-actions {
  display: flex;
  gap: 8px;
}

.console-actions a {
  padding: 8px 11px;
  color: var(--teal-soft);
  background: rgba(40, 200, 196, 0.08);
  border: 1px solid rgba(40, 200, 196, 0.18);
  border-radius: 9px;
  font-size: 0.67rem;
  font-weight: 800;
  text-decoration: none;
}


.pricing-section {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(40, 200, 196, 0.14), transparent 29%),
    radial-gradient(circle at 88% 72%, rgba(184, 239, 69, 0.08), transparent 27%),
    #080c15;
}

.pricing-grid-overlay {
  opacity: 0.3;
}

.pricing-section .shell {
  position: relative;
  z-index: 1;
}

.pricing-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.pricing-guide-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.pricing-guide-copy > p:not(.eyebrow):not(.docsend-note) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.guide-checks {
  max-width: 620px;
  margin: 31px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  font-size: 0.78rem;
}

.pricing-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.pricing-guide-actions .button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.docsend-note {
  display: flex;
  max-width: 660px;
  margin: 21px 0 0;
  align-items: flex-start;
  gap: 10px;
  color: #8190a3;
  font-size: 0.69rem;
  line-height: 1.6;
}

.docsend-note > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-soft);
  background: rgba(40, 200, 196, 0.08);
  border: 1px solid rgba(40, 200, 196, 0.17);
  border-radius: 7px;
  font-size: 0.72rem;
}

.pricing-guide-panel {
  position: relative;
  padding: 27px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18, 29, 48, 0.96), rgba(11, 17, 29, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 27px;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.34);
}

.pricing-guide-panel::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  filter: blur(110px);
  opacity: 0.1;
}

.guide-panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 22px;
  padding-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.guide-panel-header > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-panel-header strong {
  font-size: 1.03rem;
}

.guide-status {
  display: inline-flex;
  padding: 7px 10px;
  align-items: center;
  gap: 7px;
  color: #d5e4dd;
  background: rgba(184, 239, 69, 0.07);
  border: 1px solid rgba(184, 239, 69, 0.16);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 800;
  white-space: nowrap;
}

.guide-status i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184, 239, 69, 0.08);
}

.guide-option-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.guide-option {
  display: grid;
  min-height: 155px;
  padding: 19px;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
}

.guide-option:nth-child(2),
.guide-option:nth-child(3) {
  border-color: rgba(40, 200, 196, 0.16);
}

.guide-option-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--teal-soft);
  background: rgba(40, 200, 196, 0.08);
  border: 1px solid rgba(40, 200, 196, 0.17);
  border-radius: 9px;
  font-size: 0.62rem;
  font-weight: 900;
}

.guide-option strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 0.92rem;
}

.guide-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.55;
}

.guide-panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 12px;
  padding: 17px 18px;
  align-items: center;
  gap: 13px;
  background: linear-gradient(90deg, rgba(184, 239, 69, 0.075), rgba(40, 200, 196, 0.055));
  border: 1px solid rgba(184, 239, 69, 0.15);
  border-radius: 16px;
}

.guide-lock {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--lime);
  background: rgba(184, 239, 69, 0.08);
  border-radius: 10px;
  font-size: 0.73rem;
}

.guide-panel-footer div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guide-panel-footer strong {
  font-size: 0.78rem;
}

.guide-panel-footer span:not(.guide-lock) {
  color: var(--muted);
  font-size: 0.66rem;
}

.proof-section {
  background: var(--paper-soft);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 24px;
}

.proof-stat-panel,
.testimonial-card {
  min-height: 475px;
  padding: 44px;
  border-radius: 26px;
}

.proof-stat-panel {
  background: #fff;
  border: 1px solid var(--line-dark);
}

.proof-stat-panel h2 {
  max-width: 660px;
  margin-bottom: 45px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.proof-stats div {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.proof-stats strong {
  margin-bottom: 5px;
  color: #187d79;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.proof-stats span {
  color: var(--muted-dark);
  font-size: 0.7rem;
  line-height: 1.4;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0, rgba(40, 200, 196, 0.18), transparent 35%),
    linear-gradient(145deg, #09111c, #101a28);
  border: 1px solid rgba(40, 200, 196, 0.22);
}

.testimonial-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(184, 239, 69, 0.15);
  border-radius: 50%;
  content: "";
}

.quote-mark {
  height: 75px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 18px 0 34px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.testimonial-card figcaption strong {
  font-size: 0.86rem;
}

.testimonial-card figcaption span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
}

.testimonial-foot {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 18px;
  color: var(--teal-soft);
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  margin-bottom: 23px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted-dark);
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 17px;
  height: 2px;
  background: #156e6b;
  content: "";
  transition: transform var(--transition);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 720px;
  margin: -6px 55px 25px 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 20%, rgba(40, 200, 196, 0.2), transparent 30%),
    linear-gradient(130deg, #070a12, #0d1724 65%, #0a2020);
}

.final-cta-grid {
  opacity: 0.32;
  -webkit-mask-image: none;
  mask-image: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 400px;
  padding-block: 86px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.3vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta-actions {
  display: flex;
  min-width: 210px;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding: 72px 0 0;
  color: var(--text);
  background: #05070d;
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 50px;
}

.footer-brand > p {
  max-width: 340px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-brand address {
  color: #778496;
  font-size: 0.7rem;
  font-style: normal;
}

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

.footer-column h2 {
  margin-bottom: 8px;
  color: #6f7c8e;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #aab4c2;
  font-size: 0.73rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--lime-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0 30px;
  color: #5f6a78;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.65rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  text-decoration: none;
}

.fit-router {
  width: min(760px, calc(100vw - 30px));
  max-height: min(850px, calc(100vh - 30px));
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: #0b111d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  box-shadow: 0 45px 140px rgba(0, 0, 0, 0.58);
}

.fit-router::backdrop {
  background: rgba(2, 5, 10, 0.77);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.router-shell {
  min-height: 600px;
}

.router-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 29px 20px;
  background: linear-gradient(120deg, rgba(40, 200, 196, 0.08), rgba(184, 239, 69, 0.04));
}

.router-header h2 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  padding: 0 0 2px;
  color: #b9c3ce;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.router-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
}

.router-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  transition: width 260ms ease;
}

.router-step-label {
  margin: 15px 29px 0;
  color: #748193;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.router-body {
  padding: 18px 29px 31px;
}

.router-step h3,
.router-result h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.choice-grid button {
  position: relative;
  display: flex;
  min-height: 135px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.choice-grid button:hover,
.choice-grid button.is-selected {
  background: rgba(40, 200, 196, 0.08);
  border-color: rgba(40, 200, 196, 0.4);
  transform: translateY(-2px);
}

.choice-number {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #556173;
  font-size: 0.57rem;
  font-weight: 850;
}

.choice-grid strong {
  margin: auto 0 5px;
  font-size: 0.9rem;
}

.choice-grid small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.choice-grid-compact {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid-compact button {
  min-height: 105px;
  justify-content: flex-end;
}

.choice-grid-compact strong {
  margin-top: 0;
  font-size: 1.05rem;
}

.router-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 29px;
  background: #080d16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.router-footer button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--teal-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.router-footer button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.router-footer button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.router-footer span {
  color: #657183;
  font-size: 0.62rem;
}

.router-result {
  padding: 3px 0 10px;
}

.result-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.router-result > p {
  color: var(--muted);
}

.result-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 28px;
}

.result-summary span {
  padding: 7px 10px;
  color: #c3cdd8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 0.66rem;
}

.router-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 36px, 1040px);
  }

  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .site-switcher a {
    padding: 10px 9px;
    font-size: 0.7rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    gap: 34px;
  }

  .workflow-card {
    transform: none;
  }

  .floating-card-volume {
    left: -15px;
  }

  .floating-card-api {
    right: -5px;
  }

  .trust-ribbon {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-ribbon span:nth-child(4) {
    border-left: 0;
  }

  .trust-ribbon span:nth-child(n + 4) {
    padding-top: 13px;
  }

  .process-layout {
    gap: 55px;
  }

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

  .pricing-card:first-child {
    min-height: 480px;
    grid-column: 1 / -1;
  }

  .pricing-card:first-child .pricing-card-head {
    min-height: auto;
  }

  .pricing-card:first-child .check-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .special-offer {
    grid-template-columns: 1fr auto;
  }

  .special-offer-label {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 28px;
  }
}

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

  .section {
    padding: 88px 0;
  }

  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  .header-inner {
    height: auto;
    padding-block: 12px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .site-switcher {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-switcher a {
    flex: 1;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

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

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 22px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(7, 10, 18, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .primary-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
  }

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

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 60px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    padding-bottom: 40px;
  }

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

  .hero-visual {
    min-height: 610px;
  }

  .workflow-card {
    left: 50%;
    width: min(560px, calc(100% - 40px));
    transform: translateX(-50%);
  }

  .floating-card-volume {
    left: calc(50% - 285px);
  }

  .floating-card-api {
    right: calc(50% - 285px);
  }

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

  .trust-ribbon span:nth-child(3),
  .trust-ribbon span:nth-child(5) {
    border-left: 0;
  }

  .trust-ribbon span:nth-child(n + 3) {
    padding-top: 13px;
  }

  .split-heading,
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .split-heading > p,
  .pricing-heading > p {
    max-width: 680px;
  }

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

  .audience-card {
    min-height: 420px;
  }

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

  .product-card-large {
    grid-column: 1 / -1;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .pricing-card:first-child {
    grid-column: auto;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card-head {
    min-height: auto;
  }

  .pricing-card:first-child .check-list {
    display: flex;
  }

  .pricing-card .button {
    margin-top: 18px;
  }

  .secondary-pricing {
    grid-template-columns: 1fr;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-cta-actions {
    min-width: 0;
    max-width: 360px;
    flex-direction: row;
  }

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

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 72px 0;
  }

  .brand-copy strong {
    font-size: 0.76rem;
  }

  .brand-copy span {
    font-size: 0.48rem;
  }

  .site-switcher a {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.25rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

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

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

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }

  .hero-proof li {
    display: flex;
    padding: 10px 7px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px;
    font-size: 0.59rem;
  }

  .hero-visual {
    min-height: 520px;
    margin-inline: -4px;
  }

  .workflow-card {
    top: 8px;
    width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .workflow-topbar strong {
    font-size: 0.92rem;
  }

  .status-pill {
    font-size: 0.57rem;
  }

  .workflow-steps li {
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    padding: 14px 0;
  }

  .step-number {
    width: 34px;
    height: 34px;
  }

  .workflow-steps::before {
    left: 16px;
  }

  .workflow-steps strong {
    font-size: 0.79rem;
  }

  .result-card strong {
    font-size: 0.75rem;
  }

  .floating-card-volume {
    bottom: 28px;
    left: -2px;
  }

  .floating-card-api {
    right: -2px;
    bottom: -24px;
  }

  .trust-ribbon {
    display: flex;
    margin-top: 35px;
    padding: 16px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    scrollbar-width: none;
  }

  .trust-ribbon::-webkit-scrollbar {
    display: none;
  }

  .trust-ribbon span {
    min-width: max-content;
    padding: 0 14px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .trust-ribbon span:first-child {
    border-left: 0 !important;
  }

  .section-heading h2,
  .process-copy h2,
  .faq-intro h2,
  .proof-stat-panel h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .split-heading {
    margin-bottom: 38px;
  }

  .audience-card {
    min-height: 470px;
    padding: 25px;
  }

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

  .product-card-large {
    display: block;
    grid-column: auto;
  }

  .product-card-large .product-icon {
    margin-bottom: 24px;
  }

  .product-card-large .product-tag {
    margin-top: 20px;
  }

  .global-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .global-callout .button {
    width: 100%;
  }

  .console-line {
    padding-inline: 12px;
    grid-template-columns: 28px 1fr;
    font-size: 0.66rem;
  }

  .console-line.indent code {
    padding-left: 10px;
  }

  .console-line.indent-two code {
    padding-left: 20px;
  }

  .console-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .console-actions {
    width: 100%;
  }

  .console-actions a {
    flex: 1;
    text-align: center;
  }

  .special-offer {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .special-offer-copy {
    grid-template-columns: 1fr;
  }

  .special-offer-copy strong {
    grid-row: auto;
    margin: 7px 0 2px;
  }

  .special-offer .button {
    width: 100%;
  }

  .pricing-card {
    padding: 24px;
  }

  .price-lockup strong {
    font-size: 3.1rem;
  }

  .secondary-pricing > article {
    padding: 21px;
  }

  .proof-stat-panel,
  .testimonial-card {
    min-height: auto;
    padding: 28px;
  }

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

  .proof-stats div {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .testimonial-card blockquote {
    font-size: 1.5rem;
  }

  .faq-list summary {
    font-size: 0.92rem;
  }

  .faq-list details p {
    margin-right: 15px;
    font-size: 0.83rem;
  }

  .final-cta-inner {
    min-height: 0;
    padding-block: 72px;
  }

  .final-cta h2 {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
  }

  .final-cta-actions {
    max-width: none;
    flex-direction: column;
  }

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

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

  .footer-contact {
    grid-column: auto;
  }

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

  .fit-router {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }

  .router-header,
  .router-body,
  .router-footer {
    padding-right: 19px;
    padding-left: 19px;
  }

  .router-step-label {
    margin-left: 19px;
  }

  .choice-grid,
  .choice-grid-compact {
    grid-template-columns: 1fr;
  }

  .choice-grid button {
    min-height: 100px;
  }

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

  .router-result-actions {
    flex-direction: column;
  }

  .router-result-actions .button {
    width: 100%;
  }
}


@media (max-width: 1120px) {
  .pricing-guide-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    gap: 44px;
  }

  .guide-checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .pricing-guide-layout {
    grid-template-columns: 1fr;
  }

  .pricing-guide-copy {
    max-width: 760px;
  }

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

@media (max-width: 640px) {
  .pricing-guide-copy h2 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .guide-checks,
  .guide-option-grid {
    grid-template-columns: 1fr;
  }

  .pricing-guide-actions {
    flex-direction: column;
  }

  .pricing-guide-actions .button {
    width: 100%;
  }

  .pricing-guide-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .guide-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-option {
    min-height: auto;
  }
}

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