:root {
  --mkt-ink: #0c1620;
  --mkt-slate-900: #16212e;
  --mkt-slate-800: #1f2c3b;
  --mkt-slate-700: #354456;
  --mkt-slate-500: #5d6b7c;
  --mkt-slate-300: #b1bbc6;
  --mkt-slate-200: #d4dae1;
  --mkt-slate-100: #e8ebef;
  --mkt-paper: #f7f6f2;
  --mkt-paper-2: #efede6;
  --mkt-line: #e3e1da;
  --mkt-line-2: #d3d0c6;
  --mkt-white: #ffffff;
  --mkt-moss-900: #1f4636;
  --mkt-moss-700: #2d6149;
  --mkt-moss-500: #4a8a6b;
  --mkt-moss-100: #dde9e0;
  --mkt-moss-50: #ecf2ec;
  --mkt-amber-700: #9c6312;
  --mkt-amber-100: #f4e3c4;
  --mkt-amber-50: #faf1de;
  --mkt-rose-700: #913a3a;
  --mkt-rose-100: #f1d6d6;
  --mkt-rose-50: #f8e6e6;
  --mkt-shadow-sm: 0 1px 0 rgba(15, 25, 40, 0.04), 0 1px 2px rgba(15, 25, 40, 0.04);
  --mkt-shadow-md: 0 1px 0 rgba(15, 25, 40, 0.04), 0 12px 32px -18px rgba(15, 25, 40, 0.18);
  --mkt-shadow-lg: 0 1px 0 rgba(15, 25, 40, 0.04), 0 30px 60px -26px rgba(15, 25, 40, 0.22);
  --mkt-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mkt-serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --mkt-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0;
}

.marketing-body {
  background: var(--mkt-paper);
  color: var(--mkt-ink);
  font-family: var(--mkt-sans);
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.mkt-skip-link {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line-2);
  border-radius: 8px;
  color: var(--mkt-ink);
  left: 18px;
  padding: 8px 12px;
  position: absolute;
  top: -80px;
  z-index: 100;
}

.mkt-skip-link:focus {
  top: 18px;
}

.mkt-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.mkt-nav {
  background: rgba(247, 246, 242, 0.88);
  border-bottom: 1px solid rgba(15, 25, 40, 0.07);
  backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.mkt-nav-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  height: 68px;
  justify-content: space-between;
}

.mkt-brand {
  align-items: center;
  color: var(--mkt-ink);
  display: inline-flex;
  font-weight: 600;
  gap: 10px;
}

.mkt-brand-mark {
  background: var(--mkt-ink);
  border-radius: 7px;
  display: grid;
  height: 28px;
  place-items: center;
  width: 28px;
}

.mkt-brand-name {
  font-size: 16px;
}

.mkt-nav-links,
.mkt-nav-cta {
  align-items: center;
  display: flex;
  gap: 22px;
}

.mkt-nav-links a {
  color: var(--mkt-slate-700);
  font-size: 14px;
  font-weight: 450;
}

.mkt-nav-links a:hover {
  color: var(--mkt-ink);
}

.mkt-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 80ms ease;
  white-space: nowrap;
}

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

.mkt-btn-primary,
.marketing-body a.mkt-btn-primary {
  background: var(--mkt-ink);
  border-color: var(--mkt-ink);
  color: var(--mkt-white);
  text-decoration: none;
}

.mkt-btn-primary:hover,
.marketing-body a.mkt-btn-primary:hover {
  background: var(--mkt-slate-800);
  color: var(--mkt-white);
}

.mkt-btn-outline,
.marketing-body a.mkt-btn-outline {
  background: var(--mkt-white);
  border-color: var(--mkt-line-2);
  color: var(--mkt-ink);
  text-decoration: none;
}

.mkt-btn-outline:hover,
.marketing-body a.mkt-btn-outline:hover {
  border-color: var(--mkt-slate-500);
  color: var(--mkt-ink);
}

.mkt-btn-ghost,
.marketing-body a.mkt-btn-ghost {
  color: var(--mkt-slate-700);
  text-decoration: none;
}

.mkt-btn-ghost:hover,
.marketing-body a.mkt-btn-ghost:hover {
  color: var(--mkt-ink);
}

.mkt-btn-large {
  font-size: 15px;
  min-height: 46px;
  padding: 11px 19px;
}

.mkt-main {
  min-height: 68vh;
}

.mkt-hero {
  padding: 74px 0 54px;
}

.mkt-hero-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
}

.mkt-eyebrow {
  align-items: center;
  background: var(--mkt-moss-50);
  border: 1px solid var(--mkt-moss-100);
  border-radius: 999px;
  color: var(--mkt-moss-700);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0;
  padding: 6px 10px 6px 8px;
  text-transform: uppercase;
}

.mkt-eyebrow::before {
  background: var(--mkt-moss-700);
  border-radius: 999px;
  content: "";
  height: 6px;
  width: 6px;
}

.mkt-hero h1,
.mkt-page-head h1,
.mkt-article h1 {
  color: var(--mkt-ink);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 20px 0 18px;
  text-wrap: balance;
}

.mkt-hero h1 em,
.mkt-page-head h1 em,
.mkt-article h1 em,
.mkt-cta h2 em {
  color: var(--mkt-slate-800);
  font-family: var(--mkt-serif);
  font-style: italic;
  font-weight: 500;
}

.mkt-hero-subtitle,
.mkt-page-head p,
.mkt-article-deck {
  color: var(--mkt-slate-700);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
  text-wrap: pretty;
}

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

.mkt-proof {
  color: var(--mkt-slate-500);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px 16px;
  margin-top: 26px;
}

.mkt-proof span {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.mkt-proof span + span::before {
  background: var(--mkt-slate-300);
  border-radius: 999px;
  content: "";
  height: 4px;
  width: 4px;
}

.mkt-hero-panel {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  box-shadow: var(--mkt-shadow-lg);
  overflow: hidden;
}

.mkt-window-bar {
  align-items: center;
  background: linear-gradient(to bottom, #fbfaf6, #f6f4ee);
  border-bottom: 1px solid var(--mkt-line);
  display: flex;
  gap: 12px;
  padding: 12px 14px;
}

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

.mkt-traffic i {
  background: #d6d2c5;
  border-radius: 999px;
  display: block;
  height: 10px;
  width: 10px;
}

.mkt-traffic i:nth-child(1) {
  background: #e6a8a4;
}

.mkt-traffic i:nth-child(2) {
  background: #e8cf99;
}

.mkt-traffic i:nth-child(3) {
  background: #b8d5b7;
}

.mkt-crumb {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: 6px;
  color: var(--mkt-slate-500);
  flex: 1;
  font-family: var(--mkt-mono);
  font-size: 11px;
  overflow: hidden;
  padding: 4px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mkt-panel-body {
  background: #fbfaf6;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.mkt-risk-card {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  box-shadow: var(--mkt-shadow-sm);
  padding: 14px;
}

.mkt-risk-card strong {
  color: var(--mkt-ink);
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.mkt-risk-card p {
  color: var(--mkt-slate-600, #4b5969);
  font-size: 13px;
  margin: 6px 0 0;
}

.mkt-risk-row {
  align-items: center;
  border-top: 1px solid var(--mkt-line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
}

.mkt-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
}

.mkt-pill-moss {
  background: var(--mkt-moss-50);
  color: var(--mkt-moss-700);
}

.mkt-pill-amber {
  background: var(--mkt-amber-50);
  color: var(--mkt-amber-700);
}

.mkt-pill-rose {
  background: var(--mkt-rose-50);
  color: var(--mkt-rose-700);
}

.mkt-band {
  border-top: 1px solid var(--mkt-line);
  padding: 64px 0;
}

.mkt-band-alt {
  background: var(--mkt-paper-2);
}

.mkt-page-head {
  max-width: 820px;
  padding: 66px 0 34px;
}

.mkt-section-head {
  margin-bottom: 24px;
  max-width: 760px;
}

.mkt-section-head h2 {
  color: var(--mkt-ink);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 10px;
}

.mkt-section-head p {
  color: var(--mkt-slate-700);
  font-size: 16px;
  margin: 0;
}

.mkt-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mkt-card {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  box-shadow: var(--mkt-shadow-sm);
  padding: 20px;
}

.mkt-card h2,
.mkt-card h3 {
  color: var(--mkt-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
}

.mkt-card p {
  color: var(--mkt-slate-700);
  font-size: 14px;
  margin: 0;
}

.mkt-card p + p {
  margin-top: 10px;
}

.mkt-card a {
  color: var(--mkt-moss-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.mkt-result-hero {
  padding: 72px 0 34px;
}

.mkt-result-section {
  padding: 0 0 56px;
}

.mkt-result-disclaimer {
  padding: 36px 0;
}

.mkt-result-wrap {
  max-width: 1080px;
}

.mkt-result-head {
  margin-bottom: 22px;
}

.mkt-result-head h1 {
  color: var(--mkt-ink);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 24px 0 20px;
  text-wrap: balance;
}

.mkt-hero-copy {
  color: var(--mkt-ink);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  margin: 0;
  max-width: 960px;
}

.mkt-result-card {
  border-radius: 10px;
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  width: 100%;
}

.mkt-result-card + .mkt-result-card,
.mkt-result-section .mkt-result-card + .mkt-result-card {
  margin-top: 26px;
}

.mkt-result-account-card {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.mkt-result-account-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.mkt-result-account-card p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 760px;
}

.mkt-result-card > .mkt-eyebrow {
  margin-bottom: 14px;
}

.mkt-result-card h2 + p,
.mkt-result-card .mkt-rich-text {
  margin-top: 14px;
}

.mkt-result-card .mkt-check-list,
.mkt-result-card .mkt-btn {
  margin-top: 20px;
}

.mkt-post-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mkt-post-card {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  box-shadow: var(--mkt-shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
}

.mkt-post-card time,
.mkt-article-meta,
.mkt-tags {
  color: var(--mkt-slate-500);
  font-size: 13px;
}

.mkt-post-card h2 {
  color: var(--mkt-ink);
  font-family: var(--mkt-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.12;
  margin: 14px 0 10px;
}

.mkt-post-card p {
  color: var(--mkt-slate-700);
  font-size: 15px;
  margin: 0 0 20px;
}

.mkt-post-card .mkt-read-link {
  color: var(--mkt-moss-700);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

.mkt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mkt-tags span {
  background: var(--mkt-paper-2);
  border: 1px solid var(--mkt-line);
  border-radius: 999px;
  padding: 4px 8px;
}

.mkt-article-wrap {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  padding: 64px 0;
}

.mkt-article {
  min-width: 0;
}

.mkt-article h1 {
  margin-top: 12px;
}

.mkt-article-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.mkt-prose {
  color: var(--mkt-slate-800);
  font-size: 18px;
  line-height: 1.72;
  margin-top: 34px;
}

.mkt-prose > *:first-child {
  margin-top: 0;
}

.mkt-prose > *:last-child {
  margin-bottom: 0;
}

.mkt-prose h2,
.mkt-prose h3,
.mkt-prose h4 {
  color: var(--mkt-ink);
  font-weight: 600;
  line-height: 1.25;
  margin: 34px 0 12px;
}

.mkt-prose h2 {
  font-family: var(--mkt-serif);
  font-size: 30px;
  font-weight: 500;
}

.mkt-prose h3 {
  font-size: 21px;
}

.mkt-prose p,
.mkt-prose ul,
.mkt-prose ol,
.mkt-prose blockquote,
.mkt-prose table {
  margin: 0 0 20px;
}

.mkt-prose ul,
.mkt-prose ol {
  padding-left: 1.3rem;
}

.mkt-prose li {
  margin: 8px 0;
}

.mkt-prose a {
  color: var(--mkt-moss-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.mkt-prose blockquote {
  background: var(--mkt-amber-50);
  border-left: 3px solid var(--mkt-amber-700);
  color: var(--mkt-slate-800);
  padding: 14px 18px;
}

.mkt-prose table {
  border-collapse: collapse;
  display: block;
  font-size: 15px;
  overflow-x: auto;
  width: 100%;
}

.mkt-prose th,
.mkt-prose td {
  border: 1px solid var(--mkt-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.mkt-prose th {
  background: #fbfaf6;
  color: var(--mkt-ink);
  font-weight: 600;
}

.mkt-aside {
  align-self: start;
  position: sticky;
  top: 92px;
}

.mkt-aside .mkt-card + .mkt-card {
  margin-top: 14px;
}

.mkt-landing-body {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
}

.mkt-cta {
  background: var(--mkt-ink);
  border-radius: 12px;
  color: var(--mkt-white);
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.mkt-cta h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.16;
  margin: 0 0 12px;
  max-width: 720px;
  position: relative;
}

.mkt-cta p {
  color: var(--mkt-slate-200);
  margin: 0 0 22px;
  max-width: 680px;
  position: relative;
}

.mkt-cta .mkt-btn {
  position: relative;
}

.mkt-cta .mkt-btn-primary,
.marketing-body .mkt-cta a.mkt-btn-primary {
  background: var(--mkt-white);
  border-color: var(--mkt-white);
  color: var(--mkt-ink);
}

.mkt-cta .mkt-btn-primary:hover,
.marketing-body .mkt-cta a.mkt-btn-primary:hover {
  background: var(--mkt-slate-100);
  border-color: var(--mkt-slate-100);
  color: var(--mkt-ink);
}

.mkt-footer {
  background: var(--mkt-slate-900);
  color: var(--mkt-slate-100);
  padding: 46px 0 28px;
}

.mkt-footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(140px, 0.5fr));
}

.mkt-footer p,
.mkt-footer a,
.mkt-footer li {
  color: var(--mkt-slate-300);
  font-size: 14px;
}

.mkt-footer p {
  margin: 14px 0 0;
  max-width: 440px;
}

.mkt-footer h2 {
  color: var(--mkt-white);
  font-size: 13px;
  margin: 0 0 12px;
}

.mkt-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-footer li + li {
  margin-top: 8px;
}

.mkt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--mkt-slate-300);
  font-size: 13px;
  margin-top: 34px;
  padding-top: 22px;
}

.mkt-audit-request,
.mkt-audit-thanks {
  padding: 72px 0;
}

.mkt-audit-grid {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.mkt-audit-copy h1,
.mkt-thanks-panel h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 14px 0 18px;
  text-wrap: balance;
}

.mkt-audit-copy p,
.mkt-thanks-panel p {
  color: var(--mkt-slate-700);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.mkt-audit-note {
  background: var(--mkt-moss-50);
  border: 1px solid var(--mkt-moss-100);
  border-radius: 8px;
  color: var(--mkt-moss-900);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 24px;
  padding: 16px;
}

.mkt-form-panel,
.mkt-thanks-panel {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line);
  border-radius: 8px;
  box-shadow: var(--mkt-shadow-md);
  padding: 28px;
}

.mkt-thanks-panel {
  margin: 0 auto;
  max-width: 760px;
}

.mkt-thanks-panel p + p {
  margin-top: 14px;
}

.mkt-thanks-panel .mkt-btn {
  margin-top: 24px;
}

.mkt-audit-form {
  display: grid;
  gap: 18px;
}

.mkt-field-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mkt-field label,
.mkt-honeypot label {
  color: var(--mkt-slate-700);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mkt-field input,
.mkt-field select,
.mkt-field textarea {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-line-2);
  border-radius: 8px;
  color: var(--mkt-ink);
  font: inherit;
  font-size: 14px;
  padding: 11px 12px;
  width: 100%;
}

.mkt-field input:focus,
.mkt-field select:focus,
.mkt-field textarea:focus {
  border-color: var(--mkt-ink);
  box-shadow: 0 0 0 3px rgba(12, 22, 32, 0.12);
  outline: none;
}

.mkt-field textarea {
  resize: vertical;
}

.mkt-file-input {
  padding: 10px;
}

.mkt-help {
  color: var(--mkt-slate-500);
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0 0;
}

.mkt-checkbox {
  align-items: flex-start;
  color: var(--mkt-slate-700);
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.5;
}

.mkt-checkbox input {
  flex: 0 0 auto;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}

.mkt-honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.mkt-form-alert {
  background: var(--mkt-rose-50);
  border: 1px solid var(--mkt-rose-100);
  border-radius: 8px;
  color: var(--mkt-rose-700);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.mkt-form-alert p {
  margin: 0;
}

.mkt-form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

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

  .mkt-hero-grid,
  .mkt-landing-body,
  .mkt-article-wrap,
  .mkt-audit-grid {
    grid-template-columns: 1fr;
  }

  .mkt-aside {
    position: static;
  }

  .mkt-card-grid,
  .mkt-post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .mkt-container {
    max-width: 100%;
    padding: 0 18px;
    width: 100%;
  }

  .mkt-nav-inner {
    gap: 12px;
    height: auto;
    padding: 14px 0;
  }

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

  .mkt-nav-cta .mkt-btn-primary {
    font-size: 0;
    min-height: 40px;
    padding: 0;
    width: 44px;
  }

  .mkt-nav-cta .mkt-btn-primary::after {
    content: "Start";
    font-size: 13px;
  }

  .mkt-hero {
    padding: 48px 0 40px;
  }

  .mkt-hero h1,
  .mkt-page-head h1,
  .mkt-article h1 {
    font-size: 32px;
    letter-spacing: -0.015em;
    overflow-wrap: anywhere;
  }

  .mkt-hero-subtitle,
  .mkt-page-head p,
  .mkt-article-deck {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .mkt-card-grid,
  .mkt-post-grid,
  .mkt-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mkt-result-hero {
    padding: 48px 0 28px;
  }

  .mkt-result-section {
    padding-bottom: 40px;
  }

  .mkt-result-account-card {
    align-items: stretch;
    flex-direction: column;
  }

  .mkt-result-head h1 {
    font-size: 38px;
  }

  .mkt-post-grid,
  .mkt-post-card,
  .mkt-card,
  .mkt-cta {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .mkt-post-card h2,
  .mkt-post-card h2 a,
  .mkt-post-card p,
  .mkt-page-head p {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .mkt-article-wrap,
  .mkt-band {
    padding: 42px 0;
  }

  .mkt-article-wrap {
    display: block;
    max-width: 100%;
    overflow-x: hidden;
  }

  .mkt-article,
  .mkt-prose,
  .mkt-article-deck,
  .mkt-article h1,
  .mkt-prose p,
  .mkt-prose li,
  .mkt-prose h2,
  .mkt-prose h3 {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .mkt-article .mkt-tags {
    max-width: 100%;
    overflow: hidden;
  }

  .mkt-page-head {
    padding: 44px 18px 18px;
  }

  .mkt-prose {
    font-size: 16px;
  }

  .mkt-cta {
    padding: 26px;
  }

  .mkt-cta h2 {
    font-size: 25px;
  }

  .mkt-audit-request,
  .mkt-audit-thanks {
    padding: 44px 0;
  }

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

  .mkt-form-panel,
  .mkt-thanks-panel {
    padding: 22px;
  }
}
