/* ============================================================
   INNER PAGES (solutions, markets, intake)
   Accent color is themed per page via --accent on .page.
   ============================================================ */
.page { --accent: var(--teal); }
.accent { color: var(--accent); }

/* the glowing chart matches each page's capsule colorway */
.page .hero-bars { color: var(--chart-color, #2bd9e5); }

/* Inner hero: same split stage as home, with breadcrumb + title block */
.inner-hero { height: 480px; }
.inner-hero .hero-layout { height: 480px; }
.inner-hero .hero-copy { width: min(52vw, 700px); padding-top: 44px; padding-bottom: 40px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--soft); font-weight: 500; }

.inner-hero .inner-title {
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
/* neutralize homepage h1 rules leaking via .hero-copy h1 */
.inner-hero .inner-title::after { display: none; }
.inner-hero .inner-title .accent { display: inline; white-space: normal; color: var(--accent); }

/* Silver highlight (STAR-Resolve) — solid client-chosen gray; navy stays the
   page's structural anchor. */
.page--metallic .inner-hero .inner-title .accent {
  color: #7a7f88;
}
.inner-subhead {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.inner-subhead.accent { color: var(--accent); }
.inner-intro {
  width: min(40vw, 480px);
  margin-top: 18px;
  color: #142c45;
  font-size: clamp(18px, 1.3vw, 20px);
  line-height: 1.55;
}

/* Accent band variant */
.band--accent {
  background:
    radial-gradient(circle at 88% 15%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 45%),
    linear-gradient(100deg, color-mix(in srgb, var(--accent) 88%, #000), var(--accent) 70%, color-mix(in srgb, var(--accent) 80%, #fff 8%));
}
.band-accent { color: rgba(255, 255, 255, 0.82); }

/* Detail two-column */
.detail { background: #fff; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.detail-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-left h2,
.address-heading {
  margin-bottom: 26px;
  color: var(--accent);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.address-heading { margin-left: 2px; color: var(--ink); }

.checklist { list-style: none; display: grid; gap: 20px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist li svg { flex: 0 0 24px; width: 24px; height: 24px; color: var(--accent); margin-top: 1px; }
.checklist li span { color: #1d3144; font-size: 18px; line-height: 1.5; }

.detail-right { padding-left: clamp(0px, 2vw, 40px); border-left: 1px solid var(--line); }
.detail-right--card > p { margin-bottom: 16px; }

/* Solution pages: right column is a contained card (matches mockups) */
.detail-right--card {
  align-self: start;
  padding: clamp(28px, 3vw, 40px);
  border-left: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f5f7f8;
}

.stat-block { margin-bottom: 26px; }
.stat-label {
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-label::after { content: ""; display: block; width: 48px; height: 3px; margin-top: 12px; background: var(--accent); opacity: 0.5; }
.stat-value {
  margin-top: 14px;
  color: var(--accent);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.stat-sub { margin-top: 8px; color: var(--soft); font-size: 18px; font-style: italic; }
.stat-sub a { color: var(--accent); text-decoration: underline; font-style: normal; }

.delivers-heading {
  margin-top: 6px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.delivers-list, .bullet-list { list-style: none; display: grid; gap: 12px; padding-left: 22px; }
.delivers-list li, .bullet-list li {
  position: relative;
  padding-left: 22px;
  color: #1d3144;
  font-size: 18px;
  line-height: 1.45;
}
.delivers-list li::before, .bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 22px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
}
.guarantee svg { flex: 0 0 24px; width: 24px; height: 24px; }

.callout-box {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 92%, #000 4%);
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.55;
}

/* Feature row */
.features { background: #f4f7f8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
}
.features-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature {
  text-align: center;
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.feature-num {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent);
}
.feature-num svg { width: 36px; height: 36px; }
.feature h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.feature p { color: #3e4b60; font-size: 18px; line-height: 1.5; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.btn svg { width: 14px; height: 10px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 40%, transparent); filter: brightness(1.05); }
.btn--lg { padding: 16px 30px; font-size: 16px; }

/* Report module — sits right below the hero band (Gap, Adherence) */
.report-module {
  background:
    radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
    color-mix(in srgb, var(--accent) 6%, #fff);
  border-bottom: 1px solid var(--line);
}
.report-module-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(26px, 3.5vw, 52px);
  padding-top: clamp(32px, 3.4vw, 46px);
  padding-bottom: clamp(32px, 3.4vw, 46px);
}
.report-illustration { color: var(--accent); width: clamp(132px, 14vw, 172px); flex-shrink: 0; }
.report-illustration svg { width: 100%; height: auto; filter: drop-shadow(0 14px 28px rgba(0, 22, 50, 0.14)); }
/* heading fills the offer column and wraps at its edge — no premature ch cap */
.report-offer-heading { color: var(--ink); font-size: clamp(22px, 2.4vw, 31px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.18; }
.report-offer-sub { margin-top: 12px; margin-bottom: 22px; color: var(--soft); font-size: clamp(17px, 1.3vw, 19px); line-height: 1.5; }

/* Market CTA */
.market-cta {
  background:
    radial-gradient(circle at 67% 0, color-mix(in srgb, var(--accent) 10%, transparent), transparent 42%),
    #eef5f6;
}
.market-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.market-cta .mission-text { min-width: 0; }
.market-cta-inner--center { align-items: center; text-align: center; }
.market-cta-action { text-align: center; max-width: 600px; }
.market-cta-heading { color: var(--ink); font-size: clamp(18px, 1.8vw, 24px); font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; }
.market-cta-sub { margin-top: 8px; margin-bottom: 16px; color: var(--soft); font-size: 17px; }

/* ============ INTAKE FORM ============ */
.intake-intro { background: #fff; padding-top: 48px; }
.intake-intro-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.intake-title {
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.intake-title .accent { color: var(--accent); display: block; }
.intake-subhead { margin-top: 18px; color: var(--ink); font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; }
.intake-lede { margin-top: 20px; color: #3e4b60; font-size: 18px; line-height: 1.6; max-width: 60ch; }
.intake-sign {
  margin-top: 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}
.intake-sign span { display: block; margin-top: 4px; font-family: var(--font); font-size: 13px; font-style: normal; font-weight: 600; color: var(--soft); letter-spacing: 0.02em; }

.intake-callout {
  padding: 28px 26px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  background: color-mix(in srgb, var(--accent) 6%, #fff);
}
.intake-callout-heading { color: var(--accent); font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.intake-callout p { color: #3e4b60; font-size: 17px; line-height: 1.55; }

.intake-form-section { background: #fff; padding-top: 40px; padding-bottom: 24px; }
.intake-form { display: grid; gap: 28px; }
.form-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px 30px;
}
.form-block legend {
  display: flex; align-items: center; gap: 10px;
  padding: 0 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.field input,
.field textarea {
  font: inherit;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid #c6d2d8;
  border-radius: 8px;
  background: #fbfcfc;
  color: var(--text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.intake-form .btn { justify-self: start; }

/* Custom validation (no native browser bubbles) */
.field--error input,
.field--error textarea { border-color: #d23b3b; background: #fdf6f6; }
.field--error input:focus,
.field--error textarea:focus { border-color: #d23b3b; box-shadow: 0 0 0 3px rgba(210, 59, 59, 0.16); }
.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
  color: #c1302b;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0;
}
.field-error svg { flex: 0 0 14px; width: 14px; height: 14px; }

.intake-success[hidden] { display: none; }
.intake-success {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 60px 20px;
  color: var(--accent);
}
.intake-success svg { width: 56px; height: 56px; }
.intake-success h2 { color: var(--ink); font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.intake-success p { color: var(--soft); font-size: 18px; max-width: 46ch; }

.next-steps { background: #f4f7f8; border-top: 1px solid var(--line); padding-top: clamp(44px, 5vw, 64px); padding-bottom: clamp(44px, 5vw, 64px); }
.next-steps-title { text-align: center; color: var(--ink); font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 40px; }
.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.step { text-align: center; }
.step-num {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.step p { color: #3e4b60; font-size: 17px; line-height: 1.5; }
.step p em { display: block; margin-top: 8px; font-size: 15px; color: var(--soft); }

/* ---- inner-page responsive ---- */
@media (max-width: 1050px) {
  .inner-hero .inner-title { font-size: clamp(38px, 5.4vw, 56px); }
  .inner-intro { width: 46vw; }
}
@media (max-width: 860px) {
  .inner-hero { height: auto; }
  .inner-hero .hero-copy { padding: 40px var(--page-pad) 32px; }
  .inner-intro { width: 100%; max-width: 600px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-right { padding-left: 0; border-left: 0; }
  .features-grid, .features-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .report-module-inner { grid-template-columns: 1fr; gap: 24px; }
  .report-illustration { width: 200px; }
  .market-cta-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .market-cta-action { text-align: center; }
  .intake-intro-grid { grid-template-columns: 1fr; }
}
/* hero stacks at 820px (see styles.css); the inner hero-copy must go full-width
   then too, or it stays stuck at the desktop min(52vw,700px) and looks half-empty */
@media (max-width: 820px) {
  .inner-hero .hero-copy { width: 100%; }
}
@media (max-width: 540px) {
  .field-grid { grid-template-columns: 1fr; }
  .features-grid, .features-grid--3 { grid-template-columns: 1fr; gap: 30px; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-block { padding: 22px 18px 24px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* Hero — brand-origin story, navy, no capsule */
.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 28%, rgba(22, 142, 173, 0.30), transparent 56%),
    linear-gradient(118deg, #001b2c, var(--navy) 55%, var(--navy-deep));
  color: #fff;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(120, 200, 220, 0.16) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(120% 95% at 78% 32%, #000 28%, transparent 80%);
          mask-image: radial-gradient(120% 95% at 78% 32%, #000 28%, transparent 80%);
  opacity: 0.7;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding-top: clamp(64px, 8vw, 116px);
  padding-bottom: clamp(64px, 8vw, 116px);
}
.about-eyebrow {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-question {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 500;
  font-style: italic;
}
.about-title {
  margin-top: 6px;
  font-size: clamp(60px, 8.5vw, 132px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.about-pron {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.5vw, 22px);
}
.about-pron em { color: #fff; font-style: italic; font-weight: 700; }
.about-lead {
  margin-top: 26px;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.62;
}

/* Today / mission */
.about-intro { background: #fff; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(54px, 7vw, 88px);
}
.about-intro-grid > h2 {
  color: var(--ink);
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.about-intro-grid > h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 24px;
  background: var(--teal);
  border-radius: 2px;
}
.about-intro-body p { color: #3e4b60; font-size: 19px; line-height: 1.65; }
.about-intro-body p + p { margin-top: 16px; }
.about-intro-body .about-intro-kicker {
  margin-top: 22px;
  color: var(--teal);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-p { margin-top: 16px; color: #3e4b60; font-size: 18px; line-height: 1.6; max-width: 52ch; }

/* Delivery models */
.about-models {
  background: #f4f7f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 92px) 0;
}
.section-head {
  text-align: center;
  color: var(--ink);
  font-size: clamp(28px, 2.9vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section-sub {
  margin: 16px auto 0;
  max-width: 72ch;
  text-align: center;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.6;
}
.models-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.model-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
}
.model-kicker { color: var(--teal); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.model-card h3 { margin-top: 6px; color: var(--ink); font-size: clamp(22px, 2.2vw, 29px); font-weight: 800; letter-spacing: -0.02em; }
.model-card > p { margin-top: 12px; color: #3e4b60; font-size: 18px; line-height: 1.6; }
.model-card .checklist { margin-top: 22px; }
.model-ideal { margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 17px; font-weight: 600; font-style: italic; }

/* Onboarding + pricing — dark panel (deliberately different from the card grids) */
.about-assurance { background: #fff; padding: clamp(56px, 7vw, 92px) 0; }
.assurance-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(32px, 4vw, 60px);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(22, 142, 173, 0.28), transparent 55%),
    linear-gradient(118deg, #001b2c, var(--navy) 60%, var(--navy-deep));
}
.assurance-divider { background: rgba(255, 255, 255, 0.14); }
.assurance-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cyan);
}
.assurance-icon svg { width: 24px; height: 24px; }
.assurance-col h3 { color: #fff; font-size: clamp(21px, 2.1vw, 28px); font-weight: 800; letter-spacing: -0.02em; }
.assurance-col > p { margin-top: 10px; color: rgba(255, 255, 255, 0.72); font-size: 18px; line-height: 1.6; }
.assurance-col .checklist { margin-top: 22px; }
.checklist--light li span { color: rgba(255, 255, 255, 0.86); }
.checklist--light li svg { color: var(--cyan); }
.assurance-kicker { margin-top: 20px; color: var(--cyan); font-weight: 700; font-size: 15px; }

/* Closing band — longer copy than other pages' bands, so size down to avoid wraps */
.about-page .band-text { font-size: clamp(19px, 1.85vw, 29px); }

/* Contact */
.about-contact { background: #f4f7f8; border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 92px) 0; }
.about-contact-grid {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-contact-info h2 { color: var(--ink); font-size: clamp(28px, 2.9vw, 42px); font-weight: 800; letter-spacing: -0.03em; }
.about-contact-info > p { margin: 16px auto 0; max-width: 62ch; color: #3e4b60; font-size: 19px; line-height: 1.6; }
.contact-lines { list-style: none; margin-top: 26px; display: grid; gap: 8px; justify-content: center; }
.contact-lines a { color: var(--teal); font-weight: 700; font-size: 18px; }
.contact-lines li { color: var(--soft); font-size: 16px; }

@media (max-width: 860px) {
  .about-intro-grid,
  .models-grid { grid-template-columns: 1fr; }
  .about-intro-grid { gap: 18px; }
  .assurance-panel { grid-template-columns: 1fr; gap: 30px; }
  .assurance-divider { height: 1px; }
}

/* Privacy */
.privacy-title { font-size: clamp(48px, 7vw, 96px); }
.privacy-body { background: #fff; }
.privacy-body .container {
  max-width: 760px;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(56px, 8vw, 100px);
}
.privacy-body p {
  color: #3e4b60;
  font-size: clamp(19px, 1.5vw, 21px);
  line-height: 1.75;
}
.privacy-body a { color: var(--teal); font-weight: 700; }
.privacy-body a:hover { text-decoration: underline; }

/* ============ SPACING UTILITIES ============ */
/* Scale: 0, 4, 8, 12, 16, 20, 24, 32, 40 (px). Use alongside a component
   class to nudge spacing, e.g. <p class="about-p mt-24">. !important is
   intentional here so these always win, regardless of selector specificity
   elsewhere in the file. */
.m-0 { margin: 0px !important; }
.m-4 { margin: 4px !important; }
.m-8 { margin: 8px !important; }
.m-12 { margin: 12px !important; }
.m-16 { margin: 16px !important; }
.m-20 { margin: 20px !important; }
.m-24 { margin: 24px !important; }
.m-32 { margin: 32px !important; }
.m-40 { margin: 40px !important; }
.mt-0 { margin-top: 0px !important; }
.mt-4 { margin-top: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-0 { margin-bottom: 0px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.ml-0 { margin-left: 0px !important; }
.ml-4 { margin-left: 4px !important; }
.ml-8 { margin-left: 8px !important; }
.ml-12 { margin-left: 12px !important; }
.ml-16 { margin-left: 16px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-24 { margin-left: 24px !important; }
.ml-32 { margin-left: 32px !important; }
.ml-40 { margin-left: 40px !important; }
.mr-0 { margin-right: 0px !important; }
.mr-4 { margin-right: 4px !important; }
.mr-8 { margin-right: 8px !important; }
.mr-12 { margin-right: 12px !important; }
.mr-16 { margin-right: 16px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-24 { margin-right: 24px !important; }
.mr-32 { margin-right: 32px !important; }
.mr-40 { margin-right: 40px !important; }
.p-0 { padding: 0px !important; }
.p-4 { padding: 4px !important; }
.p-8 { padding: 8px !important; }
.p-12 { padding: 12px !important; }
.p-16 { padding: 16px !important; }
.p-20 { padding: 20px !important; }
.p-24 { padding: 24px !important; }
.p-32 { padding: 32px !important; }
.p-40 { padding: 40px !important; }
.pt-0 { padding-top: 0px !important; }
.pt-4 { padding-top: 4px !important; }
.pt-8 { padding-top: 8px !important; }
.pt-12 { padding-top: 12px !important; }
.pt-16 { padding-top: 16px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-24 { padding-top: 24px !important; }
.pt-32 { padding-top: 32px !important; }
.pt-40 { padding-top: 40px !important; }
.pb-0 { padding-bottom: 0px !important; }
.pb-4 { padding-bottom: 4px !important; }
.pb-8 { padding-bottom: 8px !important; }
.pb-12 { padding-bottom: 12px !important; }
.pb-16 { padding-bottom: 16px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-24 { padding-bottom: 24px !important; }
.pb-32 { padding-bottom: 32px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pl-0 { padding-left: 0px !important; }
.pl-4 { padding-left: 4px !important; }
.pl-8 { padding-left: 8px !important; }
.pl-12 { padding-left: 12px !important; }
.pl-16 { padding-left: 16px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-24 { padding-left: 24px !important; }
.pl-32 { padding-left: 32px !important; }
.pl-40 { padding-left: 40px !important; }
.pr-0 { padding-right: 0px !important; }
.pr-4 { padding-right: 4px !important; }
.pr-8 { padding-right: 8px !important; }
.pr-12 { padding-right: 12px !important; }
.pr-16 { padding-right: 16px !important; }
.pr-20 { padding-right: 20px !important; }
.pr-24 { padding-right: 24px !important; }
.pr-32 { padding-right: 32px !important; }
.pr-40 { padding-right: 40px !important; }
