/* Marketing site v2 — modern startup aesthetic (Phase 14) */

.mkt-page {
  --mkt-navy-950: #060f24;
  --mkt-navy-900: #0a1f44;
  --mkt-navy-800: #123163;
  --mkt-blue-600: #2457e0;
  --mkt-blue-500: #3e71f2;
  --mkt-blue-100: #dce6ff;
  --mkt-blue-50: #f2f6ff;
  --mkt-ink: #0f1a2e;
  --mkt-slate-600: #4a5670;
  --mkt-slate-400: #8a93a6;
  --mkt-line: #e3e8f2;
  --mkt-white: #ffffff;
  --mkt-green-600: #12875a;
  --mkt-green-50: #e9f8f1;
  --mkt-radius: 14px;
  --mkt-shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.06);
  --mkt-shadow-md: 0 8px 24px rgba(10, 31, 68, 0.1);
  --mkt-shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.16);
  --mkt-maxw: 1180px;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--mkt-ink);
  background: var(--mkt-white);
  -webkit-font-smoothing: antialiased;
}

.mkt-page h1,
.mkt-page h2,
.mkt-page h3,
.mkt-page h4 {
  font-family: "Sora", system-ui, sans-serif;
  margin: 0;
  color: var(--mkt-navy-900);
  letter-spacing: -0.02em;
}

.mkt-page p {
  margin: 0;
  color: var(--mkt-slate-600);
  line-height: 1.65;
}

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

.mkt-page .mkt-mono {
  font-family: "IBM Plex Mono", monospace;
}

.mkt-page .mkt-wrap {
  max-width: var(--mkt-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.mkt-page img,
.mkt-page svg {
  display: block;
  max-width: 100%;
}

.mkt-page section {
  position: relative;
}

.mkt-page ::selection {
  background: var(--mkt-blue-100);
  color: var(--mkt-navy-900);
}

.mkt-page a:focus-visible,
.mkt-page button:focus-visible {
  outline: 2px solid var(--mkt-blue-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reveal on scroll */
.mkt-page .mkt-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mkt-page .mkt-reveal.mkt-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mkt-page .mkt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mkt-page {
    scroll-behavior: auto;
  }
}

/* Buttons */
.mkt-page .mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

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

.mkt-page .mkt-btn-primary {
  background: var(--mkt-blue-600);
  color: #fff;
  box-shadow: 0 6px 16px rgba(36, 87, 224, 0.28);
}

.mkt-page .mkt-btn-primary:hover {
  background: #1e4ac9;
  box-shadow: 0 10px 22px rgba(36, 87, 224, 0.36);
  color: #fff;
}

.mkt-page .mkt-btn-ghost {
  background: transparent;
  color: var(--mkt-navy-900);
  border-color: var(--mkt-line);
}

.mkt-page .mkt-btn-ghost:hover {
  border-color: var(--mkt-blue-500);
  color: var(--mkt-blue-600);
}

.mkt-page .mkt-btn-inverse {
  background: #fff;
  color: var(--mkt-navy-900);
}

.mkt-page .mkt-btn-inverse:hover {
  background: var(--mkt-blue-50);
  color: var(--mkt-navy-900);
}

.mkt-page .mkt-btn-outline-inverse {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.mkt-page .mkt-btn-outline-inverse:hover {
  border-color: #fff;
  color: #fff;
}

.mkt-page .mkt-btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
  border-radius: 8px;
}

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

.mkt-page .mkt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.mkt-page .mkt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--mkt-navy-900);
  text-decoration: none;
}

.mkt-page .mkt-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--mkt-blue-600), var(--mkt-navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.mkt-page .mkt-logo-mark .brand-svg {
  width: 22px;
  height: 22px;
}

.mkt-page .mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mkt-page .mkt-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mkt-slate-600);
  transition: color 0.15s;
}

.mkt-page .mkt-nav-links a:hover {
  color: var(--mkt-blue-600);
}

.mkt-page .mkt-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mkt-page .mkt-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mkt-page .mkt-burger span {
  width: 22px;
  height: 2px;
  background: var(--mkt-navy-900);
  border-radius: 2px;
}

.mkt-page .mkt-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--mkt-line);
  background: #fff;
}

.mkt-page .mkt-mobile-menu a {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--mkt-navy-900);
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-page .mkt-mobile-menu.mkt-open {
  display: flex;
}

@media (max-width: 860px) {
  .mkt-page .mkt-nav-links {
    display: none;
  }

  .mkt-page .mkt-nav-cta .mkt-btn-ghost {
    display: none;
  }

  .mkt-page .mkt-burger {
    display: flex;
  }
}

.mkt-page .mkt-main {
  flex: 1;
}

/* Hero */
.mkt-page .mkt-hero {
  padding: 76px 0 60px;
  background:
    radial-gradient(760px 420px at 82% -10%, var(--mkt-blue-50), transparent 60%),
    #fff;
  overflow: hidden;
}

.mkt-page .mkt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.mkt-page .mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mkt-blue-600);
  background: var(--mkt-blue-50);
  border: 1px solid var(--mkt-blue-100);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.mkt-page .mkt-eyebrow .mkt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mkt-green-600);
  box-shadow: 0 0 0 3px var(--mkt-green-50);
}

.mkt-page .mkt-hero h1 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  max-width: 600px;
}

.mkt-page .mkt-hero-lead {
  font-size: 17.5px;
  margin-top: 20px;
  max-width: 520px;
}

.mkt-page .mkt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.mkt-page .mkt-hero-links {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.mkt-page .mkt-hero-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--mkt-navy-800);
}

.mkt-page .mkt-hero-links a:hover {
  color: var(--mkt-blue-600);
}

/* Terminal card */
.mkt-page .mkt-terminal {
  background: var(--mkt-navy-900);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--mkt-shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mkt-navy-800);
}

.mkt-page .mkt-terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-page .mkt-terminal-bar .mkt-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: #b9c6e8;
}

.mkt-page .mkt-terminal-bar .mkt-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3cd17d;
  box-shadow: 0 0 0 0 rgba(60, 209, 125, 0.6);
  animation: mkt-pulse 1.8s infinite;
}

@keyframes mkt-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(60, 209, 125, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(60, 209, 125, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(60, 209, 125, 0);
  }
}

.mkt-page .mkt-dots {
  display: flex;
  gap: 6px;
}

.mkt-page .mkt-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mkt-page .mkt-terminal-face {
  margin: 22px 22px 0;
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(160deg, #132a57, #0c1d3e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mkt-page .mkt-face-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--mkt-blue-500);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-page .mkt-face-ring::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(62, 113, 242, 0.45);
}

.mkt-page .mkt-face-ring svg {
  width: 38px;
  height: 38px;
}

.mkt-page .mkt-scan-line {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5fe0a5, transparent);
  top: 20%;
  animation: mkt-scan 2.6s ease-in-out infinite;
}

@keyframes mkt-scan {
  0% {
    top: 18%;
  }

  50% {
    top: 78%;
  }

  100% {
    top: 18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-page .mkt-scan-line,
  .mkt-page .mkt-pulse {
    animation: none;
  }
}

.mkt-page .mkt-terminal-feed {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-page .mkt-feed-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mkt-page .mkt-feed-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.mkt-page .mkt-feed-name {
  font-size: 13px;
  font-weight: 600;
  color: #eaf0ff;
}

.mkt-page .mkt-feed-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: #8fa0c8;
  margin-top: 2px;
}

.mkt-page .mkt-feed-row .mkt-spacer {
  flex: 1;
}

.mkt-page .mkt-pill {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}

.mkt-page .mkt-pill-verified {
  background: rgba(60, 209, 125, 0.14);
  color: #5fe0a5;
  border: 1px solid rgba(60, 209, 125, 0.28);
}

.mkt-page .mkt-pill-gps {
  background: rgba(62, 113, 242, 0.16);
  color: #8fb0ff;
  border: 1px solid rgba(62, 113, 242, 0.3);
}

/* Trust strip */
.mkt-page .mkt-trust {
  border-top: 1px solid var(--mkt-line);
  border-bottom: 1px solid var(--mkt-line);
  background: var(--mkt-blue-50);
}

.mkt-page .mkt-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}

.mkt-page .mkt-trust-item {
  text-align: center;
}

.mkt-page .mkt-trust-item .mkt-num {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--mkt-navy-900);
}

.mkt-page .mkt-trust-item .mkt-lbl {
  font-size: 12.5px;
  color: var(--mkt-slate-600);
  margin-top: 4px;
}

/* Sections */
.mkt-page .mkt-section {
  padding: 88px 0;
  max-width: none;
  margin: 0;
}

.mkt-page .mkt-section--tight {
  padding: 48px 0;
}

.mkt-page .mkt-section-alt {
  background: var(--mkt-blue-50);
}

.mkt-page .mkt-sec-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.mkt-page .mkt-sec-head.mkt-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mkt-page .mkt-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-blue-600);
  margin-bottom: 12px;
  display: block;
}

.mkt-page .mkt-sec-head h2 {
  font-size: 34px;
  line-height: 1.18;
}

.mkt-page .mkt-sec-head p {
  margin-top: 14px;
  font-size: 16px;
}

.mkt-page .mkt-section-title {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 8px;
}

.mkt-page .mkt-section-sub {
  color: var(--mkt-slate-600);
  margin-bottom: 28px;
  max-width: 680px;
  font-size: 16px;
}

/* Capture cards */
.mkt-page .mkt-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mkt-page .mkt-card {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: auto;
}

.mkt-page .mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mkt-shadow-md);
  border-color: var(--mkt-blue-100);
}

.mkt-page .mkt-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mkt-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mkt-page .mkt-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.mkt-page .mkt-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.mkt-page .mkt-card p {
  font-size: 14px;
}

.mkt-page .mkt-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* Steps */
.mkt-page .mkt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.mkt-page .mkt-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--mkt-line);
}

.mkt-page .mkt-step {
  position: relative;
  padding: 0 18px 0 0;
  background: transparent;
  border: none;
}

.mkt-page .mkt-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mkt-white);
  border: 1.5px solid var(--mkt-blue-600);
  color: var(--mkt-blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mkt-page .mkt-section-alt .mkt-step-num {
  background: var(--mkt-blue-50);
}

.mkt-page .mkt-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.mkt-page .mkt-step p {
  font-size: 13.5px;
}

/* Module tabs */
.mkt-page .mkt-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.mkt-page .mkt-tab-btn {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--mkt-line);
  background: #fff;
  color: var(--mkt-slate-600);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}

.mkt-page .mkt-tab-btn.mkt-active {
  background: var(--mkt-navy-900);
  border-color: var(--mkt-navy-900);
  color: #fff;
}

.mkt-page .mkt-tab-btn:hover:not(.mkt-active) {
  border-color: var(--mkt-blue-500);
  color: var(--mkt-blue-600);
}

.mkt-page .mkt-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mkt-page .mkt-mod-card {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  background: #fff;
}

.mkt-page .mkt-mod-card.mkt-show {
  display: flex;
}

.mkt-page .mkt-mod-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--mkt-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mkt-blue-600);
  font-size: 16px;
}

.mkt-page .mkt-mod-card h4 {
  font-size: 14.5px;
  color: var(--mkt-navy-900);
  margin-bottom: 4px;
}

.mkt-page .mkt-mod-card p {
  font-size: 12.8px;
}

/* Feature rows */
.mkt-page .mkt-frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.mkt-page .mkt-frow + .mkt-frow {
  border-top: 1px solid var(--mkt-line);
}

.mkt-page .mkt-frow.mkt-rev .mkt-frow-copy {
  order: 2;
}

.mkt-page .mkt-frow.mkt-rev .mkt-frow-visual {
  order: 1;
}

.mkt-page .mkt-frow-copy .mkt-kicker {
  margin-bottom: 14px;
}

.mkt-page .mkt-frow-copy h3 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.mkt-page .mkt-frow-copy p {
  font-size: 15.5px;
}

.mkt-page .mkt-frow-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-page .mkt-frow-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--mkt-navy-800);
  font-weight: 500;
}

.mkt-page .mkt-frow-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--mkt-green-600);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mocks */
.mkt-page .mkt-mock {
  border-radius: 18px;
  box-shadow: var(--mkt-shadow-md);
  overflow: hidden;
  border: 1px solid var(--mkt-line);
}

.mkt-page .mkt-mock-kiosk {
  background: linear-gradient(160deg, #0f2148, #0a1730);
  padding: 26px;
}

.mkt-page .mkt-mock-kiosk .mkt-screen {
  background: #0c1b3b;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.mkt-page .mkt-mock-kiosk .mkt-face-ring {
  margin: 0 auto 16px;
  border-color: #5fe0a5;
}

.mkt-page .mkt-mock-kiosk .mkt-status {
  font-family: "IBM Plex Mono", monospace;
  color: #5fe0a5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mkt-page .mkt-mock-kiosk .mkt-sub {
  font-family: "IBM Plex Mono", monospace;
  color: #8fa0c8;
  font-size: 11px;
  margin-top: 6px;
}

.mkt-page .mkt-mock-phone {
  background: var(--mkt-blue-50);
  padding: 34px;
  display: flex;
  justify-content: center;
}

.mkt-page .mkt-phone-shell {
  width: 220px;
  background: #0a1f44;
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-page .mkt-phone-screen {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  height: 340px;
  display: flex;
  flex-direction: column;
}

.mkt-page .mkt-phone-selfie {
  flex: 1;
  border-radius: 14px;
  background: linear-gradient(160deg, #dce6ff, #f2f6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px dashed var(--mkt-blue-500);
}

.mkt-page .mkt-phone-selfie svg {
  width: 52px;
  height: 52px;
  stroke: var(--mkt-blue-600);
}

.mkt-page .mkt-phone-info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mkt-page .mkt-phone-info .mkt-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: var(--mkt-slate-600);
}

.mkt-page .mkt-phone-info svg {
  width: 12px;
  height: 12px;
  stroke: var(--mkt-blue-600);
  flex-shrink: 0;
}

.mkt-page .mkt-mock-payslip {
  background: var(--mkt-blue-50);
  padding: 34px;
}

.mkt-page .mkt-payslip-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--mkt-shadow-md);
}

.mkt-page .mkt-payslip-card .mkt-ps-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--mkt-line);
  margin-bottom: 14px;
}

.mkt-page .mkt-payslip-card .mkt-ps-head .mkt-co {
  font-weight: 700;
  color: var(--mkt-navy-900);
  font-size: 14px;
}

.mkt-page .mkt-payslip-card .mkt-ps-head .mkt-mo {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--mkt-slate-400);
}

.mkt-page .mkt-ps-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--mkt-slate-600);
  padding: 6px 0;
}

.mkt-page .mkt-ps-row.mkt-total {
  border-top: 1px solid var(--mkt-line);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  color: var(--mkt-navy-900);
  font-size: 15px;
}

.mkt-page .mkt-ps-row .mkt-amt {
  font-family: "IBM Plex Mono", monospace;
}

.mkt-page .mkt-ps-row.mkt-total .mkt-amt {
  color: var(--mkt-green-600);
}

.mkt-page .mkt-sample-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: var(--mkt-slate-400);
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Pricing */
.mkt-page .mkt-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mkt-page .mkt-plan {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.mkt-page .mkt-plan:hover {
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(-4px);
}

.mkt-page .mkt-plan.mkt-featured {
  border: 1.5px solid var(--mkt-blue-600);
  position: relative;
  background: linear-gradient(180deg, #fff, var(--mkt-blue-50));
}

.mkt-page .mkt-plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--mkt-blue-600);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.03em;
}

.mkt-page .mkt-plan h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.mkt-page .mkt-plan .mkt-price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  color: var(--mkt-blue-600);
  font-weight: 600;
  margin: 10px 0 18px;
}

.mkt-page .mkt-plan ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.mkt-page .mkt-plan li {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: var(--mkt-slate-600);
}

.mkt-page .mkt-plan li svg {
  width: 16px;
  height: 16px;
  stroke: var(--mkt-green-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.mkt-page .mkt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.mkt-page .mkt-price-card {
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.mkt-page .mkt-price-card:hover {
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(-4px);
}

.mkt-page .mkt-price-card--featured {
  border: 1.5px solid var(--mkt-blue-600);
  background: linear-gradient(180deg, #fff, var(--mkt-blue-50));
}

.mkt-page .mkt-muted-note {
  font-size: 14px;
  color: var(--mkt-slate-600);
  margin-top: 20px;
}

/* FAQ */
.mkt-page .mkt-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-page .mkt-faq-item {
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.mkt-page .mkt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--mkt-navy-900);
  font-size: 15px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: "Sora", system-ui, sans-serif;
}

.mkt-page .mkt-faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--mkt-blue-600);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.mkt-page .mkt-faq-item.mkt-open .mkt-faq-q svg {
  transform: rotate(45deg);
}

.mkt-page .mkt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mkt-page .mkt-faq-a p {
  padding: 0 22px 19px;
  font-size: 14.5px;
}

/* CTA band */
.mkt-page .mkt-cta-band {
  background: radial-gradient(900px 400px at 50% -40%, var(--mkt-navy-800), var(--mkt-navy-950));
  padding: 80px 0;
  text-align: center;
}

.mkt-page .mkt-cta-band h2 {
  color: #fff;
  font-size: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.mkt-page .mkt-cta-band p {
  color: #afc0e8;
  margin-top: 14px;
  font-size: 15.5px;
}

.mkt-page .mkt-cta-band .mkt-hero-actions {
  justify-content: center;
  margin-top: 30px;
}

/* Footer */
.mkt-page .mkt-footer {
  background: var(--mkt-navy-950);
  padding: 64px 0 28px;
  color: #8fa0c8;
  border-top: none;
  margin-top: 0;
}

.mkt-page .mkt-foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-page .mkt-foot-brand .mkt-logo {
  color: #fff;
}

.mkt-page .mkt-foot-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: #8fa0c8;
  max-width: 280px;
}

.mkt-page .mkt-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Sora", system-ui, sans-serif;
}

.mkt-page .mkt-footer a {
  display: block;
  font-size: 14px;
  color: #afc0e8;
  margin-bottom: 11px;
  transition: color 0.15s;
}

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

.mkt-page .mkt-foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
  color: #8fa0c8;
}

.mkt-page .mkt-footer-inner {
  max-width: var(--mkt-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Contact */
.mkt-page .mkt-contact-box {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 20px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-page .mkt-contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.mkt-page .mkt-contact-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--mkt-navy-900);
}

.mkt-page .mkt-contact-form .form-control,
.mkt-page .mkt-contact-form .form-select {
  border-color: var(--mkt-line);
  border-radius: 10px;
  padding: 10px 14px;
}

.mkt-page .mkt-contact-form .form-control:focus,
.mkt-page .mkt-contact-form .form-select:focus {
  border-color: var(--mkt-blue-500);
  box-shadow: 0 0 0 3px rgba(36, 87, 224, 0.12);
}

.mkt-page .mkt-contact-form .btn-success {
  background: var(--mkt-blue-600);
  border-color: var(--mkt-blue-600);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
}

.mkt-page .mkt-contact-form .btn-success:hover {
  background: #1e4ac9;
  border-color: #1e4ac9;
}

.mkt-page .mkt-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Comparison table */
.mkt-page .mkt-comparison-wrap {
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.mkt-page .mkt-comparison-table {
  margin-bottom: 0;
}

.mkt-page .mkt-comparison-table th,
.mkt-page .mkt-comparison-table td {
  padding: 12px 16px;
}

/* Responsive */
@media (max-width: 980px) {
  .mkt-page .mkt-hero-grid {
    grid-template-columns: 1fr;
  }

  .mkt-page .mkt-hero h1 {
    font-size: 38px;
  }

  .mkt-page .mkt-cards-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mkt-page .mkt-sec-head h2,
  .mkt-page .mkt-section-title {
    font-size: 28px;
  }

  .mkt-page .mkt-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .mkt-page .mkt-steps::before {
    display: none;
  }

  .mkt-page .mkt-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mkt-page .mkt-frow,
  .mkt-page .mkt-frow.mkt-rev {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mkt-page .mkt-frow.mkt-rev .mkt-frow-copy,
  .mkt-page .mkt-frow.mkt-rev .mkt-frow-visual {
    order: initial;
  }
}

@media (max-width: 760px) {
  .mkt-page .mkt-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .mkt-page .mkt-cards-4,
  .mkt-page .mkt-plans,
  .mkt-page .mkt-modules-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .mkt-page .mkt-foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
