@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --navy: #0f2447;
  --navy-mid: #1a3560;
  --brand-blue: #1a3560;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-tint: #fff7ed;
  --slate: #64748b;
  --border: #e2e8f0;
  --bg: #f1f5f9;
  --white: #fff;
  --green: #16a34a;
  --purple: #6d28d9;
  --cream: #fbf7f2;
  --mist: #f3f6fb;
  --line: rgba(15, 36, 71, 0.09);
  --line-strong: rgba(15, 36, 71, 0.16);
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --display-weight: 800;
  --display-tracking: -0.03em;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 24px 64px rgba(15, 36, 71, 0.12);
  --shadow-lift: 0 24px 64px rgba(15, 36, 71, 0.1);
  /* Spacing scale — use utilities, not inline styles */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 48px;
  --space-8: 64px;
  --section-pad: 88px;
  --section-pad-sm: 56px;
  /* Icon system — Lucide strokes + accent-bar marks */
  --icon-size: 52px;
  --icon-radius: 14px;
  --icon-stroke: 1.5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #1e293b; background: var(--white); line-height: 1.55; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Content links — branded navy on light backgrounds */
main a:not(.btn):not(.logo),
.legal-prose a:not(.btn),
.editorial-row a:not(.btn),
.feature-card p a:not(.btn),
.section-desc a:not(.btn),
.prose-note a:not(.btn) {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
main a:not(.btn):not(.logo):hover,
.legal-prose a:not(.btn):hover,
.editorial-row a:not(.btn):hover,
.feature-card p a:not(.btn):hover,
.section-desc a:not(.btn):hover {
  color: var(--navy);
}
.section-cta-link a,
.section-note a,
.pricing-tier-link a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}
.section-cta-link a:hover,
.section-note a:hover,
.pricing-tier-link a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Orange links on navy/dark section backgrounds */
.journey a:not(.btn),
.cta-premium a:not(.btn),
.compound-band a:not(.btn),
.ai-band a:not(.btn),
.site-footer a:not(.logo),
.split-band > div:first-child a:not(.btn) {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.journey a:not(.btn):hover,
.cta-premium a:not(.btn):hover,
.compound-band a:not(.btn):hover,
.ai-band a:not(.btn):hover,
.site-footer a:not(.logo):hover,
.split-band > div:first-child a:not(.btn):hover {
  color: #fdba74;
}
.container { width: min(1180px, 92vw); margin: 0 auto; }

.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 8px 32px rgba(15,36,71,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: var(--navy); }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.nav { display: flex; gap: 24px; flex-wrap: wrap; }
.nav a { font-size: 14px; font-weight: 600; color: var(--slate); transition: color .2s; }
.nav a:hover, .nav a.is-active { color: var(--navy); }
.header-cta { display: flex; gap: 10px; }
.menu-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px; font-size: 14px; font-weight: 700;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: scale(.98); }
.btn-full { width: 100%; }

/* Primary — orange (solid, premium) */
.btn-primary {
  background: var(--orange-dark);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.28);
}
}
a.btn-primary, a.btn-primary:link, a.btn-primary:visited,
.btn-primary, .btn-primary:link, .btn-primary:visited {
  color: #fff; text-decoration: none;
}
.btn-primary:hover {
  background: #c2410c;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  color: #fff;
}

.btn-accent {
  background: var(--orange-dark);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.28);
}
a.btn-accent, a.btn-accent:link, a.btn-accent:visited { color: #fff; text-decoration: none; }
.btn-accent:hover { background: #c2410c; color: #fff; }

/* Secondary — brand blue outline (alias: btn-ghost for legacy markup) */
.btn-secondary,
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--brand-blue);
  box-shadow: 0 2px 10px rgba(15, 36, 71, 0.07);
}
a.btn-secondary, a.btn-secondary:link, a.btn-secondary:visited,
a.btn-ghost, a.btn-ghost:link, a.btn-ghost:visited {
  color: var(--navy); text-decoration: none;
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 36, 71, 0.22);
}

/* Solid brand blue — agency tier emphasis */
.btn-navy {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(15, 36, 71, 0.28);
}
a.btn-navy, a.btn-navy:link, a.btn-navy:visited { color: #fff; text-decoration: none; }
.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy), #0a1a33);
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 36, 71, 0.35);
}

.hero {
  padding: 120px 0 88px;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(234, 88, 12, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(26, 53, 96, 0.04), transparent 50%),
    var(--white);
}
.hero--premium { padding: 100px 0 72px; }
.hero--premium .hero-copy { text-align: left; align-items: flex-start; }
.hero--premium .hero-badge { margin-left: 0; }
.hero--premium .hero-lead { max-width: 34ch; }
.hero--premium .hero-actions { justify-content: flex-start; }
.hero--premium .hero-grid {
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto auto;
  align-items: center;
}
.hero--premium .hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  width: 100%;
  text-align: center;
}
.hero-fig {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #94a3b8; margin-bottom: 16px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 28px; margin-top: 4px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.hero-metrics .hero-metric,
.hero-metrics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-metrics .metric__val {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  font-variant-numeric: tabular-nums; line-height: 1.1;
}
.hero-metrics .metric__lbl {
  font-size: 13px; color: var(--slate); margin-top: 6px;
  max-width: none; line-height: 1.4; text-wrap: pretty;
}
.product-frame {
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--white); box-shadow: var(--shadow-lift); overflow: hidden;
}
.product-frame .screenshot-chrome,
.product-frame__chrome {
  display: flex; gap: 6px; padding: 12px 16px;
  background: #f8fafc; border-bottom: 1px solid var(--line);
}
.product-frame .screenshot-chrome span,
.product-frame__chrome span {
  width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0;
}
.product-frame .screenshot-chrome span:first-child,
.product-frame__chrome span:first-child { background: #fca5a5; }
.product-frame .screenshot-chrome span:nth-child(2),
.product-frame__chrome span:nth-child(2) { background: #fde68a; }
.product-frame .screenshot-chrome span:nth-child(3),
.product-frame__chrome span:nth-child(3) { background: #86efac; }
.product-frame .screenshot-caption,
.product-frame__cap {
  padding: 10px 16px; font-size: 11px; color: #94a3b8;
  border-top: 1px solid var(--line); background: #fafbfc;
}
.float-pill {
  position: absolute; padding: 10px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; background: var(--white);
  border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(15, 36, 71, 0.04);
  color: var(--navy);
}
.float-pill--a { top: 12%; left: -4%; }
.float-pill--b { bottom: 14%; right: -2%; background: var(--orange-tint); border-color: #fed7aa; color: #9a3412; }
.hero .screenshot-frame { transform: none; }
.hero .screenshot-frame:hover { transform: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: #fff;
  background: var(--navy); border: 1px solid var(--navy-mid);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.2)} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.6vw, 3.5rem);
  font-weight: var(--display-weight);
  line-height: 1.06;
  letter-spacing: var(--display-tracking);
  color: var(--navy); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-lead { font-size: 1.125rem; color: var(--slate); max-width: 520px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--slate); }
.hero-proof strong { color: var(--navy); display: block; font-size: 15px; }
.hero-visual { position: relative; }

.page-hero {
  padding: 110px 0 88px;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(234, 88, 12, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(26, 53, 96, 0.04), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  text-align: center;
}
.page-hero--premium {
  text-align: left;
  padding: 100px 0 72px;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(234, 88, 12, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(26, 53, 96, 0.04), transparent 50%),
    var(--white);
}
.page-hero.page-hero--premium h1 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-wrap: pretty;
}
@media (min-width: 900px) {
  .page-hero.page-hero--premium h1:not(.heading--balance),
  .hero--premium h1:not(.heading--balance) {
    white-space: nowrap;
  }
}
@media (max-width: 899px) {
  .page-hero.page-hero--premium h1,
  .hero--premium h1,
  .cta-premium h2,
  .journey__head h2 {
    white-space: normal;
  }
}
.heading--balance {
  white-space: normal;
  text-wrap: balance;
}
.hero--premium h1.heading--balance {
  max-width: 12ch;
  line-height: 1.08;
}
.page-hero--premium [data-page-hero],
.page-hero--premium > .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.page-hero--premium .hero-fig,
.page-hero--premium .hero-badge,
.page-hero--premium h1,
.page-hero--premium .hero-lead,
.page-hero--premium .page-hero-actions {
  width: 100%;
  max-width: 100%;
}
.page-hero--premium .hero-lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 42ch;
}
.page-hero--premium .page-hero-actions,
.page-hero--premium .hero-actions {
  justify-content: flex-start;
}
.page-hero--premium .hero-badge {
  margin-left: 0;
  display: inline-flex;
}
.section-head--left {
  text-align: left;
}
.section-head--left .section-title,
.section-head--left .section-desc {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-wrap: pretty;
}
.section-head--left.center-table {
  text-align: center;
}
.section-head--left.center-table .section-title,
.section-head--left.center-table .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.agency-showcase .section-title,
.agency-showcase h2.section-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
}
.compound-band h2,
.ai-band h2,
.uniqueness-callout h3,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
}
.legal-prose { max-width: 720px; margin: 0 auto; }
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--display-weight);
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-prose p, .legal-prose li { color: var(--slate); font-size: 15px; }
.editorial-row .section-title { max-width: none; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--display-weight);
  color: var(--navy);
  letter-spacing: var(--display-tracking);
  margin-bottom: 14px; max-width: none; margin-left: auto; margin-right: auto;
  text-wrap: pretty;
}
.hero--premium h1 { text-wrap: pretty; }
.page-hero .hero-lead { margin-left: auto; margin-right: auto; max-width: 640px; margin-bottom: 0; }
.page-hero-actions {
  display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap;
  margin-top: var(--space-4);
}
.cta-actions {
  display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap;
  margin: 0 auto var(--space-4);
}
.cta-band .cta-actions { margin-bottom: 0; }
.cta-band .cta-actions + .section-note { margin-top: var(--space-4); }

.section-label--warm { color: #fdba74; }
.section-head--compact { margin-bottom: var(--space-4); }
.section-head--compact .section-title { margin-bottom: var(--space-2); }
.section-head--compact .section-desc { margin-bottom: 0; }
.section-gap-md { margin-top: var(--space-5); }
.section-gap-lg { margin-top: var(--space-7); }
.section-gap-xl { margin-top: var(--space-8); }
.section-note--lg { margin-top: var(--space-7); }

.feature-category { margin-top: var(--space-8); }
.feature-category:first-child { margin-top: 0; }
.feature-card--story { padding: var(--space-5); }
.feature-card p + p,
.feature-card--story p + p,
.problem-card p + p { margin-top: var(--space-2); }
.feature-card--story .tier-row,
.feature-card .tier-row { margin-top: var(--space-3); }
.container > [data-category] + [data-category] { margin-top: var(--space-4); }

.two-col .btn { margin-top: var(--space-4); }
.two-col .section-desc { margin-bottom: var(--space-2); max-width: none; }
.two-col .section-desc:last-of-type { margin-bottom: var(--space-4); }
.two-col .section-cta-link { margin-top: var(--space-4); text-align: left; }
.two-col .showcase-copy { margin-top: var(--space-3); }

.pricing-card-foot { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-2); }
.compound-band .section-cta-link { margin-top: var(--space-3); }

.prose-note { margin-top: var(--space-3); font-size: 13px; color: var(--slate); }
.prose-note strong { color: var(--navy); }

.list-checkmarks { list-style: none; font-size: 14px; color: var(--slate); max-width: 640px; margin: 0 auto; }
.list-checkmarks li {
  padding: var(--space-1) 0 var(--space-1) 20px; position: relative;
}
.list-checkmarks li::before {
  content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}

.showcase-copy--center { max-width: 640px; margin: 0 auto; font-size: 14px; }
.exclusion-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px;
  list-style: none; margin: 24px 0 0; padding: 0; max-width: 720px;
}
.exclusion-grid li {
  padding: 8px 0 8px 20px; position: relative;
  font-size: 14px; color: var(--slate); line-height: 1.5;
}
.exclusion-grid li::before {
  content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}
.section-head--left + .exclusion-grid,
.section-head--left ~ .exclusion-grid { margin-left: 0; }
.container > .section-note { max-width: none; }
.cta-premium > .section-note {
  margin-top: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--left ~ .section-note:not(.section-note--center),
.section-head--left + .section-note:not(.section-note--center) {
  text-align: left; margin-left: 0; margin-right: auto;
}
.section-cta-link,
.section-note,
.section-note--lg {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.split-panel {
  background: var(--white); padding: var(--space-5); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.split-panel h3 { color: var(--navy); font-size: 1.125rem; font-weight: 800; margin-bottom: var(--space-2); }

.container--narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
section.section--flush-top { padding-top: 0; }

.feature-category + .feature-category { margin-top: var(--space-8); }

.screenshot-frame + .section-cta-link,
.two-col > div:last-child .section-label { margin-top: 0; }

.section-head + .problem-grid,
.section-head + .feature-grid,
.section-head + .steps-grid,
.section-head + .compare-table,
.section-head + .timeline,
.section-head + .filter-tabs,
.section-head + .stats-row { margin-top: 0; }

.compare-table + .section-cta-link,
.compare-table + .two-col { margin-top: var(--space-7); }

.cta-band h2 + p { margin-top: 0; }

.screenshot-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.screenshot-frame:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.screenshot-frame--flat { transform: none; }
.screenshot-frame--flat:hover { transform: none; }
.screenshot-chrome {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: #f8fafc; border-bottom: 1px solid var(--border);
}
.screenshot-chrome span { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.screenshot-chrome span:first-child { background: #fca5a5; }
.screenshot-chrome span:nth-child(2) { background: #fcd34d; }
.screenshot-chrome span:nth-child(3) { background: #86efac; }
.screenshot-caption {
  padding: 10px 14px; font-size: 11px; font-weight: 600; color: var(--slate);
  background: #fff; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.screenshot-caption::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.float-card {
  position: absolute; background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px; box-shadow: 0 12px 40px rgba(15,36,71,.12);
  font-size: 12px; font-weight: 700; color: var(--navy);
}
.float-card--leads { bottom: -16px; left: -24px; }
.float-card--posts { top: 20px; right: -20px; color: var(--green); }

.trial-form-slot { max-width: 520px; margin: 0 auto; }
.trial-form-slot--wide { max-width: 640px; }
.instant-download {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(380px, 55vh);
}
.instant-download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249,115,22,.2), transparent 55%);
}
.instant-download-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.instant-download h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.instant-download .section-label,
.instant-download .section-label--warm { color: #fdba74; }
.instant-download p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto 28px; }

.agency-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-bottom: 48px; }
.agency-showcase:last-child { margin-bottom: 0; }
.agency-showcase--reverse .agency-showcase-copy { order: 2; }
.agency-showcase--reverse .agency-showcase-visual { order: 1; }
@media (max-width: 900px) {
  .agency-showcase, .agency-showcase--reverse .agency-showcase-copy,
  .agency-showcase--reverse .agency-showcase-visual { grid-template-columns: 1fr; }
  .agency-showcase--reverse .agency-showcase-copy,
  .agency-showcase--reverse .agency-showcase-visual { order: unset; }
}

body.rl-page { margin: 0; }
section { padding: 88px 0; }
.section-label {
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: var(--display-weight);
  color: var(--navy);
  letter-spacing: var(--display-tracking);
  margin-bottom: 14px; max-width: none;
  text-wrap: pretty;
}
.section-desc { font-size: 1.05rem; color: var(--slate); max-width: 600px; margin-bottom: 40px; }
.section-head { text-align: center; }
.section-head .section-title,
.section-head .section-desc { margin-left: auto; margin-right: auto; }
.section-head .section-title:last-child { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-title,
.section-head.center .section-desc { margin-left: auto; margin-right: auto; max-width: 52ch; }
.feature-grid--left .feature-card,
.feature-grid .feature-card {
  text-align: center;
  align-items: center;
}
.feature-grid--left .feature-icon,
.feature-grid .feature-icon {
  margin-left: auto;
  margin-right: auto;
}
.feature-grid--left .tier-row,
.feature-grid .tier-row {
  justify-content: center;
}
.section-cta-link {
  display: block; width: 100%; margin: 28px auto 0; padding: 0;
  text-align: center !important; font-size: 1.05rem;
}
.section-cta-link a { font-weight: 700; }
.section-cta-link a:hover { text-decoration: underline; }
.section-note {
  display: block; width: 100%; max-width: none; margin: 20px auto 0;
  text-align: center !important; font-size: 13px; color: var(--slate);
  line-height: 1.6;
}
.pricing-tier-link {
  display: block; width: 100%; margin-top: 10px;   text-align: center !important; font-size: 12px;
}
.section-note a {
  display: inline; white-space: nowrap;
}
.pricing-tier-link a { text-decoration: none; }
.pricing-footnote {
  display: block; width: 100%; margin-top: 24px; text-align: center !important;
  font-size: 13px; color: var(--slate);
}
.feature-grid + .section-cta-link { margin-top: 32px; }
.section-head + .uniqueness-callout { margin-top: 32px; }
.bg-alt { background: var(--bg); }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 960px; margin-left: auto; margin-right: auto; }
.stats-row--2 { grid-template-columns: repeat(2, 1fr); }
.stats-row--3 { grid-template-columns: repeat(3, 1fr); }
.stats-row:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); }
.stats-row:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
.steps-grid--2 { grid-template-columns: repeat(2, 1fr); }
.steps-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: none; margin-left: 0; margin-right: 0; }
.steps-grid--4 { grid-template-columns: repeat(4, 1fr); }
.steps-grid--6 { grid-template-columns: repeat(3, 1fr); }
.steps-grid:has(> :nth-child(6):last-child):not(.steps-grid--4) { grid-template-columns: repeat(3, 1fr); }
.steps-grid:has(> :nth-child(4):last-child):not(.steps-grid--4) { grid-template-columns: repeat(2, 1fr); }
.problem-grid > *, .feature-grid > *, .stats-row > *, .steps-grid > *, .two-col > *, .split-band > * { min-width: 0; }
.problem-card {
  padding: 28px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--border); transition: transform .3s, box-shadow .3s;
  text-align: center;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Icon system — Lucide (MIT) in refined marks; navy + orange accent only */
.problem-icon,
.feature-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: var(--icon-radius);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 36, 71, 0.09);
  color: var(--navy);
  box-shadow:
    0 1px 2px rgba(15, 36, 71, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.problem-icon::before,
.feature-icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--navy-mid);
  opacity: 0.85;
}
.feature-icon::before {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
}
.problem-icon--consumer,
.feature-icon--consumer {
  border-color: rgba(234, 88, 12, 0.18);
  color: var(--orange-dark);
}
.problem-icon--consumer::before,
.feature-icon--consumer::before {
  background: linear-gradient(180deg, #fb923c 0%, var(--orange-dark) 100%);
}
.problem-icon--b2b,
.feature-icon--b2b,
.feature-icon--cool,
.feature-icon--navy {
  border-color: rgba(26, 53, 96, 0.14);
  color: var(--navy);
}
.problem-icon--b2b::before,
.feature-icon--b2b::before,
.feature-icon--navy::before {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.problem-card:hover .problem-icon,
.feature-card:hover .feature-icon {
  transform: translateY(-2px);
  border-color: rgba(15, 36, 71, 0.16);
  box-shadow:
    0 8px 24px rgba(15, 36, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.problem-icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: var(--icon-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-icon svg .icon-accent,
.feature-icon svg .icon-accent {
  stroke: var(--orange);
  opacity: 1;
}
.feature-icon--b2b svg .icon-accent,
.feature-icon--navy svg .icon-accent,
.problem-icon--b2b svg .icon-accent {
  stroke: var(--orange);
}
.problem-card h3 { font-size: 0.9375rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.problem-card .card-bullet-list,
.problem-card .card-link-row { display: inline-block; text-align: left; max-width: 100%; }
.problem-card p { font-size: 14px; color: var(--slate); }
.problem-card--consumer { border: 2px solid #fed7aa; background: #fffbf5; }
.problem-card--b2b { border: 2px solid #bfdbfe; background: #f8fafc; }
.card-bullet-list { margin-top: 12px; font-size: 13px; color: var(--slate); list-style: none; padding: 0; }
.card-link-row { margin-top: 12px; }
.card-link-row a {
  color: var(--navy); font-weight: 700; text-decoration: none;
}
.card-link-row a:hover { color: var(--orange-dark); text-decoration: underline; }
.problem-card--consumer .card-link-row a { color: #9a3412; }
.problem-card--consumer .card-link-row a:hover { color: var(--orange-dark); }
.problem-card--b2b .card-link-row a { color: var(--navy); }
.problem-card--b2b .card-link-row a:hover { color: #1e40af; }

.feature-card a:not(.btn),
.problem-card p a:not(.btn),
.section-desc a:not(.btn),
.showcase-copy a:not(.btn) {
  color: var(--navy); font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px;
}
.feature-card a:not(.btn):hover,
.problem-card p a:not(.btn):hover,
.section-desc a:not(.btn):hover,
.showcase-copy a:not(.btn):hover {
  color: var(--orange-dark);
}

.compound-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff; border-radius: var(--radius); padding: 64px 48px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: min(360px, 50vh);
}
.compound-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(249,115,22,.22), transparent 45%);
}
.compound-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; width: 100%; max-width: 1000px; margin: 0 auto; }
.compound-inner > div:first-child { text-align: center; }
.compound-band h2 { font-size: clamp(1.35rem, 2.2vw, 1.6rem); font-weight: 800; margin-bottom: 12px; line-height: 1.15; color: #fff; }
.compound-band .section-label,
.compound-band .section-label--warm { color: #fdba74; }
.compound-band p { color: rgba(255,255,255,.78); font-size: 15px; margin-bottom: 12px; }
.compound-list { list-style: none; }
.compound-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px; display: flex; gap: 10px; align-items: flex-start;
}
.compound-list li::before { content: '→'; color: var(--orange); font-weight: 800; }

.ai-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff; border-radius: var(--radius); padding: 64px 48px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: min(360px, 50vh);
}
.ai-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(249,115,22,.25), transparent 50%);
}
.ai-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; width: 100%; max-width: 1000px; margin: 0 auto; }
.ai-band-inner > div:first-child { text-align: center; }
.ai-band h2 { font-size: clamp(1.3rem, 2.1vw, 1.55rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.ai-band .section-label,
.ai-band .section-label--warm { color: #fdba74; }
.ai-band p { color: rgba(255,255,255,.78); font-size: 15px; margin-bottom: 12px; }
.ai-list { list-style: none; }
.ai-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px; display: flex; gap: 10px; align-items: flex-start;
}
.ai-list li::before { content: '✓'; color: var(--orange); font-weight: 800; }

.uniqueness-callout {
  background: var(--orange-tint); border: 1px solid #fed7aa; border-radius: var(--radius);
  padding: 32px 36px; max-width: 900px; margin: 0 auto;
}
.uniqueness-callout h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.uniqueness-callout p { font-size: 15px; color: var(--slate); line-height: 1.65; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color .25s, transform .25s;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.feature-card:hover { border-color: #fed7aa; transform: translateY(-3px); }
.feature-card h3,
.card-title { font-size: 0.9375rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.card-title--lg { font-size: 1.125rem; margin-bottom: 12px; }
.feature-card .tier-row { justify-content: center; }
.section-head--left ~ .feature-grid .feature-card,
.section-head--left + .feature-grid .feature-card,
.feature-card--story {
  text-align: center;
  align-items: center;
}
.section-head--left ~ .feature-grid .feature-icon,
.section-head--left + .feature-grid .feature-icon,
.feature-card--story .feature-icon {
  margin-left: auto;
  margin-right: auto;
}
.section-head--left ~ .feature-grid .tier-row,
.section-head--left + .feature-grid .tier-row,
.feature-card--story .tier-row {
  justify-content: center;
}
.feature-card p { font-size: 13px; color: var(--slate); margin-bottom: 0; line-height: 1.5; }
.feature-card p:last-of-type { margin-bottom: var(--space-3); }
.tier-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tier {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 6px;
}
.tier-trial { background: #f1f5f9; color: #475569; }
.tier-paid { background: #eff6ff; color: #1e3a8a; }
.tier-agency { background: #fff7ed; color: #c2410c; }

.seo-section { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.aeo-callout {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 28px; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
}
.aeo-badge {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); background: #e0e7ff; padding: 8px 12px; border-radius: 8px; white-space: nowrap;
}
.aeo-callout h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.aeo-callout p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.aeo-callout p + p { margin-top: 10px; }
.seo-pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.showcase { background: var(--bg); }
.showcase-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }
.showcase-tab {
  padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--border); background: var(--white); color: var(--slate); cursor: pointer;
  transition: all .2s;
}
.showcase-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.showcase-panel { display: none; }
.showcase-panel.is-active { display: block; animation: fadeUp .5s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
.showcase-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center; }
.showcase-copy h3 { font-size: 1.125rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.showcase-copy p { font-size: 14px; color: var(--slate); margin-bottom: 16px; }
.showcase-copy ul { list-style: none; font-size: 14px; color: var(--slate); }
.showcase-copy li { padding: 6px 0; padding-left: 20px; position: relative; }
.showcase-copy li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card {
  text-align: center; padding: 28px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-lbl { font-size: 12px; color: var(--slate); margin-top: 8px; font-weight: 600; }

.cta-band {
  text-align: center; padding: 72px 40px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--orange-tint), #fff);
  border: 1px solid #fed7aa;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.cta-band p { color: var(--slate); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; align-items: stretch; }
.steps-grid--guide { counter-reset: none; }
.steps-grid--guide .step-card::before { display: none; }
.steps-grid--guide .step-card {
  text-align: left;
  align-items: flex-start;
}
.steps-grid--guide .step-card::before {
  margin-left: 0;
  margin-right: auto;
}
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
  display: flex; flex-direction: column; align-items: center; height: 100%;
  text-align: center;
}
.step-card::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px; background: var(--orange-tint);
  color: var(--orange-dark); font-weight: 800; font-size: 14px; margin-bottom: 12px;
  flex-shrink: 0;
}
.step-card h3 {
  font-size: 0.9375rem; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; width: 100%;
}
.step-card::before { margin-left: auto; margin-right: auto; }
.step-card .feature-icon,
.step-card .problem-icon { margin: 0 auto 16px; flex-shrink: 0; }
.step-card p {
  font-size: 14px; color: var(--slate); line-height: 1.55; margin: 0; flex: 1;
}
.step-card--consumer { border-color: #fed7aa; background: #fffbf5; }
.step-card--b2b { border-color: #bfdbfe; background: #f8fafc; }

.timeline { max-width: 800px; margin: 0 auto; }
.section-head--left + .timeline,
.section-head--left ~ .timeline {
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
}
.section-head.center + .timeline,
.section-head.center ~ .timeline {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.timeline-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { border-bottom: none; padding-bottom: 0; }
.timeline-time {
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--orange-dark); padding-top: 3px;
}
.timeline-item h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--slate); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; overflow: hidden;
}
.pricing-card.highlight { border-color: var(--orange); box-shadow: 0 12px 40px rgba(249,115,22,.15); }
.pricing-card-head { padding: 20px; background: var(--bg); border-bottom: 1px solid var(--border); }
.pricing-card-head.dark { background: var(--navy); color: #fff; }
.pricing-card-head.purple { background: var(--purple); color: #fff; }
.pricing-card-name { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.pricing-card-title { font-size: 1.25rem; font-weight: 800; margin: 4px 0; }
.pricing-card-sub { font-size: 12px; opacity: .75; }
.pricing-card-price { padding: 20px; text-align: center; border-bottom: 1px solid var(--border); }
.pricing-card-price .amt { font-size: 2rem; font-weight: 800; color: var(--navy); }
.pricing-card-price .per { font-size: 12px; color: var(--slate); margin-top: 4px; }
.pricing-card-body { padding: 20px; flex: 1; }
.pricing-card-body ul { list-style: none; font-size: 13px; color: var(--slate); }
.pricing-card-body li { padding: 5px 0; }
.pricing-card-foot { padding: 20px; border-top: 1px solid var(--border); }

.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--navy); color: #fff; font-weight: 700; font-size: 13px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table--audience { max-width: 960px; margin: 0 auto; }
.compare-table--audience th:first-child {
  text-align: left; font-weight: 700; color: #fff; background: var(--navy);
}
.compare-table--audience th:nth-child(2) { background: #c2410c; color: #fff; }
.compare-table--audience th:nth-child(3) { background: #1e40af; color: #fff; }
.compare-table--audience td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.compare-table--audience td:nth-child(2),
.compare-table--audience td:nth-child(3) { color: #334155; }
.compare-table--audience td:nth-child(2) { background: #fffbf5; }
.compare-table--audience td:nth-child(3) { background: #f8fafc; }

/* Audience compare — cards + table aligned on desktop */
.audience-compare-stack {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.section-head + .audience-compare-stack { margin-top: var(--space-6); }
.audience-compare-stack .problem-grid--2 {
  max-width: none;
  margin: 0;
  gap: var(--space-4);
  align-items: stretch;
}
.audience-compare-stack .problem-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  text-align: left;
}
.audience-compare-stack .problem-icon { margin: 0 0 var(--space-3); }
.audience-compare-stack .problem-card h3 { text-align: left; margin-bottom: var(--space-2); }
.audience-compare-stack .problem-card > p { margin-bottom: var(--space-2); }
.audience-compare-stack .card-bullet-list {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  flex: 1;
}
.audience-compare-stack .card-bullet-list li {
  padding: 4px 0 4px 0;
  line-height: 1.5;
}
.audience-compare-stack .card-link-row {
  margin-top: auto;
  padding-top: var(--space-3);
}
.audience-compare-stack .compare-table--audience {
  max-width: none;
  margin: 0;
}
.compare-table--audience th:first-child,
.compare-table--audience td:first-child {
  width: 32%;
  min-width: 160px;
}
.check-yes { color: var(--green); font-weight: 700; }
.check-no { color: #cbd5e1; }

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.filter-tab {
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--border); background: var(--white); color: var(--slate); cursor: pointer;
}
.filter-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.faq-section { margin-bottom: 40px; }
.faq-section h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--orange-tint); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 20px; background: none; border: none;
  font-size: 15px; font-weight: 700; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit;
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--orange); font-weight: 400; }
.faq-item.is-open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--slate); line-height: 1.65; }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer ul, .faq-answer ol { margin: 10px 0 10px 20px; }
.faq-answer p + p { margin-top: 10px; }

.changelog-list { max-width: 800px; margin: 0 auto; }
.changelog-entry {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px;
  margin-bottom: 16px; background: var(--white);
}
.changelog-entry.is-latest { border-color: var(--orange); background: var(--orange-tint); }
.changelog-version { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.changelog-version strong { font-size: 1.25rem; color: var(--navy); }
.changelog-date { font-size: 13px; color: var(--slate); }
.changelog-badge { font-size: 10px; font-weight: 800; text-transform: uppercase; background: var(--orange); color: #fff; padding: 3px 8px; border-radius: 6px; }
.changelog-entry ul { margin: 8px 0 0 18px; font-size: 14px; color: var(--slate); }
.changelog-entry h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-top: 12px; }

.legal-content { max-width: 720px; margin: 0 auto; font-size: 15px; color: var(--slate); }
.legal-content h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.legal-content p { margin-bottom: 14px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.split-band > div { padding: 40px; }
.split-band > div:first-child { background: var(--navy); color: #fff; }
.split-band > div:first-child h3 { color: #f97316; }
.split-band h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.split-band p { font-size: 14px; line-height: 1.6; }
.split-band > div:first-child p { color: rgba(255,255,255,.78); }

.install-steps { counter-reset: install; list-style: none; max-width: 640px; margin: 0 auto; }
.install-steps li {
  counter-increment: install; padding: 20px 0 20px 56px; position: relative;
  border-bottom: 1px solid var(--border); font-size: 15px; color: var(--slate);
}
.install-steps li::before {
  content: counter(install); position: absolute; left: 0; top: 18px;
  width: 36px; height: 36px; border-radius: 10px; background: var(--orange-tint);
  color: var(--orange-dark); font-weight: 800; display: grid; place-items: center; font-size: 14px;
}
.install-steps strong { color: var(--navy); display: block; margin-bottom: 4px; }

.site-footer {
  padding: 56px 0 32px; border-top: 1px solid var(--border); background: var(--bg);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-brand p { font-size: 13px; color: var(--slate); margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--slate); padding: 4px 0; }
.footer-col a:hover { color: var(--orange-dark); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--slate); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

.workflow-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.workflow-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); }
.workflow-card--old { background: #fef2f2; }
.workflow-card--new { background: #f0fdf4; border-color: #bbf7d0; }
.workflow-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.workflow-card ul { list-style: none; font-size: 13px; color: var(--slate); }
.workflow-card li { padding: 6px 0; padding-left: 18px; position: relative; }
.workflow-card--old li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; }
.workflow-card--new li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }

/* —— Premium layout (approved preview) —— */
.journey {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--navy);
  color: #e2e8f0;
}
.journey__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  margin-bottom: 56px; max-width: 100%; width: 100%;
  margin-left: auto; margin-right: auto;
}
.journey h2,
.journey__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: #fff !important; max-width: none; line-height: 1.12;
  text-wrap: pretty; text-align: center;
  width: 100%; margin-left: auto; margin-right: auto;
}
@media (min-width: 900px) {
  .journey__head h2:not(.heading--balance),
  .journey > .container > .journey__head h2:not(.heading--balance) {
    white-space: nowrap;
  }
}
.journey__head h2.heading--balance,
.journey h2.heading--balance { white-space: normal; text-wrap: pretty; }
.journey__head p {
  font-size: 15px; color: #94a3b8; max-width: 52ch; margin-bottom: 0;
  text-align: center; line-height: 1.6;
}
.journey__steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
  background: transparent; border-radius: 0; overflow: visible;
}
.journey__steps.journey__steps--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.journey-step {
  padding: 32px 24px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  min-height: 100%; text-align: center;
}
.journey-step__num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800; letter-spacing: 0.02em;
  color: #fdba74; margin-bottom: 16px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.journey-step h3 {
  font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 8px;
  line-height: 1.25; text-wrap: pretty;
}
.journey-step p { font-size: 12px; color: #94a3b8; line-height: 1.5; margin: 0; }

.bento-section { padding: clamp(72px, 10vw, 112px) 0; }
.bento-section__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-dark); margin-bottom: 12px;
}
.bento-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--navy); margin-bottom: 16px; max-width: none; line-height: 1.12;
  text-wrap: pretty;
}
.bento-section__intro {
  font-size: 15px; color: var(--slate); max-width: 48ch;
  margin-bottom: 32px; line-height: 1.65;
}
.bento-audience {
  display: grid; grid-template-columns: 1fr 1fr 1.15fr;
  gap: 16px; align-items: stretch; margin-bottom: 16px;
}
.bento-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: stretch;
}
.bento-tile {
  border-radius: var(--radius); border: 1px solid var(--line); padding: 28px;
  background: var(--white); transition: border-color 0.25s, box-shadow 0.25s;
}
.bento-tile:hover { border-color: var(--line-strong); box-shadow: 0 2px 8px rgba(15, 36, 71, 0.04); }
.bento-tile--consumer {
  background: var(--cream); border-color: rgba(234, 88, 12, 0.12);
}
.bento-tile--b2b {
  background: var(--mist); border-color: rgba(26, 53, 96, 0.12);
}
.bento-tile--shot {
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white);
}
.bento-tile--stat {
  display: flex; flex-direction: column; justify-content: flex-start;
  text-align: left; min-height: 148px; padding: 24px 28px;
}
.bento-tile--stat-warm { background: var(--cream); border-color: rgba(234, 88, 12, 0.15); }
.bento-tile--stat-cool { background: var(--mist); border-color: rgba(26, 53, 96, 0.12); }
.bento-tile--stat-navy { background: var(--navy); border-color: var(--navy); }
.bento-tile--stat-navy .bento-stat__num { color: #fff; }
.bento-tile--stat-navy .bento-stat__lbl { color: #94a3b8; }
.bento-tile--stat-navy .bento-stat__tag { color: #fdba74; }
.bento-tile__tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.bento-tile--consumer .bento-tile__tag { color: #c2410c; }
.bento-tile--b2b .bento-tile__tag { color: var(--navy-mid); }
.bento-tile h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.25;
}
.bento-tile p { font-size: 14px; color: var(--slate); line-height: 1.6; margin: 0; }
.bento-tile__list { margin-top: 16px; list-style: none; font-size: 13px; color: var(--slate); }
.bento-tile__list li { padding: 6px 0; border-top: 1px solid var(--line); }
.bento-tile--shot img {
  width: 100%; flex: 1; object-fit: cover; object-position: top left; min-height: 220px;
}
.bento-shot__cap {
  padding: 10px 16px; font-size: 11px; font-weight: 600; color: #64748b;
  border-top: 1px solid var(--line); background: #fafbfc;
}
.bento-stat__tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 10px; color: var(--orange-dark);
}
.bento-tile--stat-cool .bento-stat__tag { color: var(--navy-mid); }
.bento-stat__num {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 800; color: var(--navy);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.bento-stat__lbl { font-size: 13px; color: var(--slate); margin-top: 10px; line-height: 1.5; }
.bento-section__foot { margin-top: 40px; }

.editorial-row {
  padding: clamp(72px, 10vw, 112px) 0;
  background: #fafbfc; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.editorial-row__inner {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 64px; align-items: center;
}
.editorial-row__fig {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: #94a3b8; margin-bottom: 12px;
}
.editorial-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--navy); margin-bottom: 16px; line-height: 1.15;
}
.editorial-row p { font-size: 15px; color: var(--slate); margin-bottom: 12px; }
.editorial-points { margin-top: 24px; }
.editorial-point {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.editorial-point__idx { font-size: 12px; font-weight: 800; color: var(--orange-dark); padding-top: 2px; }
.editorial-point h4 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.editorial-point p { font-size: 13px; margin: 0; color: var(--slate); }

.cta-premium__inner {
  padding: 56px 48px; border-radius: var(--radius-lg);
  background: var(--navy); color: #e2e8f0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: 24px;
}
.cta-premium h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: #fff !important; line-height: 1.15; margin-bottom: 0;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
  text-wrap: balance;
}
.cta-premium h2.heading--balance { max-width: 28ch; }
.cta-premium p {
  font-size: 14px; color: #94a3b8; margin-top: 8px; max-width: 42ch;
  margin-left: auto; margin-right: auto;
}
.cta-premium__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; width: 100%;
}
.cta-premium .btn-ghost {
  border-color: rgba(255,255,255,0.2); color: #fff; background: transparent;
}
.cta-premium .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid--3 { grid-template-columns: 1fr; max-width: 100%; }
}
@media (max-width: 600px) {
  .journey__head h2 { white-space: normal; }
  .journey__steps.journey__steps--5 { grid-template-columns: 1fr !important; }
}
@media (max-width: 960px) {
  section { padding: var(--section-pad-sm) 0; }
  .hero { padding: 100px 0 64px; }
  .page-hero { padding: 88px 0 64px; }
  .cta-band { padding: 48px var(--space-4); }
  .hero-grid, .ai-band-inner, .compound-inner, .showcase-layout, .problem-grid,
  .hero--premium .hero-metrics { grid-template-columns: 1fr; gap: 20px; }
  .problem-grid--2, .stats-row--2, .steps-grid--4,
  .feature-grid, .feature-grid--3, .feature-grid--4, .feature-grid--2, .stats-row, .seo-pillar-grid,
  .two-col, .split-band, .workflow-compare, .footer-grid,
  .editorial-row__inner { grid-template-columns: 1fr !important; }
  .journey__steps:not(.journey__steps--5) { grid-template-columns: 1fr !important; }
  .journey__steps.journey__steps--5 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .bento-audience { grid-template-columns: 1fr; }
  .bento-metrics { grid-template-columns: 1fr; }
  .bento-tile--consumer, .bento-tile--b2b, .bento-tile--shot, .bento-tile--stat { grid-column: auto; grid-row: auto; }
  .float-pill { display: none; }
  .problem-grid--2 { max-width: 100%; }
  .compound-band, .ai-band { padding: 40px 20px; min-height: 0; }
  .problem-card, .feature-card { padding: 20px; }
  .aeo-callout { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 4vw; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .header { position: sticky; }
  .menu-toggle { display: block; }
  .screenshot-frame { transform: none; }
  .float-card { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* WordPress / Breakdance embed — full width, zero hero top gap */
.rl-marketing-page.rl-page {
  --rl-pad-top: 0;
  --rl-section-pad: 56px;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip;
}
@media (max-width: 960px) {
  .rl-marketing-page.rl-page .problem-grid,
  .rl-marketing-page.rl-page .problem-grid--2,
  .rl-marketing-page.rl-page .stats-row,
  .rl-marketing-page.rl-page .stats-row--2,
  .rl-marketing-page.rl-page .steps-grid,
  .rl-marketing-page.rl-page .steps-grid--4,
  .rl-marketing-page.rl-page .feature-grid,
  .rl-marketing-page.rl-page .feature-grid--2,
  .rl-marketing-page.rl-page .feature-grid--3,
  .rl-marketing-page.rl-page .feature-grid--4,
  .rl-marketing-page.rl-page .two-col,
  .rl-marketing-page.rl-page .split-band,
  .rl-marketing-page.rl-page .workflow-compare,
  .rl-marketing-page.rl-page .compound-inner,
  .rl-marketing-page.rl-page .ai-band-inner,
  .rl-marketing-page.rl-page .hero-grid,
  .rl-marketing-page.rl-page .showcase-layout,
  .rl-marketing-page.rl-page .footer-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
  .rl-marketing-page.rl-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.rl-marketing-page.rl-page .container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}
.rl-marketing-page.rl-page section.hero,
.rl-marketing-page.rl-page section.page-hero {
  padding: 0 0 40px !important;
  margin-top: 0 !important;
  background: #fff !important;
}
.rl-marketing-page.rl-page .hero .hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rl-marketing-page.rl-page .hero.hero--premium .hero-copy {
  text-align: left;
  align-items: flex-start;
}
.rl-marketing-page.rl-page .hero.hero--premium .hero-badge { margin-left: 0; }
.rl-marketing-page.rl-page .hero.hero--premium .hero-lead { margin-left: 0; margin-right: 0; }
.rl-marketing-page.rl-page .hero.hero--premium .hero-actions { justify-content: flex-start; }
.rl-marketing-page.rl-page .hero.hero--premium .hero-metrics {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  justify-content: center !important;
  justify-items: center !important;
  text-align: center !important;
  width: 100% !important;
}
.rl-marketing-page.rl-page .hero-lead { margin-left: auto; margin-right: auto; }
.rl-marketing-page.rl-page .hero-actions { justify-content: center; width: 100%; }
.rl-marketing-page.rl-page .hero-proof { justify-content: center; width: 100%; }
.rl-marketing-page.rl-page .hero-badge { margin-left: auto; margin-right: auto; }
.rl-marketing-page.rl-page section.showcase {
  background: #fff;
  padding-top: 32px;
}
.rl-marketing-page.rl-page .showcase .section-head {
  text-align: center;
}
.rl-marketing-page.rl-page .showcase .section-title,
.rl-marketing-page.rl-page .showcase .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.rl-marketing-page.rl-page .section-head {
  text-align: center !important;
}
.rl-marketing-page.rl-page .section-head .section-title,
.rl-marketing-page.rl-page .section-head .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.rl-marketing-page.rl-page .page-hero.page-hero--premium,
.rl-marketing-page.rl-page .page-hero.page-hero--premium .container {
  text-align: left !important;
}
.rl-marketing-page.rl-page .page-hero.page-hero--premium .hero-lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.rl-marketing-page.rl-page .page-hero.page-hero--premium .page-hero-actions,
.rl-marketing-page.rl-page .page-hero.page-hero--premium .hero-actions {
  justify-content: flex-start !important;
}
.rl-marketing-page.rl-page .page-hero.page-hero--premium h1 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  text-wrap: pretty !important;
}
.rl-marketing-page.rl-page .page-hero.page-hero--premium [data-page-hero],
.rl-marketing-page.rl-page .page-hero.page-hero--premium > .container {
  align-items: flex-start !important;
  text-align: left !important;
}
.rl-marketing-page.rl-page .journey__head {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  max-width: 100% !important;
  width: 100% !important;
}
.rl-marketing-page.rl-page .journey__head h2 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}
.rl-marketing-page.rl-page .journey__head p {
  text-align: center !important;
  max-width: 52ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (min-width: 900px) {
  .rl-marketing-page.rl-page .journey__head h2:not(.heading--balance) {
    white-space: nowrap !important;
    max-width: none !important;
  }
}
.rl-marketing-page.rl-page .journey-step__num {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: #fdba74 !important;
}
.rl-marketing-page.rl-page .journey__head h2,
.rl-marketing-page.rl-page .journey-step h3 {
  color: #fff !important;
}
.rl-marketing-page.rl-page .cta-premium__inner {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.rl-marketing-page.rl-page .cta-premium h2 {
  color: #fff !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 28ch !important;
  white-space: normal !important;
  text-wrap: balance !important;
}
.rl-marketing-page.rl-page .cta-premium p {
  color: #94a3b8 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.rl-marketing-page.rl-page .cta-premium__actions {
  justify-content: center !important;
  width: 100% !important;
}
.rl-marketing-page.rl-page .section-head--left + .timeline,
.rl-marketing-page.rl-page .section-head--left ~ .timeline {
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 100% !important;
}
.rl-marketing-page.rl-page .hero.hero--premium h1.heading--balance {
  max-width: 12ch !important;
  white-space: normal !important;
  text-wrap: balance !important;
}
.rl-marketing-page.rl-page .section-cta-link,
.rl-marketing-page.rl-page .section-note,
.rl-marketing-page.rl-page .section-note--lg {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}
.rl-marketing-page.rl-page .section-head--left ~ .section-note:not(.section-note--center),
.rl-marketing-page.rl-page .section-head--left + .section-note:not(.section-note--center) {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.rl-marketing-page.rl-page .section-head.section-head--left {
  text-align: left !important;
}
.rl-marketing-page.rl-page .section-head.section-head--left .section-title,
.rl-marketing-page.rl-page .section-head.section-head--left .section-desc {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.rl-marketing-page.rl-page .feature-card,
.rl-marketing-page.rl-page .feature-card--story {
  text-align: center !important;
  align-items: center !important;
}
.rl-marketing-page.rl-page .feature-card .feature-icon,
.rl-marketing-page.rl-page .feature-card--story .feature-icon {
  margin-left: auto !important;
  margin-right: auto !important;
}
.rl-marketing-page.rl-page .feature-card .tier-row,
.rl-marketing-page.rl-page .feature-card--story .tier-row {
  justify-content: center !important;
}
.rl-marketing-page.rl-page .section-cta-link,
.rl-marketing-page.rl-page .section-note,
.rl-marketing-page.rl-page .pricing-tier-link,
.rl-marketing-page.rl-page .pricing-footnote {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
.rl-marketing-page.rl-page .section-cta-link a { color: #ea580c !important; }
.rl-marketing-page.rl-page .pricing-tier-link a { color: #1a3560 !important; }
.rl-marketing-page.rl-page .pricing-tier-link a:hover { color: #0f2447 !important; }

/* Compare table + card links — prevent blue-on-blue from theme overrides */
.rl-marketing-page.rl-page .compare-table--audience th:first-child {
  color: #fff !important;
  background: #0f2447 !important;
}
.rl-marketing-page.rl-page .compare-table--audience th:nth-child(2) {
  color: #fff !important;
  background: #c2410c !important;
}
.rl-marketing-page.rl-page .compare-table--audience th:nth-child(3) {
  color: #fff !important;
  background: #1e40af !important;
}
.rl-marketing-page.rl-page .compare-table th {
  color: #fff !important;
}
.rl-marketing-page.rl-page .card-link-row a,
.rl-marketing-page.rl-page .problem-card--b2b .card-link-row a {
  color: #0f2447 !important;
}
.rl-marketing-page.rl-page .problem-card--consumer .card-link-row a {
  color: #9a3412 !important;
}
.rl-marketing-page.rl-page .feature-card a:not(.btn),
.rl-marketing-page.rl-page .problem-card p a:not(.btn),
.rl-marketing-page.rl-page .section-desc a:not(.btn),
.rl-marketing-page.rl-page .hero-lead a:not(.btn) {
  color: #0f2447 !important;
  text-decoration: underline !important;
}

.rl-marketing-page.rl-page .section-note a,
.rl-marketing-page.rl-page .section-cta-link a {
  color: #1a3560 !important;
  text-decoration: none !important;
  display: inline !important;
  white-space: nowrap !important;
}
.rl-marketing-page.rl-page .section-note a:hover,
.rl-marketing-page.rl-page .section-cta-link a:hover {
  color: #0f2447 !important;
  text-decoration: underline !important;
}
.rl-marketing-page.rl-page .journey a:not(.btn),
.rl-marketing-page.rl-page .cta-premium a:not(.btn),
.rl-marketing-page.rl-page .compound-band a:not(.btn),
.rl-marketing-page.rl-page .ai-band a:not(.btn) {
  color: #f97316 !important;
  text-decoration: underline !important;
}
.rl-marketing-page.rl-page .journey a:not(.btn):hover,
.rl-marketing-page.rl-page .cta-premium a:not(.btn):hover,
.rl-marketing-page.rl-page .compound-band a:not(.btn):hover,
.rl-marketing-page.rl-page .ai-band a:not(.btn):hover {
  color: #fdba74 !important;
}

/* WordPress / Breakdance theme overrides when embedded via [rl_page] */
.rl-marketing-page.rl-page a.btn.btn-primary,
.rl-marketing-page.rl-page a.btn.btn-primary:link,
.rl-marketing-page.rl-page a.btn.btn-primary:visited,
.rl-marketing-page.rl-page .hero .hero-actions a.btn.btn-primary,
.rl-marketing-page.rl-page .cta-band a.btn.btn-primary,
.rl-marketing-page.rl-page .cta-premium a.btn.btn-primary,
.rl-marketing-page.rl-page .pricing-card-foot a.btn.btn-primary,
.rl-marketing-page a.btn-primary,
.rl-marketing-page .btn-primary,
.rl-page a.btn-primary,
.rl-page .btn-primary {
  color: #fff !important;
  text-decoration: none !important;
}
.rl-marketing-page.rl-page a.btn.btn-primary:hover,
.rl-marketing-page.rl-page a.btn.btn-primary:focus,
.rl-marketing-page.rl-page a.btn.btn-primary:active,
.rl-marketing-page a.btn-primary:hover,
.rl-marketing-page .btn-primary:hover,
.rl-page a.btn-primary:hover,
.rl-page .btn-primary:hover {
  color: #fff !important;
}
.rl-marketing-page.rl-page a.btn.btn-navy,
.rl-marketing-page.rl-page a.btn.btn-navy:link,
.rl-marketing-page.rl-page a.btn.btn-navy:visited,
.rl-marketing-page a.btn-navy,
.rl-marketing-page .btn-navy,
.rl-page a.btn-navy,
.rl-page .btn-navy {
  color: #fff !important;
  text-decoration: none !important;
}
.rl-marketing-page.rl-page a.btn.btn-navy:hover,
.rl-marketing-page.rl-page a.btn.btn-navy:focus,
.rl-marketing-page.rl-page a.btn.btn-navy:active,
.rl-marketing-page a.btn-navy:hover,
.rl-marketing-page .btn-navy:hover {
  color: #fff !important;
}
.rl-marketing-page.rl-page a.btn.btn-secondary,
.rl-marketing-page.rl-page a.btn.btn-secondary:link,
.rl-marketing-page.rl-page a.btn.btn-secondary:visited,
.rl-marketing-page.rl-page a.btn.btn-ghost,
.rl-marketing-page.rl-page a.btn.btn-ghost:link,
.rl-marketing-page.rl-page a.btn.btn-ghost:visited,
.rl-marketing-page a.btn-secondary,
.rl-marketing-page a.btn-ghost,
.rl-page a.btn-secondary,
.rl-page a.btn-ghost {
  color: #0f2447 !important;
  background: #fff !important;
  border-color: #1a3560 !important;
  text-decoration: none !important;
}
.rl-marketing-page.rl-page a.btn.btn-secondary:hover,
.rl-marketing-page.rl-page a.btn.btn-secondary:focus,
.rl-marketing-page.rl-page a.btn.btn-secondary:active,
.rl-marketing-page.rl-page a.btn.btn-ghost:hover,
.rl-marketing-page.rl-page a.btn.btn-ghost:focus,
.rl-marketing-page.rl-page a.btn.btn-ghost:active,
.rl-marketing-page a.btn-secondary:hover,
.rl-marketing-page a.btn-ghost:hover,
.rl-page a.btn-secondary:hover,
.rl-page a.btn-ghost:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #1a3560, #0f2447) !important;
  border-color: #0f2447 !important;
}
.rl-marketing-page.rl-page .compound-band h2,
.rl-marketing-page.rl-page .ai-band h2,
.rl-marketing-page.rl-page .instant-download h2,
.rl-marketing-page .compound-band h2,
.rl-marketing-page .ai-band h2,
.rl-marketing-page .instant-download h2,
.rl-page .compound-band h2,
.rl-page .ai-band h2,
.rl-page .instant-download h2 {
  color: #fff !important;
}
.rl-marketing-page.rl-page .compound-band .section-label,
.rl-marketing-page.rl-page .compound-band .section-label--warm,
.rl-marketing-page.rl-page .ai-band .section-label,
.rl-marketing-page.rl-page .ai-band .section-label--warm,
.rl-marketing-page.rl-page .instant-download .section-label,
.rl-marketing-page .compound-band .section-label,
.rl-marketing-page .ai-band .section-label,
.rl-page .compound-band .section-label,
.rl-page .ai-band .section-label {
  color: #fdba74 !important;
}
.rl-marketing-page.rl-page .split-band > div:first-child h3,
.rl-marketing-page .split-band > div:first-child h3,
.rl-page .split-band > div:first-child h3 {
  color: #f97316 !important;
}
.rl-marketing-page.rl-page .rl-trial-wrap button,
.rl-marketing-page.rl-page .instant-download button,
.rl-marketing-page .rl-trial-wrap button,
.rl-marketing-page .instant-download button {
  color: #fff !important;
}
