:root {
  --blue: #075bff;
  --blue-soft: #eaf1ff;
  --green: #19a64a;
  --green-soft: #e9f8ef;
  --orange: #ff8b35;
  --ink: #06122f;
  --muted: #596476;
  --line: #dfe6ef;
  --page: #eef3f9;
  --panel: #ffffff;
}

@font-face {
  font-display: swap;
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 100 900;
  src: url("./fonts/geist/Geist-Variable.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  src: url("./fonts/geist/GeistMono-Variable.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Geist Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(7, 91, 255, 0.35);
  outline-offset: 3px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  padding: 22px 7vw;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(6, 18, 47, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand-logo-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.brand-logo-mark img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: var(--blue);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name-link {
  color: var(--green);
}

.site-footer .brand-name-word {
  color: #fff;
}

.site-footer .brand-name-link {
  color: #35d36e;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(6, 18, 47, 0.1);
}

.button.blue {
  background: var(--blue);
  color: #fff;
}

.button.green {
  background: var(--green);
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: calc(100vh - 92px);
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(25, 166, 74, 0.06) 42%, #fff 72%),
    #fff;
  padding: 56px 7vw 84px;
}

.hero::before {
  position: absolute;
  inset: 9% auto auto 6%;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7, 91, 255, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 3vw;
  bottom: 8%;
  width: 30vw;
  height: 30vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25, 166, 74, 0.14), transparent 70%);
  content: "";
  pointer-events: none;
}

.hero::before,
.hero::after {
  display: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.hero p,
.section p,
.card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.eyebrow {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions,
.card-actions,
.pill-row,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-strip {
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.market-card {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 243, 249, 0.92);
  padding: 24px;
  box-shadow: 0 28px 80px rgba(6, 18, 47, 0.12);
}

.market-card-motion {
  animation: sfl-float 7s ease-in-out infinite;
}

.motion-orbit {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(7, 91, 255, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.motion-orbit::after {
  position: absolute;
  top: -2px;
  left: 10%;
  width: 24%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  content: "";
  animation: sfl-scan 4.6s ease-in-out infinite;
}

.floating-metric {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 78px;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 16px 34px rgba(6, 18, 47, 0.12);
  text-align: center;
}

.floating-metric strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.floating-metric span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-one {
  top: -22px;
  right: 12%;
  animation: sfl-float-small 5.8s ease-in-out infinite;
}

.metric-two {
  right: -18px;
  bottom: 28%;
  animation: sfl-float-small 6.4s ease-in-out 0.3s infinite;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.card-head strong {
  color: var(--blue);
}

.mock-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mock-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.5fr 0.5fr 0.7fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
  font-weight: 800;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.mock-head {
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.mock-row:last-child {
  border-bottom: 0;
}

.mock-row.is-active:not(.mock-head) {
  position: relative;
  z-index: 1;
  background: #f8fbff;
  box-shadow: inset 4px 0 0 var(--green), 0 14px 24px rgba(6, 18, 47, 0.08);
  transform: translateX(4px);
}

.hero-product-panel {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 243, 249, 0.94);
  padding: 18px;
  box-shadow: 0 28px 80px rgba(6, 18, 47, 0.12);
  animation: sfl-float 7s ease-in-out infinite;
}

.hero-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.hero-product-head strong {
  color: var(--blue);
}

.hero-screenshot-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-screenshot-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.86));
  content: "";
  pointer-events: none;
}

.hero-screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1440 / 1040;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-screenshot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-screenshot-metrics span {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hero-screenshot-metrics strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-screenshot-metrics span.is-active {
  border-color: #8fb5ff;
  box-shadow: 0 16px 34px rgba(7, 91, 255, 0.13);
  transform: translateY(-2px);
}

.section {
  padding: 72px 7vw;
}

.section.white {
  background: #fff;
}

.search-intent-section {
  background: var(--page);
}

.intent-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.intent-answer-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.intent-answer-card:hover {
  border-color: #bfd3ff;
  box-shadow: 0 24px 62px rgba(6, 18, 47, 0.12);
  transform: translateY(-3px);
}

.intent-answer-card span {
  justify-self: start;
  border-radius: 999px;
  background: var(--blue-soft);
  padding: 7px 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intent-answer-card.warning span {
  background: #fff2e8;
  color: var(--orange);
}

.intent-answer-card.success span {
  background: var(--green-soft);
  color: var(--green);
}

.intent-answer-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.intent-answer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-lead {
  max-width: 780px;
  margin: 14px 0 0;
}

.section-kicker-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.section-kicker-row h2 {
  margin: 0;
}

.section h2 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
}

.product-visuals {
  background: var(--page);
}

.role-proof-section {
  background: var(--page);
}

.seo-path-map-section {
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.07), rgba(25, 166, 74, 0.07) 52%, rgba(255, 255, 255, 0) 76%),
    #fff;
}

.service-chooser-section {
  background:
    linear-gradient(135deg, rgba(25, 166, 74, 0.08), rgba(255, 255, 255, 0) 46%),
    var(--page);
}

.service-chooser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.service-chooser-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(6, 18, 47, 0.06);
}

.service-chooser-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}

.service-chooser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.service-chooser-card .button {
  align-self: end;
  justify-self: start;
}

.service-chooser-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.service-chooser-badge.blue {
  background: #eaf1ff;
  color: var(--blue);
}

.service-chooser-badge.green {
  background: #ecfdf3;
  color: var(--green);
}

.service-chooser-badge.orange {
  background: #fff7ed;
  color: var(--orange);
}

.seo-path-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.seo-path-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
}

.seo-path-card.customer {
  border-color: #bfd3ff;
}

.seo-path-card.admin {
  border-color: #ddd6fe;
}

.seo-path-card.publisher {
  border-color: #bbf7d0;
}

.seo-path-card span {
  justify-self: start;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}

.seo-path-card.admin span {
  background: #f5f3ff;
  color: #7c3aed;
}

.seo-path-card.publisher span {
  background: var(--green-soft);
  color: var(--green);
}

.seo-path-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.seo-path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.seo-path-card nav {
  display: grid;
  gap: 9px;
  margin-top: 6px;
  border: 1px solid #d6e3f7;
  border-radius: 8px;
  background: #f7fbff;
  padding: 16px;
}

.seo-path-card nav a {
  position: relative;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px 11px 30px;
  font-size: 14px;
  font-weight: 850;
}

.seo-path-card nav a::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.seo-path-card.admin nav a::before {
  background: #7c3aed;
}

.seo-path-card.publisher nav a::before {
  background: var(--green);
}

.seo-path-card nav a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

.seo-fulfillment-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.06);
}

.seo-fulfillment-strip article {
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 8px;
  background: #f7fbff;
  padding: 16px;
}

.seo-fulfillment-strip article:nth-child(2) {
  background: #f2fbf5;
}

.seo-fulfillment-strip article:nth-child(3) {
  background: #f7f4ff;
}

.seo-fulfillment-strip article:nth-child(4) {
  background: #fff7ed;
}

.seo-fulfillment-strip article:nth-child(5) {
  background: #ecfdf3;
}

.seo-fulfillment-strip span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.seo-fulfillment-strip strong {
  font-size: 16px;
  line-height: 1.2;
}

.seo-fulfillment-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.role-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.role-proof-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.role-proof-card:hover {
  border-color: #bfd3ff;
  box-shadow: 0 24px 62px rgba(6, 18, 47, 0.12);
  transform: translateY(-3px);
}

.role-proof-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.role-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.role-tag {
  justify-self: start;
  border-radius: 999px;
  background: #eef5ff;
  padding: 7px 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.role-proof-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  border: 1px solid #d6e3f7;
  border-radius: 8px;
  background: #f7fbff;
  padding: 16px;
  list-style: none;
}

.role-proof-card li {
  position: relative;
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px 10px 28px;
  color: #06122f;
  font-size: 14px;
  font-weight: 850;
}

.role-proof-card li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.role-proof-boundaries {
  margin-top: 18px;
}

.public-proof-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 166, 74, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(255, 255, 255, 0) 58%),
    #f7fbff;
  padding-top: 112px;
}

.public-proof-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.45fr);
  gap: 36px;
  align-items: end;
}

.public-proof-copy {
  display: grid;
  gap: 14px;
}

.public-proof-copy h2 {
  margin-bottom: 0;
}

.public-proof-summary {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
}

.public-proof-summary span {
  position: relative;
  border-radius: 8px;
  background: #f7fbff;
  padding: 12px 12px 12px 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.public-proof-summary span::before {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.public-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.public-proof-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.public-proof-card:hover {
  border-color: #bfd3ff;
  box-shadow: 0 26px 72px rgba(6, 18, 47, 0.13);
  transform: translateY(-4px);
}

.public-proof-card.customer {
  border-top: 5px solid var(--blue);
}

.public-proof-card.admin {
  border-top: 5px solid #6e4ff6;
}

.public-proof-card.publisher {
  border-top: 5px solid var(--green);
}

.public-proof-card h3 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.08;
}

.public-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.public-proof-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  border: 1px solid #d6e3f7;
  border-radius: 8px;
  background: #f7fbff;
  padding: 14px;
  list-style: none;
}

.public-proof-card li {
  position: relative;
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px 10px 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.public-proof-card li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.public-proof-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 22px 62px rgba(6, 18, 47, 0.09);
}

.public-proof-workspace > * {
  align-self: start;
}

.public-proof-workspace-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.public-proof-workspace-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.public-proof-workspace-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.public-boundary-note {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  background: #fff7ed;
  padding: 16px;
}

.public-boundary-note strong {
  color: var(--orange);
  font-size: 14px;
}

.public-boundary-note p {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.public-proof-mini-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  align-self: start;
  height: fit-content;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.public-proof-mini-screens article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.public-proof-mini-screens article::before {
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.public-proof-mini-screens article:nth-child(2)::before {
  background: #6e4ff6;
}

.public-proof-mini-screens article:nth-child(3)::before {
  background: var(--green);
}

.public-proof-mini-screens span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.public-proof-mini-screens strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}

.public-proof-mini-screens p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.platform-trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: 44px;
  align-items: center;
  background: #fff;
}

.platform-trust-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.platform-trust-copy h2 {
  margin-bottom: 0;
}

.workspace-stack {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  padding: 22px;
  box-shadow: 0 24px 62px rgba(6, 18, 47, 0.1);
}

.workspace-stack article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.workspace-stack strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.workspace-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.workspace-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
}

.workspace-badge.blue {
  background: var(--blue);
}

.workspace-badge.purple {
  background: #6e4ff6;
}

.workspace-badge.orange {
  background: var(--orange);
}

.motion-product-loop-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(25, 166, 74, 0.06) 48%, rgba(255, 255, 255, 0) 78%),
    var(--page);
}

.motion-product-loop-section .section-lead {
  margin-top: 0;
}

.motion-product-loop {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  box-shadow: 0 26px 74px rgba(6, 18, 47, 0.10);
}

.motion-loop-steps {
  display: grid;
  gap: 12px;
  border: 1px solid #d8e5f5;
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px;
}

.motion-loop-step {
  display: grid;
  gap: 7px;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.motion-loop-step span,
.motion-loop-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.motion-loop-step strong {
  font-size: 18px;
  line-height: 1.16;
}

.motion-loop-step p,
.motion-loop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.motion-loop-step.is-active {
  border-color: #8fb5ff;
  background: #eef5ff;
  box-shadow: 0 18px 38px rgba(7, 91, 255, 0.14);
  transform: translateX(4px);
}

.motion-loop-screen {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 8%, rgba(25, 166, 74, 0.16), transparent 26%),
    #eef4ff;
  padding: 22px;
}

.motion-loop-screen::after {
  position: absolute;
  top: 0;
  left: -28%;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  content: "";
  pointer-events: none;
  animation: sfl-screen-scan 4.8s ease-in-out infinite;
}

.motion-loop-toolbar,
.motion-loop-metrics,
.motion-loop-card-grid,
.motion-loop-proof-strip {
  position: relative;
  z-index: 1;
}

.motion-loop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
}

.motion-loop-toolbar strong {
  font-size: 18px;
}

.motion-loop-toolbar span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.motion-loop-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.motion-loop-metrics article {
  display: grid;
  gap: 8px;
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.motion-loop-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.motion-loop-metrics strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.motion-loop-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.motion-loop-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 202px;
  border: 1px solid #d8e5f5;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.motion-loop-card strong {
  font-size: 21px;
  line-height: 1.12;
}

.motion-loop-card.is-active {
  border-color: #8fb5ff;
  background: #f8fbff;
  box-shadow: 0 20px 48px rgba(7, 91, 255, 0.16);
  transform: translateY(-5px);
}

.motion-loop-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.motion-loop-proof-strip span {
  border: 1px solid #b8ebc8;
  border-radius: 999px;
  background: #f0fdf4;
  padding: 9px 12px;
  color: #14532d;
  font-size: 12px;
  font-weight: 900;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.visual-card {
  display: grid;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.visual-card:hover {
  border-color: #bfd3ff;
  box-shadow: 0 24px 62px rgba(6, 18, 47, 0.12);
  transform: translateY(-3px);
}

.visual-card.large {
  grid-row: span 2;
}

.visual-card.support {
  grid-column: span 2;
}

.visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.visual-card.large img {
  aspect-ratio: 1.25 / 1;
}

.visual-card div {
  padding: 22px;
}

.visual-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.screenshot-showcase {
  overflow: hidden;
  background: #fff;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.82fr);
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 34px;
}

.proof-strip-screenshots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-strip-screenshots span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  background: #f7fbff;
  color: #102045;
  font-size: 13px;
  font-weight: 850;
}

.screenshot-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.screenshot-card::before {
  position: absolute;
  top: 0;
  left: -42%;
  z-index: 2;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  pointer-events: none;
}

.screenshot-card:hover {
  border-color: #bfd3ff;
  box-shadow: 0 26px 72px rgba(6, 18, 47, 0.14);
  transform: translateY(-4px);
}

.screenshot-card:hover::before {
  animation: sfl-card-shine 1.2s ease;
}

.screenshot-card-featured {
  grid-row: span 3;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.screenshot-card-featured img {
  aspect-ratio: auto;
  height: auto;
  object-position: center top;
}

.screenshot-card div {
  padding: 22px;
}

.screenshot-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screenshot-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.screenshot-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid > * {
  min-width: 0;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(6, 18, 47, 0.03);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.ops-card:hover {
  border-color: #bfd3ff;
  box-shadow: 0 18px 42px rgba(6, 18, 47, 0.1);
  transform: translateY(-3px);
}

.card h3 {
  margin-top: 0;
  font-size: 24px;
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.card-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.card-icon.orange {
  background: #fff2e8;
  color: var(--orange);
}

.package-pricing-section {
  background: var(--page);
}

.package-card-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 18px;
  min-height: 620px;
}

.package-card.featured {
  border-color: #8fb5ff;
  box-shadow: 0 18px 50px rgba(7, 91, 255, 0.12);
}

.package-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--blue-soft);
  padding: 7px 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.featured .package-tag {
  background: var(--green-soft);
  color: var(--green);
}

.package-card h3 {
  margin: 0;
}

.package-card p {
  margin: 0;
}

.package-meta {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 1px solid #d6e3f7;
  border-radius: 8px;
  background: #f7fbff;
  padding: 14px;
}

.package-meta div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.package-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.38;
}

.package-highlights {
  align-content: start;
}

.package-card .price {
  align-self: end;
  margin-top: 2px;
}

.package-card .button {
  width: fit-content;
}

.package-includes {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.package-includes h3 {
  margin: 4px 0 0;
}

.package-includes-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.package-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid #ffd9a8;
  border-radius: 8px;
  background: #fff7ed;
  padding: 14px 16px;
  color: #713f12;
  font-size: 14px;
  line-height: 1.5;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process article {
  border-right: 1px solid var(--line);
  padding: 28px;
  transition: background 200ms ease, transform 200ms ease;
}

.process article:last-child {
  border-right: 0;
}

.process article:hover {
  background: #f8fbff;
  transform: translateY(-2px);
}

.process strong {
  color: var(--blue);
  font-size: 22px;
}

.motion-ops {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(7, 91, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(25, 166, 74, 0.1), transparent 30%),
    #eef3f9;
}

.motion-ops-copy {
  display: grid;
  max-width: 880px;
}

.ops-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.ops-rail {
  position: absolute;
  top: 42px;
  right: 10%;
  left: 10%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #d7e3ef;
}

.ops-rail span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-100%);
  animation: sfl-route 4.4s ease-in-out infinite;
}

.ops-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ops-card.is-active {
  border-color: #8fb5ff;
  box-shadow: 0 24px 68px rgba(7, 91, 255, 0.18);
  transform: translateY(-4px);
}

.ops-card.is-active .ops-step {
  background: var(--blue);
  color: #fff;
}

.ops-step {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid #bfd3ff;
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 91, 255, 0.12);
}

.ops-card strong {
  font-size: 22px;
}

.ops-card p {
  margin-bottom: 0;
}

.sfl-motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.2, 0.82, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

.sfl-motion-ready .seo-path-map-section [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes sfl-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes sfl-float-small {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@keyframes sfl-scan {
  0% {
    left: 6%;
    opacity: 0;
  }
  15%,
  80% {
    opacity: 1;
  }
  100% {
    left: 70%;
    opacity: 0;
  }
}

@keyframes sfl-route {
  0% {
    transform: translateX(-100%);
  }
  48%,
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes sfl-card-shine {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(340%);
  }
}

@keyframes sfl-screen-scan {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  74% {
    opacity: 1;
  }
  100% {
    transform: translateX(460%);
    opacity: 0;
  }
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: center;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 36px;
  align-items: center;
}

.service-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 720px;
}

.service-visual-card {
  position: relative;
  margin: 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  box-shadow: 0 24px 62px rgba(6, 18, 47, 0.1);
  padding: 18px;
}

.service-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fbff;
}

.service-metric {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 18px 42px rgba(6, 18, 47, 0.14);
  text-align: center;
}

.service-metric strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.service-metric small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-metric-top {
  top: -26px;
  right: 8%;
  animation: sfl-float-small 6s ease-in-out infinite;
}

.service-metric-bottom {
  bottom: -22px;
  left: 9%;
  animation: sfl-float-small 6.4s ease-in-out 0.25s infinite;
}

.service-decision-section {
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.07), rgba(255, 255, 255, 0) 48%),
    var(--page);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.decision-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(6, 18, 47, 0.08);
}

.decision-card span {
  justify-self: start;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.decision-card.warning span {
  background: #fff2e8;
  color: var(--orange);
}

.decision-card.inputs span {
  background: var(--green-soft);
  color: var(--green);
}

.decision-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.08;
}

.decision-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.role-control-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(25, 166, 74, 0.06) 56%, rgba(255, 255, 255, 0) 82%),
    #fff;
}

.role-control-section .section-kicker-row {
  align-items: flex-start;
}

.role-control-section .section-kicker-row > div {
  display: grid;
  max-width: 900px;
  gap: 16px;
}

.role-control-section h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.12;
}

.role-control-section .section-lead {
  max-width: 760px;
  margin: 0;
}

.role-control-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.role-control-grid::before {
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(7, 91, 255, 0.1), rgba(7, 91, 255, 0.7), rgba(25, 166, 74, 0.72), rgba(25, 166, 74, 0.1));
  content: "";
}

.role-control-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 24px;
  box-shadow: 0 18px 52px rgba(6, 18, 47, 0.08);
}

.role-control-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.role-control-card.admin span {
  background: #f2ecff;
  color: #6a3df2;
}

.role-control-card.publisher span {
  background: var(--green-soft);
  color: var(--green);
}

.role-control-card h3 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.role-control-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.role-control-card ul {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.role-control-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.role-control-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.role-control-boundary {
  margin: 22px 0 0;
  border: 1px solid #ffe0bd;
  border-radius: 8px;
  background: #fff8ed;
  color: #7a3d00;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.55;
}

.service-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
}

.service-proof-copy {
  display: grid;
  gap: 18px;
}

.service-proof-copy h2 {
  margin: 0;
  max-width: 760px;
}

.service-proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.proof-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.proof-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.service-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.service-proof-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(29, 174, 84, 0.05)),
    #fff;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(6, 18, 47, 0.11);
}

.service-proof-shot::before {
  display: block;
  width: 64px;
  height: 7px;
  margin: 0 0 12px 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.service-proof-shot img {
  display: block;
  width: 100%;
  height: clamp(420px, 38vw, 620px);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(215, 227, 241, 0.9);
  border-radius: 10px;
  object-fit: cover;
  object-position: top left;
}

.service-proof-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.internal-link-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
  background: #fff;
}

.internal-link-section h2 {
  margin-top: 0;
}

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

.internal-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: inherit;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.internal-link-grid a:hover {
  border-color: #bfd3ff;
  box-shadow: 0 18px 42px rgba(6, 18, 47, 0.1);
  transform: translateY(-2px);
}

.internal-link-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.internal-link-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cta-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.cta-card strong {
  display: block;
  font-size: 24px;
}

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

.faq-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.faq-grid strong {
  font-size: 18px;
}

.price {
  color: var(--green);
  font-size: 36px;
  font-weight: 900;
}

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

.check-list li::before {
  content: "OK";
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  place-items: center;
  border-radius: 999px;
  background: #e9f8ef;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.contact-box {
  display: grid;
  gap: 14px;
}

.contact-box h2,
.support-direct-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.support-note {
  margin-top: -4px;
}

.support-direct-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.support-direct-card .button {
  justify-self: start;
}

.support-route-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.support-route-list a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.support-route-list strong {
  color: var(--ink);
  font-size: 16px;
}

.support-route-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
}

.legal-page h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.legal-page a {
  color: var(--blue);
  font-weight: 800;
}

.legal-updated {
  margin-top: 0;
}

.field {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
}

textarea.field {
  min-height: 120px;
  padding-top: 12px;
}

.site-footer {
  display: grid;
  gap: 0;
  scroll-margin-top: 110px;
  background: #071633;
  color: #fff;
  padding: 56px 7vw 28px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 8px;
  background: var(--blue);
  padding: 38px 42px;
}

.footer-cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.footer-cta p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #dce8ff;
  font-size: 16px;
  line-height: 1.55;
}

.footer-cta .eyebrow {
  margin: 0 0 10px;
  color: #dce8ff;
}

.footer-cta-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.button.footer-outline {
  border: 1px solid #bfd3ff;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 48px;
  padding: 56px 0 42px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand-link {
  color: #fff;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  color: #b8c6dd;
  font-size: 15px;
  line-height: 1.65;
}

.footer-email {
  color: #fff;
  font-weight: 900;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
}

.footer-column a {
  color: #b8c6dd;
  font-size: 15px;
  line-height: 1.35;
}

.footer-column a:hover,
.footer-email:hover {
  color: #fff;
}

.footer-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0 32px;
}

.footer-assurance article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0d234d;
  padding: 18px;
}

.footer-assurance span {
  color: #8fb2ff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-assurance strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.footer-assurance p {
  margin: 0;
  color: #b8c6dd;
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: #7f8da3;
  font-size: 13px;
}

.site-footer-slim {
  padding-top: 44px;
}

.footer-cta-slim {
  position: relative;
  overflow: hidden;
  padding: 32px 36px;
}

.footer-cta-slim::after {
  position: absolute;
  top: 0;
  left: -24%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  content: "";
  transform: skewX(-18deg);
  animation: sfl-footer-sweep 7s ease-in-out infinite;
}

.footer-cta-slim h2 {
  max-width: 760px;
}

.footer-main-slim {
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.72fr));
  padding: 42px 0 34px;
}

.footer-assurance-slim {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 0 28px;
}

.footer-assurance-slim article {
  min-height: 118px;
}

@keyframes sfl-footer-sweep {
  0% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  18%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(520%) skewX(-18deg);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-nav,
  .hero-actions,
  .footer-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
    gap: 18px;
  }

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

  .package-meta div,
  .package-includes {
    grid-template-columns: 1fr;
  }

  .package-includes-list {
    grid-template-columns: 1fr;
  }

  .brand-logo-mark,
  .brand-logo-mark img {
    width: 40px;
    height: 40px;
  }

  .hero,
  .grid.three,
  .grid.two,
  .grid.four,
  .service-chooser-grid,
  .seo-path-card-grid,
  .seo-fulfillment-strip,
  .hero-screenshot-metrics,
  .intent-answer-grid,
  .decision-grid,
  .role-control-grid,
  .public-proof-header,
  .public-proof-grid,
  .public-proof-workspace,
  .public-proof-mini-screens,
  .service-proof-section,
  .internal-link-section,
  .internal-link-grid,
  .role-proof-grid,
  .visual-grid,
  .screenshot-grid,
  .ops-stage,
  .motion-product-loop,
  .motion-loop-metrics,
  .motion-loop-card-grid,
  .process,
  .service-hero,
  .platform-trust-section,
  .split-cta,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-product-panel {
    animation: none;
  }

  .hero-screenshot-card img {
    height: auto;
  }

  .mock-row {
    grid-template-columns: 1fr;
  }

  .floating-metric,
  .ops-rail {
    display: none;
  }

  .visual-card.large,
  .visual-card.support,
  .screenshot-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .section-kicker-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .role-proof-card {
    min-height: auto;
    padding: 22px;
  }

  .proof-strip-screenshots {
    gap: 8px;
  }

  .proof-strip-screenshots span {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
  }

  .service-proof-copy p {
    font-size: 16px;
  }

  .service-proof-shot img {
    height: 460px;
    aspect-ratio: 4 / 3;
  }

  .service-proof-actions .button {
    width: 100%;
    justify-content: center;
  }

  .role-control-grid::before {
    display: none;
  }

  .role-control-section h2 {
    font-size: 31px;
    line-height: 1.16;
  }

  .role-control-section .section-lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .role-control-card {
    min-height: auto;
  }

  .sfl-motion-ready [data-reveal],
  .sfl-motion-ready [data-reveal="slide-left"] {
    opacity: 1;
    transform: none;
  }

  .process article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding: 36px 6vw 24px;
  }

  .footer-cta {
    padding: 28px;
  }

  .footer-cta-slim {
    padding: 26px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0 30px;
  }

  .footer-assurance {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .workspace-stack {
    padding: 16px;
  }

  .workspace-stack article {
    grid-template-columns: 1fr;
  }

  .motion-product-loop {
    padding: 12px;
  }

  .motion-loop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .motion-loop-step {
    transform: none;
  }

  .motion-loop-step.is-active {
    transform: none;
  }

  .motion-loop-card {
    min-height: auto;
  }

  .public-proof-mini-screens article {
    min-height: auto;
  }
}

.hero-customer .hero-copy {
  max-width: 760px;
}

.customer-preview-panel {
  min-height: auto;
}

.customer-trust-strip span {
  background: #fff;
}

.customer-motion-preview {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  overflow: hidden;
  min-height: 430px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: #f7fbff;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid #dbe7fb;
  background: #fff;
}

.preview-logo-dot {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 24px rgba(0, 82, 255, 0.16);
}

.preview-sidebar strong {
  font-size: 15px;
  line-height: 1.15;
}

.preview-sidebar em {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.preview-sidebar b {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  color: #4b5a73;
  font-size: 12px;
}

.preview-sidebar b.is-active {
  background: #eaf2ff;
  color: var(--blue);
}

.preview-stage {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.preview-toolbar,
.preview-tabs,
.preview-panel {
  border: 1px solid #d7e4f7;
  border-radius: 8px;
  background: #fff;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.preview-toolbar span {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.preview-toolbar strong {
  color: var(--green);
}

.preview-tabs {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.preview-tabs span {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  color: #405066;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.preview-tabs span.is-active {
  background: #eaf2ff;
  color: var(--blue);
}

.preview-panels {
  position: relative;
  min-height: 210px;
}

.preview-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: sfl-preview-cycle 9s infinite;
}

.preview-panel-two {
  animation-delay: 3s;
}

.preview-panel-three {
  animation-delay: 6s;
}

.preview-panel span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eafaf0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.preview-panel strong {
  font-size: 30px;
  line-height: 1.1;
}

.preview-panel p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.customer-buy-grid .service-chooser-card {
  min-height: 430px;
}

.customer-process article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.customer-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: #fff;
}

.customer-flow-steps article {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid #dbe7fb;
}

.customer-flow-steps article:last-child {
  border-right: 0;
}

.customer-flow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.customer-flow-steps strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.customer-flow-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.customer-flow-preview article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 18, 47, 0.08);
}

.customer-flow-preview img {
  display: block;
  width: 100%;
  height: clamp(220px, 22vw, 330px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.customer-flow-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: clamp(220px, 22vw, 330px);
  margin: 18px 22px 0;
  padding: 18px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff, #f1fff7);
}

.customer-flow-mock-marketplace div {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 58px 92px 66px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: #fff;
}

.customer-flow-mock b,
.customer-flow-mock strong {
  color: var(--ink);
  font-style: normal;
}

.customer-flow-mock em {
  color: #4b5a73;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.customer-flow-mock-marketplace strong {
  color: var(--green);
  font-size: 16px;
  text-align: right;
}

.customer-flow-mock-brief label {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.customer-flow-mock-brief label b {
  padding: 3px 7px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 10px;
}

.customer-flow-mock-brief div,
.customer-flow-mock-brief p {
  margin: 0;
  padding: 12px;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: #fff;
  color: #405066;
  font-size: 13px;
  line-height: 1.35;
}

.customer-flow-preview article > span {
  display: inline-flex;
  margin: 22px 22px 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-flow-preview strong {
  display: block;
  padding: 14px 22px 0;
  font-size: 22px;
  line-height: 1.2;
}

.customer-flow-preview p {
  margin: 10px 0 0;
  padding: 0 22px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.customer-flow-status-card {
  display: flex;
  flex-direction: column;
}

.order-status-preview {
  margin: 22px 22px 0;
  padding: 22px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff, #f1fff7);
}

.order-status-preview b,
.order-status-preview strong,
.order-status-preview i {
  display: block;
}

.order-status-preview b {
  color: var(--blue);
  font-size: 13px;
}

.order-status-preview em {
  display: inline-flex;
  margin: 12px 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff4e7;
  color: #a44d00;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.order-status-preview strong {
  font-size: 24px;
}

.order-status-preview p {
  padding: 0;
}

.order-status-preview i {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.customer-boundary-panel {
  align-items: stretch;
}

.customer-support-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customer-faq-head {
  align-items: stretch;
  margin-bottom: 34px;
}

.customer-faq-head .section-lead {
  max-width: 820px;
}

.customer-faq-head > .button {
  align-self: flex-start;
}

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

.backlinks-customer-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  background:
    radial-gradient(circle at 84% 20%, rgba(25, 166, 74, 0.1), transparent 32%),
    linear-gradient(135deg, #f8fbff, #ffffff 56%);
}

.backlinks-customer-hero .hero-actions {
  margin-top: 28px;
}

.backlinks-hero-preview {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(25, 166, 74, 0.06)),
    #fff;
  padding: 18px;
  box-shadow: 0 30px 72px rgba(6, 18, 47, 0.12);
}

.backlinks-hero-preview::after {
  position: absolute;
  top: 104px;
  left: -20%;
  width: 42%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 91, 255, 0), rgba(7, 91, 255, 0.75), rgba(25, 166, 74, 0));
  content: "";
  animation: sfl-backlinks-scan 5.6s ease-in-out infinite;
}

.preview-shell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #dbe7fb;
  padding-bottom: 14px;
}

.preview-shell-header span,
.preview-shell-header strong {
  font-size: 13px;
  font-weight: 900;
}

.preview-shell-header span {
  color: #405066;
}

.preview-shell-header strong {
  color: var(--blue);
}

.backlinks-filter-row,
.backlinks-preview-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.backlinks-filter-row span,
.backlinks-preview-note span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.backlinks-filter-row span {
  border: 1px solid #dbe7fb;
  background: #fff;
  color: var(--ink);
}

.backlinks-preview-note span {
  background: var(--green-soft);
  color: var(--green);
}

.backlinks-table-preview {
  display: grid;
  gap: 10px;
}

.backlinks-table-preview article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px 104px 72px;
  align-items: center;
  gap: 12px;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px;
  box-shadow: 0 12px 32px rgba(6, 18, 47, 0.05);
}

.backlinks-table-preview article:nth-child(2) {
  animation: sfl-row-pulse 5.6s ease-in-out 1.2s infinite;
}

.backlinks-table-preview strong,
.backlinks-table-preview small {
  display: block;
}

.backlinks-table-preview strong {
  color: var(--ink);
  font-size: 15px;
}

.backlinks-table-preview small,
.backlinks-table-preview span {
  color: #52647d;
  font-size: 12px;
  font-weight: 800;
}

.backlinks-table-preview b {
  color: var(--green);
  font-size: 16px;
  text-align: right;
}

.backlinks-trust-section {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #fff;
}

.backlinks-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 18, 47, 0.06);
}

.backlinks-trust-strip article {
  min-height: 128px;
  border-right: 1px solid #dbe7fb;
  padding: 22px;
}

.backlinks-trust-strip article:last-child {
  border-right: 0;
}

.backlinks-trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.backlinks-trust-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.backlinks-compare-grid .decision-card {
  min-height: 280px;
}

.backlinks-flow-section {
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.07), rgba(25, 166, 74, 0.05) 60%, rgba(255, 255, 255, 0) 86%),
    #fff;
}

.backlinks-flow-preview .customer-flow-mock,
.backlinks-flow-preview .order-status-preview {
  min-height: 252px;
}

.backlinks-route-section .section-lead {
  max-width: 560px;
}

.campaign-customer-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  background:
    radial-gradient(circle at 86% 18%, rgba(7, 91, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8fbff 58%);
}

.campaign-customer-hero .hero-actions {
  margin-top: 28px;
}

.campaign-plan-preview {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.08), rgba(25, 166, 74, 0.06)),
    #fff;
  padding: 18px;
  box-shadow: 0 30px 72px rgba(6, 18, 47, 0.12);
}

.campaign-plan-preview::after {
  position: absolute;
  top: 96px;
  right: -18%;
  width: 38%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 166, 74, 0), rgba(25, 166, 74, 0.78), rgba(7, 91, 255, 0));
  content: "";
  animation: sfl-campaign-scan 5.8s ease-in-out infinite;
}

.campaign-form-preview {
  display: grid;
  gap: 10px;
}

.campaign-form-preview label {
  display: grid;
  gap: 7px;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 13px 14px;
  box-shadow: 0 12px 32px rgba(6, 18, 47, 0.05);
}

.campaign-form-preview span,
.campaign-plan-output span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-form-preview b {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.campaign-plan-output {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(25, 166, 74, 0.22);
  border-radius: 8px;
  background: #f1fff7;
  padding: 16px;
  animation: sfl-row-pulse 5.8s ease-in-out 1.1s infinite;
}

.campaign-plan-output strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.campaign-plan-output p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.campaign-trust-section {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #fff;
}

.campaign-quote-grid .decision-card {
  min-height: 280px;
}

.campaign-flow-section {
  background:
    linear-gradient(135deg, rgba(7, 91, 255, 0.07), rgba(25, 166, 74, 0.05) 60%, rgba(255, 255, 255, 0) 86%),
    #fff;
}

.campaign-flow-preview .customer-flow-mock,
.campaign-flow-preview .order-status-preview {
  min-height: 252px;
}

.campaign-request-mock label {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.campaign-request-mock label b {
  padding: 3px 7px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 10px;
}

.campaign-request-mock div,
.campaign-request-mock p,
.campaign-quote-mock div {
  margin: 0;
  padding: 12px;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  background: #fff;
  color: #405066;
  font-size: 13px;
  line-height: 1.35;
}

.campaign-quote-mock div {
  display: grid;
  gap: 5px;
}

.campaign-quote-mock b,
.campaign-quote-mock em {
  display: block;
  font-style: normal;
}

.campaign-quote-mock b {
  color: var(--ink);
  font-size: 14px;
}

.campaign-quote-mock em {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.campaign-route-section .section-lead {
  max-width: 560px;
}

@keyframes sfl-campaign-scan {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  18%,
  74% {
    opacity: 1;
  }

  100% {
    transform: translateX(-330%);
    opacity: 0;
  }
}

@keyframes sfl-backlinks-scan {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  18%,
  74% {
    opacity: 1;
  }

  100% {
    transform: translateX(330%);
    opacity: 0;
  }
}

@keyframes sfl-row-pulse {
  0%,
  100% {
    border-color: #dbe7fb;
    transform: translateY(0);
  }

  45% {
    border-color: rgba(25, 166, 74, 0.55);
    transform: translateY(-2px);
  }
}

html.sfl-motion-ready body.home [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes sfl-preview-cycle {
  0%,
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  34%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(0.98);
  }
}

@media (max-width: 980px) {
  .customer-motion-preview,
  .customer-flow-steps,
  .customer-flow-preview,
  .customer-faq-grid,
  .backlinks-trust-strip {
    grid-template-columns: 1fr;
  }

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

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

  .backlinks-trust-strip article,
  .backlinks-trust-strip article:last-child {
    border-right: 0;
    border-bottom: 1px solid #dbe7fb;
  }

  .backlinks-trust-strip article:last-child {
    border-bottom: 0;
  }

  .customer-flow-steps article,
  .customer-flow-steps article:last-child {
    border-right: 0;
    border-bottom: 1px solid #dbe7fb;
  }

  .customer-flow-steps article:last-child {
    border-bottom: 0;
  }

  .preview-sidebar {
    display: none;
  }

  .customer-motion-preview {
    min-height: 380px;
  }

}

@media (max-width: 640px) {
  .backlinks-table-preview article {
    grid-template-columns: 1fr;
  }

  .backlinks-table-preview b {
    text-align: left;
  }

  .customer-preview-section .section-kicker-row > .button {
    display: none;
  }

  .preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .preview-tabs {
    flex-direction: column;
  }

  .preview-panel {
    padding: 22px;
  }

  .preview-panel strong {
    font-size: 24px;
  }

  .customer-buy-grid .service-chooser-card {
    min-height: auto;
  }

  .customer-flow-mock-marketplace div {
    grid-template-columns: 1fr;
  }

  .customer-flow-mock-marketplace strong {
    text-align: left;
  }
}

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

  .sfl-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
