:root {
  color-scheme: light;
  --ink: #142039;
  --ink-soft: #3d4a62;
  --muted: #728098;
  --line: #dfe6f1;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --blue: #2864e8;
  --blue-dark: #1749bc;
  --blue-soft: #e9f0ff;
  --green: #0d9f72;
  --red: #dc4560;
  --shadow: 0 28px 80px rgba(31, 55, 103, .13);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.16, 1.18, .32, 1);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #f5f7fc;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  text-decoration: none;
}

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

.visually-hidden:where(:not(:focus-within, :active)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  padding-top: 22px;
  pointer-events: none;
  transition: padding .32s var(--ease-out);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  padding: 10px 12px 10px 18px;
  box-shadow: 0 14px 40px rgba(31, 55, 103, .08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    min-height .32s var(--ease-out),
    border-radius .32s var(--ease-out),
    background-color .32s ease,
    box-shadow .32s ease,
    transform .32s var(--ease-out);
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.site-header.is-scrolled .nav-shell {
  min-height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 12px 34px rgba(31, 55, 103, .12);
}

.brand-link {
  width: max-content;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__word {
  font-size: 21px;
  letter-spacing: -.045em;
}

.brand__word strong {
  color: var(--ink);
}

.brand__word b {
  color: var(--blue);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.site-footer nav a {
  position: relative;
  color: #5f6c83;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transition: transform .28s var(--ease-out);
}

.nav-list a:hover,
.site-footer nav a:hover {
  color: var(--blue);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.locale-picker {
  position: relative;
}

.locale-picker summary {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9e1ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink-soft);
  padding: 0 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
  box-shadow: 0 4px 14px rgba(30, 50, 90, .05);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.locale-picker summary::-webkit-details-marker {
  display: none;
}

.locale-picker summary:hover,
.locale-picker[open] summary {
  border-color: #c2cee1;
  background: white;
  box-shadow: 0 8px 22px rgba(30, 50, 90, .1);
}

.locale-picker summary svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.locale-picker summary svg:last-child {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform .2s var(--ease-out);
}

.locale-picker[open] summary svg:last-child {
  transform: rotate(180deg);
}

.locale-picker ul {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  margin: 0;
  border: 1px solid rgba(214, 223, 237, .95);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  padding: 6px;
  list-style: none;
  box-shadow: 0 20px 55px rgba(24, 47, 91, .16);
}

.locale-picker li > a,
.locale-picker li > span {
  display: grid;
  min-height: 46px;
  grid-template-columns: 1fr auto 18px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  color: var(--ink-soft);
  padding: 8px 10px;
  text-decoration: none;
}

.locale-picker li > a {
  transition: background-color .15s ease, color .15s ease;
}

.locale-picker li > a:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.locale-picker li > span {
  background: #f6f8fc;
  color: var(--ink);
}

.locale-picker li b {
  font-size: 13px;
}

.locale-picker li small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.locale-picker li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-actions > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .25s var(--ease-out);
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0) scale(.96);
  transition-duration: .08s;
}

.button:focus-visible,
.nav-list a:focus-visible,
.locale-picker summary:focus-visible,
.locale-picker a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(40, 100, 232, .28);
  outline-offset: 3px;
}

.button--small {
  min-height: 40px;
  padding-inline: 16px;
}

.button--quiet {
  border-color: #d9e1ee;
  background: white;
  color: var(--ink-soft);
  box-shadow: 0 4px 14px rgba(30, 50, 90, .05);
}

.button--primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 15px 35px rgba(40, 100, 232, .27);
}

.button--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 42px rgba(40, 100, 232, .33);
}

.button--secondary {
  border-color: #dce3ef;
  background: rgba(255, 255, 255, .72);
  color: var(--ink-soft);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background:
    linear-gradient(rgba(204, 214, 233, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 214, 233, .28) 1px, transparent 1px),
    radial-gradient(circle at 25% 10%, #e0eaff 0, transparent 37%),
    #f5f7fc;
  background-size: 56px 56px, 56px 56px, auto, auto;
  padding: 178px 0 105px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(transparent, #f5f7fc);
  content: "";
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.hero__glow--one {
  top: 110px;
  right: 9%;
  width: 390px;
  height: 390px;
  background: rgba(87, 139, 255, .18);
}

.hero__glow--two {
  bottom: 80px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: rgba(133, 170, 255, .15);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 60px;
}

.motion-ready [data-hero-copy] > * {
  animation: hero-copy-in .72s var(--ease-out) both;
}

.motion-ready [data-hero-copy] > :nth-child(1) {
  animation-delay: 60ms;
}

.motion-ready [data-hero-copy] > :nth-child(2) {
  animation-delay: 130ms;
}

.motion-ready [data-hero-copy] > :nth-child(3) {
  animation-delay: 210ms;
}

.motion-ready [data-hero-copy] > :nth-child(4) {
  animation-delay: 290ms;
}

.motion-ready [data-hero-copy] > :nth-child(5) {
  animation-delay: 360ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero h1 {
  max-width: 640px;
  margin: 23px 0 0;
  font-size: clamp(58px, 6.1vw, 88px);
  line-height: .95;
  letter-spacing: -.065em;
}

.hero h1 span {
  color: var(--blue);
}

.hero__lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #65728a;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__facts svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.product-shot-stage {
  min-width: 0;
}

.motion-ready .product-shot-stage {
  animation: hero-product-in .92s var(--ease-spring) 160ms both;
}

.product-shot {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  transform: perspective(1400px) rotateX(calc(1deg + var(--tilt-x))) rotateY(calc(-2.5deg + var(--tilt-y)));
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 24px;
  background: white;
  box-shadow: 0 40px 90px rgba(28, 55, 108, .2);
  transition: transform .36s var(--ease-out), box-shadow .36s ease;
  will-change: transform;
}

.product-shot:hover {
  box-shadow: 0 46px 105px rgba(28, 55, 108, .24);
}

.product-shot__shine {
  position: absolute;
  inset: -60% auto -60% -55%;
  width: 34%;
  transform: rotate(14deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  opacity: 0;
  pointer-events: none;
  transition: transform .8s var(--ease-out), opacity .25s ease;
}

.product-shot:hover .product-shot__shine {
  transform: translateX(510%) rotate(14deg);
  opacity: .8;
}

.product-shot__top {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9edf4;
  padding: 0 20px;
}

.mini-brand {
  transform: scale(.74);
  transform-origin: left center;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6deeb;
}

.window-dots i:first-child {
  background: #5d8bf2;
}

.product-shot__body {
  background: #f7f9fc;
  padding: 22px;
}

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

.shot-heading > div {
  display: grid;
  gap: 3px;
}

.shot-heading span,
.summary-card span,
.summary-card small {
  color: #8b97aa;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.shot-heading strong {
  font-size: 17px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #e8f8f2;
  color: #178363 !important;
  padding: 7px 9px;
  white-space: nowrap;
}

.status svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 17px;
}

.summary-card {
  display: grid;
  min-height: 86px;
  align-content: center;
  gap: 3px;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  background: white;
  padding: 13px;
}

.motion-ready .summary-card {
  animation: dashboard-item-in .52s var(--ease-out) both;
}

.motion-ready .summary-card:nth-child(1) {
  animation-delay: .58s;
}

.motion-ready .summary-card:nth-child(2) {
  animation-delay: .64s;
}

.motion-ready .summary-card:nth-child(3) {
  animation-delay: .7s;
}

.summary-card strong {
  font-size: 21px;
}

.positive {
  color: var(--green) !important;
}

.negative {
  color: var(--red) !important;
}

.chart-card {
  margin-top: 10px;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  background: white;
  padding: 15px;
}

.chart-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-card__title strong {
  font-size: 12px;
}

.chart-card__title span {
  color: #8b97aa;
  font-size: 9px;
  font-weight: 700;
}

.chart {
  width: 100%;
  margin-top: 10px;
  overflow: visible;
}

.chart__grid {
  fill: none;
  stroke: #e7ecf4;
  stroke-dasharray: 4 6;
  stroke-width: 1;
}

.chart__area {
  fill: url("#area");
}

.chart__line {
  fill: none;
  stroke: var(--blue);
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.chart circle {
  fill: white;
  stroke: var(--blue);
  stroke-width: 4;
}

.motion-ready .chart__line {
  animation: chart-draw 1.25s var(--ease-out) .72s both;
}

.motion-ready .chart__area {
  animation: chart-area-in .7s ease .92s both;
}

.motion-ready .chart circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: chart-point-in .42s var(--ease-spring) 1.72s both;
}

.keyword-table {
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  background: white;
}

.keyword-row {
  display: grid;
  grid-template-columns: 1fr 90px 92px;
  align-items: center;
  min-height: 45px;
  border-top: 1px solid #edf1f6;
  padding: 0 15px;
  color: #4f5c73;
  font-size: 10px;
  font-weight: 650;
}

.keyword-row:first-child {
  border-top: 0;
}

.keyword-row--head {
  min-height: 34px;
  background: #fafbfe;
  color: #9aa5b6;
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.keyword-row em {
  font-style: normal;
  font-weight: 800;
}

.motion-ready .keyword-table .keyword-row:not(.keyword-row--head) {
  animation: dashboard-row-in .46s var(--ease-out) both;
}

.motion-ready .keyword-table .keyword-row:nth-child(2) {
  animation-delay: 1.12s;
}

.motion-ready .keyword-table .keyword-row:nth-child(3) {
  animation-delay: 1.2s;
}

.motion-ready .keyword-table .keyword-row:nth-child(4) {
  animation-delay: 1.28s;
}

.flag {
  margin-right: 6px;
  font-style: normal;
}

.signal-strip {
  border-block: 1px solid #e1e7f0;
  background: white;
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 28px;
}

.signal-strip__grid > div {
  display: grid;
  gap: 5px;
  border-left: 1px solid #e5eaf2;
  padding: 0 30px;
}

.signal-strip__grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.signal-strip__grid > div:last-child {
  padding-right: 0;
}

.signal-strip strong {
  font-size: 17px;
}

.signal-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.cta-card h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.052em;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

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

.feature-card {
  min-height: 270px;
  border: 1px solid #e1e7f0;
  border-radius: 24px;
  background: rgba(255, 255, 255, .8);
  padding: 30px;
  box-shadow: 0 16px 40px rgba(33, 57, 101, .05);
  transition:
    transform .34s var(--ease-out),
    border-color .34s ease,
    box-shadow .34s ease,
    background-color .34s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #cfdaec;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 55px rgba(33, 57, 101, .1);
}

.feature-card--large {
  grid-row: span 2;
  min-height: 558px;
}

.feature-card--wide {
  grid-column: 1 / -1;
  min-height: 240px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
  transition: transform .34s var(--ease-spring), background-color .34s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-2px) rotate(-4deg) scale(1.06);
  background: #dfe9ff;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3 {
  margin: 22px 0 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.feature-title-link {
  color: inherit;
  text-decoration: none;
}

.feature-title-link:hover {
  color: var(--blue-dark);
}

.feature-card p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  text-decoration: none;
}

.feature-learn-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .2s var(--ease-out);
}

.feature-learn-link:hover svg {
  transform: translateX(3px);
}

.mini-chart {
  margin-top: 45px;
  border: 1px solid #e4eaf3;
  border-radius: 18px;
  background: #f9fbfe;
  padding: 20px;
}

.mini-chart > span {
  color: #8b97aa;
  font-size: 11px;
  font-weight: 700;
}

.mini-chart > strong {
  display: block;
  margin-top: 6px;
  font-size: 25px;
}

.mini-chart em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
}

.mini-chart svg {
  width: 100%;
  margin-top: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.mini-chart svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.motion-ready .feature-card.is-visible .mini-chart svg path {
  animation: chart-draw .95s var(--ease-out) .25s both;
}

.section--workflow {
  background: white;
}

.workflow {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
}

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

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  border-top: 1px solid #e3e8f0;
  padding: 28px 0;
  transition: border-color .25s ease;
}

.steps li:not(:first-child)::before {
  position: absolute;
  inset: -1px 0 auto;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), #cbd7ea 62%, transparent);
  content: "";
  transition: transform .85s var(--ease-out) .18s;
}

.motion-ready .steps li.is-visible:not(:first-child)::before {
  transform: scaleX(1);
}

.steps li:hover {
  border-color: #bfcce2;
}

.steps li:first-child {
  border-top: 0;
  padding-top: 0;
}

.steps > li > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  transition: transform .28s var(--ease-spring), color .25s ease;
}

.steps li:hover > span {
  transform: translateX(5px);
  color: var(--blue-dark);
}

.steps h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.025em;
}

.steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section--faq {
  padding-bottom: 80px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-list {
  min-height: var(--faq-stable-height, 350px);
  border-top: 1px solid #dce3ee;
}

.faq-list details {
  border-bottom: 1px solid #dce3ee;
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary:focus {
  outline: none;
}

.faq-list summary:focus-visible {
  border-radius: 8px;
  box-shadow: inset 3px 0 #7b879b;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 32px;
  right: 4px;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform-origin: center;
  transition: transform .28s var(--ease-out), opacity .2s ease;
}

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

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

.faq-list details p {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.motion-ready .faq-list details[open] p {
  animation: faq-answer-in .35s var(--ease-out) both;
}

.cta-section {
  padding: 20px 0 100px;
}

.cta-card {
  position: relative;
  display: flex;
  min-height: clamp(450px, 25vw, 500px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    #194bc0;
  background-size: 42px 42px;
  color: white;
  padding: clamp(100px, 6.25vw, 120px) 60px;
  box-shadow: 0 35px 70px rgba(23, 73, 188, .23);
}

.cta-card__glow {
  position: absolute;
  top: -240px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(128, 171, 255, .28);
  filter: blur(40px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  animation: cta-glow-float 11s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}

.cta-card > :not(.cta-card__glow) {
  position: relative;
}

.cta-card__action {
  flex: 0 0 auto;
}

.eyebrow--light {
  color: #bfdaff;
}

.cta-card h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 54px);
}

.cta-card p:last-child {
  margin: 16px 0 0;
  color: #c9d8f6;
  font-size: 16px;
}

.button--white {
  flex: 0 0 auto;
  background: white;
  color: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(10, 35, 95, .22);
}

.site-footer {
  border-top: 1px solid #dfe5ef;
  background: white;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}

.footer-grid--expanded {
  grid-template-columns: minmax(220px, 1fr) minmax(240px, .8fr) minmax(130px, auto) auto;
  align-items: start;
}

.brand--footer .brand__mark {
  width: 34px;
  height: 34px;
}

.footer-brand > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-contact {
  display: inline-grid;
  gap: 3px;
  margin-top: 18px;
  border-radius: 12px;
  background: #f4f7fc;
  padding: 10px 12px;
  outline: 1px solid oklch(0 0 0 / .08);
  text-decoration: none;
  transition: background-color .2s ease, outline-color .2s ease;
}

.footer-contact:hover {
  background: var(--blue-soft);
  outline-color: rgba(40, 100, 232, .18);
}

.footer-contact small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.footer-contact strong {
  color: var(--blue-dark);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer .footer-feature-links,
.site-footer .footer-main-links {
  display: grid;
  gap: 10px;
}

.site-footer nav strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
}

.site-footer .footer-feature-links a,
.site-footer .footer-main-links a {
  width: fit-content;
  font-size: 12px;
}

.copyright {
  color: #8994a7;
  font-size: 12px;
}

.seo-page {
  background: #f5f7fc;
}

.seo-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(rgba(190, 204, 229, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 204, 229, .28) 1px, transparent 1px),
    #f5f7fc;
  background-size: 56px 56px;
  padding: 140px 0 100px;
}

.seo-hero__glow {
  position: absolute;
  top: 40px;
  right: 4%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(78, 130, 246, .18);
  filter: blur(72px);
  pointer-events: none;
}

.breadcrumbs {
  position: relative;
  margin-bottom: 52px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.breadcrumbs li:not(:last-child)::after {
  margin-inline-start: 8px;
  color: #aeb9ca;
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

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

.seo-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.seo-hero__copy h1 {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: clamp(52px, 5.5vw, 78px);
  line-height: .99;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.seo-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.seo-lead > span {
  display: block;
}

.seo-lead > span + span {
  margin-top: 4px;
}

.seo-hero__copy .hero__actions {
  margin-top: 32px;
}

.seo-hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .87);
  padding: 22px;
  box-shadow: 0 34px 80px rgba(32, 58, 109, .16);
  outline: 1px solid oklch(0 0 0 / .06);
}

.motion-ready .seo-hero__visual {
  animation: hero-product-in .92s var(--ease-spring) 160ms both;
}

.seo-visual__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.seo-visual__top > strong {
  font-size: 14px;
}

.seo-visual__top .status {
  min-height: 34px;
}

.seo-visual__focus {
  margin-top: 22px;
  border-radius: 20px;
  background: linear-gradient(145deg, #1d52c9, #2864e8);
  color: white;
  padding: 28px;
}

.seo-visual__focus small {
  color: #bfd5ff;
  font-size: 11px;
  font-weight: 750;
}

.seo-visual__focus > strong {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.seo-visual__trend {
  display: flex;
  height: 100px;
  align-items: end;
  gap: 10px;
  margin-top: 26px;
}

.seo-visual__trend span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: rgba(255, 255, 255, .22);
}

.seo-visual__trend span:nth-child(1) { height: 32%; }
.seo-visual__trend span:nth-child(2) { height: 47%; }
.seo-visual__trend span:nth-child(3) { height: 43%; }
.seo-visual__trend span:nth-child(4) { height: 71%; }
.seo-visual__trend span:nth-child(5) { height: 94%; background: white; }

.motion-ready .seo-visual__trend span {
  transform-origin: bottom;
  animation: seo-bar-in .62s var(--ease-spring) both;
}

.motion-ready .seo-visual__trend span:nth-child(1) { animation-delay: .62s; }
.motion-ready .seo-visual__trend span:nth-child(2) { animation-delay: .7s; }
.motion-ready .seo-visual__trend span:nth-child(3) { animation-delay: .78s; }
.motion-ready .seo-visual__trend span:nth-child(4) { animation-delay: .86s; }
.motion-ready .seo-visual__trend span:nth-child(5) { animation-delay: .94s; }

.seo-visual__rows {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.seo-visual__rows > div {
  display: grid;
  min-height: 58px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  background: #f6f8fc;
  padding: 10px 14px;
}

.motion-ready .seo-visual__rows > div {
  animation: dashboard-row-in .46s var(--ease-out) both;
}

.motion-ready .seo-visual__rows > div:nth-child(1) { animation-delay: 1.02s; }
.motion-ready .seo-visual__rows > div:nth-child(2) { animation-delay: 1.1s; }

.seo-visual__rows span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.seo-visual__rows strong {
  font-size: 13px;
}

.seo-visual__rows svg {
  width: 16px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.seo-benefits {
  background: white;
}

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

.seo-benefit-grid article,
.related-grid article {
  border-radius: 22px;
  background: #f7f9fd;
  padding: 30px;
  outline: 1px solid oklch(0 0 0 / .08);
}

.seo-benefit-grid article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.seo-benefit-grid h3,
.related-grid h3 {
  margin: 24px 0 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.seo-benefit-grid p,
.related-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.seo-workflow .section-heading > p:last-child {
  max-width: 560px;
}

.seo-related {
  background: white;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.related-grid article {
  position: relative;
  min-height: 280px;
}

.related-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 240px;
}

.related-grid h3 a {
  text-decoration: none;
}

.related-grid h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.motion-ready .seo-benefit-grid article[data-reveal]:hover,
.motion-ready .related-grid article[data-reveal]:hover {
  transform: translateY(-5px);
}

.pricing-page {
  background: #f5f7fc;
}

.pricing-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(rgba(190, 204, 229, .26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 204, 229, .26) 1px, transparent 1px),
    #f5f7fc;
  background-size: 56px 56px;
  padding: 140px 0 100px;
}

.pricing-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.pricing-hero__glow--one {
  top: 40px;
  left: 12%;
  width: 430px;
  height: 430px;
  background: rgba(83, 135, 250, .16);
}

.pricing-hero__glow--two {
  right: 8%;
  bottom: -160px;
  width: 520px;
  height: 520px;
  background: rgba(63, 112, 228, .17);
}

.pricing-hero__copy {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.pricing-hero__copy .eyebrow {
  justify-content: center;
}

.pricing-hero__copy h1 {
  margin: 24px 0 0;
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.pricing-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}

.pricing-plans-section {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: -72px;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(185, 198, 221, .68);
  border-radius: 26px;
  background: rgba(255, 255, 255, .96);
  padding: 30px;
  box-shadow: 0 22px 55px rgba(31, 55, 103, .1);
  transition:
    box-shadow .32s var(--ease-out),
    border-color .32s var(--ease-out);
}

.plan-card:hover {
  border-color: rgba(40, 100, 232, .34);
  box-shadow: 0 30px 70px rgba(31, 55, 103, .15);
}

.motion-ready .plan-card[data-reveal].is-visible:hover {
  transform: translateY(-6px);
}

.plan-card--featured {
  z-index: 2;
  margin: -10px;
  border-color: rgba(255, 255, 255, .28);
  background:
    radial-gradient(circle at 85% 6%, rgba(255, 255, 255, .2), transparent 27%),
    linear-gradient(150deg, #1749bc, #2864e8 66%, #3471ef);
  padding: 40px;
  color: white;
  box-shadow: 0 34px 80px rgba(28, 82, 200, .24);
}

.plan-card--featured:hover {
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 34px 80px rgba(28, 82, 200, .24);
}

.motion-ready .plan-card--featured[data-reveal].is-visible:hover {
  transform: translate3d(0, 0, 0);
}

.plan-card__badge-slot {
  display: flex;
  min-height: 28px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.plan-card__title-row {
  display: flex;
  min-width: 0;
  min-height: 32px;
  align-items: center;
}

.plan-card__title-row h3 {
  min-width: 0;
  margin: 0;
  font-size: 27px;
  letter-spacing: -.04em;
}

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-card__badge svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.plan-card__heading p {
  min-height: 76px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plan-card--featured .plan-card__heading p {
  color: rgba(255, 255, 255, .76);
}

.plan-card__price {
  display: flex;
  min-height: 82px;
  align-items: baseline;
  gap: 6px;
  margin: 28px 0 0;
}

.plan-card__price > span:first-child {
  align-self: flex-start;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 800;
}

.plan-card__price strong {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -.06em;
}

.plan-card__price > span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.plan-card--featured .plan-card__price > span:last-child {
  color: rgba(255, 255, 255, .72);
}

.plan-card__features {
  display: grid;
  gap: 15px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card__features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.plan-card__features a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.plan-card__features svg,
.pricing-rescan-list svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  padding: 4px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.plan-card--featured .plan-card__features svg {
  background: rgba(255, 255, 255, .16);
  stroke: white;
}

.plan-card__highlight {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  margin: -2px 0 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  background: rgba(255, 255, 255, .1);
  padding: 13px;
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.plan-card__highlight svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.pricing-billing-note {
  max-width: 680px;
  margin: 40px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
  text-align: center;
}

.pricing-rescan-section {
  background: white;
}

.pricing-rescan-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  gap: 72px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0, rgba(92, 147, 255, .26), transparent 30%),
    #10244d;
  padding: 64px;
  color: white;
  box-shadow: 0 32px 75px rgba(23, 51, 105, .2);
}

.pricing-rescan-panel h2 {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.pricing-rescan-panel__copy > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: #b9c8e4;
  font-size: 15px;
  line-height: 1.75;
  text-wrap: pretty;
}

.pricing-rescan-options h3 {
  margin: 0 0 16px;
  color: #c5d5f2;
  font-size: 13px;
  letter-spacing: .01em;
}

.pricing-rescan-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-rescan-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 13px;
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  padding: 20px;
}

.pricing-rescan-list li > span {
  min-width: 0;
}

.pricing-rescan-list strong,
.pricing-rescan-list small {
  display: block;
}

.pricing-rescan-list strong {
  font-size: 15px;
  line-height: 1.4;
}

.pricing-rescan-list small {
  margin-top: 6px;
  color: #b9c8e4;
  font-size: 12px;
  line-height: 1.55;
}

.pricing-rescan-list svg {
  background: rgba(255, 255, 255, .14);
  stroke: white;
}

.pricing-custom-section {
  background: white;
  padding-top: 0;
}

.pricing-custom-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  border: 1px solid rgba(190, 204, 229, .72);
  border-radius: 28px;
  background: #f5f7fc;
  padding: 48px 54px;
}

.pricing-custom-card h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}

.pricing-custom-card > div:first-child > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-custom-card__action {
  min-width: 220px;
  text-align: center;
}

.pricing-custom-card__action .button {
  width: 100%;
}

.pricing-custom-card__action p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.pricing-custom-card__action p a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pricing-faq {
  background: #f5f7fc;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.text-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.motion-ready [data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(.985);
  transition:
    opacity .78s var(--ease-out) var(--reveal-delay),
    transform .78s var(--ease-out) var(--reveal-delay);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-48px, 10px, 0) scale(.985);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(48px, 10px, 0) scale(.985);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.motion-ready .feature-card[data-reveal]:hover {
  transform: translateY(-5px);
}

.motion-ready .section-heading.is-visible .eyebrow svg,
.motion-ready .feature-card.is-visible .feature-icon {
  animation: reveal-icon-pop .55s var(--ease-spring) calc(var(--reveal-delay) + .28s) both;
}

.motion-ready .steps li.is-visible > span {
  animation: step-number-in .55s var(--ease-spring) calc(var(--reveal-delay) + .22s) both;
}

.motion-ready .signal-strip__grid > div.is-visible strong {
  animation: signal-title-in .58s var(--ease-out) calc(var(--reveal-delay) + .18s) both;
}

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

@keyframes hero-product-in {
  from {
    opacity: 0;
    transform: translate3d(44px, 18px, 0) scale(.975);
  }
}

@keyframes dashboard-item-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
}

@keyframes dashboard-row-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
}

@keyframes seo-bar-in {
  from {
    opacity: 0;
    transform: scaleY(.12);
  }
}

@keyframes chart-draw {
  from {
    stroke-dashoffset: 1;
  }
}

@keyframes chart-area-in {
  from {
    opacity: 0;
  }
}

@keyframes chart-point-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes reveal-icon-pop {
  from {
    opacity: 0;
    transform: scale(.7) rotate(-8deg);
  }
}

@keyframes step-number-in {
  from {
    opacity: 0;
    transform: translateX(-12px) scale(.8);
  }
}

@keyframes cta-glow-float {
  to {
    transform: translate3d(-34px, 22px, 0);
  }
}

@keyframes signal-title-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .plan-card__heading p {
    min-height: 0;
  }
}

@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .primary-navigation {
    display: none;
  }

  .pricing-rescan-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px;
  }

  .pricing-custom-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-custom-card__action {
    width: min(100%, 320px);
  }

  .hero {
    padding-top: 160px;
  }

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

  .hero__copy {
    max-width: 760px;
  }

  .seo-hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .seo-hero__copy {
    max-width: 800px;
  }

  .seo-hero__visual {
    max-width: 760px;
  }

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

  .footer-grid--expanded .copyright {
    grid-column: 1 / -1;
  }

  .hero h1 {
    max-width: 780px;
  }

  .product-shot {
    transform: none;
  }

  .workflow,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading--left {
    margin-bottom: 20px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    min-height: 56px;
    border-radius: 15px;
    padding-left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand__word {
    font-size: 18px;
  }

  .nav-shell .button {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .nav-actions {
    gap: 7px;
  }

  .locale-picker summary {
    min-height: 36px;
    padding-inline: 10px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .seo-hero {
    min-height: 0;
    padding: 116px 0 72px;
  }

  .breadcrumbs {
    margin-bottom: 36px;
  }

  .seo-hero__grid {
    gap: 40px;
  }

  .seo-hero__copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .seo-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .seo-hero__visual {
    border-radius: 22px;
    padding: 14px;
  }

  .seo-visual__focus {
    padding: 22px;
  }

  .seo-benefit-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    min-height: 0;
    padding: 116px 0 132px;
  }

  .pricing-hero__copy {
    text-align: left;
  }

  .pricing-hero__copy .eyebrow {
    justify-content: flex-start;
  }

  .pricing-hero__copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .pricing-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: -56px;
  }

  .plan-card {
    border-radius: 22px;
    padding: 26px;
  }

  .plan-card--featured {
    margin: -8px;
    padding: 34px;
  }

  .plan-card__heading p {
    max-width: 48ch;
  }

  .pricing-rescan-panel {
    gap: 34px;
    border-radius: 24px;
    padding: 34px 24px;
  }

  .pricing-rescan-panel h2 {
    font-size: 40px;
  }

  .pricing-custom-card {
    gap: 30px;
    border-radius: 22px;
    padding: 34px 24px;
  }

  .pricing-custom-card__action {
    width: 100%;
  }

  .hero__grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"] {
    transform: translate3d(0, 28px, 0) scale(.985);
  }

  .product-shot__body {
    padding: 13px;
  }

  .product-shot__top {
    min-height: 52px;
    padding-inline: 14px;
  }

  .mini-brand {
    transform: scale(.65);
  }

  .status {
    display: none;
  }

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

  .summary-card {
    min-height: 74px;
    padding: 10px;
  }

  .summary-card strong {
    font-size: 18px;
  }

  .keyword-row {
    grid-template-columns: 1fr 55px 63px;
    padding-inline: 10px;
  }

  .signal-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .signal-strip__grid > div {
    min-height: 90px;
    border-bottom: 1px solid #e5eaf2;
    padding: 18px;
  }

  .signal-strip__grid > div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .signal-strip__grid > div:nth-child(even) {
    padding-right: 0;
  }

  .signal-strip__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading > p:last-child {
    margin-left: 0;
    font-size: 15px;
  }

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

  .feature-card,
  .feature-card--large {
    grid-row: auto;
    min-height: 0;
  }

  .mini-chart {
    margin-top: 32px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
  }

  .cta-section {
    padding: 8px 0 56px;
  }

  .cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    align-content: start;
    align-items: start;
    justify-content: stretch;
    gap: 30px;
    border-radius: 24px;
    padding: 32px 22px 22px;
  }

  .cta-card > * {
    min-width: 0;
  }

  .cta-card h2 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(32px, 10.2vw, 40px);
    line-height: 1.02;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .cta-card p:last-child {
    max-width: 32ch;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .cta-card .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

  .cta-card__action {
    width: 100%;
  }

  .cta-card__glow {
    top: -150px;
    right: -130px;
    width: 340px;
    height: 340px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-grid--expanded .copyright {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    gap: 10px;
    padding-right: 8px;
  }

  .brand__word {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions > .button {
    display: none;
  }

  .locale-picker summary > span {
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pricing-hero__copy h1 {
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .plan-card__price strong {
    font-size: 50px;
  }

  .pricing-rescan-panel h2,
  .pricing-custom-card h2 {
    font-size: 36px;
  }
}

html:lang(zh-Hans) {
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", ui-sans-serif, sans-serif;
}

html:lang(zh-Hans) .hero h1,
html:lang(zh-Hans) .section-heading h2,
html:lang(zh-Hans) .cta-card h2,
html:lang(zh-Hans) .pricing-hero h1,
html:lang(zh-Hans) .pricing-rescan-panel h2,
html:lang(zh-Hans) .pricing-custom-card h2 {
  letter-spacing: -.035em;
}

@media (prefers-reduced-motion: reduce) {
  .cta-card__glow {
    animation: none;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
