/* Supporting pages (Batch 4): About, Contact, Privacy Policy, Website Disclaimer.
   Loaded after the frozen tokens/base/components/pages stylesheets; only adds new classes.
   Same tokens, type scale, buttons and motion as the frozen pages. */

/* =====================================================================
   ABOUT
   ===================================================================== */
.hero--about .h1 { max-width: 14.5em; font-size: clamp(2.125rem, 1.3rem + 3vw, 3.5rem); line-height: 1.08; }
.hero--about .lead { max-width: 34rem; }
.hero--about .hero__split { align-items: center; }
@media (min-width: 900px) {
  .hero--about .hero__split { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

/* hero visual: an engineered operating model.
   Three light layers (healthcare expertise → enterprise-grade AI → proven operating model) start slightly offset, align, then an
   outcome surface resolves on top. One-time entrance (transitions, triggered by the frozen reveal observer); afterwards the
   composition is static. All geometry is in container-query units so it scales as one piece. Isometric plane = rotateX(58°) rotateZ(-40°). */
.om { container-type: inline-size; position: relative; width: 100%; aspect-ratio: 100 / 61; }
.js .om[data-reveal] { opacity: 1; transform: none; transition: none; }   /* the composition animates itself, not the wrapper */
.om__stage { position: absolute; left: 63.5cqw; top: 43cqw; width: 0; height: 0; transform-style: preserve-3d; transform: rotateX(58deg) rotateZ(-40deg); }
.om__p {
  --z: 0cqw; --t: 0s; --ox: 0cqw; --oy: 0cqw;
  position: absolute; left: -18.5cqw; top: -18.5cqw; width: 37cqw; height: 37cqw; border-radius: 2.5cqw; overflow: hidden;
  transform: translate3d(0, 0, var(--z)); transition: transform 1.05s cubic-bezier(0.2, 0.7, 0.2, 1) var(--t), opacity 0.7s ease var(--t);
  background-image: linear-gradient(rgba(11, 111, 220, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 111, 220, 0.09) 1px, transparent 1px);
  background-size: 4cqw 4cqw; background-position: -1px -1px;
}
.om__p--1 { --z: 0cqw;  --ox: -4cqw; --oy: 3cqw;  background-color: rgba(222, 236, 253, 0.92); box-shadow: inset 0 0 0 1px rgba(11, 111, 220, 0.16); }
.om__p--2 { --z: 10cqw;  --ox: 4.5cqw; --oy: -2.5cqw; --t: 0.16s; background-color: rgba(178, 208, 247, 0.62); box-shadow: inset 0 0 0 1px rgba(11, 111, 220, 0.22); }
.om__p--3 { --z: 20cqw; --ox: -3cqw; --oy: -4cqw; --t: 0.32s; background-color: rgba(96, 156, 240, 0.34); box-shadow: inset 0 0 0 1px rgba(11, 111, 220, 0.3); }
.om__p--4 {
  --z: 30cqw; --t: 1.2s; background-color: rgba(255, 255, 255, 0.94); background-image: none;
  box-shadow: inset 0 0 0 1px rgba(11, 111, 220, 0.5), 0 0 3cqw rgba(11, 111, 220, 0.18);
}
.om__p--4::after { content: ""; position: absolute; inset: 3.7cqw; border: 1px solid rgba(11, 111, 220, 0.28); border-radius: 1cqw; }
/* measurement ticks along the two front edges of the outcome surface */
.om__tk { position: absolute; pointer-events: none; opacity: 1; transition: opacity 0.6s ease 1.7s; }
.om__tk--b { left: 3.7cqw; right: 3.7cqw; bottom: 0; height: 1.6cqw; background: repeating-linear-gradient(90deg, rgba(11, 111, 220, 0.6) 0 1px, transparent 1px 2.35cqw); }
.om__tk--l { top: 3.7cqw; bottom: 3.7cqw; left: 0; width: 1.6cqw; background: repeating-linear-gradient(180deg, rgba(11, 111, 220, 0.6) 0 1px, transparent 1px 2.35cqw); }
/* labels: fine type, each on a hairline that meets its layer's left corner */
.om__labels { position: absolute; inset: 0; pointer-events: none; }
.om__lb {
  position: absolute; top: calc(var(--y) * 1cqw); right: calc(100cqw - 36.6cqw); transform: translateY(-50%);
  padding-right: 4.2cqw; font-size: max(10.5px, 2.35cqw); font-weight: 600; letter-spacing: 0.005em; line-height: 1.2; white-space: nowrap; text-align: right; color: var(--navy);
  transition: opacity 0.6s ease var(--lt, 0.5s), translate 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) var(--lt, 0.5s);
}
.om__lb::after { content: ""; position: absolute; right: 0; top: 50%; width: 3.6cqw; height: 1px; background: var(--blue-300); }
.om__lb::before { content: ""; position: absolute; right: -0.35cqw; top: 50%; width: 5px; height: 5px; margin-top: -2.5px; border-radius: 50%; background: #fff; border: 1.5px solid var(--blue-300); }
.om__lb:nth-child(4) { --lt: 0.45s; } .om__lb:nth-child(3) { --lt: 0.6s; } .om__lb:nth-child(2) { --lt: 0.75s; }
.om__lb--out { --lt: 1.65s; color: var(--blue-hover); font-weight: 650; }
.om__lb--out::before { background: var(--blue); border-color: var(--blue); }
/* entrance start state — only when JS will run the sequence; without JS the final composition is shown */
.js .om:not(.is-in) .om__p { opacity: 0; transform: translate3d(var(--ox), var(--oy), var(--z)); }
.js .om:not(.is-in) .om__p--4 { transform: translate3d(0, 0, calc(var(--z) + 7cqw)); }
.js .om:not(.is-in) .om__tk { opacity: 0; }
.js .om:not(.is-in) .om__lb { opacity: 0; translate: -1.6cqw 0; }
@media (prefers-reduced-motion: reduce) {
  .om__p, .om__lb, .om__tk { transition: none; }
  .js .om:not(.is-in) .om__p { opacity: 1; transform: translate3d(0, 0, var(--z)); }
  .js .om:not(.is-in) .om__lb { opacity: 1; translate: 0 0; }
  .js .om:not(.is-in) .om__tk { opacity: 1; }
}
.hero--about .hero__split { align-items: center; }
@media (min-width: 900px) {
  .hero--about .hero__split { grid-template-columns: minmax(0, 6.2fr) minmax(0, 5.8fr); }
}

/* what makes us different — editorial rows on a spine, typography does the work */
.diff { --dy: clamp(20px, 2.3vw, 32px); padding-block: clamp(64px, 6.7vw, 96px); }
.diff__in { display: grid; gap: 32px; }
.diff__head .h2 { max-width: 9em; }
.diff__list { position: relative; border-top: 1px solid rgba(12, 26, 75, 0.14); }
.diff__list li {
  position: relative; padding: var(--dy) 0 var(--dy) 36px; border-bottom: 1px solid rgba(12, 26, 75, 0.1);
  font-size: clamp(1.375rem, 1.05rem + 1.3vw, 2.125rem); font-weight: 500; line-height: 1.22; letter-spacing: -0.02em; color: var(--navy); text-wrap: balance;
}
.diff__list li::before { content: ""; position: absolute; left: 0; top: calc(var(--dy) + 0.61em); width: 14px; height: 2px; border-radius: 1px; background: var(--blue-300); }   /* neutral list mark — identical on every row, no spine, no progress state */
@media (min-width: 900px) {
  .diff__in { grid-template-columns: minmax(0, 3.6fr) minmax(0, 8.4fr); gap: clamp(32px, 4vw, 56px); align-items: start; }
  .diff__head { position: sticky; top: calc(var(--header-h) + 32px); padding-top: var(--dy); }   /* heading top meets the first statement */
}

/* proven at scale */
.proof-sec { padding-block: var(--section-y); background: linear-gradient(180deg, var(--blue-50) 0%, #f9fbff 70%, #fff 100%); border-top: 1px solid rgba(214, 227, 245, 0.6); }
.proof-sec__grid { display: grid; gap: clamp(36px, 5vw, 56px); margin-top: var(--head-gap); align-items: center; }
.proof-sec__head .h2 { max-width: 12em; }

.sys-wrap { min-width: 0; padding: clamp(18px, 2.4vw, 30px); background: #fff; border: 1px solid rgba(206, 222, 244, 0.7); border-radius: var(--r-lg); box-shadow: 0 34px 64px -44px rgba(11, 111, 220, 0.3); }
.sys { display: grid; gap: 12px; }
.sys__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(56px, 1.1fr) minmax(0, 1fr); align-items: center; gap: clamp(8px, 1.6vw, 16px); }
.sys__in, .sys__out { display: flex; align-items: center; min-height: 52px; padding: 0 clamp(10px, 1.6vw, 18px); border-radius: var(--r-sm); font-size: clamp(0.9375rem, 0.85rem + 0.35vw, 1.0625rem); font-weight: 600; color: var(--navy); line-height: 1.2; }
.sys__in { background: var(--blue-50); box-shadow: inset 0 0 0 1px rgba(206, 222, 244, 0.8); }
.sys__out { gap: 10px; background: var(--green-50); color: #0c6a49; }
.sys__out::before { content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 10px no-repeat; }
@media (max-width: 479.98px) {
  .sys__row { grid-template-columns: 104px minmax(20px, 1fr) 138px; gap: 6px; }
  .sys__in, .sys__out { padding: 0 10px; font-size: 0.9375rem; }
  .sys__out { gap: 8px; }
}
.sys__line { position: relative; height: 26px; }
.sys__line::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, var(--blue-200), var(--blue-300), var(--blue-200)); }
.sys__mark { position: absolute; left: 50%; top: 50%; translate: -50% -50%; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: #fff; box-shadow: 0 0 0 1px rgba(214, 227, 245, 0.9), 0 6px 14px -6px rgba(11, 111, 220, 0.3); }
.sys__mark img { width: 14px; height: auto; }
.sys__dot { position: absolute; top: 50%; left: 0; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: var(--blue); opacity: 0; }
.js .sys-wrap.is-in .sys__dot { animation: sysdot 1.7s cubic-bezier(0.45, 0, 0.35, 1) 1 both; animation-delay: var(--dl, 0.4s); }   /* one pass, then static */
@keyframes sysdot { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: calc(100% - 6px); opacity: 0; } }

/* metrics: one lead figure + three supporting rows on hairlines (hierarchy, not hype) */
.proof { min-width: 0; }
.proof__lead { padding-bottom: 22px; border-bottom: 1px solid rgba(12, 26, 75, 0.16); }
.proof dt { font-weight: 650; letter-spacing: -0.035em; line-height: 1; color: var(--navy); }
.proof dd { margin: 0; color: var(--ink); }
.proof__lead dt { font-size: clamp(3rem, 2.2rem + 3vw, 4.5rem); }
.proof__lead dd { margin-top: 10px; font-size: 1.1875rem; font-weight: 550; color: var(--navy); }
.proof__row { display: grid; grid-template-columns: minmax(4.2ch, 6.5rem) minmax(0, 1fr); align-items: baseline; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(12, 26, 75, 0.1); }
.proof__row dt { font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem); }
.proof__row dd { font-size: 1.0625rem; }
@media (max-width: 899.98px) {
  .proof-sec__grid { gap: 22px; }   /* system visual + metrics read as one composition when stacked */
}
@media (min-width: 900px) {
  .proof-sec__grid { grid-template-columns: minmax(0, 6.2fr) minmax(0, 5.8fr); gap: clamp(48px, 6vw, 96px); }
}

/* company / contact close — reuses the frozen navy .trust section */
.trust--about .trust__h { max-width: 14em; }
/* quiet close: deep navy, the hero's stacked planes as a barely-there echo on the right (static; no rings, no hub, no wires) */
.trust--about { background: #0c1d55; }
.trust--about .trust__bg { background: linear-gradient(180deg, #0e2159 0%, #0b1b50 100%); }
.trust--about .trust__bg::after { content: none; }
.tl { position: absolute; inset: 0 0 0 auto; width: 100%; z-index: -1; pointer-events: none; overflow: hidden; container-type: inline-size; }
.tl__stage { position: absolute; left: 86cqw; top: 82%; width: 0; height: 0; transform-style: preserve-3d; transform: rotateX(58deg) rotateZ(-40deg); }
.tl__p {
  position: absolute; left: -32cqw; top: -32cqw; width: 64cqw; height: 64cqw; border-radius: 3cqw; transform: translate3d(0, 0, var(--z, 0cqw));
  background-color: rgba(143, 192, 255, 0.022); box-shadow: inset 0 0 0 1px rgba(143, 192, 255, 0.07);
  background-image: linear-gradient(rgba(143, 192, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(143, 192, 255, 0.032) 1px, transparent 1px); background-size: 6cqw 6cqw; background-position: -1px -1px;
}
.tl__p--2 { --z: 9cqw; background-color: rgba(143, 192, 255, 0.03); box-shadow: inset 0 0 0 1px rgba(143, 192, 255, 0.09); }
.tl__p--3 { --z: 18cqw; background-color: rgba(143, 192, 255, 0.038); box-shadow: inset 0 0 0 1px rgba(143, 192, 255, 0.11); }
.tl__p--4 { --z: 27cqw; background-color: rgba(190, 218, 255, 0.05); background-image: none; box-shadow: inset 0 0 0 1px rgba(190, 218, 255, 0.16); }
@media (min-width: 900px) {
  .tl { width: min(58%, 880px); }
  .tl__stage { left: 71cqw; top: 56%; }
  .tl__p { left: -25cqw; top: -25cqw; width: 50cqw; height: 50cqw; background-size: 5cqw 5cqw; border-radius: 2.4cqw; }
  .tl__p--2 { --z: 7cqw; } .tl__p--3 { --z: 14cqw; } .tl__p--4 { --z: 21cqw; }
}
.trust__co { margin: 30px 0 34px; color: #c3cfe8; font-size: 1.0625rem; line-height: 1.6; }
.trust__co p { margin-top: 8px; }
.addr { font-style: normal; }
.addr .ln { display: block; }
.addr--dark { color: #c3cfe8; }
.mail--dark { color: #8fc0ff; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(143, 192, 255, 0.4); text-underline-offset: 4px; transition: color 0.2s; }
.mail--dark:hover { color: #fff; text-decoration-color: currentColor; }

/* =====================================================================
   CONTACT — one contained assessment surface on the hero atmosphere
   Desktop: tonal left column (intro · what happens next · contact details) + form column, one bordered panel.
   Mobile order: eyebrow · heading · lead · form · what happens next · contact details.
   ===================================================================== */
.hero--contact { padding-block: clamp(24px, 3.4vw, 56px) clamp(48px, 5.6vw, 88px); border-bottom: 0; }
.assess { display: grid; grid-template-areas: "intro" "form" "next" "details"; text-align: left; }
.assess__intro { grid-area: intro; padding: 4px 0 24px; }
.assess__form { grid-area: form; min-width: 0; }
.assess__next { grid-area: next; margin-top: 34px; }
.assess__details { grid-area: details; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(12, 26, 75, 0.12); }
.hero--contact .h1 { max-width: 11em; margin-inline: 0; font-size: clamp(2.125rem, 1.3rem + 3.2vw, 3.5rem); }
.hero--contact .lead { margin: 20px 0 0; max-width: 28rem; }
.assess__h { font-size: 1.1875rem; font-weight: 650; letter-spacing: -0.01em; color: var(--navy); }
.steps { margin-top: 10px; }
.steps li { display: grid; grid-template-columns: 2rem minmax(0, 1fr); align-items: baseline; padding: 12px 0; border-top: 1px solid rgba(12, 26, 75, 0.09); font-size: 1.0625rem; font-weight: 500; line-height: 1.35; color: var(--navy); counter-increment: st; }
.steps { counter-reset: st; }
.steps li::before { content: counter(st); font-size: 0.9375rem; font-weight: 650; color: var(--blue-hover); font-variant-numeric: tabular-nums; }
.assess__details .addr { margin-top: 10px; font-size: 1.0625rem; line-height: 1.65; color: var(--ink); }
.assess__details .addr .ln:first-child { font-weight: 650; color: var(--navy); }
.contact__mail { margin-top: 10px; }
.contact__mail a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 650; color: var(--blue-hover); text-decoration: underline; text-decoration-color: rgba(10, 92, 184, 0.35); text-underline-offset: 4px; transition: text-decoration-color 0.2s; }
.contact__mail a:hover { text-decoration-color: currentColor; }

@media (min-width: 900px) {
  .assess {
    position: relative; isolation: isolate; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); grid-template-rows: auto auto 1fr;
    grid-template-areas: "intro form" "next form" "details form";
    background: #fff; border: 1px solid rgba(206, 222, 244, 0.9); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 1px 2px rgba(12, 26, 75, 0.03), 0 46px 90px -56px rgba(11, 111, 220, 0.4);
  }
  .assess::before {   /* tonal column surface behind intro / next / details */
    content: ""; z-index: -1; grid-column: 1; grid-row: 1 / span 3;
    background: linear-gradient(180deg, #f3f8ff 0%, #e9f2fe 100%); border-right: 1px solid rgba(206, 222, 244, 0.9);
  }
  .assess { --pad: clamp(28px, 3.2vw, 44px); }
  .assess__intro { padding: calc(var(--pad) - 6px) var(--pad) 0; }
  .assess__next { margin: 24px var(--pad) 0; padding-top: 22px; border-top: 1px solid rgba(12, 26, 75, 0.1); }
  .assess__details { margin: 22px var(--pad) 0; padding: 22px 0 calc(var(--pad) - 8px); }
  .assess__form { display: flex; align-items: stretch; padding: var(--pad); }
  .cform { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 2.4vw, 34px) clamp(32px, 3.4vw, 48px); }
}

/* the form — larger, calm, generous; inputs white on a blue-white surface */
.cform { width: 100%; padding: clamp(22px, 2.6vw, 34px); background: #f9fbff; border: 1px solid rgba(206, 222, 244, 0.9); border-radius: var(--r-md); box-shadow: 0 1px 2px rgba(12, 26, 75, 0.03), 0 26px 50px -40px rgba(11, 111, 220, 0.3); }
.cform__req { margin-bottom: 30px; font-size: 0.875rem; color: var(--ink-muted); }
.fld + .fld { margin-top: 36px; }
.fld label { display: block; margin-bottom: 12px; font-size: 1rem; font-weight: 650; color: var(--navy); }
.fld input {
  display: block; width: 100%; height: 62px; padding: 0 18px; font: inherit; font-size: 1.0625rem; color: var(--navy);
  background: #fff; border: 1px solid #c7d6ec; border-radius: var(--r-sm); appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.fld input:hover { border-color: #a9c0e2; }
.fld input:focus, .fld input:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 111, 220, 0.16); }
.fld input[aria-invalid="true"] { border-color: #b42318; box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1); }
.fld__err { margin-top: 8px; font-size: 0.9375rem; font-weight: 550; line-height: 1.4; color: #b42318; }
.cform__btn { width: 100%; min-height: 62px; margin-top: 44px; font-size: 1.0625rem; }
.cform__note { margin-top: 24px; font-size: 0.875rem; line-height: 1.55; color: var(--ink-muted); }   /* visually secondary */
.cform__status { margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); background: #fff; box-shadow: inset 0 0 0 1px rgba(206, 222, 244, 0.9); font-size: 0.9375rem; line-height: 1.5; color: var(--navy); }
.cform__status a { color: var(--blue-hover); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 599.98px) {
  .assess__intro { padding-bottom: 22px; }
  .cform { padding: 22px; }
  .cform__req { margin-bottom: 18px; }
  .fld + .fld { margin-top: 18px; }
  .fld label { margin-bottom: 7px; }
  .fld input { height: 54px; }
  .cform__btn { min-height: 56px; margin-top: 24px; }
  .cform__note { margin-top: 20px; }
  .assess__next { margin-top: 32px; }
  .assess__details { margin-top: 28px; }
}

/* =====================================================================
   LEGAL (Privacy Policy, Website Disclaimer) — calm, readable, no marketing furniture
   ===================================================================== */
.lg-hero { padding-block: clamp(36px, 4.4vw, 60px) clamp(28px, 3.4vw, 44px); text-align: left; border-bottom: 1px solid rgba(214, 227, 245, 0.8); }
.lg-hero .lg-h1 { max-width: none; margin-inline: 0; font-size: clamp(2.125rem, 1.4rem + 2.8vw, 3.25rem); line-height: 1.08; }
.lg-hero__in { max-width: calc(820px + var(--gutter) * 2); }   /* title shares the body's left edge */
@media (min-width: 1100px) {
  .lg-hero--toc .lg-hero__in { max-width: calc(250px + clamp(48px, 5vw, 80px) + 820px + var(--gutter) * 2); }   /* ...or the contents column */
}
.lg-dates { display: flex; flex-wrap: wrap; gap: 6px 36px; margin-top: 22px; }
.lg-dates div { display: flex; gap: 8px; align-items: baseline; }
.lg-dates dt { font-size: 0.9375rem; font-weight: 650; color: var(--navy); }
.lg-dates dd { margin: 0; font-size: 0.9375rem; color: var(--ink); }

.lg { display: block; padding-block: clamp(40px, 5vw, 72px) var(--section-y); }
.lg-body { max-width: 820px; margin-inline: auto; font-size: 1.0625rem; line-height: 1.75; color: #33406b; }
.lg-body p, .lg-body ul, .lg-body address { margin-top: 1.05em; }
.lg-intro { padding-bottom: 8px; font-size: 1.1875rem; line-height: 1.7; color: var(--navy); }
.lg-intro p:first-child { margin-top: 0; }
.lg-sec { margin-top: clamp(36px, 4vw, 52px); padding-top: clamp(28px, 3.4vw, 40px); border-top: 1px solid rgba(12, 26, 75, 0.1); scroll-margin-top: calc(var(--header-h) + 20px); }
.lg-sec h2 { font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; color: var(--navy); }
.lg-n { color: var(--blue); font-variant-numeric: tabular-nums; font-weight: 650; margin-right: 0.15em; }
.lg-sec p:first-of-type, .lg-sec h2 + * { margin-top: 1em; }
.lg-sec h3 { margin-top: 1.9em; font-size: 1.125rem; font-weight: 650; line-height: 1.35; letter-spacing: -0.005em; color: var(--navy); }
.lg-sec h3 + * { margin-top: 0.6em; }
.lg-list { display: grid; gap: 0.55em; padding-left: 0; }
.lg-list li { position: relative; padding-left: 24px; }
.lg-list li::before { content: ""; position: absolute; left: 4px; top: 0.78em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-300); }
.lg-addr { font-style: normal; color: var(--navy); font-weight: 550; }
.lg-addr .ln { display: block; }
.lg-body a { color: var(--blue); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(11, 111, 220, 0.35); text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.lg-body a:hover { text-decoration-color: currentColor; }

/* table of contents — Disclaimer only (14 sections): sticky on wide screens, collapsible on narrow */
.lg-toc { margin-bottom: 36px; }
.lg-toc__d { border: 1px solid rgba(206, 222, 244, 0.9); border-radius: var(--r-md); background: #fff; }
.lg-toc summary { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 18px; cursor: pointer; list-style: none; font-size: 0.9375rem; font-weight: 650; color: var(--navy); }
.lg-toc summary::-webkit-details-marker { display: none; }
.lg-toc summary::after { content: ""; width: 8px; height: 8px; border: solid var(--navy); border-width: 0 1.75px 1.75px 0; transform: rotate(45deg); transition: transform 0.3s var(--ease); }
.lg-toc details[open] summary::after { transform: rotate(-135deg); }
.lg-toc ol { padding: 4px 18px 16px; }
.lg-toc a { display: flex; gap: 6px; padding: 8px 0; font-size: 0.9375rem; line-height: 1.35; color: var(--ink); transition: color 0.2s; }
.lg-toc a:hover { color: var(--blue); }
@media (min-width: 1100px) {
  .lg--toc { display: grid; grid-template-columns: 250px minmax(0, 820px); gap: clamp(48px, 5vw, 80px); justify-content: center; }
  .lg--toc .lg-toc { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; margin-bottom: 0; max-height: calc(100vh - var(--header-h) - 56px); overflow-y: auto; }
  .lg-toc__d { border: 0; border-left: 1px solid rgba(12, 26, 75, 0.12); border-radius: 0; background: none; }
  .lg-toc summary { min-height: 0; padding: 0 0 10px 16px; cursor: default; pointer-events: none; font-size: 0.75rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
  .lg-toc summary::after { display: none; }
  .lg-toc ol { padding: 0 0 0 16px; }
  .lg-toc a { align-items: center; min-height: 40px; padding: 4px 0; font-size: 0.875rem; }
}
