/* ---------------------------------------------------------------- Tokens -- */
/* One palette. These used to be split in two: a `:root` set from the original
   Webflow rebuild and a `--promo-*` set scoped to `.promo-site`, so that the
   long-form legal pages could keep the older look. Every page is on the promo
   design now, so the scoping had nothing left to protect and the older set —
   --coral, --navy, --bg, --text, --tint-blue* — is gone. */
:root {
  --promo-ink: #17242d;
  --promo-muted: #52636b;
  --promo-green: #2f7568;
  --promo-green-dark: #245d53;
  --promo-green-pale: #e9f2ed;
  --promo-sand: #f2ece1;
  --promo-warm: #fbfaf6;
  --promo-amber: #b86d24;
  --promo-line: #d8e0dc;
  --promo-paper: #fcfbf7;
  --promo-mint-wash: #eef5f0;
  --promo-rule: rgba(23, 36, 45, 0.16);

  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 80rem;
  --gutter: 1.25rem;
  --radius: 1.25rem;
  --radius-sm: 0.9rem;
}

.promo-site {
  color: var(--promo-muted);
  background: var(--promo-warm);
}

/* The symbol sits inside <strong>, next to the figure, so it must not pick up the
   caption styling those blocks apply to their label span — those rules now use `>`
   so they only reach the direct child they were always meant for. */
.cur::before { content: "€"; }
[data-currency="dollar"] .cur::before { content: "$"; }
.promo-site .container { max-width: 77.5rem; }

.promo-site h1,
.promo-site h2,
.promo-site h3,
.promo-site h4 { color: var(--promo-ink); }

.promo-site h1 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 5.2vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.promo-site h2 {
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.promo-site h3 { font-size: 1.22rem; line-height: 1.3; }
.promo-site p { max-width: 66ch; }

.promo-site :focus-visible {
  outline: 3px solid #ef9a66;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--promo-ink);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.promo-header {
  background: rgba(251, 250, 246, 0.94);
  border-bottom-color: rgba(23, 36, 45, 0.08);
  backdrop-filter: blur(16px);
}
.promo-header .nav { min-height: 4.75rem; }
.promo-header .nav__logo img { height: 2.35rem; }
.promo-nav { gap: clamp(1rem, 2.2vw, 2rem); }
.promo-nav a { color: var(--promo-muted); font-size: 0.92rem; }
.promo-nav a:hover { color: var(--promo-green); }
.promo-nav .nav__signin { color: var(--promo-ink); }
.promo-nav .btn--nav {
  padding: 0.68rem 1.25rem;
  color: #fff;
  background: var(--promo-green);
  border-radius: 999px;
}
.promo-nav .btn--nav:hover { color: #fff; background: var(--promo-green-dark); }

.promo-site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--promo-green);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(47, 117, 104, 0.16);
}
.promo-site .btn:hover { background: var(--promo-green-dark); }
.promo-site .btn--large { min-height: 3.25rem; padding-inline: 1.65rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--promo-green-dark);
  font-weight: 600;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(0.25rem); }

.eyebrow {
  margin-bottom: 1rem;
  color: var(--promo-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.25rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  background: linear-gradient(180deg, #fbfaf6 0%, #f5f1e8 100%);
}
.promo-hero::after {
  content: none;
  position: absolute;
  inset: auto -10vw -20rem 46%;
  height: 32rem;
  border: 1px solid rgba(47, 117, 104, 0.12);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.promo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(30rem, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.promo-hero__copy { position: relative; z-index: 1; }
.promo-hero__lead { margin-top: 1.5rem; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.promo-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.76rem;
}
.trust-strip li::before { content: ""; }
.trust-strip li + li::before { content: "·"; margin-right: 0.6rem; color: var(--promo-green); font-weight: 700; }

.planning-visual {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--promo-ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 117, 104, 0.18);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 4rem rgba(23, 36, 45, 0.12);
}
.planning-equation,
.allocation-list > div,
.planning-visual__note { transform: none; }

.planning-equation { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 0.6rem; margin: 1.25rem 0; }
.money-block { padding: 1rem; background: #f7f8f5; border-radius: 0.8rem; }
.money-block > span { display: block; margin-bottom: 0.4rem; font-size: 0.7rem; }
.money-block strong { font-size: clamp(1.05rem, 2vw, 1.4rem); }
.money-block--cost { background: #f6eee7; }
.money-block--margin { color: #fff; background: var(--promo-green); }
.equation-mark { color: #75838a; font-weight: 700; }
.allocation-list { display: grid; gap: 0.45rem; }
.allocation-list > div { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; padding: 0.65rem 0.8rem 0.75rem; overflow: hidden; background: #fff; border: 1px solid #e8ece9; border-radius: 0.7rem; font-size: 0.83rem; }
.allocation-list i { position: relative; grid-column: 1 / -1; display: block; height: 0.2rem; overflow: hidden; background: #e4e9e6; border-radius: 999px; }
.allocation-list i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--allocation); background: var(--promo-green); border-radius: inherit; }
.allocation-list__open strong { color: var(--promo-amber); }
.allocation-list__open i { background: #eee5db; }
.allocation-list__open i::after { background: #d68b46; }
.planning-visual__note { margin-top: 1rem; color: var(--promo-green-dark); font-size: 0.76rem; }

.promo-section { padding: clamp(4rem, 8.8vw, 9rem) 0; }
.beta-preview-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 6.75rem);
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 117, 104, 0.12), transparent 30rem),
    linear-gradient(120deg, #f8faf7 0%, #ffffff 48%, #f2f6f3 100%);
  border-block: 1px solid rgba(47, 117, 104, 0.1);
}
.beta-preview__path {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.beta-preview__path path {
  fill: none;
  stroke: var(--promo-green-dark);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  opacity: 0.09;
}
.beta-preview__path circle { fill: var(--promo-green-dark); opacity: 0.18; }
.beta-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.beta-preview__intro h2 { max-width: 12ch; }
.beta-preview__badge {
  display: inline-flex;
  margin-bottom: 1.35rem;
  padding: 0.42rem 0.78rem;
  color: var(--promo-green-dark);
  background: rgba(47, 117, 104, 0.09);
  border: 1px solid rgba(47, 117, 104, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.beta-preview__lead { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.45vw, 1.2rem); }
.beta-preview__intro .btn { margin-top: 2rem; }
.beta-preview__microcopy { margin-top: 0.7rem; color: var(--promo-muted); font-size: 0.78rem; }
.beta-preview__details {
  padding-left: clamp(0rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(47, 117, 104, 0.18);
}
.beta-preview__details > .eyebrow { margin-bottom: 1.25rem; }
.beta-preview__list { margin: 0; padding: 0; list-style: none; }
.beta-preview__list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.85rem 0;
  color: var(--promo-ink);
  border-bottom: 1px solid rgba(47, 117, 104, 0.12);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}
.beta-preview__list li:first-child { border-top: 1px solid rgba(47, 117, 104, 0.12); }
.beta-preview__list span { color: var(--promo-green); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; }
.beta-preview__callout {
  margin-top: 1.6rem;
  padding: 1.2rem 1.35rem;
  color: var(--promo-ink);
  background: rgba(47, 117, 104, 0.09);
  border-left: 3px solid var(--promo-green);
}
.beta-preview__callout strong { display: block; margin-bottom: 0.25rem; }
.beta-preview__callout p { color: var(--promo-muted); }
.beta-preview__note { margin-top: 0.75rem; color: #6b797f; font-size: 0.76rem; }
.section-copy > * + * { margin-top: 1.25rem; }
.section-heading { max-width: 52rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-heading h2 { margin-top: 0; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr); align-items: end; gap: 4rem; max-width: none; }
.section-heading--split > p { padding-bottom: 0.35rem; }

.problem-section { background: #fff; }
.problem-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.85fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.question-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.question-pills span { padding: 0.55rem 0.75rem; color: var(--promo-ink); background: var(--promo-green-pale); border-radius: 999px; font-size: 0.85rem; }
.problem-highlight { color: var(--promo-green-dark); font-size: 1.08rem; font-weight: 700; }
.commitment-map { margin: 0; padding: 2rem; color: var(--promo-ink); background: var(--promo-warm); border: 1px solid var(--promo-line); border-radius: 1.25rem; }
.commitment-map figcaption { margin-bottom: 1.5rem; font-weight: 600; }
.commitment-map__balance { padding: 1.25rem; color: #fff; background: var(--promo-ink); border-radius: 0.8rem; }
.commitment-map__balance > span { display: block; font-size: 0.75rem; opacity: 0.72; }
.commitment-map__balance strong { font-size: 2rem; }
.commitment-map__branches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.45rem; margin-top: 1.5rem; }
.commitment-map__branches span { display: flex; min-height: 7.5rem; align-items: end; justify-content: center; padding: 0.7rem 0.3rem; color: #fff; background: linear-gradient(180deg, rgba(47,117,104,0.46), var(--promo-green)); border-radius: 0.5rem; font-size: 0.68rem; writing-mode: vertical-rl; transform: scaleY(var(--branch-scale)); transform-origin: bottom; }

.principle-section { color: #dfe8e4; background: var(--promo-ink); }
.principle-section h2,
.principle-section h3 { color: #fff; }
.principle-section .eyebrow { color: #8dc0ad; }
.narrow-center { max-width: 64rem; text-align: center; }
.narrow-center > p { margin-inline: auto; }
.principle-steps { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 1.5rem; margin: 3rem 0 2rem; text-align: left; }
.principle-steps article { padding: 2rem; border-top: 1px solid rgba(141, 192, 173, 0.7); background: rgba(255,255,255,0.045); }
.principle-steps article > span { display: block; margin-bottom: 2rem; color: #8dc0ad; font-size: 0.78rem; font-weight: 700; }
.principle-steps article p { margin-top: 0.75rem; }
.principle-connector { align-self: center; color: #8dc0ad; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; }
.principle-callout { margin-bottom: 1.25rem; padding: 1.1rem; color: #fff; border: 1px solid rgba(141, 192, 173, 0.35); border-radius: 999px; font-size: clamp(1rem, 2vw, 1.25rem); }
.principle-callout b { color: #8dc0ad; margin-inline: 0.55rem; }

.workflow-section { background: #fff; }
.workflow-list { margin: 0; padding: 0; list-style: none; }
.workflow-list > li { display: grid; grid-template-columns: 3.25rem minmax(16rem, 0.55fr) minmax(26rem, 1.25fr); align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); padding: 2.5rem 0; border-top: 1px solid var(--promo-line); }
.workflow-list > li:last-child { border-bottom: 1px solid var(--promo-line); }
.workflow-list__number { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; color: #fff; background: var(--promo-green); border-radius: 50%; font-weight: 700; }
.workflow-list h3 { margin-bottom: 0.7rem; }
.workflow-list img { justify-self: end; width: 100%; max-height: 20rem; object-fit: contain; object-position: center; }
.workflow-mini { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem; min-height: 10rem; padding: 1.5rem; background: var(--promo-sand); border-radius: 1rem; }
.workflow-mini span,
.workflow-mini strong { padding: 0.65rem 0.8rem; background: #fff; border-radius: 0.55rem; font-size: 0.78rem; }
.workflow-mini strong { color: #fff; background: var(--promo-green); }

.features-section { background: #f3f7f3; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--promo-line); border-left: 1px solid var(--promo-line); }
.feature-list article { display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem; min-height: 13rem; padding: 2rem; border-right: 1px solid var(--promo-line); border-bottom: 1px solid var(--promo-line); }
.feature-list article h3 { font-size: 1.3rem; }
.feature-list article p { margin-top: 0.75rem; font-size: 1.02rem; line-height: 1.65; }
.line-icon { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; color: var(--promo-green-dark); border: 1px solid #b6ccc1; border-radius: 50%; font-size: 1.15rem; }
.boundary-note { margin: 2rem auto 0; padding-left: 1rem; border-left: 3px solid var(--promo-green); }

.privacy-section { color: var(--promo-muted); background: var(--promo-green-pale); }
.privacy-section h2 { color: var(--promo-ink); }
.privacy-section .eyebrow { color: var(--promo-green-dark); }
.privacy-layout { display: grid; grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.privacy-emblem { display: grid; place-items: center; min-height: 28rem; border: 1px solid rgba(47,117,104,0.2); border-radius: 50%; }
.privacy-emblem > span { position: absolute; color: var(--promo-green-dark); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.privacy-emblem svg { width: 11rem; fill: none; stroke: rgba(47,117,104,0.3); stroke-width: 3; }
.privacy-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 1.25rem; margin: 2rem 0; padding: 0; list-style: none; }
.privacy-checks li { padding: 0.8rem 0; border-bottom: 1px solid rgba(47,117,104,0.18); }
.privacy-checks li::before { content: "✓"; margin-right: 0.6rem; color: var(--promo-green); }
.text-link--light { color: #fff; }
.privacy-section .text-link--light { color: var(--promo-green-dark); }

.audience-section { background: var(--promo-sand); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(23,36,45,0.14); border: 1px solid rgba(23,36,45,0.14); }
.audience-grid article { min-height: 15rem; padding: 1.75rem; background: var(--promo-sand); }
.audience-grid strong { display: block; margin-bottom: 4rem; color: var(--promo-green); font-size: 0.78rem; }
.audience-grid p { margin-top: 0.75rem; }

.brand-horizon-section {
  position: relative;
  display: flex;
  scroll-margin-top: 4.75rem;
  min-height: clamp(37.5rem, 48vw, 45rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 77% 36%, rgba(255, 218, 177, 0.88) 0, rgba(255, 218, 177, 0.32) 10%, transparent 29%),
    radial-gradient(ellipse at 96% 78%, rgba(37, 105, 95, 0.2), transparent 43%),
    linear-gradient(126deg, #fbf6ec 0%, #eaf2eb 48%, #cfe3e3 100%);
}
.brand-horizon-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 27%;
  left: 68%;
  width: 25rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(241, 181, 132, 0.06), rgba(255, 224, 185, 0.68), rgba(239, 157, 112, 0.08));
  filter: blur(2.3rem);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.brand-horizon-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(23, 36, 45, 0.22) 0.45px, transparent 0.55px),
    radial-gradient(rgba(255, 255, 255, 0.72) 0.5px, transparent 0.6px);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  pointer-events: none;
}
.brand-horizon__scene { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.brand-horizon__glow {
  position: absolute;
  top: 25%;
  left: 68%;
  width: 17rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(255, 207, 158, 0.84);
  filter: blur(3rem);
  opacity: 0.78;
}
.brand-horizon__layer {
  position: absolute;
  border-radius: 57% 43% 0 0 / 82% 72% 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
  transform: rotate(-1.5deg);
}
.brand-horizon__layer--back {
  right: -18%;
  bottom: -46%;
  width: 97%;
  height: 88%;
  background: linear-gradient(140deg, rgba(117, 171, 151, 0.23), rgba(39, 112, 100, 0.42));
}
.brand-horizon__layer--middle {
  right: 7%;
  bottom: -53%;
  width: 76%;
  height: 88%;
  border-radius: 46% 54% 0 0 / 91% 66% 0 0;
  background: linear-gradient(145deg, rgba(235, 207, 166, 0.86), rgba(175, 210, 190, 0.76));
  transform: rotate(1deg);
}
.brand-horizon__layer--front {
  right: -10%;
  bottom: -65%;
  width: 70%;
  height: 95%;
  border-radius: 63% 37% 0 0 / 76% 92% 0 0;
  background: linear-gradient(135deg, rgba(95, 158, 137, 0.42), rgba(32, 103, 92, 0.3));
  transform: rotate(-2.5deg);
}
.brand-horizon__route { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; overflow: visible; }
.brand-horizon__path {
  fill: none;
  stroke: url(#brand-route-gradient);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}
.brand-horizon__destination { fill: #f39b69; opacity: 0; filter: drop-shadow(0 0 9px rgba(255, 211, 165, 0.95)); }
.brand-horizon__destination-ring { fill: rgba(255, 229, 197, 0.15); stroke: rgba(35, 105, 95, 0.58); stroke-width: 1.5; opacity: 0; filter: drop-shadow(0 0 13px rgba(246, 180, 129, 0.78)); }
.brand-horizon__content { position: relative; z-index: 3; width: 100%; }
.brand-horizon__content > * { max-width: 35rem; }
.brand-horizon__content h2 { margin-bottom: 1.35rem; }
.brand-horizon__content > p:not(.eyebrow) { font-size: clamp(1.0625rem, 1.25vw, 1.18rem); line-height: 1.6; }
.brand-horizon__statement { margin-top: 1.25rem; color: var(--promo-green-dark); font-weight: 600; }
.brand-horizon__content .btn { margin-top: 1.75rem; }
.brand-horizon-section.is-visible .brand-horizon__path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(.22, .61, .36, 1);
}
.brand-horizon-section.is-visible .brand-horizon__destination,
.brand-horizon-section.is-visible .brand-horizon__destination-ring {
  opacity: 1;
  transition: opacity 500ms ease 1.05s;
}
.brand-horizon-section.is-visible .brand-horizon__glow { animation: brand-horizon-light 2.4s ease-out both; }
@keyframes brand-horizon-light {
  from { opacity: 0.28; transform: translateX(-1.25rem); }
  to { opacity: 0.65; transform: translateX(0); }
}

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); }
.faq-layout > div:first-child { position: sticky; top: 7rem; align-self: start; }
.faq-layout > div:first-child p:last-child { margin-top: 1.25rem; }
.faq-list { border-top: 1px solid var(--promo-line); }
.faq-list details { border-bottom: 1px solid var(--promo-line); }
.faq-list summary { position: relative; padding: 1.4rem 3rem 1.4rem 0; color: var(--promo-ink); font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0.25rem; top: 1.1rem; color: var(--promo-green); font-size: 1.6rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 3rem 1.5rem 0; }

.promo-cta { padding: clamp(4.5rem, 8vw, 7rem) 0; color: #d8e6e1; background: var(--promo-ink); }
.promo-cta h2 { color: #fff; }
.promo-cta .eyebrow { color: #8dc0ad; }
.promo-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; }
.promo-cta__inner p:last-child { margin-top: 1rem; }
.promo-cta__action { min-width: 13rem; text-align: center; }
.promo-cta__action p { margin-top: 0.8rem; font-size: 0.76rem; }

.promo-footer { padding: 4rem 0 1.5rem; color: #b9c9cf; background: #10202a; }
.promo-footer__grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; }
.promo-footer__brand img { height: 2.5rem; filter: brightness(0) invert(1); }
.promo-footer__brand p { margin-top: 1rem; }
.promo-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.promo-footer nav h2 { margin-bottom: 0.35rem; color: #fff; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.promo-footer nav a:hover { color: #fff; }
.promo-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; }

@media (max-width: 960px) {
  .promo-hero__grid,
.beta-preview,
.problem-layout,
.privacy-layout,
.faq-layout { grid-template-columns: 1fr; }
  .promo-hero__grid { gap: 3.5rem; }
  .beta-preview { grid-template-columns: 1fr; gap: 3rem; }
  .beta-preview__intro { max-width: 42rem; }
  .beta-preview__details { padding-left: 0; border-left: 0; }
  .planning-visual { max-width: 42rem; }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.25rem; }
  .workflow-list > li { grid-template-columns: 3.25rem 1fr; }
  .workflow-list > li > :last-child { grid-column: 2; justify-self: stretch; }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout > div:first-child { position: static; }
  .promo-footer__grid { grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; }

}

@media (max-width: 760px) {
  .promo-header .nav__toggle { display: block; }
  .promo-header .nav__links {
    position: absolute;
    top: 4.75rem;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
    background: #fbfaf6;
    border-bottom: 1px solid var(--promo-line);
    box-shadow: 0 1rem 1.5rem rgba(23,36,45,0.08);
  }
  .promo-header .nav__links.is-open { display: flex; }
  .promo-header .nav__links a { padding: 0.75rem 0; }
  .promo-header .nav__links .btn--nav { margin-top: 0.5rem; padding: 0.7rem 1rem; }
  .promo-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .beta-preview-section { padding-block: 4rem; }
  .planning-equation { grid-template-columns: 1fr; }
  .equation-mark { text-align: center; }
  .principle-steps { grid-template-columns: 1fr; }
  .principle-connector { justify-self: center; }
  .workflow-list > li { grid-template-columns: 2.75rem 1fr; gap: 1rem; }
  .workflow-list > li > :last-child { grid-column: 1 / -1; }
  .feature-list { grid-template-columns: 1fr; }
  .privacy-emblem { min-height: 20rem; }
  .privacy-checks { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 0; }
  .audience-grid strong { margin-bottom: 2rem; }
  .brand-horizon-section { min-height: clamp(30rem, 142vw, 37.5rem); align-items: flex-start; }
  .brand-horizon__content { padding-top: 3.75rem; padding-bottom: 10rem; }
  .brand-horizon__content h2 { max-width: 12ch; }
  .brand-horizon__content > p:not(.eyebrow) { max-width: 30rem; line-height: 1.6; }
  .brand-horizon__statement { display: none; }
  .brand-horizon__layer--back { right: -48%; bottom: -50%; width: 145%; height: 68%; }
  .brand-horizon__layer--middle { right: -14%; bottom: -58%; width: 122%; height: 70%; }
  .brand-horizon__layer--front { right: -45%; bottom: -65%; width: 125%; height: 73%; }
  .brand-horizon__glow { top: auto; bottom: 23%; left: 62%; width: 9rem; height: 6rem; }
  .brand-horizon__route { top: 12rem; bottom: auto; width: 175%; max-width: none; height: calc(100% - 12rem); transform: translateX(-35%); }
  .promo-cta__inner { grid-template-columns: 1fr; }
  .promo-cta__action { min-width: 0; text-align: left; }
  .promo-footer__grid { grid-template-columns: 1fr 1fr; }
  .promo-footer__brand { grid-column: 1 / -1; }
  .promo-footer__bottom { flex-direction: column; }

}

@media (max-width: 420px) {
  .promo-site h1 { font-size: 2.4rem; }
  .promo-site h2 { font-size: 2rem; }
  .commitment-map { padding: 1.25rem; }
  .commitment-map__branches { grid-template-columns: 1fr; }
  .commitment-map__branches span { min-height: 0; writing-mode: initial; transform: none; justify-content: flex-start; }
  .promo-footer__grid { grid-template-columns: 1fr; }
  .promo-footer__brand { grid-column: auto; }

}

@media (prefers-reduced-motion: reduce) {
  .promo-site *,
.promo-site *::before,
.promo-site *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation: none !important; }
  .brand-horizon__path { stroke-dashoffset: 0; }
  .brand-horizon__destination,
.brand-horizon__destination-ring { opacity: 1; }

}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--promo-muted);
  background: var(--promo-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--promo-ink);
}
/* Original weights: large titles (h1/h2) are 600, sub-headings (h3/h4) 500. */
h1,
h2 { font-weight: 600; }
h3,
h4 { font-weight: 500; }
h1 { font-size: 4rem;    line-height: 1.4; }
h2 { font-size: 3rem;    line-height: 1.4; }
h3 { font-size: 1.5rem;  line-height: 1.4; }
h4 { font-size: 1.5rem;  line-height: 1.4; }

/* Secondary section titles sit a step down from the 3rem default (36px / 1.2). */

p { margin: 0; }
small,
figcaption { line-height: 1.6; }

/* Bold text renders in Poppins 700 everywhere (not just rich-text bodies). */
strong,
b { font-weight: 700; }

      /* --------------------------------------------------------------- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--promo-green);
  color: var(--promo-warm);
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--promo-green-dark); }

/* ---------------------------------------------------------------- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eef1f3;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}
.nav__logo img { height: 3rem; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--promo-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--promo-green); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}
.nav__toggle img { width: 1.75rem; height: 1.75rem; }

/* --------------------------------------------------------- Split section -- */
/* Generic two-column text + image block (services / how-it-works steps). */

.faq-list h3 + p { margin-top: 0.35rem; }
.faq-list p + h3 { margin-top: 1.5rem; }
/* ---------------------------------------------------------- Legal pages -- */

.legal-hero { padding-bottom: 4rem; }
.legal-hero h1 { max-width: 48rem; }

.legal-summary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  margin-top: 3rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
  border-block: 1px solid rgba(47, 117, 104, 0.12);
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 117, 104, 0.12), transparent 30rem),
    linear-gradient(120deg, #f8faf7 0%, #ffffff 48%, #f2f6f3 100%);
}
.legal-summary__path {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.legal-summary__path path {
  fill: none;
  stroke: var(--promo-green-dark);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  opacity: 0.09;
}
.legal-summary__path circle { fill: var(--promo-green-dark); opacity: 0.18; }
.legal-summary__intro,
.legal-summary__details { position: relative; z-index: 1; }
.legal-summary__eyebrow {
  margin-bottom: 1.25rem;
  color: var(--promo-green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legal-summary h2 { max-width: 12ch; font-size: clamp(2.75rem, 4.4vw, 4.4rem); line-height: 1.18; }
.legal-summary__lead { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.45vw, 1.2rem); }
.legal-summary__details {
  padding-left: clamp(0rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(47, 117, 104, 0.18);
}
.legal-summary__list { margin: 0; padding: 0; list-style: none; }
.legal-summary__list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.85rem 0;
  color: var(--promo-ink);
  border-bottom: 1px solid rgba(47, 117, 104, 0.12);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}
.legal-summary__list li:first-child { border-top: 1px solid rgba(47, 117, 104, 0.12); }
.legal-summary__list span { color: var(--promo-green); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; }
.legal-summary__callout {
  margin-top: 1.6rem;
  padding: 1.2rem 1.35rem;
  color: var(--promo-ink);
  background: rgba(47, 117, 104, 0.09);
  border-left: 3px solid var(--promo-green);
}
.legal-summary__callout strong { display: block; margin-bottom: 0.25rem; }
.legal-summary__callout p { color: var(--promo-muted); }
.legal-summary__note {
  margin-top: 0.75rem;
  color: #6b797f;
  font-size: 0.76rem;
}

.legal-document {
  max-width: 52rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1.5rem 3.5rem rgba(15, 23, 42, 0.07);
  color: #334653;
}
.legal-document section {
  scroll-margin-top: var(--legal-scroll-offset);
}
.legal-document section + section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.legal-document h2 {
  margin-bottom: 1rem;
  color: var(--promo-ink);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.35;
}
.legal-document h3 {
  margin: 1.5rem 0 0.75rem;
  color: var(--promo-ink);
  font-size: 1.15rem;
  font-weight: 600;
}
.legal-document p + p { margin-top: 0.85rem; }
.legal-document ul { margin: 0.85rem 0 1rem; padding-left: 1.35rem; }
.legal-document li + li { margin-top: 0.4rem; }
/* Inline links in legal body copy. The `:not()` keeps the sticky contents list out:
   it sits inside .legal-document but is navigation, not prose, and has its own
   muted-to-green treatment below. */
.legal-document a:not(.legal-document__toc a) { color: var(--promo-green-dark); text-decoration: underline; }
.legal-document address { font-style: normal; line-height: 1.8; }
/* ------------------------------------------------------------- 404 page --- */
.not-found { text-align: center; padding-block: 3rem; }
.not-found__code { font-size: 6rem; font-weight: 800; line-height: 1; color: var(--promo-green); }
.not-found h1 { max-width: none; margin: 0.5rem 0 1rem; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.not-found__lead { color: var(--promo-muted); max-width: 34rem; margin: 0 auto 2rem; }
.not-found__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }

/* ---------------------------------------------------------------- Footer -- */
.site-footer {
  background: #10202a;
  color: #fff;
  padding-block: 4rem;
}

/* ----------------------------------------------------------- Responsive --- */
@media (max-width: 991px) {
  .legal-summary { grid-template-columns: 1fr; }
  
  
  
  
  
  
  .legal-summary {
    gap: 3rem;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
  }
  .legal-summary__intro { max-width: 42rem; }
  .legal-summary__details {
    padding-left: 0;
    border-left: 0;
  }
  
  
  
  
  

}

@media (max-width: 767px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .legal-summary {
    margin-top: 2rem;
    padding-block: 3rem;
  }
  .legal-summary h2 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  .legal-summary__list li {
    grid-template-columns: 1.8rem 1fr;
    gap: 0.65rem;
  }
  

  .nav__links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
    background: #fff;
    border-bottom: 1px solid #eef1f3;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.75rem 0; width: 100%; }
  .nav__toggle { display: block; }

  

  
  
  
  

}

@media (max-width: 479px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  
  

}

/* These shared-shell overrides intentionally sit after the legacy rules. */
.promo-site .promo-header {
  background: rgba(251, 250, 246, 0.94);
  border-bottom-color: rgba(23, 36, 45, 0.08);
}
.promo-site .promo-footer {
  padding: 4rem 0 1.5rem;
  color: #b9c9cf;
  background: #10202a;
}

/* Privacy policy. */
.promo-site .legal-hero {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: var(--promo-green-pale);
}
.promo-site .legal-hero--privacy { background: linear-gradient(135deg, #e9f2ed, #f8f5ed); }
.legal-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.legal-hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.legal-date { margin-top: 1.25rem; font-size: 0.78rem; }
.promo-site .legal-document {
  max-width: none;
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: inherit;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.legal-document__grid { display: grid; grid-template-columns: 15rem minmax(0, 1fr); gap: clamp(3rem, 7vw, 7rem); }
.legal-document__toc { position: sticky; top: 7rem; display: flex; align-self: start; flex-direction: column; gap: 0.8rem; padding-left: 1rem; border-left: 1px solid var(--promo-line); font-size: 0.82rem; }
.legal-document__toc strong { margin-bottom: 0.45rem; color: var(--promo-ink); }
.legal-document__toc a:hover { color: var(--promo-green); }
.legal-copy { max-width: 48rem; }
.legal-copy section { scroll-margin-top: 7rem; padding: 0 0 3rem; }
.legal-copy section + section { padding-top: 3rem; border-top: 1px solid var(--promo-line); }
.promo-site .legal-document .legal-copy section + section { margin-top: 0; }
.legal-copy h2 { margin-bottom: 1.25rem; font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
.legal-copy p + p,
.legal-copy p + ul,
.legal-copy ul + p { margin-top: 1rem; }
.legal-copy ul { padding-left: 1.3rem; }
.legal-copy li + li { margin-top: 0.55rem; }
.legal-copy a { color: var(--promo-green-dark); text-decoration: underline; text-underline-offset: 0.2em; }

@media (max-width: 800px) {
  .legal-hero__grid,
.legal-document__grid { grid-template-columns: 1fr; }
  .legal-document__toc { position: static; }

}

/* ========================================================================
   Approved design polish — allocation paths, restrained depth and motion.
   Structure, content and core palette remain unchanged.
   ======================================================================== */
.promo-site .promo-nav {
  padding: 0.32rem 0.4rem 0.32rem 1.05rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(47, 117, 104, 0.09);
  border-radius: 999px;
  box-shadow: 0 0.35rem 1rem rgba(23, 36, 45, 0.045);
  backdrop-filter: blur(12px);
}
.promo-site .promo-header {
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.promo-site .promo-header.is-scrolled {
  background: rgba(251, 250, 246, 0.97);
  border-bottom-color: rgba(47, 117, 104, 0.12);
  box-shadow: 0 0.55rem 1.5rem rgba(23, 36, 45, 0.055);
}
.promo-site .promo-nav > a:not(.btn) {
  border-radius: 999px;
  transition: color 200ms ease, background-color 200ms ease;
}
.promo-site .promo-nav > a:not(.btn):hover,
.promo-site .promo-nav > a:not(.btn):focus-visible,
.promo-site .promo-nav > a[aria-current="page"] {
  color: var(--promo-green-dark);
  background: rgba(47, 117, 104, 0.07);
}

.promo-hero,
.principle-section,
.promo-cta {
  isolation: isolate;
}
.promo-hero__grid,
.principle-section > .container,
.promo-cta__inner {
  position: relative;
  z-index: 2;
}
.allocation-path {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.allocation-path path {
  fill: none;
  stroke: var(--promo-green-dark);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  opacity: 0.16;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.allocation-path circle {
  fill: var(--promo-green-dark);
  --point-opacity: 0.18;
  opacity: 0;
}
.allocation-path.is-visible path,
.promo-hero .allocation-path path {
  animation: allocation-line-in 850ms cubic-bezier(.22,.61,.36,1) forwards;
}
.promo-hero .allocation-path path {
  animation: none;
  stroke-dashoffset: 0;
}
.allocation-path.is-visible circle,
.promo-hero .allocation-path circle {
  animation: allocation-point-in 280ms ease 650ms forwards;
}
.promo-hero .allocation-path circle {
  animation: none;
  opacity: var(--point-opacity, 0.18);
}

.allocation-path--dark path,
.allocation-path--dark circle,
.allocation-path--cta path,
.allocation-path--cta circle { stroke: #8dc0ad; fill: #8dc0ad; }
.allocation-path--dark path,
.allocation-path--cta path { opacity: 0.22; }
.allocation-path--dark circle,
.allocation-path--cta circle { --point-opacity: 0.24; }

.promo-hero__copy h1 span { color: var(--promo-green-dark); }
.promo-site .planning-visual {
  box-shadow:
    0 2.4rem 4.8rem rgba(23, 36, 45, 0.14),
    0 0 4.5rem rgba(47, 117, 104, 0.09),
    0 0.4rem 1rem rgba(23, 36, 45, 0.05);
}
.planning-visual::before {
  content: none;
  position: absolute;
  z-index: -1;
  inset: 12% 8%;
  background: rgba(93, 145, 127, 0.15);
  border-radius: 50%;
  filter: blur(2.6rem);
  pointer-events: none;
}

.problem-section,
.audience-section { position: relative; isolation: isolate; overflow: hidden; }
.problem-section > .container,
.audience-section > .container { position: relative; z-index: 1; }
.problem-section::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: -2rem;
  width: 11rem;
  height: 7rem;
  border: 1px solid rgba(47, 117, 104, 0.11);
  border-radius: 2rem;
  transform: rotate(-8deg);
  pointer-events: none;
}
.audience-section::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -3.2rem;
  width: 8rem;
  height: 8rem;
  background:
    linear-gradient(90deg, rgba(47, 117, 104, 0.08) 0 48%, transparent 48%),
    linear-gradient(rgba(255,255,255,0.2) 0 48%, transparent 48%);
  border-radius: 1.8rem;
  transform: rotate(12deg);
  pointer-events: none;
}

.feature-list article,
.audience-grid article,
.workflow-list > li {
  position: relative;
  transition: transform 210ms ease, border-color 210ms ease, box-shadow 210ms ease, background-color 210ms ease;
}
.feature-list article:hover,
.audience-grid article:hover {
  z-index: 1;
  transform: translateY(-4px);
  border-color: rgba(47, 117, 104, 0.26);
  box-shadow: 0 1rem 2rem rgba(23, 36, 45, 0.075);
}
.feature-list article:hover .line-icon {
  background: var(--promo-green-pale);
  border-color: rgba(47, 117, 104, 0.28);
}
.line-icon { transition: background-color 210ms ease, border-color 210ms ease; }
.audience-grid article strong {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: var(--promo-green-dark);
  border: 1px solid rgba(47, 117, 104, 0.32);
  border-radius: 50%;
  transition: color 210ms ease, background-color 210ms ease, border-color 210ms ease;
}
.audience-grid article:hover strong {
  color: #fff;
  background: var(--promo-green);
  border-color: var(--promo-green);
}

.workflow-list > li::after {
  content: "";
  position: absolute;
  left: 2.7rem;
  top: 50%;
  width: clamp(2rem, 5vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(47,117,104,0.3), transparent);
  pointer-events: none;
}
.workflow-list img,
.workflow-mini {
  border-radius: 1.15rem;
  filter: drop-shadow(0 1.2rem 1.7rem rgba(23, 36, 45, 0.10));
}
.workflow-list img {
  background:
    radial-gradient(circle at 78% 18%, rgba(47,117,104,0.10), transparent 36%),
    #faf8f2;
}

.principle-section {
  background:
    radial-gradient(circle at 82% 32%, rgba(47,117,104,0.15), transparent 34rem),
    var(--promo-ink);
  border-top: 1px solid rgba(141, 192, 173, 0.28);
}
.principle-steps article {
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px rgba(255,255,255,0.025);
}
.promo-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(47,117,104,0.16), transparent 32rem),
    var(--promo-ink);
  border-top: 1px solid rgba(141, 192, 173, 0.26);
}

.privacy-emblem { position: relative; }
.privacy-emblem::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(47,117,104,0.26);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.privacy-section.is-visible .privacy-emblem::after {
  animation: shield-response 900ms cubic-bezier(.22,.61,.36,1) 120ms both;
}

.faq-list summary {
  transition: color 200ms ease, font-weight 200ms ease;
}
.faq-list summary:hover,
.faq-list summary:focus-visible { color: var(--promo-green-dark); font-weight: 700; }
.faq-list summary::after {
  content: "+";
  transform-origin: center;
  transition: transform 210ms ease, color 210ms ease;
}
.faq-list details[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}
.faq-list details p {
  transform-origin: top;
  animation: faq-answer-in 200ms ease both;
}
.faq-section { padding-bottom: clamp(3.5rem, 6vw, 5.5rem); }

.motion-ready .planning-visual,
.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
}
.motion-ready .planning-visual {
  transform: translateY(18px);
}
.motion-ready .planning-visual.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(.22,.61,.36,1);
}
.motion-ready .reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 460ms ease var(--reveal-delay, 0ms), transform 520ms cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms);
}
.motion-ready .feature-list article.reveal-item.is-revealed:hover,
.motion-ready .audience-grid article.reveal-item.is-revealed:hover {
  transform: translateY(-4px);
}
.motion-ready .privacy-checks li {
  opacity: 0;
  transform: translateY(12px);
}
.motion-ready .privacy-section.is-visible .privacy-checks li {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease var(--reveal-delay, 0ms), transform 460ms ease var(--reveal-delay, 0ms);
}
.privacy-checks li:nth-child(2) { --reveal-delay: 55ms; }
.privacy-checks li:nth-child(3) { --reveal-delay: 110ms; }
.privacy-checks li:nth-child(4) { --reveal-delay: 165ms; }
.privacy-checks li:nth-child(5) { --reveal-delay: 220ms; }

@keyframes allocation-line-in { to { stroke-dashoffset: 0; } }
@keyframes allocation-point-in { to { opacity: var(--point-opacity, 0.18); } }
@keyframes shield-response {
  0% { opacity: 0; transform: scale(0.88); }
  45% { opacity: 0.34; }
  100% { opacity: 0; transform: scale(1.08); }
}
@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .promo-site .promo-nav {
    padding: 0.75rem var(--gutter) 1.25rem;
    background: #fbfaf6;
    border: 0;
    border-bottom: 1px solid var(--promo-line);
    border-radius: 0;
    box-shadow: 0 1rem 1.5rem rgba(23,36,45,0.08);
    backdrop-filter: none;
  }
  
  .allocation-path--dark,
.allocation-path--cta { opacity: 0.32; }
  .promo-site .planning-visual,
.motion-ready .planning-visual,
.motion-ready .planning-visual.is-revealed {
    transform: none;
  }
  
  .workflow-list > li::after { display: none; }
  .problem-section::before { right: -6rem; opacity: 0.6; }
  .audience-section::after { right: -4rem; opacity: 0.55; }

}

@media (hover: none) {
  .feature-list article:hover,
.audience-grid article:hover { transform: none; box-shadow: none; }
  .audience-grid article:hover strong { color: var(--promo-green-dark); background: transparent; border-color: rgba(47,117,104,0.32); }
  .motion-ready .feature-list article.reveal-item.is-revealed:hover,
.motion-ready .audience-grid article.reveal-item.is-revealed:hover { transform: none; }

}

@media (prefers-reduced-motion: reduce) {
  .allocation-path path,
.allocation-path circle,
.privacy-emblem::after,
.faq-list details p { animation: none !important; }
  .allocation-path path { stroke-dashoffset: 0; }
  .allocation-path circle { opacity: 0.12; }
  .motion-ready .planning-visual,
.motion-ready .planning-visual.is-revealed,
.motion-ready .reveal-item,
.motion-ready .reveal-item.is-revealed,
.motion-ready .privacy-checks li,
.motion-ready .privacy-section.is-visible .privacy-checks li {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

/* ========================================================================
   Editorial marketing direction — open composition, selective product proof
   ======================================================================== */
.promo-site {
  font-size: 1.0625rem;
  line-height: 1.58;
}
.promo-site p { line-height: 1.58; }
.promo-site .eyebrow {
  color: #315f58;
  font-size: clamp(0.78rem, 0.82vw, 0.86rem);
  line-height: 1.45;
}

/* Full-width editorial navigation. */
.promo-site .promo-header,
.promo-site .promo-header.is-scrolled {
  min-height: 5.25rem;
  background: rgba(252, 251, 247, 0.93);
  border-bottom: 1px solid rgba(23, 36, 45, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.promo-site .promo-header.is-scrolled { min-height: 4.75rem; }
.promo-site .promo-header .nav {
  min-height: inherit;
  transition: min-height 200ms ease;
}
.promo-site .promo-header .nav__logo img { height: 2.15rem; }
.promo-site .promo-nav {
  gap: clamp(1.25rem, 2.2vw, 2.4rem);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.promo-site .promo-nav > a:not(.btn) {
  position: relative;
  padding: 0.6rem 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.88rem;
}
.promo-site .promo-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--promo-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 190ms ease;
}
.promo-site .promo-nav > a:not(.btn):hover,
.promo-site .promo-nav > a:not(.btn):focus-visible,
.promo-site .promo-nav > a[aria-current="page"] { background: transparent; }
.promo-site .promo-nav > a:not(.btn):hover::after,
.promo-site .promo-nav > a:not(.btn):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.promo-site .promo-nav .nav__signin { margin-left: clamp(0.25rem, 1.5vw, 1.5rem); }
.promo-site .promo-nav .btn--nav,
.promo-site .btn,
.promo-site .btn--large {
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.65rem;
  box-shadow: none;
}
.promo-site .promo-nav .btn--nav::after { content: "\00a0→"; }
.promo-site .nav__toggle span { color: var(--promo-ink); font: 600 0.86rem/1 var(--font); }

/* Hero: generous type and an open data composition. */
.promo-hero {
  min-height: min(calc(100svh - 5.25rem), 64rem);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(123, 174, 127, 0.09), transparent 28rem),
    linear-gradient(180deg, #fcfbf7 0%, #f8f5ed 100%);
}
.promo-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(31rem, 1fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}
.promo-site .promo-hero h1 {
  max-width: none;
  font-size: clamp(4.15rem, 5.15vw, 5.35rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.promo-hero__lead { max-width: 38rem; margin-top: 2rem; line-height: 1.6; }
.trust-strip { margin-top: 1.8rem; }
.hero-editorial-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  pointer-events: none;
}
.hero-editorial-path path { fill: none; stroke: rgba(47, 117, 104, 0.18); stroke-width: 1.15; vector-effect: non-scaling-stroke; }
.hero-editorial-path circle { fill: var(--promo-green); opacity: 0.45; }
.promo-site .planning-visual--editorial,
.motion-ready .planning-visual--editorial,
.motion-ready .planning-visual--editorial.is-revealed {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.planning-visual--editorial::before { content: none; }
.planning-visual__label {
  margin-bottom: 1.35rem;
  color: #245d54;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.planning-visual--editorial .planning-equation {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin: 0 0 3rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--promo-rule);
}
.planning-visual--editorial .money-block {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.planning-visual--editorial .money-block strong {
  display: block;
  font-size: clamp(2rem, 2.75vw, 3rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.planning-visual--editorial .money-block > span { margin: 0.3rem 0 0; color: #465960; font-size: 0.8rem; font-weight: 500; }
.planning-visual--editorial .money-block--margin { color: var(--promo-green-dark); }
.planning-visual--editorial .allocation-list { gap: 0; border-top: 1px solid var(--promo-rule); }
.planning-visual--editorial .allocation-list > div {
  grid-template-columns: 1fr auto;
  padding: 0.9rem 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--promo-rule);
  border-radius: 0;
}
.planning-visual--editorial .allocation-list div > span { color: #354950; font-weight: 500; }
.planning-visual--editorial .allocation-list strong { color: var(--promo-ink); font-variant-numeric: tabular-nums; }
.planning-visual--editorial .allocation-list i {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: var(--allocation);
  height: 2px;
  border-radius: 0;
  background: var(--promo-green);
}
.planning-visual--editorial .allocation-list i::after { content: none; }
.planning-visual--editorial .allocation-list__open i { background: #cf8e5d; }
.planning-visual--editorial .planning-visual__note { margin-top: 1.25rem; padding-left: 1.2rem; border-left: 1px solid var(--promo-green); }

/* The problem reads as an infographic, not a product widget. */
.problem-layout { grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr); align-items: start; }
.question-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 2rem; border-top: 1px solid var(--promo-rule); }
.question-lines span {
  position: relative;
  padding: 1rem 2rem 1rem 0;
  background: transparent;
  border-bottom: 1px solid var(--promo-rule);
  border-radius: 0;
}
.question-lines span:nth-child(odd) { margin-right: 1.5rem; }
.question-lines span::after { content: "→"; position: absolute; right: 0.15rem; color: var(--promo-green); }
.commitment-map {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.commitment-map figcaption { padding-bottom: 1rem; border-bottom: 1px solid var(--promo-rule); color: #3d565b; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.commitment-map__balance {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  color: var(--promo-ink);
  background: transparent;
  border-radius: 0;
}
.commitment-map__balance strong { font-size: clamp(3.75rem, 7vw, 6.75rem); line-height: 0.9; letter-spacing: -0.06em; }
.commitment-map__balance > span { color: var(--promo-muted); opacity: 1; }
.commitment-map__branches {
  display: grid;
  grid-template-columns: 1.2fr 1.35fr 1.05fr 0.82fr 0.62fr;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  margin: 0;
  padding-top: 1rem;
  border-bottom: 0;
}
.commitment-map__branches span {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 8.75rem;
  align-items: flex-end;
  padding: 1rem 0.75rem;
  color: var(--promo-ink);
  background: #dfece3;
  border-top: 1px solid rgba(47,117,104,0.4);
  border-right: 1px solid rgba(252,251,247,0.92);
  border-radius: 0;
  writing-mode: initial;
}
.commitment-map__branches span:nth-child(2) { background: #d4e4dc; }
.commitment-map__branches span:nth-child(3) { background: #cadcd2; }
.commitment-map__branches span:nth-child(4) { background: #e9ddca; }
.commitment-map__branches span:nth-child(5) { background: #eed2be; border-right: 0; }
.commitment-map__branches span b { position: static; color: #263d42; font-size: 0.8rem; font-weight: 600; line-height: 1.35; }

/* Dark planning principle: two numbered ideas and one open equation. */
.principle-section { padding: clamp(5.5rem, 10vw, 9rem) 0; }
.principle-section .allocation-path { opacity: 0.3; }
.narrow-center { max-width: 74rem; }
.principle-steps { grid-template-columns: 1fr 5rem 1fr; margin: 4rem 0 3rem; }
.principle-steps article {
  min-height: 15rem;
  padding: 1.5rem 0 0;
  background: transparent;
  border-top: 1px solid rgba(141, 192, 173, 0.5);
  box-shadow: none;
}
.principle-steps article > span { margin-bottom: 4rem; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; font-weight: 500; letter-spacing: -0.06em; }
.principle-connector { position: relative; display: grid; place-items: center; }
.principle-connector::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(141,192,173,0.24); }
.principle-connector { z-index: 1; background: var(--promo-ink); }
.principle-callout {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

/* Four editorial steps, with cropped proof rather than full-screen repetition. */
.workflow-list > li {
  grid-template-columns: 5rem minmax(15rem, 0.52fr) minmax(26rem, 1fr);
  min-height: 21rem;
  padding: clamp(2.75rem, 5.4vw, 4.75rem) 0;
}
.workflow-list__number {
  display: block;
  width: auto;
  height: auto;
  color: var(--promo-green-dark);
  background: transparent;
  border-radius: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.workflow-list > li::after { display: none; }
.workflow-list img {
  height: 20.5rem;
  max-height: none;
  object-fit: cover;
  object-position: 50% 20%;
  background: #f8f7f2;
  border: 1px solid rgba(23,36,45,0.12);
  border-radius: 0.2rem;
  filter: drop-shadow(0 1.1rem 1.35rem rgba(23,36,45,0.09));
}
.workflow-list > li:nth-child(4) img { object-position: 50% 35%; }
.workflow-mini {
  justify-content: flex-start;
  gap: 1rem;
  min-height: 0;
  padding: 3rem 0;
  background: transparent;
  border-top: 1px solid var(--promo-rule);
  border-bottom: 1px solid var(--promo-rule);
  border-radius: 0;
  filter: none;
}
.workflow-mini span,
.workflow-mini strong { padding: 0; background: transparent; border-radius: 0; font-size: clamp(1rem, 2vw, 1.5rem); }
.workflow-mini strong { color: var(--promo-green-dark); }
.allocation-route { position: relative; min-height: 20rem; padding: 1.5rem 0; border-top: 1px solid var(--promo-rule); border-bottom: 1px solid var(--promo-rule); }
.allocation-route::before { content: ""; position: absolute; top: 6.3rem; right: 10%; left: 12%; height: 1px; background: var(--promo-green); }
.allocation-route strong { display: flex; justify-content: space-between; font-size: 1rem; }
.allocation-route strong span { color: var(--promo-green-dark); font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.05em; }
.allocation-route > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.7rem; margin-top: 6rem; }
.allocation-route > div span { position: relative; padding-top: 1.2rem; border-top: 1px solid var(--promo-rule); color: #42575d; font-size: 0.8rem; }
.allocation-route > div span::before { content: ""; position: absolute; top: -3.1rem; left: 0; width: 1px; height: 3.1rem; background: var(--promo-green); }

/* Capabilities: a quiet two-column reference list. */
.features-section { background: var(--promo-paper); }
.feature-list { grid-template-columns: repeat(2, 1fr); column-gap: clamp(3rem, 8vw, 8rem); border: 0; }
.feature-list article {
  grid-template-columns: 3rem 1fr;
  min-height: 0;
  padding: 2rem 0 2.5rem;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--promo-rule);
}
.feature-list article:hover,
.motion-ready .feature-list article.reveal-item.is-revealed:hover { transform: none; box-shadow: none; }
.feature-list article h3 { font-size: 1.2rem; }
.line-icon,
.feature-list article:hover .line-icon {
  display: block;
  width: auto;
  height: auto;
  color: var(--promo-green-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.boundary-note { margin: 2.5rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--promo-rule); border-left: 0; color: #455a60; font-size: 0.84rem; }

/* Privacy: oversized typography and a branching line field. */
.privacy-section { overflow: hidden; background: linear-gradient(115deg, #e9f2ed, #f4f7f2 72%); }
.privacy-layout { grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1fr); }
.privacy-emblem {
  position: relative;
  display: block;
  min-height: 32rem;
  border: 0;
  border-radius: 0;
}
.privacy-emblem::after { content: none; }
.privacy-emblem > span {
  top: 4rem;
  left: -0.05em;
  color: rgba(36, 93, 83, 0.15);
  font-size: clamp(5.5rem, 10vw, 10rem);
  line-height: 0.84;
  font-weight: 600;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}
.privacy-emblem svg { position: absolute; inset: 5rem -10% auto 0; width: 112%; fill: none; stroke: rgba(47,117,104,0.38); stroke-width: 1.5; }
.privacy-emblem circle { fill: var(--promo-green); stroke: none; }
.privacy-checks { gap: 0 2rem; }
.privacy-checks li { padding: 1rem 0; }

/* Audience remains open: only vertical rules create rhythm. */
.audience-section { background: var(--promo-sand); }
.audience-section::after { content: none; }
.audience-grid { gap: 0; background: transparent; border: 0; border-top: 1px solid rgba(23,36,45,0.18); }
.audience-grid article { min-height: 18rem; padding: 2.5rem 2rem 2rem; background: transparent; border-right: 1px solid rgba(23,36,45,0.18); }
.audience-grid article:first-child { padding-left: 0; }
.audience-grid article:last-child { padding-right: 0; border-right: 0; }
.audience-grid article:hover,
.motion-ready .audience-grid article.reveal-item.is-revealed:hover { transform: none; box-shadow: none; }
.audience-grid article strong,
.audience-grid article:hover strong {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 5rem;
  color: rgba(47,117,104,0.56);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

/* FAQ and closing statement remain editorial and restrained. */
.faq-list summary { padding-block: 1.65rem; }
.promo-cta { border-top: 1px solid rgba(141,192,173,0.24); border-bottom: 1px solid rgba(255,255,255,0.08); }
.promo-cta .allocation-path--cta { opacity: 0.45; }
.promo-cta__action .btn { min-width: 10.75rem; }
.promo-footer { border-top: 1px solid rgba(255,255,255,0.07); }

/* Preserve the editorial proportions when a large display or reduced browser
   zoom creates an ultra-wide CSS viewport. */
@media (min-width: 1800px) {
  html:has(> body.promo-site) { font-size: clamp(16px, 0.85vw, 28px); }
  .promo-site .container { max-width: 92rem; }

}

@media (max-width: 960px) {
  .promo-hero { min-height: auto; }
  .promo-site .promo-hero h1 { max-width: 12ch; font-size: clamp(3.6rem, 9vw, 5.6rem); }
  .promo-hero__grid,
.problem-layout,
.privacy-layout { grid-template-columns: 1fr; }
  .planning-visual--editorial { max-width: none; }
  .commitment-map { margin-top: 2rem; }
  .privacy-emblem { min-height: 21rem; }
  .privacy-emblem > span { top: 1rem; }
  .privacy-emblem svg { top: 1rem; max-height: 19rem; }
  .workflow-list > li { grid-template-columns: 4rem 1fr; }
  .workflow-list > li > :last-child { grid-column: 2; }

}

@media (max-width: 760px) {
  .promo-site .promo-header,
.promo-site .promo-header.is-scrolled { min-height: 4.5rem; }
  .promo-site .promo-header .nav__logo img { height: 1.95rem; }
  .promo-site .promo-header .nav__toggle { min-width: 2.75rem; min-height: 2.75rem; padding: 0; }
  .promo-site .promo-header .nav__links {
    top: 4.5rem;
    min-height: calc(100vh - 4.5rem);
    padding: 1.25rem var(--gutter) 2rem;
    background: #fcfbf7;
    box-shadow: none;
  }
  .promo-site .promo-header .nav__links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--promo-rule); }
  .promo-site .promo-header .nav__links .nav__signin { margin-left: 0; }
  .promo-site .promo-header .nav__links .btn--nav { width: auto; align-self: flex-start; margin-top: 1rem; padding-inline: 1.2rem; border-bottom: 0; }
  .promo-hero { padding: 4.5rem 0 5rem; }
  .promo-site .promo-hero h1 { max-width: none; font-size: clamp(2.8rem, 12vw, 4.1rem); }
  .promo-hero__grid { gap: 4.5rem; }
  .hero-editorial-path { width: 180%; transform: translateX(-32%); opacity: 0.6; }
  .planning-visual--editorial .planning-equation { grid-template-columns: 1fr; gap: 0.8rem; }
  .planning-visual--editorial .equation-mark { text-align: left; }
  .question-lines { grid-template-columns: 1fr; }
  .question-lines span:nth-child(odd) { margin-right: 0; }
  .commitment-map__balance { align-items: flex-start; flex-direction: column; }
  .commitment-map__branches { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .commitment-map__branches span { min-height: 8rem; padding: 0.8rem 0.45rem; }
  .commitment-map__branches span b { font-size: 0.75rem; overflow-wrap: anywhere; }
  .principle-steps { grid-template-columns: 1fr; }
  .principle-connector { min-height: 4rem; }
  .principle-connector::before { top: -1rem; bottom: -1rem; }
  .workflow-list > li { grid-template-columns: 3rem 1fr; min-height: 0; padding: 2.75rem 0; }
  .workflow-list > li > :last-child { grid-column: 1 / -1; margin-top: 1rem; }
  .workflow-list img { height: 14rem; }
  .allocation-route { overflow-x: auto; }
  .allocation-route > div { min-width: 36rem; }
  .feature-list { grid-template-columns: 1fr; }
  .privacy-emblem { min-height: 17rem; }
  .privacy-emblem > span { font-size: clamp(4.5rem, 23vw, 7rem); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid article { min-height: 14rem; padding: 2rem 1rem 2rem 0; border-right: 0; border-bottom: 1px solid rgba(23,36,45,0.18); }
  .audience-grid article:nth-child(odd) { border-right: 1px solid rgba(23,36,45,0.18); }
  .audience-grid article:nth-child(even) { padding-left: 1rem; }
  .audience-grid article strong { margin-bottom: 3rem; }

}

@media (max-width: 420px) {
  .promo-site .promo-hero h1 { font-size: 2.8rem; }
  .commitment-map__branches { grid-template-columns: repeat(5, 1fr); }
  .commitment-map__branches span { min-height: 7rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article,
.audience-grid article:nth-child(odd),
.audience-grid article:nth-child(even) { padding: 2rem 0; border-right: 0; }

}

