
/* =========================================================
   PatchRelay Marketing Website V3
   Branded public front end only. Logged-in platform remains
   controlled by the core application stylesheet.
   ========================================================= */

body.public-site.marketing-page {
  --mk-navy: #06214b;
  --mk-navy-2: #0b356c;
  --mk-blue: #1975e8;
  --mk-teal: #12b9b1;
  --mk-green: #5bc85b;
  --mk-ink: #132033;
  --mk-muted: #5b6c81;
  --mk-line: #d9e4ef;
  --mk-soft: #f5f9fd;
  --mk-white: #ffffff;
  --mk-shadow: 0 26px 80px rgba(6,33,75,.14);
  --mk-soft-shadow: 0 16px 48px rgba(6,33,75,.09);
  color: var(--mk-ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(18,185,177,.13), transparent 32rem),
    radial-gradient(circle at 90% 4%, rgba(25,117,232,.16), transparent 38rem),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fd 58%, #eef6fb 100%);
}

body.public-site.marketing-page .topbar {
  height: 96px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(217,228,239,.92);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(6,33,75,.08);
}

body.public-site.marketing-page .brand img {
  height: 68px;
  width: auto;
}

body.public-site.marketing-page .topbar nav {
  gap: 20px;
}

body.public-site.marketing-page .topbar nav a:not(.btn) {
  color: var(--mk-navy);
  font-size: 14px;
  font-weight: 850;
  position: relative;
  text-decoration: none;
}

body.public-site.marketing-page .topbar nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mk-teal), var(--mk-blue));
  transition: width .22s ease;
}

body.public-site.marketing-page .topbar nav a:not(.btn):hover::after {
  width: 100%;
}

body.public-site.marketing-page .container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 42px 28px 84px;
}

body.public-site.marketing-page h1,
body.public-site.marketing-page h2,
body.public-site.marketing-page h3 {
  color: var(--mk-navy);
}

.mk-pill,
.mk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,185,177,.23);
  background: rgba(18,185,177,.12);
  color: #075e59;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mk-pill::before,
.mk-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mk-teal), var(--mk-green));
}

.mk-kicker.is-dark {
  color: #e6fffb;
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.18);
}

.mk-kicker.is-dark::before {
  background: linear-gradient(135deg, #fff, #b9fff7);
}

.mk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.mk-btn-primary,
.mk-btn-light {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(6,33,75,.18);
}

.mk-btn-primary {
  background: linear-gradient(135deg, var(--mk-navy), var(--mk-blue)) !important;
}

.mk-btn-secondary,
.mk-btn-outline {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 950;
}

.mk-btn-light {
  background: #fff !important;
  color: var(--mk-navy) !important;
}

.mk-btn-outline {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.42) !important;
}

/* Hero */
.mk-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  margin: 4px 0 44px;
  padding: 46px;
  border-radius: 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(18,185,177,.24), transparent 24rem),
    linear-gradient(135deg, #06214b 0%, #0a3f80 52%, #0d697a 100%);
  box-shadow: 0 40px 110px rgba(6,33,75,.28);
}

.mk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .27;
  pointer-events: none;
}

.mk-hero-copy,
.mk-hero-media {
  position: relative;
  z-index: 1;
}

.mk-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  color: #fff !important;
  font-size: clamp(54px, 5.7vw, 86px);
  line-height: .98;
  letter-spacing: -.058em;
}

.mk-hero-copy h1 span {
  display: block;
  color: #8ff8ec;
}

.mk-hero-lead {
  max-width: 700px;
  margin: 0 0 30px;
  color: #dce9f8;
  font-size: 21px;
  line-height: 1.62;
}

.mk-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mk-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #eef8ff;
  font-size: 13px;
  font-weight: 900;
}

.mk-hero-proof span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mk-teal), var(--mk-green));
}

.mk-hero-media {
  display: grid;
  gap: 18px;
}

.mk-hero-image {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}

.mk-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.mk-hero-floating {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 246px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(217,228,239,.98);
  box-shadow: 0 24px 55px rgba(6,33,75,.22);
}

.mk-hero-floating strong {
  color: var(--mk-navy);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.03em;
}

.mk-hero-floating span {
  color: var(--mk-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mk-hero-floating small {
  color: #075e59;
  font-weight: 900;
  font-size: 13px;
}

.mk-float-left {
  left: -22px;
  bottom: 68px;
}

.mk-float-right {
  right: -14px;
  top: 68px;
}

/* Trust/value band */
.mk-value-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 90px;
}

.mk-value-card {
  min-height: 178px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-soft-shadow);
}

.mk-value-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 20px;
  padding: 0 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-navy), var(--mk-blue));
  font-size: 15px;
  font-weight: 950;
}

.mk-value-card:nth-child(2) b {
  background: linear-gradient(135deg, var(--mk-teal), #087f84);
}
.mk-value-card:nth-child(3) b {
  background: linear-gradient(135deg, var(--mk-blue), var(--mk-navy));
}
.mk-value-card:nth-child(4) b {
  background: linear-gradient(135deg, var(--mk-green), #2d9f4f);
}

.mk-value-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -.028em;
}

.mk-value-card p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Generic marketing section */
.mk-section {
  margin: 96px 0;
}

.mk-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 32px;
}

.mk-section-head h2,
.mk-split-copy h2,
.mk-feature-copy h2,
.mk-fee-copy h2,
.mk-cta h2,
.mk-inner-hero h1 {
  margin: 18px 0 0;
  color: var(--mk-navy);
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1.03;
  letter-spacing: -.048em;
}

.mk-section-head p,
.mk-split-copy p,
.mk-feature-copy p,
.mk-fee-copy p,
.mk-inner-hero p {
  color: #385069;
  font-size: 19px;
  line-height: 1.68;
}

.mk-text-link {
  color: var(--mk-blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.mk-text-link:hover {
  text-decoration: underline;
}

/* Earning story */
.mk-earning-story {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.mk-story-panel {
  display: grid;
  gap: 18px;
}

.mk-story-card,
.mk-story-dark,
.mk-case-card,
.mk-soft-card,
.mk-contact-card {
  padding: 32px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-soft-shadow);
}

.mk-story-card small,
.mk-story-dark small,
.mk-case-card small,
.mk-soft-card small,
.mk-contact-card small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--mk-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mk-story-card h3,
.mk-story-dark h3,
.mk-case-card h3,
.mk-soft-card h3,
.mk-contact-card h2 {
  margin: 18px 0 12px;
  font-size: 31px;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.mk-story-card p,
.mk-story-dark p,
.mk-case-card p,
.mk-soft-card p,
.mk-contact-card p {
  margin: 0;
  color: #41556d;
  font-size: 17px;
  line-height: 1.64;
}

.mk-story-dark {
  color: #fff;
  background: linear-gradient(145deg, var(--mk-navy), #0b4a8b);
  border-color: rgba(255,255,255,.08);
}

.mk-story-dark small {
  color: #e8fffb;
  background: rgba(255,255,255,.13);
}

.mk-story-dark h3,
.mk-story-dark p {
  color: #fff;
}

.mk-story-flow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.mk-story-flow span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--mk-line);
  background: #f8fbff;
  color: var(--mk-navy);
  font-size: 13px;
  font-weight: 950;
}

/* Step rail */
.mk-step-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mk-step {
  position: relative;
  min-height: 286px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-soft-shadow);
}

.mk-step b {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-navy), var(--mk-teal));
  font-size: 19px;
  font-weight: 950;
  box-shadow: 0 14px 25px rgba(6,33,75,.18);
}

.mk-step h3 {
  margin: 24px 0 12px;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.mk-step p {
  margin: 0;
  color: #40556d;
  font-size: 16px;
  line-height: 1.64;
}

/* Product visual section */
.mk-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 34px;
  align-items: center;
}

.mk-product-image {
  overflow: hidden;
  border-radius: 40px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

.mk-product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.mk-product-bullets {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.mk-product-bullets article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: 0 14px 36px rgba(6,33,75,.07);
}

.mk-product-bullets b {
  display: flex;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-blue), var(--mk-teal));
  font-size: 14px;
  font-weight: 950;
}

.mk-product-bullets h3 {
  margin: 4px 0 7px;
  font-size: 21px;
  line-height: 1.18;
}

.mk-product-bullets p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 15px;
  line-height: 1.58;
}

/* Module grid */
.mk-module-band {
  padding: 54px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 18% 12%, rgba(18,185,177,.32), transparent 18rem),
    linear-gradient(145deg, #06214b 0%, #0b427f 48%, #0a7183 100%);
  box-shadow: 0 38px 100px rgba(6,33,75,.25);
}

.mk-module-band .mk-kicker {
  color: #eafffb;
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.18);
}

.mk-module-band h2 {
  color: #fff;
}

.mk-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.mk-module-grid article {
  min-height: 222px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.55);
}

.mk-module-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.mk-module-grid p {
  margin: 0;
  color: #42566e;
  font-size: 16px;
  line-height: 1.62;
}

/* Coverage / fee split */
.mk-two-col {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.mk-coverage-map {
  overflow: hidden;
  border-radius: 38px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

.mk-coverage-map img {
  display: block;
  width: 100%;
  height: auto;
}

.mk-check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.mk-check-list li {
  position: relative;
  padding-left: 35px;
  color: #274159;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 850;
}

.mk-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 29%, transparent 31%),
    linear-gradient(135deg, var(--mk-teal), var(--mk-green));
  box-shadow: 0 8px 18px rgba(18,185,177,.24);
}

.mk-fee-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.mk-fee-card {
  padding: 34px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

.mk-fee-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.mk-fee-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--mk-line);
}

.mk-fee-total span {
  color: var(--mk-muted);
  font-size: 15px;
  font-weight: 900;
}

.mk-fee-total strong {
  color: var(--mk-navy);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.04em;
}

.mk-fee-bars {
  display: grid;
  grid-template-columns: 1fr 2.55fr .75fr;
  gap: 12px;
  margin: 26px 0 18px;
}

.mk-fee-bars div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
}

.mk-fee-bars div:nth-child(1) { background: linear-gradient(135deg, #12b9b1, #0a8d95); }
.mk-fee-bars div:nth-child(2) { background: linear-gradient(135deg, #1975e8, #06214b); }
.mk-fee-bars div:nth-child(3) { background: linear-gradient(135deg, #5bc85b, #2d9f4f); }

.mk-fee-bars b {
  font-size: 30px;
  line-height: 1;
}

.mk-fee-bars span {
  font-size: 13px;
  font-weight: 900;
}

.mk-fee-card p {
  margin: 0;
  color: #4a5d73;
  line-height: 1.62;
}

/* Homepage CTAs */
.mk-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 104px 0 24px;
  padding: 46px 50px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 86% 18%, rgba(91,200,91,.3), transparent 22rem),
    linear-gradient(135deg, #06214b 0%, #0b4584 62%, #0a7183 100%);
  box-shadow: 0 42px 110px rgba(6,33,75,.28);
}

.mk-cta h2 {
  color: #fff !important;
  max-width: 860px;
}

.mk-cta p {
  max-width: 800px;
  margin: 12px 0 0;
  color: #dce9f8;
  font-size: 18px;
  line-height: 1.64;
}

/* Inner marketing pages */
.mk-inner-hero {
  max-width: 1100px;
  margin: 10px 0 74px;
  padding: 12px 0;
}

.mk-inner-hero p {
  max-width: 980px;
  margin: 18px 0 0;
  font-size: 21px;
}

.mk-timeline {
  display: grid;
  gap: 18px;
}

.mk-timeline article {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-soft-shadow);
}

.mk-timeline b {
  display: flex;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-navy), var(--mk-teal));
  font-size: 26px;
  font-weight: 950;
}

.mk-timeline h3 {
  margin: 6px 0 9px;
  font-size: 31px;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.mk-timeline p {
  margin: 0;
  color: #41556d;
  font-size: 18px;
  line-height: 1.64;
}

.mk-grid-3,
.mk-grid-2,
.mk-grid-4 {
  display: grid;
  gap: 18px;
}

.mk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mk-grid-4 { grid-template-columns: repeat(4, 1fr); }

.mk-calculator {
  display: grid;
  grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr);
  gap: 22px;
  padding: 30px;
  border-radius: 38px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

.mk-calculator label {
  margin-bottom: 10px;
  font-size: 14px;
}

.mk-calculator input {
  min-height: 64px;
  border-radius: 18px;
  color: var(--mk-navy);
  font-size: 30px;
  font-weight: 950;
}

.mk-calculator small {
  display: block;
  margin-top: 14px;
  color: var(--mk-muted);
  line-height: 1.58;
}

.mk-calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mk-calc-results div {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--mk-line);
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.mk-calc-results span {
  color: var(--mk-muted);
  font-size: 14px;
  font-weight: 900;
}

.mk-calc-results strong {
  color: var(--mk-navy);
  font-size: 34px;
  letter-spacing: -.04em;
}

.mk-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mk-faq {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--mk-line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(6,33,75,.08);
}

.mk-faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  display: flex;
  min-height: 94px;
  align-items: center;
  padding: 24px 72px 24px 28px;
  color: var(--mk-navy);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.35;
}

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

.mk-faq summary::after {
  content: "+";
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #e9fbf7;
  color: #075e59;
  font-size: 24px;
  font-weight: 950;
}

.mk-faq[open] summary::after {
  content: "–";
}

.mk-faq p {
  margin: 0;
  padding: 0 28px 28px;
  color: #41556d;
  font-size: 17px;
  line-height: 1.68;
}

/* Footer */
body.public-site.marketing-page .footer {
  padding: 0 28px 36px;
  text-align: left;
}

body.public-site.marketing-page .footer-shell {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 1.5fr) repeat(2, minmax(180px, .55fr));
  gap: 36px;
  padding: 44px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-soft-shadow);
}

body.public-site.marketing-page .footer-brand-block img {
  display: block;
  width: min(330px, 100%);
  height: auto;
  margin-bottom: 18px;
}

body.public-site.marketing-page .footer-brand-block p {
  max-width: 580px;
  margin: 0;
  color: #53677e;
  font-size: 15px;
  line-height: 1.68;
}

body.public-site.marketing-page .footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

body.public-site.marketing-page .footer-column h4 {
  margin: 8px 0 10px;
  color: var(--mk-navy);
  font-size: 16px;
}

body.public-site.marketing-page .footer-column a {
  color: #33506a;
  text-decoration: none;
  font-weight: 850;
}

body.public-site.marketing-page .footer-column a:hover {
  color: var(--mk-blue);
}

body.public-site.marketing-page .footer-bottom {
  max-width: 1380px;
  margin: 20px auto 0;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1220px) {
  body.public-site.marketing-page .topbar {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 24px;
  }

  body.public-site.marketing-page .topbar nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .mk-hero,
  .mk-earning-story,
  .mk-product-showcase,
  .mk-two-col,
  .mk-fee-layout,
  .mk-calculator {
    grid-template-columns: 1fr;
  }

  .mk-hero {
    min-height: 0;
  }

  .mk-value-band,
  .mk-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mk-step-rail,
  .mk-module-grid,
  .mk-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mk-cta {
    display: block;
  }

  .mk-cta .mk-actions {
    margin-top: 26px;
  }

  .mk-float-left {
    left: 18px;
    bottom: 18px;
  }

  .mk-float-right {
    right: 18px;
    top: 18px;
  }
}

@media (max-width: 860px) {
  body.public-site.marketing-page .container {
    padding: 26px 16px 54px;
  }

  .mk-hero {
    margin-top: 0;
    padding: 28px 22px 24px;
    border-radius: 34px;
    gap: 24px;
  }

  .mk-hero-copy h1 {
    font-size: 48px;
  }

  .mk-hero-lead,
  .mk-section-head p,
  .mk-split-copy p,
  .mk-feature-copy p,
  .mk-fee-copy p,
  .mk-inner-hero p,
  .mk-timeline p {
    font-size: 17px;
  }

  .mk-hero-floating {
    position: static;
    min-width: 0;
  }

  .mk-value-band,
  .mk-grid-2,
  .mk-grid-3,
  .mk-grid-4,
  .mk-step-rail,
  .mk-module-grid,
  .mk-calc-results,
  .mk-faq-list {
    grid-template-columns: 1fr;
  }

  .mk-section {
    margin: 62px 0;
  }

  .mk-section-head {
    display: block;
  }

  .mk-text-link {
    display: inline-block;
    margin-top: 16px;
  }

  .mk-module-band,
  .mk-cta,
  body.public-site.marketing-page .footer-shell {
    padding: 26px;
    border-radius: 30px;
  }

  .mk-fee-total {
    display: block;
  }

  .mk-fee-total strong {
    display: block;
    margin-top: 10px;
    font-size: 40px;
  }

  .mk-fee-bars {
    grid-template-columns: 1fr;
  }

  .mk-timeline article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mk-timeline b {
    width: 62px;
    height: 62px;
    border-radius: 22px;
  }

  body.public-site.marketing-page .footer-shell {
    grid-template-columns: 1fr;
  }
}
