/* =============================================================
   PropertyManage.Pro — interior content pages
   Currently used by pmp-grow.html; written to be reused by
   pmp-maintenance.html.

   Standalone by design: it carries its own tokens, header and
   footer rather than importing from pmp-legal.css, so the legal
   documents can stay untouched. Pair with assets/pmp-fonts.css.
   ============================================================= */

:root {
  --ink: #11242A;
  --ink-deep: #0C1B20;
  --deepest: #08171C;
  --vapor: #E8F0F1;
  --card: #F7FBFB;
  --teal: #15707E;
  --teal-deep: #0F5560;
  --aqua: #1FA39B;
  --aqua-deep: #15807A;
  --aqua-soft: #6FC2CB;
  --teal-light: #7FE0D6;
  --slate: #5E6B6E;
  --line: #CFDFE1;
  --mist: #DCE7E8;
  --teal-tint: #D6E9EB;
  --white: #FFFFFF;
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 28px 80px rgba(17, 36, 42, 0.12);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --pmp-font-display: "Sora", sans-serif;
  --pmp-font-body: "Hanken Grotesk", sans-serif;
  --pmp-font-label: "JetBrains Mono", monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--pmp-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-inline: 5vw;
}

/* --------------------------------------------------------------
   HEADER
   -------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(14px, 2vh, 20px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  transform: skewX(-10deg);
}

.brand-mark span {
  width: 6px;
  border-radius: 1px;
  background: var(--teal);
}

.brand-mark span:nth-child(1) { height: 12px; }
.brand-mark span:nth-child(2) { height: 19px; }
.brand-mark span:nth-child(3) { height: 26px; }

.brand-name {
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.header-back {
  color: var(--teal);
  font-family: var(--pmp-font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease;
}

.header-back:hover,
.header-back:focus-visible { color: var(--aqua); outline: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

@media (max-width: 600px) {
  .header-actions .header-back { display: none; }
}

/* --------------------------------------------------------------
   SHARED TYPE
   -------------------------------------------------------------- */
.eyebrow {
  margin: 0 0 16px;
  color: var(--aqua-deep);
  font-family: var(--pmp-font-label);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-lede {
  max-width: 700px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.66;
}

/* --------------------------------------------------------------
   HERO
   -------------------------------------------------------------- */
.grow-hero {
  padding: clamp(64px, 9vw, 116px) 0 clamp(56px, 7vw, 92px);
  background:
    radial-gradient(circle at 84% 12%, rgba(31, 163, 155, 0.11), transparent 46%),
    var(--card);
  border-bottom: 1px solid var(--line);
}

/* Matches the home page ".hero h1" rule exactly, which is what sets the
   size of "Cut Costs. Add Doors." — not the earlier base h1 rule it
   overrides. */
.grow-hero h1 {
  max-width: 22ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.grow-hero .hero-sub {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--slate);
  font-size: clamp(17.5px, 2.1vw, 20px);
  line-height: 1.62;
}

/* --------------------------------------------------------------
   CTA
   -------------------------------------------------------------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

/* Buttons come from assets/pmp-cta.css (the home page CTA system).
   Only the row layout and a quiet inline text action live here. */
.link-quiet {
  color: var(--teal);
  font-family: var(--pmp-font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 112, 126, 0.32);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.link-quiet:hover,
.link-quiet:focus-visible {
  color: var(--aqua-deep);
  border-color: var(--aqua);
  outline: none;
}

.section--deep .link-quiet,
.cta-band .link-quiet {
  color: var(--teal-light);
  border-color: rgba(127, 224, 214, 0.34);
}

/* --------------------------------------------------------------
   SECTIONS
   -------------------------------------------------------------- */
.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section + .section { border-top: 1px solid var(--mist); }

.section--tint {
  background: var(--card);
  border-top: 1px solid var(--mist);
}

.section--deep {
  background:
    radial-gradient(circle at 80% 8%, rgba(31, 163, 155, 0.14), transparent 38%),
    var(--ink-deep);
  border-top: none;
  color: #DCE9EA;
}

.section--deep .section-title { color: #F7FBFB; }
.section--deep .section-lede { color: #A9BCBF; }
.section--deep .eyebrow { color: var(--teal-light); }

/* Where PMP Grow fits — three pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: clamp(38px, 5vw, 54px);
}

.pillar {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.pillar--active {
  border-color: var(--aqua);
  background: linear-gradient(168deg, rgba(31, 163, 155, 0.07), rgba(31, 163, 155, 0));
  box-shadow: 0 18px 46px rgba(21, 112, 126, 0.1);
}

.pillar-tag {
  display: block;
  margin-bottom: 12px;
  color: var(--slate);
  font-family: var(--pmp-font-label);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pillar--active .pillar-tag { color: var(--aqua-deep); }

.pillar h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.pillar p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
}

/* Feature blocks */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: clamp(38px, 5vw, 54px);
}

.feature {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.section--tint .feature { background: var(--white); }

.feature-num {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--aqua);
  font-family: var(--pmp-font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.feature h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(20px, 2.3vw, 23px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.feature p {
  margin: 0 0 14px;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.66;
}

.feature p:last-child { margin-bottom: 0; }

/* Bulleted lists */
.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.62;
}

.tick-list li:last-child { margin-bottom: 0; }

.tick-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--aqua);
  transform: skewX(-10deg);
}

.section--deep .tick-list li { color: #BCCDD0; }
.section--deep .tick-list li::before { background: var(--teal-light); }

.tick-list strong { color: var(--ink); font-weight: 600; }
.section--deep .tick-list strong { color: #F7FBFB; }

/* Approval flow steps */
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: clamp(38px, 5vw, 52px);
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow li {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(207, 223, 225, 0.17);
  border-radius: var(--radius-md);
  background: rgba(247, 251, 251, 0.045);
  counter-increment: flow;
}

.flow li::before {
  content: counter(flow, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--teal-light);
  font-family: var(--pmp-font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.flow h3 {
  margin: 0 0 9px;
  color: #F7FBFB;
  font-family: var(--pmp-font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.flow p {
  margin: 0;
  color: #A9BCBF;
  font-size: 15.5px;
  line-height: 1.58;
}

/* The approval step is the one that matters most on this page, so it is
   picked out from the rest of the flow. */
/* A six-step flow lands 3 + 3 rather than leaving an orphan on row two. */
.flow--six { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }

.flow li.li--gate {
  border-color: rgba(127, 224, 214, 0.5);
  background: rgba(31, 163, 155, 0.14);
}

.flow li.li--gate::before { color: #A9F0E6; }

/* Emphasis callout */
.callout {
  margin-top: clamp(34px, 4.5vw, 46px);
  padding: 26px 30px;
  border: 1px solid var(--teal-tint);
  border-left: 3px solid var(--aqua);
  border-radius: var(--radius-sm);
  background: var(--card);
}

.callout p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.66;
}

.callout p + p { margin-top: 12px; }

.section--deep .callout {
  border-color: rgba(127, 224, 214, 0.4);
  border-left-color: var(--teal-light);
  background: rgba(31, 163, 155, 0.1);
}

.section--deep .callout p { color: #EAF4F5; }

.callout code {
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(31, 163, 155, 0.16);
  color: var(--teal-deep);
  font-family: var(--pmp-font-label);
  font-size: 0.86em;
  white-space: nowrap;
}

.section--deep .callout code {
  background: rgba(127, 224, 214, 0.16);
  color: var(--teal-light);
}

.callout a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callout a:hover,
.callout a:focus-visible { color: var(--aqua); outline: none; }

.section--deep .callout a { color: var(--teal-light); }
.section--deep .callout a:hover,
.section--deep .callout a:focus-visible { color: #FFFFFF; }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 50px);
}

.split-card {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(22px, 2.6vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.split-card .kicker {
  margin: 0 0 18px;
  color: var(--aqua-deep);
  font-family: var(--pmp-font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split-card p {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.66;
}

.note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--vapor);
  color: var(--teal-deep);
  font-size: 15px;
  line-height: 1.55;
}

.note strong { color: var(--ink); }

/* Closing CTA band */
.cta-band {
  padding: clamp(60px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 22% 14%, rgba(31, 163, 155, 0.16), transparent 40%),
    var(--deepest);
  text-align: center;
}

.cta-band h2 {
  max-width: 18ch;
  margin: 0 auto 16px;
  color: #F7FBFB;
  font-family: var(--pmp-font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto;
  color: #A9BCBF;
  font-size: 17px;
  line-height: 1.62;
}

.cta-band .cta-row { justify-content: center; }

/* --------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------- */
.pmp-footer {
  color: #DCE9EA;
  background:
    radial-gradient(circle at 78% 5%, rgba(31, 163, 155, 0.12), transparent 30%),
    var(--deepest);
}

.pmp-footer-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(68px, 7vw, 96px) 5vw clamp(54px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(180px, 0.55fr) minmax(210px, 0.6fr);
  gap: clamp(44px, 7vw, 96px);
}

.pmp-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #F7FBFB;
  text-decoration: none;
}

.pmp-footer-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  transform: skewX(-10deg);
}

.pmp-footer-mark span {
  width: 7px;
  border-radius: 1px;
  background: var(--aqua);
}

.pmp-footer-mark span:nth-child(1) { height: 15px; }
.pmp-footer-mark span:nth-child(2) { height: 23px; }
.pmp-footer-mark span:nth-child(3) { height: 31px; }

.pmp-footer-name {
  font-family: var(--pmp-font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.pmp-footer-brand p {
  max-width: 510px;
  margin: 22px 0 0;
  color: #A9BCBF;
  font-size: 16px;
  line-height: 1.62;
}

.pmp-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pmp-footer-column h2 {
  margin: 0 0 8px;
  color: var(--aqua-soft);
  font-family: var(--pmp-font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pmp-footer-column a,
.pmp-footer-column span {
  color: #DCE9EA;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

.pmp-footer-column a { transition: color 180ms ease, transform 180ms ease; }

.pmp-footer-column a:hover,
.pmp-footer-column a:focus-visible {
  color: var(--aqua-soft);
  transform: translateX(3px);
  outline: none;
}

.pmp-footer-bottom {
  width: min(90%, 1320px);
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(207, 223, 225, 0.12);
  color: #7F9599;
  font-family: var(--pmp-font-label);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pmp-footer-bottom a {
  color: #A9BCBF;
  text-decoration: none;
  transition: color 180ms ease;
}

.pmp-footer-bottom a:hover,
.pmp-footer-bottom a:focus-visible { color: var(--aqua-soft); outline: none; }

/* --------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .pmp-footer-shell { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .split-card { padding: 28px 24px; }
  .feature { padding: 28px 24px; }
  .pillar { padding: 26px 24px; }
  .pmp-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .link-quiet,
  .pmp-footer-column a { transition: none; }
}

/* =============================================================
   MEDIA PLACEHOLDERS

   Marked slots for art that does not exist yet. Deliberately styled to
   read as "reserved", never as broken layout — each carries the kind of
   asset and a note on what belongs there.
   ============================================================= */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(31,163,155,.028) 10px 20px),
    var(--card);
  text-align: center;
}
.ph--wide   { aspect-ratio: 16 / 7; }
.ph--shot   { aspect-ratio: 16 / 10; }
.ph--video  { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1; }
.ph--chart  { aspect-ratio: 21 / 9; }
.ph--tall   { aspect-ratio: 3 / 4; }

.ph-kind {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--pmp-font-label);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  border: 1px solid var(--teal-tint);
  border-radius: 999px;
  padding: 4px 11px;
  background: var(--white);
}
.ph-t {
  max-width: 44ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.3;
  text-wrap: balance;
}
.ph-d {
  max-width: 52ch;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
}

/* on dark sections */
.section--deep .ph,
.cta-band .ph {
  border-color: rgba(207, 223, 225, .26);
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(127,224,214,.045) 10px 20px),
    rgba(247, 251, 251, .035);
}
.section--deep .ph-kind {
  color: var(--teal-light);
  border-color: rgba(127, 224, 214, .34);
  background: rgba(12, 27, 32, .5);
}
.section--deep .ph-t { color: #F2F9F9; }
.section--deep .ph-d { color: #A9BCBF; }

/* figure caption under any media */
.figcap {
  margin: 12px 0 0;
  font-family: var(--pmp-font-label);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--slate);
  text-align: center;
}
.section--deep .figcap { color: #8FA3A7; }

/* =============================================================
   STAT BAND
   ============================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
  margin-top: clamp(30px, 4vw, 44px);
}
.stat { text-align: left; }
.stat .n {
  display: block;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .l {
  display: block;
  margin-top: 10px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.45;
}
.section--deep .stat .n, .cta-band .stat .n { color: #F7FBFB; }
.section--deep .stat .n em, .cta-band .stat .n em { font-style: normal; color: var(--teal-light); }
.stat .n em { font-style: normal; color: var(--aqua); }
.section--deep .stat .l, .cta-band .stat .l { color: #A9BCBF; }

/* =============================================================
   PULL QUOTE
   ============================================================= */
.quote {
  max-width: 52ch;
  margin: clamp(34px, 4.4vw, 56px) auto 0;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(21px, 2.9vw, 32px);
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.28;
  text-wrap: balance;
}
.quote blockquote::before { content: "\201C"; color: var(--aqua); }
.quote blockquote::after  { content: "\201D"; color: var(--aqua); }
.quote figcaption {
  margin-top: 20px;
  font-family: var(--pmp-font-label);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
}
.section--deep .quote blockquote { color: #F7FBFB; }
.section--deep .quote blockquote::before,
.section--deep .quote blockquote::after { color: var(--teal-light); }
.section--deep .quote figcaption { color: var(--aqua-soft); }

/* =============================================================
   DATA TABLE
   ============================================================= */
.dtable-wrap {
  margin-top: clamp(30px, 4vw, 44px);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.dtable { width: 100%; min-width: 460px; border-collapse: collapse; }
.dtable th, .dtable td {
  padding: 16px clamp(14px, 1.8vw, 24px);
  text-align: left;
  border-bottom: 1px solid var(--mist);
  font-size: 15.5px;
}
.dtable thead th {
  font-family: var(--pmp-font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--card);
}
.dtable tbody tr:last-child td { border-bottom: 0; }
.dtable td:first-child { color: var(--slate); }
.dtable td.v {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--pmp-font-display);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.dtable td.v small {
  display: block;
  margin-top: 2px;
  font-family: var(--pmp-font-label);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--aqua-deep);
}

/* =============================================================
   SPLIT: copy beside media
   ============================================================= */
.duo {
  display: grid;
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  margin-top: clamp(30px, 4vw, 46px);
}
@media (min-width: 900px) {
  .duo { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
  .duo--flip > *:first-child { order: 2; }
}
.duo h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--pmp-font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.18;
  text-wrap: balance;
}
.duo p { margin: 0 0 14px; color: var(--slate); font-size: 16.5px; line-height: 1.62; }
.section--deep .duo h3 { color: #F7FBFB; }
.section--deep .duo p { color: #BCCDD0; }
