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

:root {
  --mkt-bg: #ffffff;
  --mkt-bg-alt: #f1f5f9;
  --mkt-bg-mesh: #f8fafc;
  --mkt-bg-dark: #0b1220;
  --mkt-text: #0f172a;
  --mkt-muted: #64748b;
  --mkt-accent: #06b6d4;
  --mkt-accent-hover: #0891b2;
  --mkt-accent-soft: #cffafe;
  --mkt-cyan: #06b6d4;
  --mkt-teal: #14b8a6;
  --mkt-violet: #6366f1;
  --mkt-emerald: #10b981;
  --mkt-amber: #f59e0b;
  --mkt-border: #e2e8f0;
  --mkt-radius: 16px;
  --mkt-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  --mkt-shadow-lg: 0 20px 50px rgba(37, 99, 235, 0.18);
  --mkt-max: 1140px;
  --mkt-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mkt-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 45%, #6366f1 100%);
  --mkt-gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
}

/* Marketing pages don't load Bootstrap; JS uses d-none to toggle compare price */
.d-none {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body.mkt-body {
  margin: 0;
  font-family: var(--mkt-font);
  color: var(--mkt-text);
  background: var(--mkt-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.mkt-container {
  width: 100%;
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 1.35rem;
}

/* Header */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.mkt-logo img {
  display: block;
  height: 54px;
  width: auto;
}

.mkt-header .mkt-logo img {
  height: 46px;
}

.mkt-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.mkt-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.mkt-nav a {
  color: var(--mkt-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.mkt-nav a:hover,
.mkt-nav a.is-active {
  color: var(--mkt-accent);
  background: var(--mkt-accent-soft);
}

.mkt-header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-left: 0.25rem;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.15rem;
  font-family: var(--mkt-font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

.mkt-btn:hover {
  transform: translateY(-1px);
}

.mkt-btn-primary {
  background: var(--mkt-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.mkt-btn-primary:hover {
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.mkt-btn-outline {
  background: #fff;
  color: var(--mkt-text);
  border: 1.5px solid var(--mkt-border);
}

.mkt-btn-outline:hover {
  border-color: var(--mkt-accent);
  color: var(--mkt-accent);
}

.mkt-btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

.mkt-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--mkt-text);
  padding: 0.25rem;
}

/* Hero */
.mkt-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: var(--mkt-bg-mesh);
}

.mkt-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(6, 182, 212, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(99, 102, 241, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 90%, rgba(59, 130, 246, 0.15), transparent 45%),
    linear-gradient(180deg, #eff6ff 0%, #f8fafc 50%, #fff 100%);
}

.mkt-hero .mkt-container {
  position: relative;
  z-index: 1;
}

.mkt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-accent);
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(207, 250, 254, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 999px;
}

.mkt-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.mkt-hero h1 .mkt-gradient-text {
  background: var(--mkt-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-hero-lead {
  font-size: 1.12rem;
  color: var(--mkt-muted);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.mkt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.mkt-app-downloads {
  margin-top: 1.25rem;
}

.mkt-app-downloads--compact {
  margin-top: 1rem;
}

.mkt-app-downloads-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mkt-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: #f8fafc;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mkt-app-badge:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.65);
  background: #1e293b;
}

.mkt-app-badge i {
  font-size: 1.15rem;
}

.mkt-app-downloads-note,
.mkt-app-downloads-fallback {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--mkt-muted);
  max-width: 34rem;
}

.mkt-section-dark .mkt-app-downloads-note,
.mkt-section-dark .mkt-app-downloads-fallback {
  color: #94a3b8;
}

.mkt-section-dark .mkt-app-badge {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(148, 163, 184, 0.4);
}

.mkt-hero-note {
  font-size: 0.85rem;
  color: var(--mkt-muted);
  margin-top: 1rem;
}

.mkt-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.mkt-hero-chip {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  color: var(--mkt-muted);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.mkt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .mkt-hero-grid {
    grid-template-columns: 1fr;
  }
  .mkt-hero h1 {
    max-width: none;
  }
}

.mkt-hero-art {
  position: relative;
}

.mkt-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-hero-art::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: var(--mkt-gradient);
  opacity: 0.15;
  filter: blur(40px);
  border-radius: 50%;
  z-index: -1;
}

/* Split hero — manager desktop + rep phone */
.mkt-hero-split {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 340px;
  padding: 0.5rem 0 0;
}

.mkt-hero-split-panel {
  margin: 0;
}

.mkt-hero-split-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mkt-accent);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.mkt-hero-split-label--rep {
  color: #0d9488;
}

.mkt-hero-split-panel--manager {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 78%;
  z-index: 1;
}

.mkt-hero-split-panel--rep {
  flex: 0 0 auto;
  width: min(38%, 210px);
  margin-left: clamp(-4.5rem, -14%, -2.5rem);
  margin-bottom: -0.25rem;
  z-index: 2;
}

.mkt-hero-split-browser {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-hero-split-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-hero-split-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mkt-hero-split-browser-bar span:nth-child(1) {
  background: #f87171;
}

.mkt-hero-split-browser-bar span:nth-child(2) {
  background: #fbbf24;
}

.mkt-hero-split-browser-bar span:nth-child(3) {
  background: #4ade80;
}

.mkt-hero-split-browser-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.mkt-hero-split-phone {
  width: 100%;
  max-width: none;
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .mkt-hero-split {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    gap: 1.5rem;
    padding-top: 0.5rem;
  }

  .mkt-hero-split-panel--manager,
  .mkt-hero-split-panel--rep {
    max-width: min(100%, 420px);
    width: 100%;
    margin-left: 0;
  }

  .mkt-hero-split-panel--rep {
    order: -1;
    max-width: min(100%, 240px);
  }
}

.mkt-float {
  animation: mkt-float 5s ease-in-out infinite;
}

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

/* Trust strip */
.mkt-trust {
  padding: 1.25rem 0;
  background: #fff;
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mkt-muted);
}

.mkt-trust-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mkt-trust-inner i {
  color: var(--mkt-teal);
}

/* Sections */
.mkt-section {
  padding: 4.5rem 0;
  position: relative;
}

.mkt-section-alt {
  background: linear-gradient(180deg, var(--mkt-bg-alt) 0%, var(--mkt-bg) 100%);
}

.mkt-section-dark {
  background: var(--mkt-bg-dark);
  color: #f8fafc;
}

.mkt-section-dark .mkt-muted,
.mkt-section-dark .mkt-section-sub {
  color: #94a3b8;
}

.mkt-section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.mkt-section-sub {
  text-align: center;
  color: var(--mkt-muted);
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  font-size: 1.05rem;
}

/* Audience cards */
.mkt-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .mkt-audience-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-audience-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 0;
  box-shadow: var(--mkt-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mkt-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-audience-card-head {
  padding: 1.5rem 1.75rem 1rem;
  color: #fff;
}

.mkt-audience-card--reps .mkt-audience-card-head {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.mkt-audience-card--teams .mkt-audience-card-head {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.mkt-audience-preview {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 340px;
  margin: 0 auto 0.75rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #0f172a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.mkt-audience-card--teams .mkt-audience-preview {
  max-width: 220px;
  height: 160px;
  object-position: top center;
}

/* Phone device frame (rep route PWA marketing) */
.mkt-phone-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mkt-phone-frame {
  position: relative;
  width: min(100%, 300px);
  padding: 10px 10px 14px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 36px;
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.mkt-phone-frame-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
  pointer-events: none;
}

.mkt-phone-frame-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mkt-phone-caption {
  margin: 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--mkt-muted);
  font-weight: 600;
}

.mkt-phone-showcase-row {
  display: grid;
  grid-template-columns: 1fr min(320px, 42%);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .mkt-phone-showcase-row {
    grid-template-columns: 1fr;
  }
  .mkt-phone-showcase {
    order: -1;
  }
}

.mkt-audience-card-head h3 {
  margin: 0;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mkt-audience-card-body {
  padding: 1.25rem 1.75rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mkt-audience-card-body p {
  color: var(--mkt-muted);
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

/* Pills */
.mkt-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.mkt-pill {
  background: #fff;
  border: 1px solid var(--mkt-border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mkt-text);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s, color 0.15s;
}

.mkt-pill a {
  color: inherit;
  text-decoration: none;
}

.mkt-pill:hover {
  border-color: var(--mkt-cyan);
  color: var(--mkt-accent);
}

.mkt-pill:nth-child(3n+1) { border-color: #a5f3fc; background: #ecfeff; }
.mkt-pill:nth-child(3n+2) { border-color: #c7d2fe; background: #eef2ff; }
.mkt-pill:nth-child(3n) { border-color: #bbf7d0; background: #ecfdf5; }

/* Feature grid */
.mkt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .mkt-feature-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-feature-card {
  padding: 1.5rem;
  border-radius: var(--mkt-radius);
  border: 1px solid var(--mkt-border);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mkt-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mkt-shadow);
}

.mkt-icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: #fff;
}

.mkt-feature-card:nth-child(6n+1) .mkt-icon-tile { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.mkt-feature-card:nth-child(6n+2) .mkt-icon-tile { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.mkt-feature-card:nth-child(6n+3) .mkt-icon-tile { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.mkt-feature-card:nth-child(6n+4) .mkt-icon-tile { background: linear-gradient(135deg, #10b981, #059669); }
.mkt-feature-card:nth-child(6n+5) .mkt-icon-tile { background: linear-gradient(135deg, #f59e0b, #d97706); }
.mkt-feature-card:nth-child(6n+6) .mkt-icon-tile { background: linear-gradient(135deg, #ec4899, #db2777); }

.mkt-feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.mkt-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mkt-muted);
}

/* Compare */
.mkt-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .mkt-compare {
    grid-template-columns: 1fr;
  }
}

.mkt-compare-box {
  padding: 2rem 1.5rem;
  border-radius: var(--mkt-radius);
  text-align: center;
}

.mkt-compare-box.bad {
  background: linear-gradient(180deg, #fef2f2, #fff);
  border: 1px solid #fecaca;
}

.mkt-compare-box.good {
  background: linear-gradient(180deg, #eff6ff, #fff);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--mkt-shadow-lg);
  position: relative;
}

.mkt-compare-box.good::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--mkt-radius) + 2px);
  background: var(--mkt-gradient);
  z-index: -1;
}

.mkt-compare-stat {
  font-size: 1.85rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.35rem;
}

.mkt-compare-box.good .mkt-compare-stat {
  background: var(--mkt-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Stats */
.mkt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

@media (max-width: 768px) {
  .mkt-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mkt-stats--3 {
    grid-template-columns: 1fr;
  }
}

.mkt-stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: #fff;
  border-radius: var(--mkt-radius);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow);
}

.mkt-stat-card:nth-child(1) { border-top: 4px solid var(--mkt-cyan); }
.mkt-stat-card:nth-child(2) { border-top: 4px solid var(--mkt-accent); }
.mkt-stat-card:nth-child(3) { border-top: 4px solid var(--mkt-violet); }
.mkt-stat-card:nth-child(4) { border-top: 4px solid var(--mkt-emerald); }

.mkt-stat-val {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  background: var(--mkt-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-stat-label {
  font-size: 0.85rem;
  color: var(--mkt-muted);
  font-weight: 600;
  margin-top: 0.25rem;
  display: block;
}

/* Visual panel (legacy route preview enhanced) */
.mkt-visual-panel {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: 20px;
  box-shadow: var(--mkt-shadow-lg);
  padding: 1.35rem;
  overflow: hidden;
}

.mkt-route-preview {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mkt-route-stop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--mkt-bg-alt);
  border-radius: 10px;
  font-size: 0.82rem;
}

.mkt-route-stop.done {
  background: linear-gradient(90deg, #ecfdf5, #f0fdf4);
  border: 1px solid #bbf7d0;
}

.mkt-route-stop.active {
  background: linear-gradient(90deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
}

.mkt-route-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mkt-accent-soft);
  color: var(--mkt-accent);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mkt-route-stop.done .mkt-route-num {
  background: #22c55e;
  color: #fff;
}

.mkt-route-stop.active .mkt-route-num {
  background: var(--mkt-gradient);
  color: #fff;
}

/* Pricing */
.mkt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .mkt-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.mkt-price-card {
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.75rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mkt-price-card.featured {
  border: none;
  box-shadow: var(--mkt-shadow-lg);
  background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
  position: relative;
}

.mkt-price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--mkt-radius);
  padding: 2px;
  background: var(--mkt-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mkt-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
  background: var(--mkt-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-price-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-accent);
  background: var(--mkt-accent-soft);
  border-radius: 999px;
}

.mkt-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
}

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

.mkt-pricing-formula-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 0.75rem;
}

.mkt-pricing-formula-item {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--mkt-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.mkt-pricing-formula-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mkt-muted);
  margin-bottom: 0.25rem;
}

.mkt-pricing-formula-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--mkt-text);
}

.mkt-pricing-formula-val small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mkt-muted);
}

.mkt-pricing-formula-plus {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mkt-muted);
}

.mkt-pricing-annual-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--mkt-muted);
  margin: 0 0 1rem;
}

.mkt-pricing-calc {
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--mkt-shadow);
}

.mkt-pricing-calc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mkt-pricing-calc-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.mkt-pricing-billing-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
  background: var(--mkt-bg-alt);
}

.mkt-pricing-billing-toggle button {
  border: none;
  background: transparent;
  font-family: var(--mkt-font);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--mkt-muted);
  cursor: pointer;
}

.mkt-pricing-billing-toggle button.is-active {
  background: #fff;
  color: var(--mkt-accent);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.mkt-pricing-reps-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mkt-pricing-reps-control {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.mkt-pricing-step {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--mkt-border);
  border-radius: 10px;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mkt-text);
  cursor: pointer;
}

.mkt-pricing-reps-out {
  min-width: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.mkt-pricing-reps-control input[type='range'] {
  width: 100%;
  accent-color: var(--mkt-accent);
}

.mkt-pricing-total {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.55), rgba(207, 250, 254, 0.55));
  margin-bottom: 1rem;
}

.mkt-pricing-total-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  width: 100%;
}

.mkt-pricing-total-compare {
  font-size: 1.65rem;
  font-weight: 700;
  color: #dc2626;
  text-decoration: line-through;
  line-height: 1.2;
}

.mkt-pricing-total-label {
  width: 100%;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mkt-muted);
}

.mkt-pricing-total-amount {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--mkt-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-pricing-total-period {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mkt-muted);
}

.mkt-pricing-examples {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mkt-pricing-examples button {
  border: 1px solid var(--mkt-border);
  background: var(--mkt-bg-alt);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-family: var(--mkt-font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mkt-muted);
  cursor: pointer;
}

.mkt-pricing-examples button:hover,
.mkt-pricing-examples button.is-active {
  border-color: var(--mkt-accent);
  color: var(--mkt-accent);
  background: var(--mkt-accent-soft);
}

.mkt-pricing-launch {
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(16, 185, 129, 0.45);
  background: rgba(236, 253, 245, 0.7);
}

.mkt-pricing-launch strong {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #047857;
  margin-bottom: 0.5rem;
}

.mkt-pricing-launch ul {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--mkt-text);
}

.mkt-pricing-explainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.mkt-pricing-explainer-card {
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.35rem;
  background: #fff;
}

.mkt-pricing-block--compact .mkt-pricing-layout {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.mkt-pricing-block--compact .mkt-pricing-calc {
  display: none;
}

.mkt-pricing-teaser-link {
  text-align: center;
  margin-top: 1.25rem;
}

/* Quotes */
.mkt-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .mkt-quote-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-quote {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-left: 4px solid var(--mkt-accent);
  border-radius: var(--mkt-radius);
  padding: 1.35rem;
  margin: 0;
  font-size: 0.95rem;
  box-shadow: var(--mkt-shadow);
}

.mkt-quote:nth-child(2) { border-left-color: var(--mkt-cyan); }
.mkt-quote:nth-child(3) { border-left-color: var(--mkt-violet); }

.mkt-quote footer {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--mkt-muted);
  font-style: normal;
  font-weight: 600;
}

/* Showcase band with graphic */
.mkt-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .mkt-showcase {
    grid-template-columns: 1fr;
  }
}

.mkt-showcase img {
  width: 100%;
  height: auto;
  border-radius: var(--mkt-radius);
  box-shadow: var(--mkt-shadow);
}

/* CTA band */
.mkt-cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 1.35rem;
  color: #fff;
}

.mkt-cta-band-bg {
  position: absolute;
  inset: 0;
  background: var(--mkt-gradient);
}

.mkt-cta-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1), transparent 35%);
}

.mkt-cta-band .mkt-container {
  position: relative;
  z-index: 1;
}

.mkt-cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
}

.mkt-cta-band p {
  margin: 0 auto 1.5rem;
  opacity: 0.92;
  max-width: 34rem;
  font-size: 1.05rem;
}

.mkt-cta-band .mkt-btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.mkt-cta-band .mkt-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.mkt-cta-band .mkt-btn-primary {
  background: #fff;
  color: var(--mkt-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Footer */
.mkt-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: #94a3b8;
  font-size: 0.88rem;
}

.mkt-footer strong {
  color: #f8fafc;
  font-size: 1rem;
}

.mkt-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.mkt-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.mkt-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
}

.mkt-footer-links a:hover {
  color: #67e8f9;
}

.mkt-footer .mkt-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.mkt-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.mkt-footer-legal a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.mkt-footer-legal a:hover {
  color: #67e8f9;
}

/* Legal documents */
.mkt-legal-meta {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--mkt-muted);
  font-weight: 600;
}

.mkt-legal {
  max-width: 760px;
  color: var(--mkt-text);
  font-size: 0.95rem;
}

.mkt-legal > *:first-child {
  margin-top: 0;
}

.mkt-legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mkt-text);
}

.mkt-legal h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.mkt-legal p,
.mkt-legal li {
  color: var(--mkt-muted);
  line-height: 1.65;
}

.mkt-legal ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.mkt-legal a {
  color: var(--mkt-accent);
  font-weight: 600;
}

.mkt-legal-related {
  max-width: 760px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mkt-border);
}

.mkt-legal-related h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
}

.mkt-legal-related ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.mkt-legal-related a {
  color: var(--mkt-accent);
  font-weight: 600;
  text-decoration: none;
}

.mkt-legal-contact {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mkt-muted);
}

.mkt-legal-contact a {
  color: var(--mkt-accent);
  font-weight: 600;
}

/* About */
.mkt-about-highlight {
  display: grid;
  gap: 1rem;
}

.mkt-about-stat {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--mkt-shadow);
}

.mkt-about-stat-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mkt-text);
  margin-bottom: 0.35rem;
}

.mkt-about-stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--mkt-muted);
  line-height: 1.5;
}

.mkt-about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.mkt-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact */
.mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .mkt-contact-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mkt-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  box-shadow: var(--mkt-shadow);
}

.mkt-contact-card i {
  font-size: 1.25rem;
  color: var(--mkt-accent);
  margin-top: 0.1rem;
}

.mkt-contact-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.mkt-contact-card a {
  color: var(--mkt-accent);
  font-weight: 600;
  text-decoration: none;
}

.mkt-contact-card a:hover {
  text-decoration: underline;
}

.mkt-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  box-shadow: var(--mkt-shadow);
}

.mkt-contact-form {
  display: grid;
  gap: 1rem;
}

.mkt-contact-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.mkt-contact-field input,
.mkt-contact-field select,
.mkt-contact-field textarea {
  width: 100%;
  font-family: var(--mkt-font);
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--mkt-border);
  border-radius: 10px;
  background: #fff;
  color: var(--mkt-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.mkt-contact-field input:focus,
.mkt-contact-field select:focus,
.mkt-contact-field textarea:focus {
  outline: none;
  border-color: var(--mkt-accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.mkt-contact-field input.is-invalid,
.mkt-contact-field select.is-invalid,
.mkt-contact-field textarea.is-invalid {
  border-color: #ef4444;
}

.mkt-contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.mkt-contact-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mkt-muted);
}

.mkt-contact-note a {
  color: var(--mkt-accent);
  font-weight: 600;
}

.mkt-contact-alert {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mkt-contact-alert--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.mkt-contact-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.mkt-contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Subpage hero */
.mkt-page-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
  border-bottom: none;
}

.mkt-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mkt-page-hero--default .mkt-page-hero-bg {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 50%, #eef2ff 100%);
}

.mkt-page-hero--teal .mkt-page-hero-bg {
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 50%, #eff6ff 100%);
}

.mkt-page-hero--violet .mkt-page-hero-bg {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #f5f3ff 100%);
}

.mkt-page-hero--emerald .mkt-page-hero-bg {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #eff6ff 100%);
}

.mkt-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .mkt-page-hero-inner {
    grid-template-columns: 1fr;
  }
  .mkt-page-hero-art {
    max-width: 280px;
    margin: 0 auto;
  }
}

.mkt-page-hero-eyebrow {
  font-size: 0.85rem;
  color: var(--mkt-muted);
  margin: 0 0 0.75rem;
}

.mkt-page-hero-eyebrow a {
  color: var(--mkt-accent);
  text-decoration: none;
}

.mkt-page-hero-eyebrow a:hover {
  text-decoration: underline;
}

.mkt-page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mkt-page-hero p {
  margin: 0;
  color: var(--mkt-muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.mkt-page-hero-art img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--mkt-shadow);
}

.mkt-page-hero-art .mkt-shot-frame--phone {
  max-width: 280px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.mkt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .mkt-split {
    grid-template-columns: 1fr;
  }
}

.mkt-split-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.mkt-muted {
  color: var(--mkt-muted);
}

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

.mkt-check-list li {
  padding: 0.55rem 0 0.55rem 1.85rem;
  position: relative;
}

.mkt-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  line-height: 1.35rem;
  text-align: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 800;
  font-size: 0.75rem;
}

/* Scroll reveal */
.mkt-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mkt-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .mkt-menu-toggle {
    display: block;
  }

  .mkt-header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .mkt-nav-wrap {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--mkt-border);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--mkt-shadow);
  }

  .mkt-nav-wrap.is-open {
    display: flex;
  }

  .mkt-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .mkt-header-actions {
    flex-direction: row;
    width: 100%;
  }

  .mkt-header-actions .mkt-btn {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
  }
}

/* App screenshots */
.mkt-shot {
  margin: 0;
  border-radius: var(--mkt-radius);
  overflow: hidden;
  box-shadow: var(--mkt-shadow-lg);
  border: 1px solid var(--mkt-border);
  background: #0f172a;
}

.mkt-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.mkt-shot--hero {
  border-radius: 20px;
}

.mkt-shot--thumb img {
  max-height: 140px;
  object-fit: cover;
  object-position: top center;
}

.mkt-mobile-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .mkt-mobile-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .mkt-mobile-shot-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-mobile-shot {
  margin: 0;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.mkt-mobile-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Some simulator exports have tighter crops; normalize visual size. */

/* How it works */
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: mkt-step;
}

@media (max-width: 900px) {
  .mkt-steps {
    grid-template-columns: 1fr;
  }
}

.mkt-step {
  counter-increment: mkt-step;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  box-shadow: var(--mkt-shadow);
  position: relative;
}

.mkt-step::before {
  content: counter(mkt-step);
  position: absolute;
  top: -12px;
  left: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mkt-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.mkt-step h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.mkt-step p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--mkt-muted);
}

/* Comparison table */
.mkt-compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--mkt-radius);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow);
  background: #fff;
}

.mkt-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.mkt-compare-table th,
.mkt-compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-compare-table thead th {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  font-weight: 700;
}

.mkt-compare-table th.mkt-col-us {
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
  color: var(--mkt-accent);
}

.mkt-compare-table tr:last-child td {
  border-bottom: none;
}

.mkt-yes {
  color: #16a34a;
  font-weight: 700;
}

.mkt-no {
  color: #94a3b8;
}

/* FAQ */
.mkt-faq-guide-link {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mkt-border, #e2e8f0);
  text-align: center;
  font-size: 0.95rem;
  color: var(--mkt-muted);
}

.mkt-faq {
  max-width: 720px;
  margin: 0 auto;
}

.mkt-faq-item {
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.mkt-faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.mkt-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--mkt-accent);
  font-weight: 700;
}

.mkt-faq-item[open] summary::after {
  content: '−';
}

.mkt-faq-item div {
  padding: 0 1.25rem 1rem;
  color: var(--mkt-muted);
  font-size: 0.95rem;
}

/* SEO guides / long-form articles */
.mkt-article {
  padding-bottom: 3rem;
}

.mkt-article-header {
  padding: 2.5rem 0 1.5rem;
  max-width: 760px;
}

.mkt-article-eyebrow {
  font-size: 0.85rem;
  color: var(--mkt-muted);
  margin: 0 0 0.75rem;
}

.mkt-article-eyebrow a {
  color: var(--mkt-accent);
  text-decoration: none;
}

.mkt-article-eyebrow a:hover {
  text-decoration: underline;
}

.mkt-article-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.mkt-article-deck {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--mkt-muted);
  margin: 0 0 1rem;
}

.mkt-article-meta {
  font-size: 0.875rem;
  color: var(--mkt-muted);
  margin: 0;
}

.mkt-article-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.mkt-article-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .mkt-article-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 3rem;
  }
}

.mkt-article-toc {
  position: sticky;
  top: 5.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  background: #f8fafc;
}

.mkt-article-toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mkt-muted);
  margin: 0 0 0.75rem;
}

.mkt-article-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.mkt-article-toc li + li {
  margin-top: 0.45rem;
}

.mkt-article-toc a {
  color: var(--mkt-text);
  text-decoration: none;
}

.mkt-article-toc a:hover {
  color: var(--mkt-accent);
  text-decoration: underline;
}

.mkt-prose {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mkt-text);
}

.mkt-prose > *:first-child {
  margin-top: 0;
}

.mkt-prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
  scroll-margin-top: 5rem;
}

.mkt-prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  line-height: 1.35;
}

.mkt-prose p,
.mkt-prose ul {
  margin: 0 0 1rem;
}

.mkt-prose ul {
  padding-left: 1.35rem;
}

.mkt-prose li + li {
  margin-top: 0.35rem;
}

.mkt-prose a {
  color: var(--mkt-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-prose strong {
  font-weight: 700;
}

.mkt-article-faq {
  margin: 1.5rem 0 2rem;
}

.mkt-article-cta {
  margin: 2.5rem 0 1.5rem;
  padding: 1.75rem;
  border-radius: var(--mkt-radius);
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border: 1px solid #dbeafe;
}

.mkt-article-cta h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.mkt-article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.mkt-article-cta-note {
  font-size: 0.9rem;
  margin: 1rem 0 0;
}

.mkt-article-footer-note {
  font-size: 0.95rem;
  color: var(--mkt-muted);
  border-top: 1px solid var(--mkt-border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 959px) {
  .mkt-article-toc {
    position: static;
  }
}

/* Guides index */
.mkt-guides-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .mkt-guides-grid {
    gap: 1.5rem;
  }
}

.mkt-guide-card {
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  background: #fff;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkt-guide-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.mkt-guide-card-date {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mkt-muted);
  margin: 0 0 0.5rem;
}

.mkt-guide-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.65rem;
}

.mkt-guide-card-title a {
  color: var(--mkt-text);
  text-decoration: none;
}

.mkt-guide-card-title a:hover {
  color: var(--mkt-accent);
}

.mkt-guide-card-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--mkt-muted);
  margin: 0 0 1rem;
}

.mkt-guide-card-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mkt-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mkt-guide-card-link:hover {
  text-decoration: underline;
}

.mkt-guides-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.mkt-guides-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Solution / niche landing pages */
.mkt-solution-lead {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.mkt-solution-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--mkt-muted);
  margin: 0 0 1.5rem;
}

.mkt-solution-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.mkt-solution-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.mkt-showcase--stack {
  display: grid;
  gap: 1.75rem;
  max-width: 720px;
}

.mkt-quote-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.mkt-quote-list li {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--mkt-accent);
  background: #f8fafc;
  border-radius: 0 var(--mkt-radius) var(--mkt-radius) 0;
  color: var(--mkt-text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.mkt-solution-pricing-table-wrap {
  overflow-x: auto;
  max-width: 480px;
}

.mkt-solution-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.mkt-solution-pricing-table th,
.mkt-solution-pricing-table td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--mkt-border);
  text-align: left;
}

.mkt-solution-pricing-table thead th {
  background: #f8fafc;
  font-weight: 700;
}

.mkt-check-list--cols {
  display: grid;
  gap: 0.5rem 1.5rem;
}

@media (min-width: 640px) {
  .mkt-check-list--cols {
    grid-template-columns: 1fr 1fr;
  }
}

.mkt-solution-footer-note {
  padding: 0 0 3rem;
  font-size: 0.95rem;
  color: var(--mkt-muted);
  text-align: center;
}

/* Back to top */
.mkt-back-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 95;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--mkt-text);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.15s ease;
}

.mkt-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mkt-back-top:hover,
.mkt-back-top:focus-visible {
  background: var(--mkt-accent);
  outline: none;
}

.mkt-back-top i {
  font-size: 1.15rem;
  line-height: 1;
}

body:has(.mkt-sticky-cta.is-visible) .mkt-back-top {
  bottom: 4.75rem;
}

@media (min-width: 769px) {
  body:has(.mkt-sticky-cta.is-visible) .mkt-back-top {
    bottom: 1.15rem;
  }
}

/* Sticky mobile CTA */
.mkt-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--mkt-border);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
  padding: 0.65rem 0;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.mkt-sticky-cta.is-visible {
  transform: translateY(0);
}

.mkt-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mkt-sticky-cta-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mkt-text);
}

.mkt-btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

@media (min-width: 769px) {
  .mkt-sticky-cta {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-back-top {
    transition: none;
  }
  .mkt-float,
  .mkt-reveal {
    animation: none;
    transition: none;
  }
  .mkt-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Demo video (hero button + inline poster + lightbox) ---- */
.mkt-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 0;
  padding: 0.5rem 0.25rem;
  font: inherit;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
}
.mkt-watch-btn:hover { color: #2563eb; }
.mkt-watch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  font-size: 1.25rem;
  transition: transform 0.18s ease, background 0.18s ease;
}
.mkt-watch-btn:hover .mkt-watch-icon { transform: scale(1.08); background: rgba(37, 99, 235, 0.2); }

.mkt-demo-video { max-width: 900px; margin: 0 auto 2.75rem; }
.mkt-demo-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mkt-demo-poster:hover { transform: translateY(-3px); box-shadow: 0 38px 84px rgba(15, 23, 42, 0.28); }
.mkt-demo-poster img { display: block; width: 100%; height: auto; }
.mkt-demo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.94);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}
.mkt-demo-poster:hover .mkt-demo-play { transform: translate(-50%, -50%) scale(1.08); background: #2563eb; }
.mkt-demo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.mkt-video-modal {
  border: 0;
  padding: 0;
  background: #000;
  border-radius: 16px;
  width: min(92vw, 1100px);
  max-width: 1100px;
  overflow: visible;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.mkt-video-modal::backdrop { background: rgba(2, 6, 23, 0.82); }
.mkt-video-player { display: block; width: 100%; height: auto; border-radius: 16px; }
.mkt-video-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.mkt-video-close:hover { opacity: 0.8; }
@media (max-width: 640px) {
  .mkt-video-close { top: 8px; right: 12px; font-size: 2rem; }
  .mkt-demo-play { width: 66px; height: 66px; font-size: 2rem; }
}
