.marketing-site {
  --m-ink: #10142a;
  --m-muted: #626a82;
  --m-line: #e7e9f0;
  --m-soft: #f7f8fb;
  --m-purple: #4b26dc;
  --m-purple-dark: #3515b5;
  --m-purple-soft: #f0edff;
  --m-teal: #079982;
  --m-teal-soft: #e8f8f5;
  --m-sky: #0d8fb6;
  --m-amber: #b96e08;
  margin: 0;
  background: #fff;
  color: var(--m-ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

.marketing-site * { box-sizing: border-box; }
.marketing-site a { text-decoration: none; }
.marketing-site button { font: inherit; }
.marketing-site main { overflow: hidden; }

.price-ribbon {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 7px 24px;
  background: var(--m-ink);
  color: #dfe2ef;
  font-size: .76rem;
}
.price-ribbon strong { color: #fff; letter-spacing: .01em; }

.marketing-nav {
  width: min(1420px, calc(100% - 64px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}
.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--m-ink);
  font: 800 1.14rem/1 var(--font-display);
  letter-spacing: -.025em;
  justify-self: start;
}
.marketing-brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--m-purple);
}
.marketing-brand-mark svg { width: 100%; height: 100%; }
.marketing-nav-links { display: flex; align-items: center; gap: 32px; }
.marketing-nav-links a,
.marketing-login { color: var(--m-ink); font-size: .86rem; font-weight: 600; }
.marketing-nav-links a { position: relative; }
.marketing-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--m-purple);
  transition: right .18s ease;
}
.marketing-nav-links a:hover::after { right: 0; }
.marketing-nav-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }

.marketing-btn {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.marketing-btn:hover { transform: translateY(-2px); }
.marketing-btn.primary { background: var(--m-purple); color: #fff; box-shadow: 0 9px 26px -15px rgba(75,38,220,.8); }
.marketing-btn.primary:hover { background: var(--m-purple-dark); box-shadow: 0 12px 30px -14px rgba(75,38,220,.75); }
.marketing-btn.secondary { background: #fff; color: var(--m-ink); border-color: #d9dce8; }
.marketing-btn.secondary:hover { border-color: #aaaee0; }
.marketing-btn.large { min-height: 50px; padding: 12px 23px; border-radius: 11px; }
.marketing-btn svg { width: 19px; height: 19px; }

.marketing-hero {
  width: min(1420px, calc(100% - 64px));
  min-height: 730px;
  margin: 0 auto;
  padding: 52px 0 64px;
  display: grid;
  grid-template-columns: minmax(430px, .82fr) minmax(650px, 1.18fr);
  gap: clamp(45px, 6vw, 96px);
  align-items: center;
}
.marketing-hero-copy { position: relative; z-index: 2; min-width: 0; }
.marketing-kicker {
  display: inline-block;
  color: var(--m-purple);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.marketing-hero h1 {
  max-width: 690px;
  margin: 0 0 20px;
  color: var(--m-ink);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -.064em;
  line-height: 1.025;
}
.marketing-hero-copy > p:not(.hero-fine-print) {
  max-width: 600px;
  margin: 0 0 20px;
  color: var(--m-muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}
.hero-price {
  width: fit-content;
  min-height: 62px;
  margin: 23px 0 21px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(100deg, var(--m-purple-soft), #faf9ff);
  border: 1px solid #ddd6ff;
  border-radius: 13px;
  color: var(--m-purple-dark);
}
.hero-price span:first-child { color: var(--m-ink); font-size: .86rem; font-weight: 700; }
.hero-price strong { font: 800 2.3rem/1 var(--font-display); letter-spacing: -.05em; }
.hero-price strong sup { font-size: 1.08rem; vertical-align: top; position: relative; top: .2rem; }
.hero-price span:last-child { font-size: .84rem; font-weight: 700; }
.marketing-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-fine-print { margin: 11px 0 0 !important; color: #8a90a3 !important; font-size: .72rem !important; }

.hero-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.outcome-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 37px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  border: 1px solid var(--m-line);
  border-radius: 11px;
  color: var(--m-ink);
  transition: border .15s ease, transform .15s ease, box-shadow .15s ease;
}
.outcome-card:hover { border-color: #c9c3ef; transform: translateY(-2px); box-shadow: 0 10px 24px -20px rgba(16,20,42,.7); }
.outcome-card > span:nth-child(2) { min-width: 0; }
.outcome-card strong,.outcome-card small { display: block; }
.outcome-card strong { font-size: .72rem; }
.outcome-card small { margin-top: 3px; color: var(--m-muted); font-size: .6rem; line-height: 1.45; }
.outcome-card b { color: var(--m-purple); font-size: 1rem; }
.outcome-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; }
.outcome-icon svg { width: 19px; height: 19px; }
.outcome-icon.violet { color: var(--m-purple); background: var(--m-purple-soft); }
.outcome-icon.sky { color: var(--m-sky); background: #e7f7fc; }
.outcome-icon.emerald { color: var(--m-teal); background: var(--m-teal-soft); }

.product-stage { position: relative; min-width: 0; min-height: 580px; display: flex; align-items: center; }
.stage-glow {
  position: absolute;
  inset: 9% -5% 4% 8%;
  border-radius: 34px;
  background: linear-gradient(135deg, #f8f7ff 10%, #eeeaff 65%, #e8f8f6);
  transform: rotate(-1.7deg);
}
.product-window {
  position: relative;
  z-index: 2;
  width: 90%;
  min-height: 500px;
  display: grid;
  grid-template-columns: 56px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe2eb;
  border-radius: 15px;
  box-shadow: 0 30px 70px -36px rgba(21,23,50,.38), 0 4px 15px rgba(21,23,50,.04);
}
.product-rail { display: flex; flex-direction: column; align-items: center; gap: 17px; padding: 19px 10px; border-right: 1px solid #eceef4; }
.rail-logo { width: 28px; height: 28px; margin-bottom: 9px; display: grid; place-items: center; border-radius: 8px; background: var(--m-purple); color: #fff; font-size: .78rem; font-weight: 800; }
.rail-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 8px; color: #7d8599; }
.rail-icon.active { color: var(--m-purple); background: var(--m-purple-soft); }
.rail-icon svg { width: 17px; height: 17px; }
.product-main { padding: 24px 23px; min-width: 0; }
.product-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.client-title { display: flex; align-items: center; gap: 11px; min-width: 0; }
.client-avatar { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #8d96ab; color: #fff; font-weight: 700; font-size: .7rem; }
.client-title > span:nth-child(2) strong,.client-title > span:nth-child(2) small { display: block; }
.client-title strong { font-size: .82rem; }
.client-title small { color: var(--m-muted); font-size: .61rem; }
.client-title em { padding: 3px 7px; border-radius: 5px; background: var(--m-teal-soft); color: var(--m-teal); font-size: .53rem; font-style: normal; font-weight: 700; }
.product-topline button,.product-card button,.invoice-float button,.portal-preview-body button { border: 1px solid #e0e3ec; border-radius: 6px; background: #fff; color: #40475d; cursor: default; }
.product-topline button { padding: 8px 10px; font-size: .55rem; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.product-card { min-width: 0; padding: 16px; border: 1px solid #e5e7ee; border-radius: 10px; background: #fff; }
.product-card header { display: flex; align-items: center; gap: 6px; color: #384057; font-size: .62rem; font-weight: 700; }
.product-card header em { margin-left: auto; padding: 3px 6px; border-radius: 5px; background: var(--m-teal-soft); color: var(--m-teal); font-size: .52rem; font-style: normal; }
.product-card h3 { margin: 15px 0 5px; font-family: var(--font-ui); font-size: .75rem; letter-spacing: 0; }
.product-card > strong { display: block; font-size: .98rem; }
.product-card > small { display: block; margin-top: 4px; color: #8890a4; font-size: .53rem; }
.product-card > button { width: 100%; margin-top: 16px; padding: 7px; font-size: .54rem; }
.progress-value { color: var(--m-teal); font-size: 1.38rem !important; }
.progress-bar { height: 5px; margin: 9px 0 0; overflow: hidden; background: #edf0f4; border-radius: 99px; }
.progress-bar i { display: block; width: 72%; height: 100%; background: var(--m-teal); border-radius: inherit; }
.messages-card { grid-column: 1 / -1; }
.messages-card header a { margin-left: auto; color: var(--m-purple); font-size: .53rem; }
.message-line { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; padding-top: 10px; }
.message-line > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #4c50bd; font-size: .48rem; font-weight: 700; }
.message-line > span.light { color: #626a7d; background: #e7e9ef; }
.message-line p { min-width: 0; margin: 0; }
.message-line strong,.message-line small { display: block; }
.message-line strong { font-size: .54rem; }
.message-line small { color: #676f83; font-size: .48rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.message-line time { color: #a0a5b2; font-size: .45rem; }
.invoice-float {
  position: absolute;
  z-index: 3;
  right: -2%;
  top: 22%;
  width: 188px;
  padding: 19px;
  background: #fff;
  border: 1px solid #dfe2eb;
  border-radius: 13px;
  box-shadow: 0 24px 50px -23px rgba(21,23,50,.35);
}
.invoice-float header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid #eceef3; font-size: .65rem; font-weight: 700; }
.invoice-float header em { padding: 3px 7px; background: var(--m-teal-soft); border-radius: 5px; color: var(--m-teal); font-size: .5rem; font-style: normal; }
.invoice-float > small { display: block; margin-top: 15px; color: #747b8f; font-size: .54rem; }
.invoice-float > strong { display: block; margin-top: 5px; font-size: 1.08rem; }
.invoice-float p { color: #596075; font-size: .52rem; }
.invoice-float p span { color: var(--m-teal); }
.invoice-float button { width: 100%; margin: 6px 0 15px; padding: 8px; font-size: .52rem; }
.invoice-float footer { padding-top: 12px; border-top: 1px solid #eceef3; }
.invoice-float footer small,.invoice-float footer b { display: block; font-size: .5rem; }
.invoice-float footer small { color: #8990a1; margin-bottom: 4px; }

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--m-line);
  border-bottom: 1px solid var(--m-line);
  background: #fbfbfd;
}
.value-strip div { padding: 26px 5vw; text-align: center; }
.value-strip div + div { border-left: 1px solid var(--m-line); }
.value-strip strong,.value-strip span { display: block; }
.value-strip strong { color: var(--m-ink); font-size: .82rem; }
.value-strip span { margin-top: 5px; color: var(--m-muted); font-size: .68rem; }

.marketing-section,.steps-section,.pricing-section { width: min(1280px, calc(100% - 64px)); margin: 0 auto; padding: 112px 0; }
.section-heading { max-width: 650px; margin-bottom: 70px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,.final-cta h2 {
  margin: 0 0 17px;
  color: var(--m-ink);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: 1.07;
}
.section-heading p { margin: 0; color: var(--m-muted); font-size: 1rem; line-height: 1.7; }
.feature-row { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: center; padding: 65px 0; }
.feature-row + .feature-row { margin-top: 34px; border-top: 1px solid var(--m-line); }
.feature-row.reverse { grid-template-columns: 1.28fr .72fr; }
.feature-row.reverse .feature-copy { grid-column: 2; }
.feature-row.reverse .screen-frame { grid-row: 1; grid-column: 1; }
.feature-number { color: var(--m-purple); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.feature-copy h3 { margin: 12px 0 17px; font-family: var(--font-display); font-size: clamp(1.65rem, 2.6vw, 2.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.12; }
.feature-copy > p { margin: 0; color: var(--m-muted); line-height: 1.75; }
.feature-copy ul,.price-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.feature-copy li,.price-card li { position: relative; margin: 10px 0; padding-left: 26px; color: #3e465c; font-size: .82rem; }
.feature-copy li::before,.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--m-teal); font-weight: 800; }
.screen-frame { overflow: hidden; border: 1px solid #dfe2eb; border-radius: 16px; background: var(--m-soft); box-shadow: 0 28px 60px -38px rgba(16,20,42,.4); }
.screen-toolbar { height: 54px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; background: #fff; border-bottom: 1px solid var(--m-line); }
.screen-toolbar > span { display: flex; gap: 5px; }
.screen-toolbar > span i { width: 7px; height: 7px; background: #d9dce5; border-radius: 50%; }
.screen-toolbar strong { font-size: .72rem; }
.screen-toolbar button { justify-self: end; padding: 7px 9px; border: 0; border-radius: 6px; background: var(--m-purple); color: #fff; font-size: .52rem; font-weight: 700; }
.screen-filter-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; padding: 13px 16px; background: #f9f9fb; border-bottom: 1px solid var(--m-line); }
.screen-filter-row label { color: #6f768a; font-size: .5rem; font-weight: 700; }
.screen-filter-row label span { display: block; margin-top: 4px; padding: 8px 9px; background: #fff; border: 1px solid #e1e3ea; border-radius: 6px; color: #31374a; font-size: .55rem; font-weight: 500; }
.screen-filter-row small { padding-bottom: 8px; color: #8c92a2; font-size: .48rem; }
.document-canvas { min-height: 455px; display: grid; grid-template-columns: 1fr 160px; gap: 15px; padding: 24px; background: #eff0f4; }
.document-canvas article { min-height: 390px; padding: 48px 52px; background: #fff; color: #161616; box-shadow: 0 2px 8px rgba(20,25,40,.08); font-family: Georgia, serif; }
.document-canvas h4 { margin: 0 0 25px; font-family: Georgia, serif; font-size: 1.06rem; letter-spacing: 0; }
.document-canvas h5 { margin: 22px 0 12px; font-family: Georgia, serif; font-size: .72rem; }
.document-canvas p { display: inline; margin-right: 7px; font-size: .61rem; line-height: 1.75; }
.document-canvas mark { padding: 2px 4px; border: 1px dashed #e3aa2e; border-radius: 4px; background: #fff5d7; }
.document-canvas aside { align-self: start; padding: 15px; background: #fff; border: 1px solid #e3e5ec; border-radius: 10px; }
.document-canvas aside strong { font-size: .65rem; }
.document-canvas aside p { display: block; margin: 7px 0 12px; color: #848b9d; font-family: var(--font-ui); font-size: .53rem; line-height: 1.5; }
.document-canvas aside span { display: block; margin: 6px 0; padding: 6px 7px; border: 1px solid #efd183; border-radius: 5px; background: #fffaf0; color: #8e6200; font-family: var(--font-ui); font-size: .5rem; }
.portal-preview-nav { height: 58px; display: flex; align-items: center; gap: 24px; padding: 0 22px; background: #fff; border-bottom: 1px solid var(--m-line); }
.portal-preview-nav strong { margin-right: auto; font-family: var(--font-display); font-size: .8rem; }
.portal-preview-nav span { color: #667085; font-size: .55rem; }
.portal-preview-nav i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #1187a4; color: #fff; font-size: .5rem; font-style: normal; }
.portal-preview-body { padding: 24px; }
.portal-preview-body > header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; }
.portal-preview-body > header small,.portal-preview-body > header strong { display: block; }
.portal-preview-body > header small { color: var(--m-purple); font-size: .5rem; font-weight: 800; letter-spacing: .1em; }
.portal-preview-body > header strong { margin-top: 5px; font-size: 1rem; }
.portal-preview-body > header em { padding: 4px 8px; border-radius: 99px; background: var(--m-teal-soft); color: var(--m-teal); font-size: .52rem; font-style: normal; font-weight: 700; }
.portal-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.portal-overview-grid article { min-height: 142px; padding: 18px; background: #fff; border: 1px solid #e3e5ec; border-radius: 11px; }
.portal-overview-grid article > small { color: #8c92a1; font-size: .48rem; font-weight: 800; letter-spacing: .08em; }
.portal-overview-grid article > strong { display: block; margin-top: 8px; font-size: 1.25rem; }
.portal-overview-grid article > p { color: #6b7285; font-size: .58rem; }
.portal-overview-grid button { padding: 7px 10px; font-size: .52rem; }
.portal-message span { color: var(--m-purple); font-size: .54rem; font-weight: 700; }

.steps-section { padding-top: 85px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--m-line); }
.steps-grid article { padding: 32px 50px 20px 0; }
.steps-grid article + article { padding-left: 50px; border-left: 1px solid var(--m-line); }
.steps-grid article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--m-purple-soft); color: var(--m-purple); font-weight: 800; font-size: .72rem; }
.steps-grid h3 { margin: 18px 0 8px; font-size: 1rem; }
.steps-grid p { margin: 0; color: var(--m-muted); font-size: .8rem; line-height: 1.7; }

.pricing-section { width: 100%; max-width: none; padding: 110px max(32px, calc((100vw - 1280px) / 2)); background: #f7f7fb; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1160px; margin: 0 auto; }
.price-card { position: relative; padding: 32px; background: #fff; border: 1px solid #e0e2ea; border-radius: 17px; }
.price-card.featured { border: 2px solid var(--m-purple); box-shadow: 0 18px 50px -34px rgba(75,38,220,.65); }
.price-label { position: absolute; top: -13px; left: 28px; padding: 5px 10px; border-radius: 99px; background: var(--m-purple); color: #fff; font-size: .6rem; font-weight: 800; }
.price-card h3 { margin: 3px 0 7px; font-size: 1.05rem; }
.price-card > p { min-height: 44px; margin: 0; color: var(--m-muted); font-size: .76rem; }
.price-amount { display: flex; align-items: baseline; margin: 25px 0 22px; }
.price-amount sup { margin-right: 3px; color: var(--m-ink); font-weight: 800; }
.price-amount strong { font: 800 2.9rem/1 var(--font-display); letter-spacing: -.07em; }
.price-amount span { margin-left: 6px; color: var(--m-muted); font-size: .72rem; }
.price-card ul { min-height: 145px; padding-top: 20px; border-top: 1px solid var(--m-line); }
.price-card .marketing-btn { width: 100%; margin-top: 20px; }
.pricing-note { margin: 24px auto 0; text-align: center; color: var(--m-muted); font-size: .7rem; }

.final-cta { width: min(1280px, calc(100% - 64px)); margin: 90px auto 40px; padding: 86px 8%; text-align: center; background: var(--m-ink); border-radius: 24px; color: #fff; }
.final-cta .marketing-kicker { color: #a9afff; }
.final-cta h2 { max-width: 730px; margin-left: auto; margin-right: auto; color: #fff; }
.final-cta p { color: #c5c8d5; }
.final-cta .marketing-cta-row { justify-content: center; margin-top: 28px; }
.marketing-btn.light { background: #fff; color: var(--m-ink); }
.marketing-btn.ghost { color: #fff; border-color: #474b63; }

.marketing-footer { width: min(1280px, calc(100% - 64px)); min-height: 120px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.marketing-footer > p { color: var(--m-muted); font-size: .72rem; }
.marketing-footer > div { justify-self: end; display: flex; gap: 22px; }
.marketing-footer > div a { color: var(--m-muted); font-size: .72rem; font-weight: 600; }

@media (max-width: 1180px) {
  .marketing-nav { grid-template-columns: 1fr auto; }
  .marketing-nav-links { display: none; }
  .marketing-hero { grid-template-columns: minmax(0, 1fr); padding-top: 62px; }
  .marketing-hero-copy { width: 100%; max-width: 800px; text-align: center; margin: 0 auto; }
  .marketing-hero-copy > p:not(.hero-fine-print) { margin-left: auto; margin-right: auto; }
  .hero-price,.marketing-hero .marketing-cta-row { margin-left: auto; margin-right: auto; justify-content: center; }
  .product-stage { width: min(900px, 100%); margin: 0 auto; }
  .feature-row,.feature-row.reverse { grid-template-columns: 1fr; gap: 42px; }
  .feature-row.reverse .feature-copy,.feature-row.reverse .screen-frame { grid-column: 1; }
  .feature-row.reverse .feature-copy { grid-row: 1; }
  .feature-copy { max-width: 650px; }
}

@media (max-width: 760px) {
  .price-ribbon span { display: none; }
  .marketing-nav,.marketing-hero,.marketing-section,.steps-section,.final-cta,.marketing-footer { width: min(calc(100% - 36px), 1280px); }
  .marketing-nav { min-height: 70px; }
  .marketing-brand { font-size: .96rem; }
  .marketing-brand-mark { width: 30px; height: 30px; }
  .marketing-nav-actions { gap: 12px; }
  .marketing-login { font-size: .78rem; }
  .marketing-nav .marketing-btn { min-height: 38px; padding: 8px 13px; font-size: .76rem; }
  .marketing-hero { padding-top: 48px; gap: 30px; }
  .marketing-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-outcomes { grid-template-columns: 1fr; }
  .outcome-card { text-align: left; }
  .product-stage { width: 100%; min-height: 390px; overflow: hidden; transform-origin: top center; }
  .product-window { width: 730px; min-height: 470px; transform: scale(.58); transform-origin: top left; }
  .invoice-float { right: -1%; transform: scale(.7); transform-origin: top right; }
  .value-strip { grid-template-columns: 1fr; }
  .value-strip div + div { border-left: 0; border-top: 1px solid var(--m-line); }
  .marketing-section,.steps-section { padding: 80px 0; }
  .section-heading { margin-bottom: 40px; }
  .feature-row { padding: 45px 0; }
  .document-canvas { grid-template-columns: 1fr; min-width: 720px; transform-origin: top left; }
  .proposal-screen,.portal-screen { overflow-x: auto; }
  .proposal-screen > *,.portal-screen > * { min-width: 700px; }
  .steps-grid,.pricing-grid { grid-template-columns: 1fr; }
  .steps-grid article,.steps-grid article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--m-line); }
  .pricing-section { padding: 80px 18px; }
  .price-card > p,.price-card ul { min-height: 0; }
  .final-cta { margin-top: 60px; padding: 64px 25px; border-radius: 18px; }
  .marketing-footer { grid-template-columns: 1fr; justify-items: center; padding: 35px 0; text-align: center; }
  .marketing-footer .marketing-brand,.marketing-footer > div { justify-self: center; }
}

@media (max-width: 430px) {
  .marketing-brand > span:last-child { display: none; }
  .marketing-hero-copy { text-align: left; }
  .marketing-hero-copy > p:not(.hero-fine-print) { margin-left: 0; }
  .hero-price,.marketing-hero .marketing-cta-row { margin-left: 0; justify-content: flex-start; }
  .marketing-cta-row .marketing-btn { width: 100%; }
  .product-window { transform: scale(.48); }
  .invoice-float { transform: scale(.6); }
}
