/* =============================================================
   BorderPro — Landing page design system  ("Lane Control")
   Scoped entirely under body.mkt-page--home so the shared
   marketing.css and every other marketing page are untouched.
   Loaded only by templates/marketing/index.html.
   ============================================================= */

.mkt-page--home {
  /* Ink / structure */
  --h-ink:        #14161c;   /* near-black customs ink */
  --h-ink-soft:   #20242e;
  --h-navy:       #16324f;   /* passport / customs navy */
  --h-navy-deep:  #0d1f34;

  /* Surfaces */
  --h-page:       #ffffff;
  --h-paper:      #f4f1e9;   /* warm manila document surface */
  --h-paper-2:    #efeade;

  /* Accent — border-signage vermilion (the one bold move) */
  --h-signal:     #e4572e;
  --h-signal-ink: #bd3f1c;
  --h-signal-wash:#fdf1ec;

  /* Semantic only — the real "cleared / accepted" state */
  --h-clear:      #1f8a5b;
  --h-clear-wash: #e8f5ee;

  /* Text */
  --h-text:       #1b1e26;
  --h-muted:      #58616f;
  --h-muted-2:    #7a828f;
  --h-on-dark:    #eef1f4;
  --h-on-dark-mut:#9fb0c2;

  /* Lines */
  --h-line:       #e4dfd2;
  --h-line-2:     #d7d0be;
  --h-line-dark:  rgba(255,255,255,.13);

  /* Type */
  --h-disp: 'Space Grotesk', 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --h-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --h-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --h-maxw: 1180px;

  background: var(--h-page);
  color: var(--h-text);
  font-family: var(--h-sans);
}

.mkt-page--home h1,
.mkt-page--home h2,
.mkt-page--home h3,
.mkt-page--home h4 {
  font-family: var(--h-disp);
  color: var(--h-ink);
  letter-spacing: -0.02em;
}

.mkt-page--home a { color: var(--h-signal-ink); }
.mkt-page--home a:hover { color: var(--h-signal); text-decoration: none; }

.mkt-page--home ::selection { background: var(--h-signal); color: #fff; }

/* -------------------------------------------------------------
   Shared utility: monospace field label / eyebrow
   ------------------------------------------------------------- */
.bp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--h-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-signal-ink);
  margin: 0 0 18px;
}
.bp-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--h-signal);
}
.bp-eyebrow--ondark { color: #f0a58c; }
.bp-eyebrow--ondark::before { background: var(--h-signal); }

/* mono tag chip e.g. [ CBP · 358 ] */
.bp-tag {
  font-family: var(--h-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--h-muted);
  border: 1px solid var(--h-line-2);
  border-radius: 3px;
  padding: 2px 7px;
  white-space: nowrap;
}

/* =============================================================
   1. PROMO BANNER  (shared markup, restyle only on home)
   ============================================================= */
.mkt-page--home .mkt-promo-banner {
  background: var(--h-ink);
  color: var(--h-on-dark);
  border-bottom: 1px solid var(--h-line-dark);
}
.mkt-page--home .mkt-promo-text,
.mkt-page--home .mkt-promo-text strong { color: var(--h-on-dark); }
.mkt-page--home .mkt-promo-highlight { color: #ffb59c; }
.mkt-page--home .mkt-promo-text strong { font-family: var(--h-mono); font-weight: 600; letter-spacing: .04em; }
.mkt-page--home .mkt-promo-link {
  color: #fff;
  font-family: var(--h-mono);
  font-size: 12px;
  letter-spacing: .04em;
}
.mkt-page--home .mkt-promo-link:hover { color: #ffb59c; }

/* =============================================================
   2. NAV + FOOTER — align shared chrome to the new palette
   ============================================================= */
.mkt-page--home .mkt-nav {
  border-bottom: 1px solid var(--h-line);
  box-shadow: none;
}
.mkt-page--home .mkt-nav-brand-icon {
  background: var(--h-ink);
  color: #fff;
  font-family: var(--h-mono);
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.mkt-page--home .mkt-nav-brand-name { font-family: var(--h-disp); letter-spacing: -0.03em; color: var(--h-ink); }
.mkt-page--home .mkt-nav-links > li > a,
.mkt-page--home .mkt-nav-links > li > button { color: var(--h-text); }
.mkt-page--home .mkt-nav-links > li > a:hover,
.mkt-page--home .mkt-nav-links > li > button:hover { color: var(--h-signal-ink); }

/* Footer */
.mkt-page--home .mkt-footer { background: var(--h-ink); }
.mkt-page--home .mkt-footer-heading {
  font-family: var(--h-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #ffb59c;
}
.mkt-page--home .mkt-footer-brand span { font-family: var(--h-disp); }
.mkt-page--home .mkt-footer-crossings-all { color: #ffb59c; }

/* =============================================================
   3. BUTTONS
   ============================================================= */
.mkt-page--home.mkt-page .btn-mkt {
  font-family: var(--h-sans);
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.005em;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.mkt-page--home.mkt-page .btn-mkt-lg { padding: 14px 26px; font-size: 15.5px; }

.mkt-page--home.mkt-page .btn-mkt-primary,
.mkt-page--home.mkt-page .mkt-pricing-cta.btn-primary {
  background: var(--h-signal);
  border-color: var(--h-signal);
  color: #fff;
}
.mkt-page--home.mkt-page .btn-mkt-primary:hover,
.mkt-page--home.mkt-page .mkt-pricing-cta.btn-primary:hover {
  background: var(--h-signal-ink);
  border-color: var(--h-signal-ink);
  color: #fff;
  transform: translateY(-1px);
}

/* white button on dark hero/cta */
.mkt-page--home.mkt-page .btn-mkt-white {
  background: #fff;
  border-color: #fff;
  color: var(--h-ink);
}
.mkt-page--home.mkt-page .btn-mkt-white:hover { background: #ffe9e1; border-color: #ffe9e1; color: var(--h-signal-ink); transform: translateY(-1px); }

/* ghost / outline — fixed contrast (was near-invisible before) */
.mkt-page--home.mkt-page .btn-mkt-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.mkt-page--home.mkt-page .btn-mkt-ghost:hover { background: rgba(255,255,255,.10); border-color: #fff; color: #fff; }

.mkt-page--home.mkt-page .btn-mkt-outline {
  background: transparent;
  border-color: var(--h-ink);
  color: var(--h-ink);
}
.mkt-page--home.mkt-page .btn-mkt-outline:hover { background: var(--h-ink); color: #fff; }

.mkt-page--home.mkt-page .mkt-pricing-cta.btn-outline {
  background: transparent;
  border: 2px solid var(--h-line-2);
  color: var(--h-ink);
}
.mkt-page--home.mkt-page .mkt-pricing-cta.btn-outline:hover { border-color: var(--h-ink); background: var(--h-ink); color: #fff; }

/* =============================================================
   4. HERO
   ============================================================= */
.mkt-page--home .mkt-hero {
  background: var(--h-navy-deep);
  color: var(--h-on-dark);
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}
/* soft navy field + faint route glow, no cheesy circles */
.mkt-page--home .mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 0;
  background:
    radial-gradient(140% 120% at 88% -10%, rgba(228,87,46,.20), transparent 62%),
    radial-gradient(120% 110% at 6% 118%, rgba(31,138,91,.14), transparent 66%),
    linear-gradient(160deg, #0c1c30 0%, #122a44 62%, #0d2138 100%);
  z-index: 0;
}
/* the border line — a dashed customs control line across the hero */
.mkt-page--home .mkt-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  width: 100%; height: 0;
  border-radius: 0;
  border-top: 1.5px dashed rgba(255,255,255,.16);
  z-index: 0;
  pointer-events: none;
}
.mkt-page--home .mkt-hero-inner { position: relative; z-index: 2; max-width: var(--h-maxw); }

.mkt-page--home .mkt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: center;
}

.mkt-page--home .mkt-hero-heading {
  font-family: var(--h-disp);
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.mkt-page--home .mkt-hero-heading .hl {
  color: #ff7d57;
  position: relative;
  white-space: nowrap;
}
.mkt-page--home .mkt-hero-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--h-on-dark-mut);
  max-width: 30em;
  margin: 0 0 30px;
}
.mkt-page--home .mkt-hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-bottom: 30px;
}

/* trust strip → mono "inspection stamps" */
.mkt-page--home .mkt-trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  padding-top: 26px;
  border-top: 1px solid var(--h-line-dark);
}
.mkt-page--home .mkt-trust-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.mkt-page--home .mkt-trust-label {
  font-family: var(--h-mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--h-on-dark-mut);
}
.mkt-page--home .mkt-trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--h-mono);
  font-size: 12px; font-weight: 500; letter-spacing: .02em;
  color: #cdd8e4;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--h-line-dark);
  border-radius: 4px;
  padding: 5px 10px;
}
.mkt-page--home .mkt-trust-badge svg { color: #6fd39c; }
.mkt-page--home .mkt-trust-divider { width: 1px; height: 22px; background: var(--h-line-dark); }

.mkt-page--home .mkt-hero-play-badge { opacity: .95; transition: opacity .16s ease, transform .16s ease; }
.mkt-page--home .mkt-hero-play-badge:hover { opacity: 1; transform: translateY(-1px); }

/* ---- the signature: eManifest RECEIPT card ---- */
.bp-manifest {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.55), 0 2px 0 rgba(255,255,255,.04);
  overflow: hidden;
  color: var(--h-text);
  transform: rotate(-0.6deg);
}
.bp-manifest__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--h-ink);
  color: #fff;
}
.bp-manifest__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #3a4150; }
.bp-manifest__bar .bpt {
  margin-left: 4px;
  font-family: var(--h-mono); font-size: 12px; letter-spacing: .06em; color: #c7cfda;
}
.bp-manifest__bar .bpt b { color: #fff; font-weight: 600; }
.bp-manifest__pill {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--h-mono); font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: #7ff0b6;
  background: rgba(31,138,91,.18);
  border: 1px solid rgba(111,211,156,.4);
  border-radius: 999px;
  padding: 3px 10px;
}
.bp-manifest__pill .glow { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: bpPulse 2s infinite; }
@keyframes bpPulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.55)} 70%{box-shadow:0 0 0 7px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }

.bp-manifest__body { padding: 18px 18px 20px; }

/* CSS Code-128-ish barcode */
.bp-barcode {
  height: 62px;
  border-radius: 4px;
  background-color: #fff;
  background-image: repeating-linear-gradient(90deg,
    #14161c 0, #14161c 2px, #fff 2px, #fff 4px,
    #14161c 4px, #14161c 7px, #fff 7px, #fff 9px,
    #14161c 9px, #14161c 10px, #fff 10px, #fff 13px,
    #14161c 13px, #14161c 16px, #fff 16px, #fff 17px,
    #14161c 17px, #14161c 19px, #fff 19px, #fff 22px);
  background-size: 22px 100%;
}
.bp-barcode-cap {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--h-mono); font-size: 12px; letter-spacing: .12em;
  color: var(--h-ink); margin-top: 8px;
}
.bp-barcode-cap span { color: var(--h-muted-2); letter-spacing: .1em; }

.bp-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  margin: 18px 0 4px;
  padding: 16px 0;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
}
.bp-field label {
  display: block;
  font-family: var(--h-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--h-muted-2); margin-bottom: 3px;
}
.bp-field b { font-family: var(--h-mono); font-size: 13.5px; font-weight: 600; color: var(--h-ink); }

/* status rail — the genuine Submitted→Cleared sequence */
.bp-rail { display: flex; align-items: flex-start; margin-top: 16px; }
.bp-rail-step { flex: 1; text-align: center; position: relative; }
.bp-rail-step .node {
  width: 20px; height: 20px; border-radius: 50%;
  margin: 0 auto 7px;
  display: grid; place-items: center;
  background: var(--h-clear); color: #fff;
  font-size: 11px;
  position: relative; z-index: 1;
}
.bp-rail-step .node::before { content: "\2713"; font-weight: 700; }
.bp-rail-step + .bp-rail-step::before {
  content: ""; position: absolute; top: 10px; left: -50%; width: 100%;
  height: 2px; background: var(--h-clear); z-index: 0;
}
.bp-rail-step small {
  font-family: var(--h-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--h-muted);
  display: block;
}
.bp-rail-step.is-last .node { background: var(--h-signal); }
.bp-rail-step.is-last + .bp-rail-step::before,
.bp-rail-step.is-last::before { background: var(--h-signal); }
.bp-rail-step.is-last small { color: var(--h-signal-ink); font-weight: 600; }
.bp-rail-time {
  display: inline-block; margin-top: 2px;
  font-family: var(--h-mono); font-size: 10px; letter-spacing: .04em;
  color: var(--h-signal-ink); background: var(--h-signal-wash);
  border-radius: 3px; padding: 1px 5px;
}

/* =============================================================
   5. LIVE-DATA STRIP  (social proof, dark ledger)
   ============================================================= */
.mkt-page--home .mkt-social-proof {
  background: var(--h-ink);
  border-top: 1px solid var(--h-line-dark);
  border-bottom: 1px solid var(--h-line-dark);
  padding: 30px 0;
}
.mkt-page--home .mkt-proof-grid {
  max-width: var(--h-maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.mkt-page--home .mkt-proof-item {
  text-align: center; padding: 6px 20px; position: relative;
}
.mkt-page--home .mkt-proof-item + .mkt-proof-item::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--h-line-dark);
}
.mkt-page--home .mkt-proof-value {
  font-family: var(--h-mono); font-weight: 600;
  font-size: clamp(26px, 3vw, 36px); color: #fff; line-height: 1; display: block;
  letter-spacing: -0.01em;
}
.mkt-page--home .mkt-proof-label {
  font-family: var(--h-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--h-on-dark-mut); margin-top: 8px; display: block;
}

/* =============================================================
   6. SECTIONS — left-aligned ledger headers
   ============================================================= */
.mkt-page--home .mkt-section { background: var(--h-page); padding: 84px 0; }
.mkt-page--home .mkt-section-alt { background: var(--h-paper); padding: 84px 0; }
.mkt-page--home .mkt-section-inner { max-width: var(--h-maxw); }

.mkt-page--home .mkt-section-header {
  text-align: left;
  max-width: 760px;
  margin: 0 0 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--h-line);
  position: relative;
}
.mkt-page--home .mkt-section-alt .mkt-section-header { border-bottom-color: var(--h-line-2); }
.mkt-page--home .mkt-section-title {
  font-size: clamp(27px, 3.4vw, 40px);
  font-weight: 700; color: var(--h-ink); margin: 0 0 10px; line-height: 1.08;
}
.mkt-page--home .mkt-section-subtitle {
  font-size: 17px; color: var(--h-muted); margin: 0; max-width: 46em;
}

/* =============================================================
   7. SERVICE / RESOURCE / CROSSING CARDS
   ============================================================= */
.mkt-page--home .mkt-cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.mkt-page--home .mkt-card {
  background: var(--h-page);
  border: 1px solid var(--h-line);
  border-radius: 10px;
  padding: 24px 22px;
  text-align: left;
  position: relative;
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  overflow: hidden;
}
.mkt-page--home .mkt-section-alt .mkt-card { background: #fff; }
.mkt-page--home .mkt-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--h-signal); transform: scaleY(0); transform-origin: top; transition: transform .2s ease;
}
.mkt-page--home a.mkt-card:hover {
  transform: translateY(-3px);
  border-color: var(--h-line-2);
  box-shadow: 0 18px 40px -24px rgba(20,22,28,.4);
  text-decoration: none;
}
.mkt-page--home a.mkt-card:hover::before { transform: scaleY(1); }
.mkt-page--home .mkt-card-icon {
  width: 42px; height: 42px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--h-navy); color: #fff; font-size: 17px;
  margin-bottom: 16px;
}
.mkt-page--home .mkt-card-title {
  font-family: var(--h-disp); font-size: 1.05rem; font-weight: 600; color: var(--h-ink);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.mkt-page--home .mkt-card-text { font-size: 14px; line-height: 1.55; color: var(--h-muted); margin: 0; }

/* form-number tag pinned top-right of service cards */
.mkt-page--home .mkt-card .bp-formno {
  position: absolute; top: 18px; right: 16px;
  font-family: var(--h-mono); font-size: 10.5px; letter-spacing: .06em;
  color: var(--h-muted-2);
}

/* =============================================================
   8. HOW IT WORKS — the earned sequence (border rail)
   ============================================================= */
.mkt-page--home .mkt-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
.mkt-page--home .mkt-step {
  padding: 0 26px; position: relative; text-align: left;
}
/* no vertical dividers — the horizontal filing rail is the sole connector */
.mkt-page--home .mkt-step-number {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--h-page); color: var(--h-signal-ink);
  border: 2px solid var(--h-signal);
  font-family: var(--h-mono); font-weight: 600; font-size: 15px;
  margin-bottom: 18px;
}
.mkt-page--home .mkt-section-alt .mkt-step-number { background: var(--h-paper); }
.mkt-page--home .mkt-step-title {
  font-family: var(--h-disp); font-size: 1.12rem; font-weight: 600; color: var(--h-ink); margin: 0 0 8px;
}
.mkt-page--home .mkt-step-text { font-size: 14.5px; line-height: 1.6; color: var(--h-muted); margin: 0; }

/* =============================================================
   9. CHECKLIST
   ============================================================= */
.mkt-page--home .mkt-checklist {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 28px;
}
.mkt-page--home .mkt-checklist li {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--h-mono); font-size: 13.5px; letter-spacing: .01em; color: var(--h-text);
  padding: 10px 0;
  border-bottom: 1px solid var(--h-line);
}
.mkt-page--home .mkt-checklist li i {
  color: var(--h-signal); font-size: 12px;
}
/* suppress the inherited green ::before check (marketing.css) — keep the vermilion icon only */
.mkt-page--home .mkt-checklist li::before { content: none; display: none; }

/* =============================================================
   10. COMPARISON TABLE — ledger
   ============================================================= */
.mkt-page--home .mkt-compare-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--h-line); border-radius: 10px; overflow: hidden;
}
.mkt-page--home .mkt-compare-table th,
.mkt-page--home .mkt-compare-table td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--h-line);
  font-size: 14px;
}
.mkt-page--home .mkt-compare-table thead th {
  font-family: var(--h-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--h-muted); background: var(--h-paper); font-weight: 600;
}
.mkt-page--home .mkt-compare-table td:first-child { color: var(--h-text); font-weight: 500; }
.mkt-page--home .mkt-compare-bp-col,
.mkt-page--home .mkt-compare-bp {
  background: var(--h-signal-wash);
  color: var(--h-ink);
}
.mkt-page--home .mkt-compare-bp-col {
  font-family: var(--h-disp); font-size: 15px; color: var(--h-ink);
  border-bottom: 2px solid var(--h-signal);
}
.mkt-page--home .mkt-compare-rec-badge {
  display: inline-block; margin-left: 8px;
  font-family: var(--h-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--h-signal); border-radius: 3px; padding: 2px 6px; vertical-align: middle;
}
.mkt-page--home .mkt-cmp-yes { color: var(--h-clear); font-weight: 700; }
.mkt-page--home .mkt-cmp-no { color: #c0c6cf; font-weight: 700; }
.mkt-page--home .mkt-cmp-warn { color: var(--h-signal); font-weight: 700; }
.mkt-page--home .mkt-compare-disclaimer {
  font-family: var(--h-mono); font-size: 11.5px; color: var(--h-muted-2); margin-top: 16px; letter-spacing: .01em;
}

/* =============================================================
   11. TESTIMONIALS
   ============================================================= */
.mkt-page--home .mkt-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mkt-page--home .mkt-testimonial {
  background: #fff; border: 1px solid var(--h-line); border-radius: 10px; padding: 26px 24px;
  position: relative;
}
.mkt-page--home .mkt-testimonial::before {
  content: "\201C"; position: absolute; top: 6px; right: 18px;
  font-family: var(--h-disp); font-size: 64px; line-height: 1; color: var(--h-paper-2);
}
.mkt-page--home .mkt-testimonial-quote {
  font-size: 15px; line-height: 1.6; color: var(--h-text); margin: 0 0 20px; font-style: normal;
  position: relative; z-index: 1;
}
.mkt-page--home .mkt-testimonial-author { display: flex; align-items: center; gap: 12px; }
.mkt-page--home .mkt-testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--h-navy); color: #fff;
  font-family: var(--h-mono); font-weight: 600; font-size: 14px;
  display: grid; place-items: center;
}
.mkt-page--home .mkt-testimonial-name { font-family: var(--h-disp); font-weight: 600; font-size: 14.5px; color: var(--h-ink); margin: 0; }
.mkt-page--home .mkt-testimonial-role { font-family: var(--h-mono); font-size: 11.5px; color: var(--h-muted-2); margin: 2px 0 0; letter-spacing: .01em; }

/* =============================================================
   12. PRICING PREVIEW  (cards injected by marketing.js)
   ============================================================= */
.mkt-page--home .mkt-pricing-promo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--h-mono); font-size: 13px; letter-spacing: .02em;
  color: var(--h-ink);
  background: var(--h-signal-wash);
  border: 1px dashed var(--h-signal);
  border-radius: 6px; padding: 10px 16px; margin: 0 0 30px;
}
.mkt-page--home .mkt-pricing-promo i { color: var(--h-signal); }
.mkt-page--home .mkt-pricing-promo strong { font-weight: 600; }

.mkt-page--home .mkt-pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.mkt-page--home .mkt-pricing-card {
  background: #fff; border: 1px solid var(--h-line); border-radius: 10px;
  padding: 22px 18px; position: relative; display: flex; flex-direction: column;
}
.mkt-page--home .mkt-pricing-card.featured {
  border-color: var(--h-signal); box-shadow: 0 18px 44px -26px rgba(228,87,46,.6);
}
.mkt-page--home .mkt-pricing-badge {
  position: absolute; top: -11px; left: 18px;
  font-family: var(--h-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--h-signal); border-radius: 3px; padding: 3px 8px;
}
.mkt-page--home .mkt-pricing-name { font-family: var(--h-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--h-muted); margin: 0 0 12px; }
.mkt-page--home .mkt-pricing-amount { font-family: var(--h-disp); font-size: 30px; font-weight: 700; color: var(--h-ink); line-height: 1; }
.mkt-page--home .mkt-pricing-period { font-family: var(--h-mono); font-size: 11px; color: var(--h-muted-2); margin-top: 4px; }
.mkt-page--home .mkt-pricing-features { list-style: none; margin: 16px 0 18px; padding: 16px 0 0; border-top: 1px solid var(--h-line); display: grid; gap: 9px; }
.mkt-page--home .mkt-pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--h-text); line-height: 1.4; }
.mkt-page--home .mkt-check-icon { color: var(--h-clear); font-weight: 700; flex: none; }
/* suppress the inherited green ::before check (marketing.css) on pricing rows */
.mkt-page--home .mkt-pricing-feature::before { content: none; display: none; }
.mkt-page--home.mkt-page .mkt-pricing-cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; padding: 11px 16px; border-radius: 6px; font-family: var(--h-sans); font-weight: 600; font-size: 14px; }
.mkt-page--home .mkt-pricing-error { font-family: var(--h-mono); color: var(--h-muted); grid-column: 1/-1; text-align: center; }

/* risk reversal */
.mkt-page--home .mkt-risk-reversal {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--h-line);
}
.mkt-page--home .mkt-risk-item { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.mkt-page--home .mkt-risk-icon { width: 34px; height: 34px; border-radius: 7px; display: grid; place-items: center; background: var(--h-paper); color: var(--h-signal-ink); font-size: 14px; margin-bottom: 6px; }
.mkt-page--home .mkt-risk-title { font-family: var(--h-disp); font-weight: 600; font-size: 15px; color: var(--h-ink); margin: 0; }
.mkt-page--home .mkt-risk-desc { font-size: 13px; color: var(--h-muted); margin: 0; }
.mkt-page--home .mkt-section-cta { margin-top: 30px; }

/* =============================================================
   13. FAQ — ledger accordion
   ============================================================= */
.mkt-page--home .mkt-faq-list { border-top: none; }
/* flat ledger rows — strip the inherited card chrome */
.mkt-page--home .mkt-faq-item {
  background: transparent; border: none; border-radius: 0; box-shadow: none;
  border-bottom: 1px solid var(--h-line-2); overflow: visible;
}
.mkt-page--home .mkt-faq-item.open { border-color: var(--h-line-2); }
.mkt-page--home .mkt-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--h-disp); font-weight: 600; font-size: 16.5px; color: var(--h-ink);
  padding: 20px 2px; text-align: left; letter-spacing: -0.01em;
}
.mkt-page--home .mkt-faq-q:hover { background: transparent; color: var(--h-signal-ink); }
.mkt-page--home .mkt-faq-item.open .mkt-faq-q { background: transparent; color: var(--h-signal-ink); }
.mkt-page--home .mkt-faq-chevron { color: var(--h-signal); font-size: 14px; transition: transform .2s ease; flex: none; }
.mkt-page--home .mkt-faq-item.open .mkt-faq-chevron,
.mkt-page--home .mkt-faq-q[aria-expanded="true"] .mkt-faq-chevron { transform: rotate(180deg); }
.mkt-page--home .mkt-faq-a { color: var(--h-muted); font-size: 14.5px; line-height: 1.62; padding: 0 2px 22px; }
.mkt-page--home .mkt-faq-a p { margin: 0; }

/* =============================================================
   14. FINAL CTA
   ============================================================= */
.mkt-page--home .mkt-cta {
  background: var(--h-navy-deep);
  color: #fff; padding: 84px 0; position: relative; overflow: hidden;
}
.mkt-page--home .mkt-cta::before {
  content: ""; position: absolute;
  inset: 0; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%; border-radius: 0;
  background:
    radial-gradient(90% 130% at 90% -20%, rgba(228,87,46,.20), transparent 60%),
    radial-gradient(90% 120% at 8% 120%, rgba(31,138,91,.12), transparent 64%),
    linear-gradient(180deg, #122a44, #0d1f34);
}
.mkt-page--home .mkt-cta::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  width: 100%; height: 0; border-radius: 0;
  border-top: 1.5px dashed rgba(255,255,255,.15);
}
.mkt-page--home .mkt-cta-inner { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.mkt-page--home .mkt-cta-heading { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: -0.03em; }
.mkt-page--home .mkt-cta-sub { font-size: 18px; color: var(--h-on-dark-mut); margin: 0 0 8px; }
.mkt-page--home .mkt-cta-promo { font-family: var(--h-mono); font-size: 13px; letter-spacing: .03em; color: #ffb59c; margin: 0 0 26px; }
.mkt-page--home .mkt-cta-promo strong { color: #fff; }
.mkt-page--home .mkt-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }

/* =============================================================
   15. SCROLL REVEAL + MOTION
   ============================================================= */
.mkt-page--home .mkt-scroll-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.mkt-page--home .mkt-scroll-reveal.mkt-visible { opacity: 1; transform: none; }

.mkt-page--home :focus-visible { outline: 2px solid var(--h-signal); outline-offset: 2px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  .mkt-page--home * { animation: none !important; transition: none !important; }
  .mkt-page--home .mkt-scroll-reveal { opacity: 1; transform: none; }
  .bp-manifest { transform: none; }
}

/* =============================================================
   16. RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .mkt-page--home .mkt-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mkt-page--home .mkt-hero { padding: 60px 0 72px; }
  .mkt-page--home .bp-manifest { max-width: 460px; }
  .mkt-page--home .mkt-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .mkt-page--home .mkt-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-page--home .mkt-testimonials { grid-template-columns: 1fr; }
  .mkt-page--home .mkt-checklist { grid-template-columns: repeat(2, 1fr); }
  .mkt-page--home .mkt-steps { grid-template-columns: 1fr; gap: 24px; }
  .mkt-page--home .mkt-step { padding: 0 0 0 0; }
  .mkt-page--home .mkt-step + .mkt-step { border-left: none; padding-top: 24px; border-top: 1px dashed var(--h-line-2); }
  .mkt-page--home .mkt-risk-reversal { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .mkt-page--home .mkt-section, .mkt-page--home .mkt-section-alt { padding: 56px 0; }
  .mkt-page--home .mkt-cards-4 { grid-template-columns: 1fr; }
  .mkt-page--home .mkt-pricing-grid { grid-template-columns: 1fr; }
  .mkt-page--home .mkt-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .mkt-page--home .mkt-proof-item:nth-child(3)::before,
  .mkt-page--home .mkt-proof-item:nth-child(2)::before { display: none; }
  .mkt-page--home .mkt-checklist { grid-template-columns: 1fr; }
  .mkt-page--home .bp-fields { grid-template-columns: 1fr 1fr; }
  .mkt-page--home .mkt-hero-heading { font-size: clamp(32px, 9vw, 44px); }
}

/* =============================================================
   17. ANIMATED FILING DEMO — reskin (structure & JS unchanged)
   ============================================================= */
.mkt-page--home .mkt-demo-browser {
  border: 1px solid var(--h-line-2);
  border-radius: 12px;
  box-shadow: 0 30px 70px -34px rgba(13,31,52,.5);
  max-width: 760px; margin: 0 auto; overflow: hidden; background: #fff;
}
.mkt-page--home .mkt-demo-titlebar { background: var(--h-ink); border-bottom: 1px solid var(--h-line-dark); }
.mkt-page--home .mkt-demo-dot-red { background: #3a4150; }
.mkt-page--home .mkt-demo-dot-yellow { background: #3a4150; }
.mkt-page--home .mkt-demo-dot-green { background: #3a4150; }
.mkt-page--home .mkt-demo-url {
  font-family: var(--h-mono); font-size: 12px; letter-spacing: .03em;
  color: #c7cfda; background: rgba(255,255,255,.06); border: 1px solid var(--h-line-dark);
}
.mkt-page--home .mkt-demo-viewport { background: var(--h-paper); }
.mkt-page--home .mkt-demo-field { background: #fff; border: 1px solid var(--h-line); border-radius: 7px; }
.mkt-page--home .mkt-demo-field-label { font-family: var(--h-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--h-muted-2); }
.mkt-page--home .mkt-demo-field-value { font-family: var(--h-mono); font-weight: 600; color: var(--h-ink); }
.mkt-page--home .mkt-demo-check { color: var(--h-clear); }
.mkt-page--home .mkt-demo-preflight { font-family: var(--h-mono); font-size: 13px; color: var(--h-clear); }
.mkt-page--home .mkt-demo-submit-status { font-family: var(--h-mono); color: var(--h-ink); }
.mkt-page--home .mkt-demo-progress-bar { background: var(--h-signal); }
.mkt-page--home .mkt-demo-accepted { font-family: var(--h-mono); color: var(--h-clear); }
.mkt-page--home .mkt-demo-tl-dot { background: var(--h-line-2); }
.mkt-page--home .mkt-demo-tl-step.mkt-active .mkt-demo-tl-dot,
.mkt-page--home .mkt-demo-tl-step.active .mkt-demo-tl-dot { background: var(--h-clear); }
.mkt-page--home .mkt-demo-tl-step span { font-family: var(--h-mono); font-size: 11px; letter-spacing: .04em; color: var(--h-muted); }
.mkt-page--home .mkt-demo-cleared { color: var(--h-clear); font-family: var(--h-disp); font-weight: 600; }
.mkt-page--home .mkt-demo-steps { gap: 0; }
.mkt-page--home .mkt-demo-step-label {
  font-family: var(--h-mono); font-size: 12px; letter-spacing: .04em; color: var(--h-muted-2);
}
.mkt-page--home .mkt-demo-step-label.mkt-demo-step-active { color: var(--h-signal-ink); }
.mkt-page--home .mkt-demo-step-num { background: var(--h-line); color: var(--h-muted); font-family: var(--h-mono); }
.mkt-page--home .mkt-demo-step-active .mkt-demo-step-num { background: var(--h-signal); color: #fff; }
