/* Delivery public marketing landing — scoped; does not alter app shell tokens. */

.mkt {
  --mkt-page: #f4f6f9;
  --mkt-panel: #ffffff;
  --mkt-ink: #0f172a;
  --mkt-kpi: #1e3a5f;
  --mkt-navy: #0f2744;
  --mkt-muted: #64748b;
  --mkt-line: #e2e8f0;
  --mkt-teal: #0d9488;
  --mkt-teal-dark: #0f766e;
  --mkt-blue: #2563eb;
  --mkt-amber: #d97706;
  --mkt-purple: #7c3aed;
  --mkt-green: #16a34a;
  --mkt-red: #dc2626;
  --mkt-radius: 10px;
  --mkt-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --mkt-max: 1120px;

  margin: 0;
  min-height: 100vh;
  background: var(--mkt-page);
  color: var(--mkt-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mkt *,
.mkt *::before,
.mkt *::after {
  box-sizing: border-box;
}

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

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

.mkt-wrap {
  width: min(100% - 2rem, var(--mkt-max));
  margin-inline: auto;
}

/* —— Header —— */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 3.75rem;
}

.mkt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--mkt-navy);
  text-decoration: none;
  flex-shrink: 0;
}

.mkt-logo:hover {
  text-decoration: none;
}

.mkt-logo img {
  width: 28px;
  height: 28px;
}

.mkt-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  list-style: none;
  padding: 0;
}

.mkt-nav > li {
  position: relative;
}

.mkt-nav > li > a,
.mkt-nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.7rem;
  border: 0;
  background: transparent;
  color: var(--mkt-kpi);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
}

.mkt-nav > li > a:hover,
.mkt-nav > li > button:hover,
.mkt-nav > li > button[aria-expanded="true"] {
  background: #f1f5f9;
  text-decoration: none;
}

.mkt-nav__caret {
  font-size: 0.65rem;
  opacity: 0.7;
}

.mkt-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 13rem;
  padding: 0.4rem;
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  box-shadow: var(--mkt-shadow);
  list-style: none;
  margin: 0;
  z-index: 60;
}

.mkt-nav > li:hover > .mkt-dropdown,
.mkt-nav > li:focus-within > .mkt-dropdown,
.mkt-nav > li > button[aria-expanded="true"] + .mkt-dropdown {
  display: block;
}

.mkt-dropdown a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--mkt-ink);
}

.mkt-dropdown a:hover {
  background: #f1f5f9;
  text-decoration: none;
}

.mkt-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.mkt-header__actions .mkt-link-signin {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mkt-kpi);
  padding: 0.4rem 0.5rem;
}

.mkt-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  background: var(--mkt-panel);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--mkt-navy);
}

.mkt-menu-toggle[aria-expanded="true"] {
  background: #f1f5f9;
}

.mkt-mobile-nav {
  display: none;
  border-top: 1px solid var(--mkt-line);
  padding: 0.75rem 0 1rem;
}

.mkt-mobile-nav.is-open {
  display: block;
}

.mkt-mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--mkt-kpi);
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-mobile-nav a:last-child {
  border-bottom: 0;
}

/* —— Buttons —— */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.mkt-btn:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

.mkt-btn--primary {
  background: var(--mkt-teal);
  color: #fff;
}

.mkt-btn--primary:hover {
  background: var(--mkt-teal-dark);
}

.mkt-btn--secondary {
  background: var(--mkt-panel);
  color: var(--mkt-teal);
  border-color: var(--mkt-teal);
}

.mkt-btn--secondary:hover {
  background: #f0fdfa;
}

.mkt-btn--on-teal {
  background: #fff;
  color: var(--mkt-teal-dark);
}

.mkt-btn--on-teal:hover {
  background: #f8fafc;
}

.mkt-btn--lg {
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}

/* —— Sections —— */
.mkt-section {
  padding: 4rem 0;
}

.mkt-section--tight {
  padding: 3rem 0;
}

.mkt-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}

.mkt-h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--mkt-navy);
}

.mkt-h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--mkt-navy);
  text-align: center;
}

.mkt-lead {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--mkt-muted);
  text-align: center;
  line-height: 1.55;
}

.mkt-section__head {
  margin-bottom: 2.25rem;
}

/* —— Hero —— */
.mkt-hero {
  padding: 2.5rem 0 3.5rem;
}

.mkt-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.mkt-hero__copy .mkt-benefit {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--mkt-kpi);
  line-height: 1.4;
}

.mkt-accent-see { color: var(--mkt-teal); }
.mkt-accent-know { color: var(--mkt-blue); }
.mkt-accent-get { color: var(--mkt-purple); }

.mkt-hero__support {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--mkt-muted);
  line-height: 1.55;
  max-width: 28rem;
}

.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

.mkt-hero__reassure .mkt-check {
  color: var(--mkt-green);
  font-weight: 700;
}

.mkt-hero__visual {
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  box-shadow: var(--mkt-shadow);
  padding: 1rem;
  overflow: hidden;
}

.mkt-hero__visual-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}

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

.mkt-dash-card {
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  padding: 0.75rem;
  background: #fafbfc;
}

.mkt-dash-card h3 {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mkt-muted);
}

.mkt-dash-donut {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.mkt-donut {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(
    var(--mkt-green) 0 262deg,
    var(--mkt-amber) 262deg 327deg,
    var(--mkt-red) 327deg 360deg
  );
  position: relative;
  flex-shrink: 0;
}

.mkt-donut::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fafbfc;
}

.mkt-dash-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  color: var(--mkt-kpi);
  line-height: 1.45;
}

.mkt-dash-legend li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.mkt-dash-legend .on::before { background: var(--mkt-green); }
.mkt-dash-legend .risk::before { background: var(--mkt-amber); }
.mkt-dash-legend .off::before { background: var(--mkt-red); }

.mkt-dash-metrics {
  margin: 0.55rem 0 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--mkt-kpi);
}

.mkt-dash-metrics strong {
  font-variant-numeric: tabular-nums;
  color: var(--mkt-navy);
}

.mkt-dash-panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.mkt-dash-panel {
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: #fff;
}

.mkt-dash-panel h4 {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mkt-muted);
}

.mkt-dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-top: 1px solid #f1f5f9;
  font-size: 0.75rem;
}

.mkt-dash-row:first-of-type {
  border-top: 0;
}

.mkt-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.mkt-dot--green { background: var(--mkt-green); }
.mkt-dot--amber { background: var(--mkt-amber); }
.mkt-dot--red { background: var(--mkt-red); }

.mkt-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--mkt-muted);
  white-space: nowrap;
}

.mkt-tag--amber { background: #fffbeb; color: var(--mkt-amber); }
.mkt-tag--red { background: #fef2f2; color: var(--mkt-red); }

/* —— Benefits —— */
.mkt-benefits {
  display: grid;
  gap: 1.25rem;
}

.mkt-benefit-card {
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.mkt-benefit-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mkt-benefit-card__icon--teal { background: #ccfbf1; color: var(--mkt-teal); }
.mkt-benefit-card__icon--purple { background: #ede9fe; color: var(--mkt-purple); }
.mkt-benefit-card__icon--blue { background: #dbeafe; color: var(--mkt-blue); }

.mkt-benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--mkt-navy);
}

.mkt-benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mkt-muted);
  line-height: 1.55;
}

/* —— Connected model —— */
.mkt-chain {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.mkt-chain__node {
  position: relative;
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1rem 0.85rem;
  text-align: center;
  cursor: default;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mkt-chain__node:hover,
.mkt-chain__node:focus-within {
  border-color: #99f6e4;
  box-shadow: var(--mkt-shadow);
}

.mkt-chain__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: #f0fdfa;
  color: var(--mkt-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.mkt-chain__label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-navy);
}

.mkt-chain__sub {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--mkt-muted);
}

.mkt-chain__tip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%);
  width: min(16rem, 80vw);
  padding: 0.65rem 0.75rem;
  background: var(--mkt-navy);
  color: #e2e8f0;
  font-size: 0.75rem;
  line-height: 1.4;
  border-radius: 8px;
  z-index: 5;
  text-align: left;
}

.mkt-chain__node:hover .mkt-chain__tip,
.mkt-chain__node:focus-within .mkt-chain__tip {
  display: block;
}

.mkt-chain__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mkt-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mkt-span-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
}

.mkt-span-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f0fdfa;
  color: var(--mkt-teal-dark);
}

.mkt-span-pill--purple {
  background: #ede9fe;
  color: var(--mkt-purple);
}

/* —— Role cards —— */
.mkt-roles {
  display: grid;
  gap: 1rem;
}

.mkt-role-card {
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
}

.mkt-role-card__shot {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #e2e8f0, #f8fafc);
  border-bottom: 1px solid var(--mkt-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mkt-role-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mkt-role-card__shot-fallback {
  padding: 1rem;
  width: 100%;
  height: 100%;
  font-size: 0.7rem;
  color: var(--mkt-muted);
}

.mkt-role-card__body {
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mkt-role-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--mkt-navy);
}

.mkt-role-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--mkt-muted);
  line-height: 1.5;
  flex: 1;
}

.mkt-role-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mkt-teal);
}

.mkt-role-card__cta:hover {
  color: var(--mkt-teal-dark);
}

/* —— Integrations + AI —— */
.mkt-split {
  display: grid;
  gap: 1.25rem;
}

.mkt-panel {
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.mkt-panel h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--mkt-navy);
  letter-spacing: -0.02em;
}

.mkt-panel .mkt-sub {
  margin: 0.5rem 0 0;
  color: var(--mkt-muted);
  font-size: 0.95rem;
}

.mkt-integ-diagram {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.mkt-integ-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.mkt-integ-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  background: #f8fafc;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--mkt-kpi);
}

.mkt-integ-hub {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  background: var(--mkt-navy);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.mkt-integ-verbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mkt-teal-dark);
}

.mkt-integ-verbs span {
  padding: 0.25rem 0.55rem;
  background: #ccfbf1;
  border-radius: 999px;
}

.mkt-integ-rule {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  background: #f0fdfa;
  border-radius: 8px;
  border-left: 3px solid var(--mkt-teal);
}

.mkt-integ-rule strong {
  display: block;
  color: var(--mkt-navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.mkt-integ-rule p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--mkt-muted);
  line-height: 1.5;
}

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

.mkt-ai-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.mkt-ai-list__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #ede9fe;
  color: var(--mkt-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.mkt-ai-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--mkt-navy);
}

.mkt-ai-list p {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: var(--mkt-muted);
}

.mkt-ai-panel {
  margin-top: 1.25rem;
  border: 1px solid #ddd6fe;
  border-radius: 10px;
  background: #faf5ff;
  padding: 1rem 1.1rem;
}

.mkt-ai-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.mkt-ai-panel__head strong {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-purple);
}

.mkt-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #ede9fe;
  color: var(--mkt-purple);
}

.mkt-ai-health {
  font-weight: 700;
  color: var(--mkt-amber);
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.mkt-ai-items {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.85rem;
  color: var(--mkt-kpi);
  display: grid;
  gap: 0.35rem;
}

.mkt-ai-guard {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--mkt-muted);
  line-height: 1.45;
}

/* —— Trial band —— */
.mkt-trial {
  background: var(--mkt-teal);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.mkt-trial h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-trial p {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-size: 1.05rem;
  opacity: 0.92;
  line-height: 1.5;
}

.mkt-trial .mkt-btn {
  margin-top: 1.5rem;
}

.mkt-trial__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.mkt-trial__checks li::before {
  content: "✓ ";
  font-weight: 700;
}

/* —— Footer —— */
.mkt-footer {
  background: var(--mkt-navy);
  color: #94a3b8;
  padding: 3rem 0 1.5rem;
}

.mkt-footer__grid {
  display: grid;
  gap: 2rem;
}

.mkt-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 16rem;
}

.mkt-footer .mkt-logo {
  color: #fff;
}

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

.mkt-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.mkt-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.mkt-footer a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.mkt-footer a:hover {
  color: #fff;
}

.mkt-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.mkt-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* —— Mobile sticky CTA —— */
.mkt-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--mkt-line);
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
}

.mkt-mobile-cta .mkt-btn {
  width: 100%;
}

/* —— Trial start page —— */
.mkt-trial-page {
  padding: 3rem 0 5rem;
}

.mkt-trial-card {
  max-width: 36rem;
  margin: 0 auto;
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: var(--mkt-shadow);
}

.mkt-trial-card h1 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--mkt-navy);
  letter-spacing: -0.02em;
}

.mkt-trial-card > p {
  margin: 0.75rem 0 0;
  color: var(--mkt-muted);
}

.mkt-trial-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--mkt-muted);
}

.mkt-trial-steps li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mkt-trial-steps .n {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--mkt-kpi);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mkt-trial-choices {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mkt-choice {
  display: block;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  background: #fafbfc;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mkt-choice:hover {
  border-color: var(--mkt-teal);
  background: #f0fdfa;
  text-decoration: none;
}

.mkt-choice strong {
  display: block;
  color: var(--mkt-navy);
  font-size: 1rem;
}

.mkt-choice span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--mkt-muted);
}

.mkt-trial-note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--mkt-muted);
  line-height: 1.45;
}

/* —— Lightbox —— */
.mkt-dialog {
  border: 0;
  border-radius: 12px;
  padding: 0;
  max-width: min(920px, 94vw);
  width: 100%;
  background: var(--mkt-panel);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.mkt-dialog::backdrop {
  background: rgba(15, 39, 68, 0.55);
}

.mkt-dialog__inner {
  padding: 1rem;
}

.mkt-dialog__inner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.mkt-dialog__close {
  margin-top: 0.75rem;
  width: 100%;
}

.mkt-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mkt-logo__text small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}

.mkt-dropdown__label {
  padding: 0.45rem 0.65rem 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-muted);
  list-style: none;
}

.mkt-benefits--4 {
  grid-template-columns: 1fr;
}

.mkt-benefits--why {
  grid-template-columns: 1fr;
}

.mkt-opmodel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mkt-opmodel__tier {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: 18rem;
}

.mkt-opmodel__tier--single {
  max-width: 16rem;
}

.mkt-opmodel__branch {
  color: var(--mkt-muted);
  font-size: 0.95rem;
}

.mkt-opmodel__lanes {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.mkt-attention-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.mkt-attention-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  background: #fafbfc;
  font-size: 0.9rem;
  color: var(--mkt-kpi);
}

.mkt-flow-steps {
  margin: 1.15rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.75rem;
  color: var(--mkt-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.mkt-flow-steps strong {
  color: var(--mkt-navy);
}

.mkt-growth-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.mkt-growth-flow__node {
  width: min(100%, 16rem);
  text-align: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  background: var(--mkt-panel);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mkt-navy);
}

.mkt-growth-flow__arrow {
  color: var(--mkt-muted);
  font-size: 0.85rem;
}

.mkt-ai-questions {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mkt-ai-questions li {
  padding: 0.65rem 0.85rem;
  border-left: 3px solid var(--mkt-purple);
  background: #faf5ff;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--mkt-kpi);
  font-style: italic;
}

.mkt-integ-chip small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--mkt-muted);
  margin-top: 0.1rem;
}

.mkt-role-card--link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mkt-role-card--link:hover {
  border-color: #99f6e4;
  box-shadow: var(--mkt-shadow);
  text-decoration: none;
}

.mkt-footer .mkt-logo img {
  filter: none;
  border-radius: 6px;
}

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

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

  .mkt-opmodel__tier {
    flex-direction: row;
    max-width: none;
    align-items: stretch;
    gap: 0.35rem;
  }

  .mkt-opmodel__tier .mkt-chain__arrow {
    transform: rotate(-90deg);
    width: 1rem;
    align-self: center;
  }

  .mkt-opmodel__tier .mkt-chain__node {
    flex: 1;
  }

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

  .mkt-growth-flow {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
  }

  .mkt-growth-flow__node {
    width: auto;
    min-width: 7.5rem;
  }

  .mkt-growth-flow__arrow {
    transform: rotate(-90deg);
  }
}

@media (min-width: 1200px) {
  .mkt-benefits--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* —— Responsive —— */
@media (min-width: 900px) {
  .mkt-nav {
    display: flex;
  }

  .mkt-menu-toggle {
    display: none;
  }

  .mkt-header__actions {
    margin-left: 0;
  }

  .mkt-mobile-nav {
    display: none !important;
  }

  .mkt-hero__grid {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 2.5rem;
  }

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

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

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

  .mkt-chain {
    flex-direction: row;
    align-items: stretch;
    gap: 0.35rem;
  }

  .mkt-chain__node {
    flex: 1;
    min-width: 0;
  }

  .mkt-chain__arrow {
    transform: rotate(-90deg);
    width: 1rem;
  }

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

  .mkt-split {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1200px) {
  .mkt-roles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 899px) {
  .mkt-mobile-cta {
    display: block;
  }

  .mkt {
    padding-bottom: 4.5rem;
  }

  .mkt-dash-kpis {
    grid-template-columns: 1fr;
  }

  .mkt-dash-panels {
    grid-template-columns: 1fr;
  }

  .mkt-header__actions .mkt-btn {
    display: none;
  }
}
