:root {
  --bg: #f8fbff;
  --panel: #ffffff;
  --ink: #071026;
  --muted: #48617f;
  --line: #d8e2ee;
  --cyan: #06b6d4;
  --cyan-soft: #e8fbfd;
  --green: #16a34a;
  --navy: #0b1730;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
p { margin-top: 0; }
img { max-width: 100%; display: block; }
.site-shell { overflow: hidden; }
.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 226, 238, 0.85);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
}
.brand.small { font-size: 18px; }
.brand-mark {
  width: 42px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 42px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #304863;
  font-weight: 800;
  font-size: 14px;
}
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: #0e7490; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.btn.compact { min-height: 40px; padding: 0 16px; }
.btn.primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: none;
}
.btn.primary:hover { background: #111f3d; }
.btn.secondary:hover { background: #f4f8fd; }
.btn.discord {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #263ca3;
}
.btn.wide { width: 100%; }

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: 56px;
  padding-top: 58px;
  padding-bottom: 48px;
  background-image: linear-gradient(rgba(216,226,238,.48) 1px, transparent 1px), linear-gradient(90deg, rgba(216,226,238,.48) 1px, transparent 1px);
  background-size: 48px 48px;
}
.eyebrow {
  color: #0e7490;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
  font-size: 12px;
  margin: 0 0 14px;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
}
h1 {
  max-width: 720px;
  font-size: 68px;
  line-height: .96;
}
h1 span {
  display: block;
  color: #2f82ff;
}
h2 {
  font-size: 48px;
  line-height: 1;
}
h3 { font-size: 18px; line-height: 1.15; }
.hero-sub {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  margin: 24px 0 28px;
}
.hero-actions,
.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.seller-limit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 850;
  font-size: 13px;
}

.hero-visual { position: relative; }
.shot-frame {
  overflow: hidden;
  border: 1px solid #cdd9e8;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.hero-shot {
  transform: rotate(-.5deg);
}
.hero-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #fff;
  cursor: zoom-in;
  transition: transform .28s ease, filter .28s ease;
}
.privacy-preview {
  min-height: 420px;
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #fff;
}
.preview-sidebar {
  border-right: 1px solid var(--line);
  padding: 22px 16px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: #f7faff;
}
.preview-sidebar span,
.preview-toolbar,
.preview-row strong,
.preview-row p,
.preview-row em,
.preview-row aside,
.clean-art::before,
.clean-art::after {
  display: block;
  border-radius: 8px;
  background: #eaf1f8;
}
.preview-sidebar span:first-child {
  width: 76%;
  height: 34px;
  background: var(--navy);
}
.preview-sidebar span {
  height: 28px;
}
.preview-feed {
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.preview-toolbar {
  width: 38%;
  height: 38px;
}
.preview-row {
  display: grid;
  grid-template-columns: 70px 1fr 148px;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.preview-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--cyan-soft);
  border: 1px solid #9ee8f2;
}
.preview-row strong { width: 72%; height: 16px; margin: 4px 0 10px; }
.preview-row p { width: 88%; height: 22px; margin: 0 0 8px; }
.preview-row p + p { width: 64%; }
.preview-row em { width: 52%; height: 26px; margin-top: 10px; }
.preview-row aside { height: 86px; }
.floating-chip {
  position: absolute;
  z-index: 4;
  border-radius: 9px;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.chip-one {
  right: 18px;
  bottom: 74px;
  background: var(--navy);
  color: #fff;
}
.hero-feature-tags {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.hero-feature-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  background: #f7f9ff;
  color: #1e2f78;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  padding: 0 8px;
}

.signal-strip {
  padding-top: 18px;
  padding-bottom: 46px;
}
.signal-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #48617f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.signal-strip p::before,
.signal-strip p::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #d4deeb;
  background: #fff;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.signal-grid div {
  min-height: 98px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid #e7edf5;
  border-radius: 10px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .055);
  text-align: center;
}
.signal-grid strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.signal-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.logo-strip div {
  padding: 20px 16px;
  font-weight: 950;
  text-align: center;
  color: #10213d;
}
.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}
.section-heading.center {
  max-width: 920px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p,
.muted,
.workflow-card p,
.showcase-card p,
.plan-head p,
.pricing-note,
.proof-copy p {
  color: var(--muted);
  line-height: 1.65;
}
.section-heading > p:not(.eyebrow),
.faq-layout > div > .muted {
  margin-top: 18px;
}

.shift-section {
  width: min(1100px, calc(100% - 32px));
}
.shift-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.shift-card {
  min-height: 500px;
  display: grid;
  align-content: start;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
}
.shift-card h3 {
  font-size: 30px;
  line-height: 1.05;
}
.shift-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shift-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
  font-weight: 780;
}
.shift-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
}
.before-card {
  background: #121820;
  color: #fff;
}
.before-card li {
  color: #e9eef7;
}
.before-card li::before {
  background: #9aa6b8;
}
.after-card {
  background: #fff;
}
.after-card li {
  color: #304863;
}
.after-card li::before {
  background: var(--green);
  box-shadow: 0 0 0 4px #dcfce7;
}
.shift-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
.roadmap-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: #eef2ff;
  color: #263ca3;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}
.manual-refresh-panel,
.lead-alert-preview {
  width: min(350px, 100%);
  margin: 14px auto 0;
  border-radius: 10px;
}
.manual-refresh-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #dbe7f4;
}
.manual-refresh-panel span {
  color: #7e8b9f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.manual-refresh-panel i {
  display: block;
  height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.manual-refresh-panel strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #9aa6b8;
  font-size: 13px;
}
.manual-refresh-panel strong::after {
  content: "0 hits";
  color: #e9eef7;
}
.lead-alert-preview {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #cfd9e8;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
}
.alert-source-row,
.alert-product-row,
.alert-status-row,
.alert-actions {
  display: flex;
  align-items: center;
}
.alert-source-row,
.alert-status-row,
.alert-actions {
  justify-content: space-between;
  gap: 10px;
}
.alert-product-row {
  align-items: start;
  gap: 12px;
}
.alert-source-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #263ca3;
  font-size: 11px;
  font-weight: 950;
}
.alert-source-row em {
  color: #637089;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.lead-alert-preview strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  line-height: 1.25;
}
.lead-alert-preview small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}
.alert-thumb {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  overflow: hidden;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: #fff;
}
.alert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.alert-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.alert-metrics p {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  margin: 0;
  padding: 8px 9px;
  border: 1px solid #e5edf7;
  border-radius: 8px;
  color: #304863;
  font-size: 12px;
}
.alert-metrics b {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
}
.alert-metrics span {
  color: #10213d;
  font-weight: 900;
  white-space: nowrap;
}
.alert-status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}
.alert-status-row span:first-child {
  background: #dcfce7;
  color: #166534;
}
.alert-status-row span:last-child {
  background: #e8f2ff;
  color: #1268d8;
}
.alert-actions {
  justify-content: start;
  flex-wrap: wrap;
}
.alert-actions i {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  background: #f7f9ff;
  color: #263ca3;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.workflow-demo {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.07);
}
.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.workflow-tabs article {
  position: relative;
  min-height: 140px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background .16s ease;
}
.workflow-tabs article:last-child {
  border-right: 0;
}
.workflow-tabs article:hover,
.workflow-tabs article:focus-visible {
  background: #fbfdff;
  outline: none;
}
.workflow-tabs article.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #2f82ff;
}
.workflow-tabs span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef6ff;
  color: #173455;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 12px;
}
.workflow-tabs article.active span {
  background: #2f82ff;
  color: #fff;
}
.workflow-tabs h3 {
  margin-bottom: 8px;
  color: var(--ink);
}
.workflow-tabs p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.workflow-screens {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.workflow-screen {
  margin: 0;
  border: 1px solid #dbe7f4;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}
.workflow-screen[hidden] {
  display: none;
}
.workflow-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  cursor: zoom-in;
}
.workflow-card,
.showcase-card,
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}
.workflow-art {
  border: 1px solid #dbe7f4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #fff;
}
.workflow-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #fff;
  cursor: zoom-in;
  transition: transform .28s ease, filter .28s ease;
}
.clean-art {
  min-height: 190px;
  position: relative;
  background: #f8fbff;
}
.clean-art::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 26px;
  height: 48px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 62px 0 #fff, 0 124px 0 #fff;
}
.clean-art::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 46px;
  width: 54%;
  height: 10px;
  background: #dbe7f4;
  box-shadow: 0 62px 0 #dbe7f4, 0 124px 0 #dbe7f4, 170px 0 0 var(--navy), 170px 62px 0 var(--navy), 170px 124px 0 var(--navy);
}
.workflow-card span {
  min-width: 42px;
  width: fit-content;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
  margin-bottom: 16px;
}

.audience-section {
  width: min(1120px, calc(100% - 32px));
}
.audience-grid article {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 14px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.045);
}
.audience-grid h3 {
  color: #005cff;
  font-size: 18px;
}
.audience-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.audience-grid article {
  min-height: 220px;
  align-content: start;
}
.audience-grid span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #2f82ff 0 24%, #e8f2ff 26% 100%);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.showcase-card.sourcing-proof {
  grid-column: span 2;
}
.showcase-card.wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: .38fr .62fr;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.showcase-card.wide .showcase-copy {
  padding: 28px;
}
.showcase-card.wide img {
  height: 100%;
  min-height: 300px;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: #fff;
  border-left: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform .28s ease, filter .28s ease;
}
.wide-preview {
  min-height: 340px;
  grid-template-columns: 1fr;
  border-left: 1px solid var(--line);
  box-shadow: none;
  border-radius: 0;
}
.wide-preview .preview-feed {
  height: 100%;
  align-content: center;
}
.image-card img {
  width: calc(100% + 44px);
  margin: -22px -22px 0;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform .28s ease, filter .28s ease;
}
.hero-shot img:hover,
.workflow-art img:hover,
.showcase-card.wide img:hover,
.image-card > img:hover {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.015);
}
.filter-card > img:hover,
.small-shot-card > img:hover {
  transform: scale(1.004);
}
.sourcing-proof img {
  aspect-ratio: 24 / 5;
  object-fit: contain;
  object-position: center;
}
.filter-card {
  overflow: hidden;
}
.filter-card img {
  width: 100%;
  margin: -22px auto 0;
  padding: 14px 0 10px;
  aspect-ratio: 16 / 8.8;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(90deg, #f8fbff 0, #fff 18%, #fff 82%, #f8fbff 100%);
}
.activity-card img {
  width: calc(100% + 44px);
  padding: 34px;
  object-fit: contain;
  background: #f8fbff;
}
.discord-card {
  overflow: hidden;
}
.discord-alert-art {
  width: calc(100% + 44px);
  min-height: 174px;
  display: grid;
  place-items: center;
  margin: -22px -22px 0;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}
.feature-discord-alert {
  width: min(310px, 100%);
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #cfd9e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .11);
}
.feature-discord-head,
.feature-discord-product,
.feature-discord-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-discord-head {
  justify-content: space-between;
}
.feature-discord-head span {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #263ca3;
  font-size: 10px;
  font-weight: 950;
}
.feature-discord-head em {
  color: #637089;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}
.feature-discord-product {
  align-items: start;
}
.feature-discord-product img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  margin: 0;
  padding: 3px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  aspect-ratio: auto;
  cursor: default;
}
.feature-discord-product strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}
.feature-discord-product small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.35;
}
.feature-discord-actions {
  flex-wrap: wrap;
}
.feature-discord-actions i {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  background: #f7f9ff;
  color: #263ca3;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}
.sourcing-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.image-card .clean-art {
  width: calc(100% + 44px);
  margin: -22px -22px 0;
  border-radius: 10px 10px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.image-card .showcase-copy {
  margin-top: auto;
}
.icon {
  min-width: 46px;
  width: fit-content;
  height: 36px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: #0e7490;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 16px;
}
.icon.pro {
  background: #eef2ff;
  color: #263ca3;
}

.image-zoom-popover {
  position: fixed;
  z-index: 200;
  width: min(560px, calc(100vw - 28px));
  height: min(360px, calc(100vh - 28px));
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(7, 16, 38, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
  overflow: hidden;
}
.image-zoom-popover.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.image-zoom-surface {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 220%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.affiliate-trial-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(720px, 100%);
  margin: -4px auto 22px;
  padding: 13px 16px;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  background: #ecfdf5;
  color: #14532d;
  text-align: center;
  box-shadow: 0 12px 34px rgba(22, 163, 74, .1);
}
.affiliate-trial-banner[hidden] {
  display: none;
}
.affiliate-trial-banner strong {
  color: #052e16;
  font-weight: 950;
}
.affiliate-trial-banner span {
  font-weight: 800;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan-card.featured .plan-head {
  padding-top: 10px;
}
.plan-card.featured {
  border-color: #7dd3fc;
  box-shadow: 0 22px 70px rgba(6, 182, 212, .18);
}
.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--cyan-soft);
  color: #0e7490;
  font-size: 12px;
  font-weight: 950;
  margin: 0;
}
.plan-head > p:not(.tax-note) {
  min-height: 52px;
}
.seller-limit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  background: #fff;
  color: #173455;
  font-size: 15px;
  font-weight: 850;
  box-shadow: inset 0 0 0 3px #f7fbff;
}
.seller-limit .limit-count {
  color: var(--ink);
  font-weight: 950;
}
.seller-limit .limit-text {
  color: #173455;
  font-weight: 850;
}
.price {
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
}
.price span {
  color: var(--ink);
  font-size: 42px;
  font-weight: 950;
}
.tax-note { font-size: 13px; margin-top: 4px; }
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #304763;
}
.plan-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  line-height: 1.35;
}
.plan-card li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid var(--green);
  margin-top: 2px;
}
.plan-card li strong {
  color: var(--ink);
  font-weight: 950;
}
.feature-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  padding: 0;
  border: 1px solid #8da4bf;
  border-radius: 999px;
  background: #fff;
  color: #48617f;
  font: 900 10px/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  vertical-align: 1px;
  cursor: help;
}
.feature-info:hover,
.feature-info:focus-visible {
  border-color: #0e7490;
  color: #0e7490;
  outline: none;
}
.feature-info::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 30;
  width: max-content;
  max-width: min(280px, 74vw);
  padding: 10px 12px;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  background: #fff;
  color: #071026;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, transform .16s ease;
}
.feature-info::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 31;
  width: 10px;
  height: 10px;
  border-right: 1px solid #d8e2ee;
  border-bottom: 1px solid #d8e2ee;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity .16s ease, transform .16s ease;
}
.feature-info:hover::after,
.feature-info:hover::before,
.feature-info:focus-visible::after,
.feature-info:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}
.feature-info:hover::before,
.feature-info:focus-visible::before {
  transform: translate(-50%, 0) rotate(45deg);
}
.plan-card .btn { margin-top: auto; }
.pricing-note {
  margin: 18px 0 0;
  text-align: center;
}

.faq-layout {
  display: grid;
  gap: 48px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}
.faq-layout > div:first-child {
  text-align: center;
}
.faq-list {
  display: grid;
  gap: 0;
}
details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 0;
}
summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "⌄";
  float: right;
  color: #64748b;
}
details p {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}
.final-cta {
  text-align: center;
  max-width: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  padding-left: max(6vw, calc((100vw - 1180px) / 2));
  padding-right: max(6vw, calc((100vw - 1180px) / 2));
  padding-top: 86px;
  padding-bottom: 88px;
}
.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
}
.final-actions { justify-content: center; margin-top: 24px; }

.footer {
  border-top: 1px solid var(--line);
  background: #f5f8fc;
  min-height: 96px;
  padding: 24px max(6vw, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #48617f;
  font-size: 13px;
  font-weight: 800;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 86px 6vw;
}
.page-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}
.page p,
.page li {
  color: var(--muted);
  line-height: 1.7;
}

.utility-page {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 86px;
}
.utility-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 34px;
  padding: 12px 0 34px;
}
.utility-hero h1 {
  font-size: 58px;
  line-height: 1;
}
.utility-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.utility-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}
.utility-summary span,
.contact-method span {
  display: block;
  color: #0e7490;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.utility-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}
.utility-summary p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.utility-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.utility-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}
.utility-side a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #304863;
  font-size: 14px;
  font-weight: 900;
}
.utility-side a:hover,
.utility-link-row a:hover,
.contact-method:hover {
  border-color: #9edce7;
  background: #f4fbfd;
}
.utility-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.07);
}
.utility-card > p:first-child {
  color: #304863;
  font-size: 17px;
  line-height: 1.7;
}
.utility-card h2 {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.15;
}
.utility-card h2:first-child {
  margin-top: 0;
}
.utility-card p,
.utility-card li {
  color: var(--muted);
  line-height: 1.72;
}
.utility-card a:not(.btn):not(.contact-method),
.utility-link-row a {
  color: #0b4f6c;
  font-weight: 900;
}
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #dcfce7;
  border: 1px solid #86efac;
  box-shadow: inset 0 0 0 3px #fff;
}
.utility-callout,
.billing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 4px;
  padding: 22px;
  border: 1px solid #bde8ef;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4fdff 0%, #ffffff 70%);
}
.utility-callout h2,
.billing-panel h2 {
  margin: 0 0 8px;
}
.utility-callout p,
.billing-panel p {
  margin: 0;
}
.utility-callout .btn,
.billing-panel .btn {
  flex: 0 0 auto;
  min-width: 184px;
  white-space: nowrap;
}
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.contact-method {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.contact-method strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}
.contact-method em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}
.utility-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.utility-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #304863;
  font-size: 14px;
}
.affiliate-actions {
  margin-top: 24px;
}
.affiliate-summary {
  border-color: #bde8ef;
  background: linear-gradient(145deg, #ffffff 0%, #f3fcff 100%);
}
.affiliate-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}
.affiliate-stat-grid div {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
}
.affiliate-stat-grid span {
  display: block;
  color: var(--ink);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}
.affiliate-stat-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.affiliate-steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.affiliate-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}
.affiliate-steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
}
.affiliate-steps p {
  margin: 0;
}
.affiliate-callout {
  margin-top: 30px;
}

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .hero,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 44px;
    min-height: auto;
  }
  h1 { font-size: 60px; }
  h2 { font-size: 40px; }
  .workflow-cards,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .workflow-tabs,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .workflow-tabs article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow-tabs article:last-child {
    border-bottom: 0;
  }
  .shift-grid {
    grid-template-columns: 1fr;
  }
  .affiliate-trial-banner {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .feature-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-card.wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .showcase-card.sourcing-proof {
    grid-column: span 2;
  }
  .showcase-card.wide img {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-feature-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .utility-hero,
  .utility-layout {
    grid-template-columns: 1fr;
  }
  .utility-side {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }
  .utility-side a {
    flex: 1 1 160px;
  }
  .affiliate-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav,
  .section-pad {
    width: min(100% - 20px, 1180px);
  }
  .nav-actions .secondary { display: none; }
  .brand { font-size: 18px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .utility-page {
    width: min(100% - 20px, 1060px);
    padding: 44px 0 60px;
  }
  .utility-hero {
    gap: 20px;
    padding-bottom: 24px;
  }
  .utility-hero h1 {
    font-size: 40px;
  }
  .utility-lede {
    font-size: 16px;
  }
  .utility-card {
    padding: 22px;
  }
  .shift-section {
    width: min(100% - 20px, 1100px);
  }
  .shift-card {
    min-height: auto;
    padding: 24px;
  }
  .shift-card h3 {
    font-size: 24px;
  }
  .shift-card-head {
    display: grid;
  }
  .workflow-tabs article {
    min-height: auto;
    padding: 18px;
  }
  .workflow-screens {
    padding: 14px;
  }
  .audience-section {
    width: min(100% - 20px, 1120px);
  }
  .utility-callout,
  .billing-panel {
    align-items: stretch;
    flex-direction: column;
  }
  .utility-callout .btn,
  .billing-panel .btn {
    width: 100%;
  }
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-shot { transform: none; }
  .feature-showcase,
  .pricing-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .signal-strip p {
    align-items: center;
  }
  .showcase-card.wide {
    grid-column: span 1;
  }
  .showcase-card.sourcing-proof {
    grid-column: span 1;
  }
  .sourcing-copy-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card.wide img {
    min-height: 220px;
    padding: 10px;
  }
  .floating-chip { position: static; margin-top: 10px; width: fit-content; }
  .hero-feature-tags {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
