@charset "UTF-8";
/* ================================================================
   COORDINATE & CARE SUPPORT SERVICES
   Main stylesheet — loaded after Bootstrap, overrides it.

   Contents
   01 Tokens
   02 Accessibility preferences
   03 Base & typography
   04 Buttons
   05 Utility bar, header & navigation
   06 Mobile navigation
   07 Hero
   08 Sections & shared blocks
   09 The Path (signature)
   10 Cards & grids
   11 Forms
   12 CTA band
   13 Footer
   14 Motion
   ================================================================ */

/* ── 01 Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand — sampled directly from the logo artwork */
  --ink:        #241028;
  --ink-soft:   #5f5262;
  --purple:     #661570;
  --purple-700: #55115e;
  --purple-900: #43094b;
  --purple-100: #efe7f2;
  --mist:       #f6f3f8;
  --orange:     #e86612;
  --orange-700: #a34209;
  --orange-100: #fdeee1;
  --green:      #4f7a1e;
  --green-700:  #3f6318;
  --leaf:       #f1f5ec;
  --white:      #ffffff;
  --line:       #e6dcea;
  --line-strong:#cdbdd4;

  /* Type
     One typeface across the entire site, at the client's request.
     Atkinson Hyperlegible was designed by the Braille Institute to make
     letterforms easier to tell apart at low vision.

     To go back to a two-font pairing, point --font-display at another
     family and re-add its @font-face rules to assets/vendor/fonts/fonts.css.
     Nothing else needs to change — every heading already uses this variable. */
  --font-body:    "Atkinson Hyperlegible", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: var(--font-body);

  --step--1: clamp(.875rem, .85rem + .12vw, .9375rem);
  --step-0:  clamp(1.0625rem, 1.03rem + .16vw, 1.125rem);
  --step-1:  clamp(1.1875rem, 1.13rem + .3vw, 1.375rem);
  --step-2:  clamp(1.5rem, 1.36rem + .6vw, 1.875rem);
  --step-3:  clamp(1.875rem, 1.64rem + 1vw, 2.5rem);
  --step-4:  clamp(2.25rem, 1.83rem + 1.8vw, 3.25rem);
  --step-5:  clamp(2.75rem, 2.05rem + 3vw, 4.25rem);

  /* Space */
  --sp-1: .5rem;  --sp-2: .875rem; --sp-3: 1.25rem; --sp-4: 1.75rem;
  --sp-5: 2.5rem; --sp-6: 3.5rem;  --sp-7: 5rem;    --sp-8: 7rem;

  --radius:    22px;
  --radius-sm: 14px;
  --radius-xs: 10px;

  --shadow-1: 0 1px 2px rgba(36,16,40,.05), 0 8px 24px -14px rgba(36,16,40,.18);
  --shadow-2: 0 2px 6px rgba(36,16,40,.06), 0 26px 54px -26px rgba(36,16,40,.28);

  --container: 1180px;
  --header-h: 88px;
}

/* ── 02 Accessibility preferences ──────────────────────────── */
/* Driven by the toolbar in the utility bar; saved per device. */
html[data-text="lg"] { font-size: 112.5%; }
html[data-text="xl"] { font-size: 125%; }

html[data-spacing="1"] body {
  letter-spacing: .022em;
  word-spacing: .1em;
  line-height: 1.95;
}
html[data-spacing="1"] p { margin-bottom: 1.4em; }

html[data-links="underline"] main a:not(.btn):not(.cc-nav__link) {
  text-decoration: underline;
  text-underline-offset: .18em;
}

html[data-contrast="1"] {
  --ink: #000000;
  --ink-soft: #1c1220;
  --purple: #4a0a54;
  --purple-900: #2b0430;
  --purple-100: #ffffff;
  --mist: #ffffff;
  --leaf: #ffffff;
  --orange-700: #8a3606;
  --green: #2f4d0f;
  --line: #241028;
  --line-strong: #241028;
  --shadow-1: none;
  --shadow-2: none;
}
html[data-contrast="1"] .cc-card,
html[data-contrast="1"] .cc-panel,
html[data-contrast="1"] .cc-form,
html[data-contrast="1"] .cc-value,
html[data-contrast="1"] .cc-step__body { border-width: 2px; }
html[data-contrast="1"] .cc-hero::before,
html[data-contrast="1"] .cc-hero__glow,
html[data-contrast="1"] .cc-section__path,
html[data-contrast="1"] .cc-cta__path { display: none; }
html[data-contrast="1"] main a:not(.btn) { text-decoration: underline; }

html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .001ms !important;
  scroll-behavior: auto !important;
}

/* ── 03 Base & typography ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.72;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { max-width: var(--container); padding-inline: 22px; }

h1, h2, h3, h4, .cc-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.014em;
  color: var(--purple-900);
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.cc-lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}

.cc-eyebrow {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin: 0 0 var(--sp-2);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.cc-eyebrow::before {
  content: "";
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--orange);
  flex: none;
}
.cc-eyebrow--light { color: #ffd9b8; }
.cc-eyebrow--light::before { background: var(--orange); }
.cc-eyebrow--center { justify-content: center; }

a { color: var(--purple); text-underline-offset: .16em; }
a:hover { color: var(--purple-700); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.cc-skip {
  position: absolute; left: 12px; top: -100px; z-index: 2000;
  background: var(--purple-900); color: #fff;
  padding: .85rem 1.4rem; border-radius: 0 0 12px 12px;
  font-weight: 700; text-decoration: none;
  transition: top .18s ease;
}
.cc-skip:focus { top: 0; color: #fff; }

#main:focus { outline: none; }

/* Honeypot — hidden from people, visible to bots */
.cc-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.cc-measure { max-width: 68ch; }
.cc-center { text-align: center; }
.cc-center .cc-lead { margin-inline: auto; }

/* ── 04 Buttons ────────────────────────────────────────────── */
.btn-cc, .btn-cc-outline, .btn-cc-ghost, .btn-cc-light, .btn-cc-plain {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
  cursor: pointer;
}
.btn-cc {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
  box-shadow: 0 6px 18px -8px rgba(232,102,18,.75);
}
.btn-cc:hover, .btn-cc:focus-visible {
  background: #f5771f; border-color: #f5771f; color: var(--ink);
  transform: translateY(-2px);
}
.btn-cc-outline {
  background: transparent; color: var(--purple); border-color: var(--line-strong);
}
.btn-cc-outline:hover, .btn-cc-outline:focus-visible {
  background: var(--purple); border-color: var(--purple); color: #fff; transform: translateY(-2px);
}
.btn-cc-ghost {
  background: var(--purple-100); color: var(--purple-900); border-color: transparent;
}
.btn-cc-ghost:hover, .btn-cc-ghost:focus-visible { background: var(--line); color: var(--purple-900); }
.btn-cc-light {
  background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-cc-light:hover, .btn-cc-light:focus-visible {
  background: #fff; color: var(--purple-900); border-color: #fff; transform: translateY(-2px);
}
.btn-cc-plain {
  padding: .55rem 0; background: none; color: var(--purple); font-weight: 700;
}
.btn-cc-plain:hover { color: var(--orange-700); gap: .85rem; }
.btn-lg { padding: 1.02rem 2rem; font-size: 1.0625rem; }
.btn-cc.btn-lg, .btn-cc-light.btn-lg, .btn-cc-outline.btn-lg { border-radius: 999px; }

.cc-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ── 05 Utility bar, header & navigation ───────────────────── */
.cc-utility {
  background: var(--purple-900);
  color: #e9dcee;
  font-size: .875rem;
}
.cc-utility__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 44px; flex-wrap: wrap;
}
.cc-utility__badge {
  margin: 0; display: flex; align-items: center; gap: .5rem;
  font-weight: 700; color: #fff;
}
.cc-utility__badge i { color: #b7e08a; font-size: 1rem; }
.cc-utility__sep { margin-inline: .55rem; opacity: .5; }
.cc-utility__area { font-weight: 400; color: #cdb8d5; }
.cc-utility__actions { display: flex; align-items: center; gap: 1.35rem; }
.cc-utility__link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: #e9dcee; text-decoration: none; font-weight: 700;
  background: none; border: 0; padding: .35rem 0; font-size: .875rem;
  font-family: var(--font-body);
}
.cc-utility__link:hover { color: #fff; text-decoration: underline; }
.cc-utility__link i { color: var(--orange); font-size: 1rem; }
.cc-a11y-toggle[aria-expanded="true"] { color: #fff; }

.cc-a11y {
  background: var(--purple-700);
  border-bottom: 3px solid var(--orange);
  padding: 1.35rem 0;
  color: #fff;
}
.cc-a11y__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-items: start;
}
.cc-a11y__group { border: 0; padding: 0; margin: 0; min-width: 0; }
.cc-a11y__group legend {
  float: left; width: 100%;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #d9c4e0; margin-bottom: .6rem;
}
.cc-a11y__btns { display: flex; flex-wrap: wrap; gap: .5rem; clear: both; }
.cc-a11y__btns button {
  font-family: var(--font-body); font-size: .875rem; font-weight: 700;
  padding: .5rem .95rem; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.45);
  background: transparent; color: #fff; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.cc-a11y__btns button:hover { background: rgba(255,255,255,.16); }
.cc-a11y__btns button.is-active,
.cc-a11y__btns button[aria-pressed="true"] {
  background: #fff; color: var(--purple-900); border-color: #fff;
}
.cc-a11y__clear {
  font-family: var(--font-body); font-weight: 700; font-size: .875rem;
  background: var(--orange); color: var(--ink); border: 0;
  padding: .55rem 1.05rem; border-radius: 999px; cursor: pointer;
}
.cc-a11y__note { font-size: .78rem; color: #d9c4e0; margin: .6rem 0 0; }

.cc-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.cc-header.is-stuck { box-shadow: var(--shadow-1); }
.cc-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}
.cc-brand {
  flex: none; display: flex; align-items: center; gap: .7rem;
  text-decoration: none; line-height: 1;
}
.cc-brand__img { width: auto; height: 54px; flex: none; }
.cc-brand__text { display: flex; flex-direction: column; gap: .12rem; }
.cc-brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.28rem; letter-spacing: -.02em; color: var(--purple-900);
  white-space: nowrap;
}
.cc-brand__name span { color: var(--orange); }
.cc-brand__sub {
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green-700);
}

.cc-nav { margin-left: auto; }
.cc-nav__list {
  display: flex; align-items: center; gap: .2rem;
  list-style: none; margin: 0; padding: 0;
}
.cc-nav__item { position: relative; }
.cc-nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .7rem .68rem; border-radius: 10px;
  font-weight: 700; font-size: .9375rem;
  color: var(--purple-900); text-decoration: none;
  white-space: nowrap;
}
.cc-nav__link:hover { background: var(--mist); color: var(--purple); }
.cc-nav__link.is-active { color: var(--purple); }
.cc-nav__link.is-active::after {
  content: ""; position: absolute; left: .68rem; right: .68rem; bottom: .28rem;
  height: 3px; border-radius: 3px; background: var(--orange);
}
.cc-nav__caret { font-size: .7rem; transition: transform .18s ease; }
.cc-nav__item--has-menu:hover .cc-nav__caret,
.cc-nav__item--has-menu:focus-within .cc-nav__caret { transform: rotate(180deg); }

.cc-mega {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translate(-50%, 8px);
  width: min(760px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 1.35rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.cc-nav__item--has-menu:hover .cc-mega,
.cc-nav__item--has-menu:focus-within .cc-mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.cc-mega::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.cc-mega__list {
  list-style: none; margin: 0 0 .5rem; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .15rem .75rem;
}
.cc-mega__list a {
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem .7rem; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 700;
}
.cc-mega__list a:hover { background: var(--mist); color: var(--purple); }
.cc-mega__list i { color: var(--green); font-size: 1.05rem; flex: none; }
.cc-mega__all {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-left: .7rem; font-weight: 700; color: var(--orange-700); text-decoration: none;
}
.cc-mega__all:hover { color: var(--orange-700); gap: .8rem; }

.cc-header__cta { display: flex; align-items: center; gap: .6rem; flex: none; }

.cc-burger {
  display: none; width: 48px; height: 48px;
  border: 2px solid var(--line-strong); border-radius: 12px;
  background: #fff; cursor: pointer; padding: 0;
}
.cc-burger__box { display: block; position: relative; width: 22px; height: 14px; margin: 0 auto; }
.cc-burger__box span {
  position: absolute; left: 0; width: 100%; height: 2.5px; border-radius: 3px;
  background: var(--purple-900); transition: transform .2s ease, opacity .2s ease;
}
.cc-burger__box span:nth-child(1) { top: 0; }
.cc-burger__box span:nth-child(2) { top: 6px; }
.cc-burger__box span:nth-child(3) { top: 12px; }
.cc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.cc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── 06 Mobile navigation ──────────────────────────────────── */
.cc-mobile {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(36,16,40,.55);
  backdrop-filter: blur(3px);
}
.cc-mobile__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(400px, 90vw);
  background: #fff;
  display: flex; flex-direction: column;
  padding: 1.25rem;
  overflow-y: auto;
  animation: cc-slide-in .24s ease;
}
@keyframes cc-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cc-mobile__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cc-mobile__mark { width: auto; height: 52px; }
.cc-mobile__close {
  width: 44px; height: 44px; border-radius: 12px;
  border: 2px solid var(--line-strong); background: #fff;
  color: var(--purple-900); font-size: 1.1rem; cursor: pointer;
}
.cc-mobile__list { list-style: none; margin: 0; padding: 0; }
.cc-mobile__list li + li { border-top: 1px solid var(--line); }
.cc-mobile__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--purple-900); text-decoration: none;
}
.cc-mobile__list a:hover, .cc-mobile__list a[aria-current="page"] { color: var(--orange-700); }
.cc-mobile__list i { color: var(--line-strong); font-size: .95rem; }
.cc-mobile__foot { margin-top: auto; padding-top: 1.5rem; display: grid; gap: .6rem; }

/* ── 07 Hero ───────────────────────────────────────────────── */
.cc-hero {
  position: relative;
  padding: clamp(3rem, 1.5rem + 5vw, 5.5rem) 0 clamp(3.5rem, 2rem + 5vw, 6rem);
  background: linear-gradient(178deg, var(--mist) 0%, #fff 62%);
  overflow: hidden;
}
.cc-hero__glow {
  position: absolute; pointer-events: none;
  width: 58vw; height: 58vw; max-width: 720px; max-height: 720px;
  right: -14vw; top: -22vw;
  background: radial-gradient(circle at 50% 50%, rgba(102,21,112,.13), rgba(102,21,112,0) 68%);
  border-radius: 50%;
}
.cc-hero__grid {
  position: relative;
  display: grid; align-items: center; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}
.cc-hero h1 { font-size: var(--step-5); margin-bottom: var(--sp-3); }
.cc-hero__accent {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--green);
}
.cc-hero__lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 54ch; margin-bottom: var(--sp-4); }
.cc-hero__actions { margin-bottom: var(--sp-4); }
.cc-hero__trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  list-style: none; margin: 0; padding: 0;
  font-size: .9375rem; font-weight: 700; color: var(--purple-900);
}
.cc-hero__trust li { display: flex; align-items: center; gap: .45rem; }
.cc-hero__trust i { color: var(--green); }

.cc-hero__figure { position: relative; }
.cc-hero__panel {
  position: relative;
  aspect-ratio: 5 / 5.4;
  border-radius: 200px 200px 32px 32px;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(232,102,18,.16), rgba(232,102,18,0) 55%),
    linear-gradient(200deg, #f7f1f9 0%, #efe7f2 45%, #eaf1e2 100%);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.cc-hero__panel img { width: 66%; max-width: 300px; height: auto; position: relative; z-index: 2; }
.cc-hero__panelpath { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.cc-hero__panelpath path { fill: none; stroke: rgba(79,122,30,.28); stroke-width: 2.5; }
.cc-hero__quote {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  max-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-2);
}
.cc-hero__quote p {
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
  line-height: 1.35; color: var(--purple-900); margin: 0 0 .35rem;
}
.cc-hero__quote span { font-size: .8125rem; color: var(--ink-soft); font-weight: 700; }

/* Trust ribbon under the hero */
.cc-ribbon { background: var(--purple-900); color: #fff; padding: 1.15rem 0; overflow: hidden; }
.cc-ribbon__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem 1.75rem;
  list-style: none; margin: 0; padding: 0;
  font-size: .9375rem; font-weight: 700;
}
.cc-ribbon__list li { display: flex; align-items: center; gap: .5rem; }
.cc-ribbon__list i { color: #b7e08a; }

/* ── 08 Sections & shared blocks ───────────────────────────── */
.cc-section { padding: clamp(3.25rem, 2rem + 4.5vw, 6rem) 0; position: relative; }
.cc-section--mist { background: var(--mist); }
.cc-section--leaf { background: var(--leaf); }
.cc-section--dark { background: var(--purple-900); color: #efe4f3; }
.cc-section--dark h2, .cc-section--dark h3 { color: #fff; }
.cc-section--dark .cc-lead { color: #d9c4e0; }
.cc-section--tight { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }

.cc-head { max-width: 66ch; margin-bottom: var(--sp-5); }
.cc-head--center { margin-inline: auto; text-align: center; }
.cc-head--center .cc-eyebrow { justify-content: center; }
.cc-head p { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.6; margin-bottom: 0; }
.cc-section--dark .cc-head p { color: #d9c4e0; }

/* Thin winding divider — the logo path, reduced to a rule */
.cc-section__path {
  position: absolute; left: 0; right: 0; top: 0; height: 46px;
  width: 100%; pointer-events: none;
}
.cc-section__path path { fill: none; stroke: var(--line-strong); stroke-width: 2; opacity: .55; }

.cc-split {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  align-items: center;
}
.cc-split--wide { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }

.cc-panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-1);
}
.cc-panel--flat { box-shadow: none; }

.cc-pullquote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--purple-900);
  border-left: 5px solid var(--green);
  padding-left: clamp(1.1rem, 2.5vw, 1.9rem);
  margin: var(--sp-4) 0;
  max-width: 40ch;
}
.cc-section--dark .cc-pullquote { color: #fff; border-color: var(--orange); }

.cc-ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.cc-ticks li { display: flex; gap: .75rem; align-items: flex-start; line-height: 1.55; }
.cc-ticks i, .cc-ticks::marker { color: var(--green); }
.cc-ticks li i { flex: none; margin-top: .25rem; font-size: 1.05rem; }
.cc-ticks--two { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: .7rem 2rem; }
.cc-section--dark .cc-ticks li i { color: #b7e08a; }

.cc-chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.cc-chips li {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.05rem;
  font-size: .9375rem; font-weight: 700; color: var(--purple-900);
}
.cc-section--mist .cc-chips li, .cc-section--leaf .cc-chips li { background: #fff; }

.cc-stats {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.cc-stat__num {
  font-family: var(--font-display); font-size: var(--step-3);
  font-weight: 700; color: var(--purple); line-height: 1; display: block;
}
.cc-stat__label { font-size: .9375rem; color: var(--ink-soft); font-weight: 700; }

/* ── 09 The Path (signature) ───────────────────────────────── */
.cc-journey { position: relative; }
.cc-journey__track { position: relative; margin-top: var(--sp-5); }

/* The winding line, drawn once and shared by every step */
.cc-journey__line {
  position: absolute; left: 0; top: 10px; bottom: 10px; width: 84px;
  pointer-events: none; z-index: 0;
}
.cc-journey__line path {
  fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: var(--len, 2000); stroke-dashoffset: var(--len, 2000);
  opacity: .5;
}
.cc-journey__line.is-drawn path { stroke-dashoffset: 0; transition: stroke-dashoffset 2.2s ease-out; }

.cc-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); position: relative; z-index: 1; }
.cc-step { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: clamp(1rem, 2.5vw, 2rem); align-items: start; }
.cc-step__node {
  position: relative; width: 84px; height: 84px; border-radius: 50%;
  background: #fff; border: 3px solid var(--green);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 0 0 8px var(--white);
}
.cc-section--mist .cc-step__node { box-shadow: 0 0 0 8px var(--mist); }
.cc-step__num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--green-700); line-height: 1;
}
.cc-step:nth-child(even) .cc-step__node { border-color: var(--orange); }
.cc-step:nth-child(even) .cc-step__num { color: var(--orange-700); }
.cc-step__body {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-shadow: var(--shadow-1);
}
.cc-step__title { font-size: var(--step-2); margin-bottom: .5rem; }
.cc-step__text { color: var(--ink-soft); margin-bottom: .85rem; }
.cc-step__meta {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .875rem; font-weight: 700; color: var(--green-700);
  background: var(--leaf); border-radius: 999px; padding: .35rem .9rem;
}

/* ── 10 Cards & grids ──────────────────────────────────────── */
.cc-grid {
  display: grid; gap: clamp(1rem, 2.2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.cc-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); }
.cc-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }

.cc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.cc-card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--purple-100); color: var(--purple);
  margin-bottom: 1rem;
}
.cc-card:nth-child(3n+2) .cc-card__icon { background: var(--leaf); color: var(--green-700); }
.cc-card:nth-child(3n+3) .cc-card__icon { background: var(--orange-100); color: var(--orange-700); }
.cc-card__title { font-size: var(--step-1); margin-bottom: .55rem; }
.cc-card__title a { color: inherit; text-decoration: none; }
.cc-card__title a::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
.cc-card__title a:hover { color: var(--purple); }
.cc-card__text { color: var(--ink-soft); font-size: .9875rem; margin-bottom: 1rem; }
.cc-card__group {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: .6rem;
}
.cc-card__more {
  margin-top: auto; display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--orange-700); font-size: .9375rem;
}
.cc-card:hover .cc-card__more { gap: .75rem; }

.cc-value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.cc-value__icon { font-size: 1.7rem; color: var(--green); margin-bottom: .7rem; display: block; }
.cc-value h3 { font-size: var(--step-1); margin-bottom: .45rem; }
.cc-value p { color: var(--ink-soft); font-size: .9875rem; margin: 0; }

/* Page hero (interior pages) */
.cc-pagehead {
  background: linear-gradient(178deg, var(--mist) 0%, #fff 100%);
  padding: clamp(2.25rem, 1.5rem + 3vw, 4rem) 0 clamp(2rem, 1.25rem + 3vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.cc-pagehead h1 { max-width: 20ch; }
.cc-pagehead .cc-lead { margin-top: var(--sp-3); }
.cc-crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 var(--sp-3); padding: 0; font-size: .875rem; }
.cc-crumbs li { color: var(--ink-soft); }
.cc-crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line-strong); }
.cc-crumbs a { color: var(--ink-soft); text-decoration: none; font-weight: 700; display: inline-block; padding: .25rem 0; }
.cc-crumbs a:hover { color: var(--purple); text-decoration: underline; }

/* Accordion (FAQs) */
.cc-faq { border-top: 1px solid var(--line); }
.cc-faq__item { border-bottom: 1px solid var(--line); }
.cc-faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  background: none; border: 0; text-align: left; cursor: pointer;
  padding: 1.25rem .25rem;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 700;
  color: var(--purple-900);
}
.cc-faq__q:hover { color: var(--purple); }
.cc-faq__q i { flex: none; font-size: 1rem; color: var(--orange); transition: transform .2s ease; margin-top: .35rem; }
.cc-faq__q[aria-expanded="true"] i { transform: rotate(45deg); }
.cc-faq__a { padding: 0 .25rem 1.35rem; color: var(--ink-soft); max-width: 72ch; }

/* Contact detail tiles */
.cc-contactcard {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem;
}
.cc-contactcard i {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: var(--purple-100); color: var(--purple);
}
.cc-contactcard h2,
.cc-contactcard h3 { font-size: 1.0625rem; margin-bottom: .2rem; }
.cc-contactcard p { margin: 0; font-size: .9375rem; color: var(--ink-soft); }
.cc-contactcard a { font-weight: 700; }

/* Alerts */
.cc-alert {
  display: flex; gap: .9rem; align-items: flex-start;
  border-radius: var(--radius-sm); padding: 1.1rem 1.25rem;
  margin-bottom: var(--sp-4); border: 1px solid;
}
.cc-alert i { font-size: 1.25rem; flex: none; margin-top: .1rem; }
.cc-alert p { margin: 0; }
.cc-alert--success { background: var(--leaf); border-color: #c3d9a8; color: #2f4d0f; }
.cc-alert--success i { color: var(--green-700); }
.cc-alert--error { background: #fdeee1; border-color: #f2c39a; color: #8a3606; }
.cc-alert--error i { color: var(--orange-700); }
.cc-alert--info { background: var(--purple-100); border-color: #d6c2dd; color: var(--purple-900); }
.cc-alert--info i { color: var(--purple); }

/* ── 11 Forms ──────────────────────────────────────────────── */
.cc-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-1);
}
.cc-form__grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.cc-form__full { grid-column: 1 / -1; }
.cc-form fieldset { border: 0; padding: 0; margin: 0 0 var(--sp-4); }
.cc-form fieldset:last-of-type { margin-bottom: var(--sp-3); }
.cc-form legend {
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 700;
  color: var(--purple-900); margin-bottom: .35rem; padding: 0; width: 100%;
  border-bottom: 1px solid var(--line); padding-bottom: .6rem; margin-bottom: 1.1rem;
}
.cc-field { display: block; }
.cc-field > label {
  display: block; font-weight: 700; font-size: .9375rem;
  color: var(--purple-900); margin-bottom: .4rem;
}
.cc-field .cc-req { color: var(--orange-700); }
.cc-field .cc-hint { display: block; font-weight: 400; font-size: .8125rem; color: var(--ink-soft); margin-top: .15rem; }
.cc-input, .cc-select, .cc-textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; line-height: 1.5;
  color: var(--ink); background: #fff;
  border: 2px solid var(--line-strong); border-radius: var(--radius-xs);
  padding: .8rem .95rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cc-input:focus, .cc-select:focus, .cc-textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 4px rgba(102,21,112,.12); outline: none;
}
.cc-textarea { min-height: 150px; resize: vertical; }
.cc-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23661570'%3E%3Cpath d='M8 11 3 5.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 14px;
  padding-right: 2.5rem;
}
.cc-input.is-invalid, .cc-select.is-invalid, .cc-textarea.is-invalid { border-color: #b3300b; background: #fff8f4; }
.cc-field-error { color: #8a3606; font-size: .875rem; font-weight: 700; margin: .4rem 0 0; display: flex; gap: .35rem; align-items: center; }
.cc-checks { display: grid; gap: .6rem; }
.cc-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9375rem; cursor: pointer; }
.cc-check input { width: 24px; height: 24px; flex: none; margin-top: .05rem; accent-color: var(--purple); }
.cc-form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cc-form__note { font-size: .875rem; color: var(--ink-soft); margin: 0; }

/* ── 12 CTA band ───────────────────────────────────────────── */
.cc-cta { padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0; }
.cc-cta__panel {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple) 62%, #7a2a84 100%);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(2.25rem, 4vw, 4rem);
  color: #fff;
}
.cc-cta__path { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; }
.cc-cta__path path { fill: none; stroke: #b7e08a; stroke-width: 3; }
.cc-cta__content { position: relative; max-width: 60ch; }
.cc-cta__title { color: #fff; font-size: var(--step-3); margin-bottom: var(--sp-3); }
.cc-cta__text { color: #e7d8ec; font-size: var(--step-1); margin-bottom: var(--sp-4); }
.cc-cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: var(--sp-3); }
.cc-cta__meta { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; color: #d9c4e0; margin: 0; }
.cc-cta__meta i { color: #b7e08a; }

/* ── 13 Footer ─────────────────────────────────────────────── */
.cc-footer { background: var(--purple-900); color: #d9c4e0; padding: clamp(3rem, 2rem + 3vw, 4.5rem) 0 2rem; font-size: .9375rem; }
.cc-footer__top {
  display: grid; gap: 2.25rem;
  grid-template-columns: 1.7fr repeat(3, 1fr) 1.3fr;
  padding-bottom: 2.5rem;
}
.cc-footer__mark { width: auto; height: 64px; margin-bottom: .9rem; }
.cc-footer__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0 0 .1rem; line-height: 1.25; }
.cc-footer__tagline { font-family: var(--font-display); font-style: italic; color: #b7e08a; margin: 0 0 .9rem; }
.cc-footer__blurb { color: #c5aecd; max-width: 34ch; }
.cc-footer__social { display: flex; gap: .5rem; list-style: none; margin: 1.1rem 0 0; padding: 0; }
.cc-footer__contactlist a { display: inline-block; padding: .12rem 0; }
.cc-footer__social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.05rem; text-decoration: none;
}
.cc-footer__social a:hover { background: var(--orange); color: var(--ink); }
.cc-footer__heading {
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #b7e08a; margin: 0 0 1rem;
}
.cc-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.cc-footer__col a { color: #d9c4e0; text-decoration: none; display: inline-block; padding: .2rem 0; }
.cc-footer__col a:hover { color: #fff; text-decoration: underline; }
.cc-footer__contactlist { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.cc-footer__contactlist li { display: flex; gap: .7rem; align-items: flex-start; }
.cc-footer__contactlist i { color: var(--orange); margin-top: .2rem; flex: none; }
.cc-footer__hours { display: block; }
.cc-footer__hours strong { color: #fff; font-weight: 700; }

.cc-footer__safeguards {
  display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 1.75rem 0;
}
.cc-footer__safeguard h2 {
  font-family: var(--font-body); font-size: .9375rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: .5rem; margin-bottom: .45rem;
}
.cc-footer__safeguard h2 i { color: var(--orange); }
.cc-footer__safeguard p { margin: 0; color: #c5aecd; }
.cc-footer__safeguard a { color: #fff; font-weight: 700; }

.cc-footer__acknowledgement {
  padding: 1.75rem 0; margin: 0; color: #b79dc0; font-size: .875rem; max-width: 90ch;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.cc-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center; padding-top: 1.5rem; font-size: .8125rem;
}
.cc-footer__legal { margin: 0; color: #b79dc0; }
.cc-footer__legallinks { display: flex; flex-wrap: wrap; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
.cc-footer__legallinks a { color: #b79dc0; text-decoration: none; display: inline-block; padding: .25rem 0; }
.cc-footer__legallinks a:hover { color: #fff; text-decoration: underline; }

.cc-totop {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid var(--purple-900); background: #fff; color: var(--purple-900);
  font-size: 1.15rem; cursor: pointer; box-shadow: var(--shadow-2);
}
.cc-totop:hover { background: var(--purple-900); color: #fff; }

/* ── 14 Motion ─────────────────────────────────────────────── */
.cc-reveal { opacity: 0; transform: translateY(18px); }
.cc-reveal.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .cc-reveal { opacity: 1; transform: none; }
  .cc-journey__line path { stroke-dashoffset: 0; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .cc-footer__top { grid-template-columns: 1.6fr 1fr 1fr; }
  .cc-footer__contact { grid-column: 2 / -1; }
}
@media (max-width: 1199px) {
  .cc-nav { display: none; }
  .cc-burger { display: block; }
  .cc-brand__img { height: 46px; }
  .cc-brand__name { font-size: 1.15rem; }
  :root { --header-h: 76px; }
}
@media (max-width: 991px) {
  .cc-hero__grid { grid-template-columns: 1fr; }
  .cc-hero__figure { max-width: 460px; margin-inline: auto; width: 100%; }
  .cc-split--wide { grid-template-columns: 1fr; }
  .cc-utility__link--email { display: none; }
}
@media (max-width: 767px) {
  /* Below this width the brand lockup plus the burger fill the bar,
     so the referral button steps aside. It is still the first thing
     in the mobile menu, and repeated in the hero. */
  .cc-header__cta .btn-cc { display: none; }
  .cc-utility__area, .cc-utility__sep { display: none; }
  .cc-utility__inner { justify-content: center; gap: .5rem 1.25rem; padding: .5rem 0; }
  .cc-footer__top { grid-template-columns: 1fr; }
  .cc-footer__contact { grid-column: auto; }
  .cc-step { grid-template-columns: 56px minmax(0, 1fr); gap: 1rem; }
  .cc-step__node { width: 56px; height: 56px; box-shadow: 0 0 0 6px var(--white); }
  .cc-section--mist .cc-step__node { box-shadow: 0 0 0 6px var(--mist); }
  .cc-step__num { font-size: 1.15rem; }
  .cc-journey__line { left: 0; width: 56px; }
  .cc-hero__quote { position: static; max-width: none; margin-top: -32px; }
  .cc-mega__list { grid-template-columns: 1fr; }
  .cc-actions .btn-cc, .cc-actions .btn-cc-outline { width: 100%; }
  .cc-cta__actions .btn { width: 100%; }
}
@media (max-width: 420px) {
  .cc-brand__img { height: 42px; }
  .cc-brand__sub { display: none; }
  .cc-hero__panel { border-radius: 140px 140px 24px 24px; }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .cc-utility, .cc-a11y, .cc-header, .cc-mobile, .cc-cta, .cc-totop, .cc-burger { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .cc-footer { background: none; color: #000; padding-top: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
