/* ======================================================================
   VN site stylesheet ported from gnl-site-v3.2-current.css, cycle 11
   vn-visual-rebuild, 2026-05-12; faithful port of the production GNL VN
   section to vn-wp-prod.

   Discipline: this stylesheet ports the canonical .vn-* classes verbatim
   from the inline <style> blocks of the rebuilt reference pages
   (page-consultancy-rebuilt.html, page-7-rebuilt.html,
   page-14283-rebuilt.html, page-3961-rebuilt.html) plus the per-page-ID
   full-width Astra override from gnl-site-v3.2-current.css lines 2244-2371,
   converted to a site-wide rule for vn-wp-prod (every page on
   vn-wp-prod is a VN page).

   Bands canon: .vn-light, .vn-soft, .vn-dark, .vn-dark-plain, .vn-warm.
   Pseudo-element radial-glow is mechanically scoped to .vn-dark and
   .vn-dark-plain only. Never on .vn-light, .vn-soft, or .vn-warm
   (cycle-11 reopen trigger (j)).

   The cycle-9 deployed thin-palette classes (.vn-wrap, .vn-card,
   .vn-callout, .vn-cta, .vn-accept, .vn-refuse, .vn-section,
   .vn-continue, .vn-readmore) are also carried forward so the 14
   rebuilt page bodies can adopt the four-band rhythm without losing
   the cycle-9 deployed elements that already ship.

   No new design language; no marketing-register class names; no sixth
   band variant.
====================================================================== */


/* ======================================================================
   1. CSS variables
====================================================================== */
:root {
  /* canonical VN palette (port from page-consultancy-rebuilt.html line 22-28) */
  --blue: #006CFF;
  --blue-light: #EAF3FF;
  --navy: #123A63;
  --navy-dark: #0d1f35;
  --text: #111111;
  --muted: #5b6776;
  --line: #d7e6f5;
  --soft: #f4f8fc;
  --white: #ffffff;
  --teal: #0891b2;
  --teal-light: #e0f7fa;
  --refuse: #c0392b;
  --refuse-light: #ffe9e6;
  --accept: #0e7a5c;
  --accept-light: #e0f5ee;

  /* assessment-form palette (port from page-14283-rebuilt.html line 21-35) */
  --vn-navy-900: #0d1f35;
  --vn-navy-700: #123A63;
  --vn-navy-500: #1a4a7a;
  --vn-blue-500: #006CFF;
  --vn-blue-100: #EAF3FF;
  --vn-slate-card: #cbd5e1;
  --vn-slate-border: #94a3b8;
  --vn-slate-deeper: #b4c0cf;
  --vn-text: #111;
  --vn-muted: #5b6776;
  --vn-soft: #f4f8fc;
  --vn-red-600: #dc2626;
  --vn-green-600: #16a34a;
}


/* ======================================================================
   2. Reset and base typography
====================================================================== */
.vn-assess-page *,
.vn-assess-page *::before,
.vn-assess-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); line-height: 1.6; background: #fff; }


/* ======================================================================
   3. Band system canon: five canonical variants
   .vn-light, .vn-soft, .vn-dark, .vn-dark-plain, .vn-warm.

   Pseudo-element radial-glow ::before is mechanically scoped to .vn-dark
   and .vn-dark-plain only. Cycle-11 reopen trigger (j) gates any drop
   on .vn-dark blocks; cluster-specific banned move 7 gates any sixth
   variant.
====================================================================== */
.vn-inner { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.vn-light  { padding: 44px 0; background: #dde6ee; }  /* slate-grey, deeper than pale */
.vn-soft   { padding: 44px 0; background: #c6d2dd; }  /* one shade darker for visual rhythm */
.vn-dark   {
  padding: 80px 0;
  background: linear-gradient(160deg, #0d1f35 0%, #123a63 55%, #1a4a7a 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.vn-dark::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,108,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.vn-dark-plain {
  padding: 80px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.vn-dark-plain::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,108,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.vn-warm {
  padding: 64px 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  color: var(--navy);
}

/* ----------------------------------------------------------------------
   3b. Band system, mobile (cycle 61, 14 May 2026)

   The page HTML inlines grid-template-columns on .vn-grid, so the 2-col
   card grids never collapsed on a phone. !important is needed to win
   over the inline style. Band padding and gutters also trimmed so the
   bands breathe on a narrow screen. Page-specific overrides
   (body.page-id-7 intake, body.page-id-83 lactate) keep their own
   higher-specificity rules and are unaffected.
---------------------------------------------------------------------- */
@media (max-width: 720px) {
  .vn-inner { padding: 0 18px; }

  .vn-dark, .vn-dark-plain { padding: 52px 0; }
  .vn-light, .vn-soft { padding: 34px 0; }
  .vn-warm { padding: 44px 0; }

  /* Collapse every multi-column card grid to a single column. */
  .vn-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }

  /* Section headings + hero frame breathe on small screens. */
  .light-title { font-size: clamp(22px, 6.4vw, 30px); }
  .vn-hero-frame { padding: 18px 20px; margin-top: 22px; }

  /* CTAs go full-width and stack for easy tap targets. */
  .vn-cta,
  .vn-cta-secondary {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    text-align: center;
  }
  .vn-cta + .vn-cta,
  .vn-cta + .vn-cta-secondary,
  .vn-cta-secondary + .vn-cta { margin-top: 10px; }

  /* Agent accordion panels: trim the inline padding a touch. */
  .vn-agent-list details { padding: 13px 16px !important; }
}


/* ======================================================================
   4. Hero block: eyebrow + title + strapline + lead + pivot
   Hero word ceilings per Marketing §4: eyebrow <=6, title <=10,
   strapline <=15, lead <=40, pivot <=20.
====================================================================== */
.vn-hero { text-align: center; }
.vn-hero-frame {
  font-size: 17px;
  line-height: 1.55;
  color: #ffffff;
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,0.32);
  border-left: 4px solid #7eb8e8;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}
.vn-hero-frame p { color: #ffffff; font-size: 17px; font-weight: 500; margin: 0; }
.vn-hero-frame strong { color: #7eb8e8; font-weight: 700; }
.vn-hero-frame em      { color: #7eb8e8; font-style: italic; }

.vn-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-align: center;
}
.vn-hero-title span { color: #7eb8e8; }

.vn-hero-byline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin: 0 auto 12px;
  max-width: 760px;
  line-height: 1.3;
}

.vn-hero-lead {
  font-size: 17px;
  line-height: 1.55;
  color: #c5daf2;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}
.vn-hero-lead em { color: #9fc2e8; font-style: italic; }

.vn-hero-strapline {
  font-size: 18px;
  line-height: 1.55;
  color: #c5daf2;
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}
.vn-hero-strapline em { color: #9fc2e8; font-style: italic; }
.vn-hero-strapline strong { color: #fff; }

.vn-hero-pivot {
  font-size: 16px;
  line-height: 1.7;
  color: #9fc2e8;
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  font-style: italic;
}


/* ======================================================================
   5. Eyebrows, kickers, rules, chips
====================================================================== */
.vn-kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7eb8e8;
  margin-bottom: 16px;
  text-align: center;
}

.vn-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(0,108,255,0.18);
  border: 1px solid rgba(0,108,255,0.42);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.vn-rule {
  width: 64px;
  height: 3px;
  background: var(--blue);
  border: 0;
  border-radius: 2px;
  margin: 18px auto 22px;
}

.vn-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.vn-chips .chip {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  color: #c5daf2;
  font-weight: 500;
}


/* ======================================================================
   6. Dark-band section headings + body
====================================================================== */
.dark-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7eb8e8;
  margin-bottom: 12px;
}
.dark-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.dark-title span { color: #7eb8e8; }
.dark-lead {
  font-size: 17px;
  color: #c5daf2;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 820px;
}
.dark-body p {
  font-size: 16px;
  color: #c5daf2;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 820px;
}
.dark-body strong { color: #fff; }
.dark-body em { color: #9fc2e8; }
.dark-body a { color: #7eb8e8; text-decoration: underline; }
.dark-body a:hover { color: #fff; }


/* ======================================================================
   7. Light-band section headings + body
====================================================================== */
.light-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.light-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}
.light-lead {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 760px;
  font-weight: 500;
}
.light-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 820px;
}
.light-body strong { color: var(--navy); }
.light-body em { color: var(--navy); font-style: italic; }
.light-body a { color: var(--blue); text-decoration: underline; }
.light-body a:hover { color: var(--navy-dark); }

/* Cycle 25: stop white-on-white links in any light-section body copy. Any
   <a> inside a <p> on a light/soft/warm section (or in an editorial card)
   renders as VN-blue solid by default. Excludes button-style anchors. */
.vn-light p a:not(.vn-cta):not(.contact-link),
.vn-soft p a:not(.vn-cta):not(.contact-link),
.vn-warm p a:not(.vn-cta):not(.contact-link),
.vn-card p a,
.vn-accept p a,
.vn-refuse p a,
.vn-refuse-plain p a,
.gnl-card p a,
.gnl-callout p a,
.gnl-feature-box p a {
  color: #006CFF;
  text-decoration: underline;
  font-weight: 600;
}
.vn-light p a:not(.vn-cta):not(.contact-link):hover,
.vn-soft p a:not(.vn-cta):not(.contact-link):hover,
.vn-card p a:hover,
.vn-accept p a:hover,
.vn-refuse p a:hover,
.vn-refuse-plain p a:hover,
.gnl-card p a:hover,
.gnl-callout p a:hover,
.gnl-feature-box p a:hover {
  color: #0058d4;
}


/* ======================================================================
   8. Pull-quote, for the four verbatim must-carry quotes
   (lactate-yes, IOB-honest, AID-lockstep, CGM-non-diabetes-no).
   Refuse variant uses crimson left bar; accept variant uses VN blue.
====================================================================== */
.pull-quote {
  margin: 32px 0 12px;
  border-radius: 0 16px 16px 0;
  padding: 32px 40px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  box-shadow: 0 6px 28px rgba(0,108,255,0.10);
  position: relative;
}
.pull-quote.refuse {
  border-left-color: var(--refuse);
  box-shadow: 0 6px 28px rgba(192,57,43,0.10);
}
.pull-quote__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pull-quote.refuse .pull-quote__label { color: var(--refuse); }
.pull-quote__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue);
}
.pull-quote.refuse .pull-quote__label::before { background: var(--refuse); }
.pull-quote__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.2px;
  margin-bottom: 0;
}
.pull-quote__text::before {
  content: '"';
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  color: var(--blue);
  line-height: 0;
  vertical-align: -18px;
  margin-right: 6px;
  opacity: 0.55;
}
.pull-quote__text::after {
  content: '"';
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  color: var(--blue);
  line-height: 0;
  vertical-align: -18px;
  margin-left: 6px;
  opacity: 0.55;
}
.pull-quote.refuse .pull-quote__text::before,
.pull-quote.refuse .pull-quote__text::after { color: var(--refuse); }
.pull-quote__context {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.85;
}
.pull-quote__context strong { color: var(--navy); }
.pull-quote__context a { color: var(--blue); text-decoration: underline; }
.pull-quote__cta { margin-top: 16px; }
.pull-quote__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.pull-quote__cta a:hover { background: #0058d4; }


/* ======================================================================
   9. Filter / services / refusal blocks
====================================================================== */
.filter-block {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 24px 0;
}
.filter-block__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 14px;
}
.filter-block p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.filter-block p:last-child { margin-bottom: 0; }
.filter-block strong { color: var(--navy); }

.services-stack { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 12px; }
.service-block {
  background: #fff;
  border: 1px solid rgba(18, 58, 99, 0.30);
  border-top: 3px solid #006CFF;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 14px 32px rgba(13, 31, 53, 0.20), 0 4px 10px rgba(13, 31, 53, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13, 31, 53, 0.26), 0 6px 14px rgba(13, 31, 53, 0.14);
  border-color: rgba(0, 108, 255, 0.40);
}
.service-block__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 6px;
}
.service-block__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-block p { font-size: 15.5px; color: var(--muted); line-height: 1.85; margin: 0; }
.service-block p + p { margin-top: 12px; }

.refusal-block {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--refuse);
  border-radius: 0 16px 16px 0;
  padding: 32px 36px;
  margin: 28px 0 12px;
  box-shadow: 0 4px 22px rgba(192,57,43,0.07);
}
.refusal-block__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--refuse);
  margin-bottom: 14px;
}
.refusal-block__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.3;
}
.refusal-block__lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.refusal-list { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 8px; }
.refusal-item {
  padding: 14px 18px;
  background: rgba(192,57,43,0.05);
  border-left: 3px solid var(--refuse);
  border-radius: 0 10px 10px 0;
}
.refusal-item__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--refuse);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.refusal-item__body { font-size: 14.5px; color: var(--navy); line-height: 1.7; }
.refusal-block__close {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}


/* ======================================================================
   10. Intro, teaser, thanks, path banner
====================================================================== */
.vn-intro {
  font-size: 15px;
  color: var(--vn-navy-700);
  margin: 0 0 26px;
  line-height: 1.7;
}

.vn-teaser {
  background: rgba(0,108,255,0.12);
  border: 1px solid rgba(0,108,255,0.28);
  border-radius: 16px;
  padding: 36px 40px;
}
.vn-teaser__label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7eb8e8;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vn-teaser__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 7px;
  background: var(--blue);
  border-radius: 4px;
  flex-shrink: 0;
}
.vn-teaser__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.vn-teaser__text {
  font-size: 15px;
  color: #c5daf2;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 8px;
}
.vn-teaser__quote {
  font-size: 13px;
  color: #7eb8e8;
  font-style: italic;
  margin-bottom: 24px;
}

.vn-thanks { text-align: center; padding: 24px 0 8px; }
.vn-thanks h2 {
  font-size: 26px;
  color: var(--vn-navy-900);
  margin-bottom: 14px;
  font-weight: 900;
}
.vn-thanks p {
  color: var(--vn-navy-700);
  max-width: 520px;
  margin: 0 auto 12px;
  font-size: 15px;
}
.vn-thanks a { color: var(--vn-blue-500); }

.vn-path-banner {
  background: var(--vn-blue-100);
  border: 1px solid var(--vn-slate-border);
  color: var(--vn-navy-900);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.vn-path-banner strong { color: var(--vn-navy-900); }
.vn-path-banner button {
  color: var(--vn-blue-500);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
}


/* ======================================================================
   11. Navigation, paddles, three-paddle entry chooser
   (port from page-14283-rebuilt.html lines 174-211)
====================================================================== */
.vn-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.vn-paddles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 4px 0 26px;
}
.vn-paddle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  padding: 18px 18px 16px;
  background: white;
  border: 1.5px solid var(--vn-slate-border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--vn-text);
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s, background 0.15s;
}
.vn-paddle:hover {
  border-color: var(--vn-blue-500);
  background: var(--vn-blue-100);
  box-shadow: 0 4px 14px rgba(0,108,255,0.18);
  transform: translateY(-1px);
}
.vn-paddle:focus-visible {
  outline: none;
  border-color: var(--vn-blue-500);
  box-shadow: 0 0 0 3px rgba(0,108,255,0.22);
}
.vn-paddle--active {
  border-color: var(--vn-blue-500);
  background: var(--vn-blue-100);
  box-shadow: 0 4px 16px rgba(0,108,255,0.24);
}
.vn-paddle--grace {} /* identity hook; styling inherits from .vn-paddle */
.vn-paddle--vn {}    /* identity hook; styling inherits from .vn-paddle */
.vn-paddle__meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--vn-blue-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.vn-paddle__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--vn-navy-900);
  line-height: 1.3;
  margin: 2px 0 4px;
}
.vn-paddle__desc { color: var(--vn-muted); font-size: 13px; flex-grow: 1; }
.vn-paddle__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--vn-blue-500);
  margin-top: 10px;
  letter-spacing: 0.3px;
}


/* ======================================================================
   12. Form architecture, port from page-14283-rebuilt.html lines 74-153
   (43 .vn-form class hits; the assessment-form archetype)
====================================================================== */
.vn-assess-page {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
.vn-assess-page h1,
.vn-assess-page h2 { font-family: 'Montserrat', sans-serif; }

.vn-form-section { padding: 48px 20px 64px; }
.vn-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--vn-slate-card);
  padding: 36px 36px 40px;
  border-radius: 14px;
  border-top: 4px solid var(--vn-blue-500);
  box-shadow: 0 16px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  color: var(--vn-text);
}
.vn-form-card .vn-inner { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }
.vn-form-step-meta {
  font-size: 11px;
  font-weight: 800;
  color: var(--vn-blue-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.vn-form fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.vn-form legend {
  font-size: 16px;
  font-weight: 800;
  color: var(--vn-navy-900);
  padding: 0;
  margin-bottom: 8px;
}
.vn-form > .vn-intro { font-size: 15px; color: var(--vn-navy-700); margin: 0 0 26px; }
.vn-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--vn-navy-900);
  display: block;
  margin-bottom: 6px;
}
.vn-form label.helper { font-size: 13px; color: var(--vn-muted); font-weight: 400; margin-bottom: 10px; }
.vn-form .req { color: var(--vn-red-600); }

.vn-form input[type="text"],
.vn-form input[type="email"],
.vn-form textarea,
.vn-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--vn-slate-border);
  border-radius: 6px;
  background: white;
  color: var(--vn-text);
  font-family: inherit;
}
.vn-form input:focus,
.vn-form textarea:focus,
.vn-form select:focus {
  outline: none;
  border-color: var(--vn-blue-500);
  box-shadow: 0 0 0 3px rgba(0,108,255,0.18);
}
.vn-form textarea { min-height: 110px; resize: vertical; }

.vn-form .radio-group { display: grid; gap: 8px; margin-top: 4px; }
.vn-form .radio-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  background: white;
  border: 1px solid var(--vn-slate-border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--vn-text);
  transition: border-color 0.15s, background 0.15s;
}
.vn-form .radio-group label:hover {
  border-color: var(--vn-blue-500);
  background: var(--vn-blue-100);
}
.vn-form .radio-group input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--vn-blue-500);
}

.vn-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--vn-slate-border);
  border-left: 4px solid var(--vn-blue-500);
  border-radius: 6px;
  font-size: 14px;
  color: var(--vn-text);
  margin-top: 8px;
}
.vn-form .consent input { margin-top: 4px; flex-shrink: 0; accent-color: var(--vn-blue-500); }
.vn-form .consent a { color: var(--vn-blue-500); }

.vn-form .submit-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.vn-form button.submit {
  background: var(--vn-blue-500);
  color: white;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 14px 30px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,108,255,0.28);
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: 'Montserrat', sans-serif;
}
.vn-form button.submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,108,255,0.42);
}
.vn-form button.submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.vn-form .submit-meta { font-size: 13px; color: var(--vn-muted); }
.vn-form .field-error { font-size: 13px; color: var(--vn-red-600); margin-top: 6px; }

.vn-form-fields[hidden] { display: none; }

.vn-form-message {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}
.vn-form-message.error {
  background: #fef2f2;
  color: var(--vn-red-600);
  border: 1px solid #fecaca;
}
.vn-form-message.success {
  background: #f0fdf4;
  color: var(--vn-green-600);
  border: 1px solid #bbf7d0;
}


/* ======================================================================
   12b. Intake-page additions (cycle 12b, 13 May 2026)
   .vn-blue band variant for the form section.
   .vn-agent-multi checkbox-list for Q4 agent surfaces.
   .vn-hero-cta pill linking from hero to the form anchor.
   Scroll-margin-top so the fixed 112px header does not cover the form.
====================================================================== */

.vn-blue {
  padding: 56px 0;
  background: linear-gradient(160deg, #006CFF 0%, #1a4a7a 100%);
  position: relative;
  /* overflow:hidden removed cycle-13: it was clipping the reCAPTCHA
     challenge popup when the user completed the widget; cosmetic
     overflow on the ::before glow is now contained via clip-path. */
  color: #ffffff;
}
.vn-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 8%, rgba(255,255,255,0.16) 0%, transparent 38%);
  pointer-events: none;
  clip-path: inset(0);
}
.vn-blue .vn-inner { position: relative; z-index: 1; }
.vn-blue .vn-form-step-meta { color: #ffffff; }
.vn-blue .light-label { color: #ffffff; }
.vn-blue .vn-h2 { color: #ffffff !important; }

.vn-hero-cta {
  display: inline-block;
  padding: 14px 30px;
  background: #ffffff;
  color: #006CFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.vn-hero-cta:hover {
  transform: translateY(-1px);
  background: #EAF3FF;
  box-shadow: 0 6px 22px rgba(0,0,0,0.36);
  color: #006CFF;
}

#vn-brief-form { scroll-margin-top: 128px; }
@media (max-width: 720px) {
  #vn-brief-form { scroll-margin-top: 72px; }
}

/* Agent multi-select grid: one row per agent, locked rows visually muted */
.vn-agent-multi {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.vn-agent-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-areas:
    "checkbox meta"
    "checkbox name"
    ".        hint";
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--vn-slate-border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.vn-agent-row:hover {
  border-color: var(--vn-blue-500);
  background: var(--vn-blue-100);
}
.vn-agent-row input[type="checkbox"] {
  grid-area: checkbox;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--vn-blue-500);
  flex-shrink: 0;
}
.vn-agent-row__meta {
  grid-area: meta;
  font-size: 11px;
  font-weight: 700;
  color: var(--vn-blue-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.vn-agent-row__name {
  grid-area: name;
  font-size: 15px;
  font-weight: 700;
  color: var(--vn-navy-900);
}
.vn-agent-row__hint {
  grid-area: hint;
  font-size: 13px;
  font-weight: 400;
  color: var(--vn-muted);
  line-height: 1.55;
  margin-top: 4px;
}
.vn-agent-row--locked {
  background: var(--vn-blue-100);
  border-color: var(--vn-blue-500);
  cursor: not-allowed;
}
.vn-agent-row--locked:hover { background: var(--vn-blue-100); }
.vn-agent-row--locked .vn-agent-row__meta { color: var(--refuse); }
.vn-agent-row--locked input[type="checkbox"] { opacity: 0.85; }


/* ======================================================================
   12c. Intake page flagship reskin (cycle 13, 13 May 2026 evening)

   Scope: body.page-id-7 only (the /agents/intake/ page) so the rest of
   the VN site keeps its navy-dark chrome until cycle 14 rolls slate
   site-wide. Pattern lifted from gnl-site-v3.2-current.css FLAGSHIP
   block (locked 5 May 2026): slate canvas, white editorial cards,
   contrasting Stage-1 form band, compact chip-picker for agents.

   Hard-rule alignment:
   - Punctuation rule: zero em/en-dashes; semicolons + brackets used.
   - 112px fixed header collision: scroll-margin-top on form anchor
     stays at the value set in 12b (128px desktop, 72px mobile).
   - Captcha clipping: overflow:hidden removed from .vn-blue above; the
     reCAPTCHA challenge popup is no longer clipped on completion.
   - Domain-keyed reCAPTCHA: site key must include vianegativahealth.com
     in the Google admin allowed-domains list (operator action; not in
     code).
====================================================================== */

/* Slate canvas, intake page only */
body.page-id-7 { background: #c8d2dd; }
body.page-id-7 .vn-assess-page { background: transparent; }

/* Editorial card primitive used by hero + bands 2, 4, 5 */
.vn-card-flagship {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 99, 0.08);
  padding: 40px 44px;
  box-shadow: 0 6px 20px rgba(13, 31, 53, 0.06);
  margin: 0 0 28px;
}
@media (max-width: 720px) {
  .vn-card-flagship { padding: 28px 22px; border-radius: 14px; }
}

/* Hero: flip from dark-navy band to white editorial card on slate */
body.page-id-7 .vn-hero {
  background: transparent;
  padding: 40px 0 16px;
  position: static;
}
body.page-id-7 .vn-hero::before,
body.page-id-7 .vn-hero::after { content: none; }
body.page-id-7 .vn-hero .vn-inner {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 99, 0.08);
  padding: 48px 44px 44px;
  box-shadow: 0 6px 20px rgba(13, 31, 53, 0.06);
}
body.page-id-7 .vn-hero .vn-eyebrow {
  color: var(--vn-blue-500);
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
body.page-id-7 .vn-hero-title {
  color: var(--vn-navy-900);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  margin: 14px 0 18px;
  letter-spacing: -0.4px;
}
body.page-id-7 .vn-hero-strapline {
  color: var(--vn-navy-700);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}
body.page-id-7 .vn-hero-lead {
  color: var(--vn-navy-700);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 12px;
}
body.page-id-7 .vn-hero-frame {
  background: var(--vn-blue-100);
  border-left: 4px solid var(--vn-blue-500);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  color: var(--vn-navy-900);
  margin: 22px 0 0;
  box-shadow: none;
}
body.page-id-7 .vn-hero-frame p { color: var(--vn-navy-900); font-size: 15px; font-weight: 500; }

/* Hero CTA pill (white-on-blue when on dark band; blue-on-white when on
   flagship hero card) */
body.page-id-7 .vn-hero-cta {
  background: var(--vn-blue-500);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0,108,255,0.32);
}
body.page-id-7 .vn-hero-cta:hover {
  background: #0058d4;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0,108,255,0.42);
}

/* Band 2 (which shape fits): vn-light becomes flagship card on slate */
body.page-id-7 .vn-light {
  background: transparent;
  padding: 4px 0 24px;
}
body.page-id-7 .vn-light .vn-inner {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 99, 0.08);
  padding: 40px 44px;
  box-shadow: 0 6px 20px rgba(13, 31, 53, 0.06);
}
@media (max-width: 720px) {
  body.page-id-7 .vn-light .vn-inner { padding: 28px 22px; border-radius: 14px; }
}

/* Band 4 (dark-plain "get-out clause"): keep dark slab but trim glow and
   round corners so it sits as a card on slate, not a full-width slab */
body.page-id-7 .vn-dark-plain {
  background: linear-gradient(160deg, #0d1f35 0%, #123a63 100%);
  border-radius: 18px;
  margin: 0 16px 28px;
  padding: 48px 0;
  box-shadow: 0 8px 28px rgba(13, 31, 53, 0.18);
}
body.page-id-7 .vn-dark-plain::before { content: none; }
@media (max-width: 720px) {
  body.page-id-7 .vn-dark-plain { margin: 0 0 22px; border-radius: 0; }
}

/* Band 5 (one inbox): same vn-light treatment as band 2 */
/* (handled by the vn-light override above) */

/* Band 3 (.vn-blue) cycle-14 IOB-faithful refit:
   Form sits in a white editorial card on slate, matching IOB rhythm.
   Saturated blue band retired; VN-blue used as accent only (eyebrows,
   focus rings, submit pill). Teal used for consent callout left bar
   and locked-chip dashed border. */
body.page-id-7 .vn-blue {
  background: transparent;
  padding: 4px 0 24px;
  margin: 0;
  border-radius: 0;
  overflow: visible;
}
body.page-id-7 .vn-blue::before { content: none; }
body.page-id-7 .vn-blue .vn-inner {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 58, 99, 0.08);
  padding: 40px 44px;
  box-shadow: 0 6px 20px rgba(13, 31, 53, 0.06);
}
@media (max-width: 720px) {
  body.page-id-7 .vn-blue .vn-inner { padding: 28px 22px; border-radius: 14px; }
}
body.page-id-7 .vn-blue .vn-form-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border-top: 0;
  box-shadow: none;
  color: var(--vn-navy-900);
  max-width: 740px;
  margin: 0 auto;
}

/* Step meta: VN-blue eyebrow (matches hero eyebrow pattern) */
body.page-id-7 .vn-blue .vn-form-step-meta {
  color: var(--vn-blue-500);
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 11.5px;
}

/* Section heads: VN-blue eyebrow + navy title */
body.page-id-7 .vn-blue .light-label {
  color: var(--vn-blue-500) !important;
  letter-spacing: 1.8px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
}
body.page-id-7 .vn-blue .vn-h2 {
  color: var(--vn-navy-900) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

/* Legend (above each question): navy title, no uppercase */
body.page-id-7 .vn-blue .vn-form legend {
  color: var(--vn-navy-900);
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 10px;
}

/* Field labels: VN-blue uppercase eyebrows */
body.page-id-7 .vn-blue .vn-form label {
  color: var(--vn-blue-500);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}

/* Helper text: muted navy, normal case */
body.page-id-7 .vn-blue .vn-form label.helper {
  color: var(--vn-muted);
  font-weight: 500;
  font-size: 13.5px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}

/* Inputs: white bg, navy text, soft border, VN-blue focus ring */
body.page-id-7 .vn-blue .vn-form input[type="text"],
body.page-id-7 .vn-blue .vn-form input[type="email"],
body.page-id-7 .vn-blue .vn-form textarea {
  background: #ffffff;
  border: 1.5px solid var(--line);
  color: var(--vn-navy-900);
  font-weight: 500;
}
body.page-id-7 .vn-blue .vn-form input::placeholder,
body.page-id-7 .vn-blue .vn-form textarea::placeholder {
  color: rgba(13,31,53,0.40);
}
body.page-id-7 .vn-blue .vn-form input:focus,
body.page-id-7 .vn-blue .vn-form textarea:focus {
  border-color: var(--vn-blue-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,108,255,0.18);
  color: var(--vn-navy-900);
}

/* Radio "shape fits" rows: pale-slate pill cards with navy text */
body.page-id-7 .vn-blue .vn-form .radio-group label {
  background: var(--soft);
  border: 1.5px solid var(--line);
  color: var(--vn-navy-900);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 0;
}
body.page-id-7 .vn-blue .vn-form .radio-group label:hover {
  border-color: var(--vn-blue-500);
  background: var(--vn-blue-100);
}

/* Consent block: teal-bar callout (IOB callout pattern) */
body.page-id-7 .vn-blue .vn-form .consent {
  background: #ffffff;
  border: 1px solid rgba(8,145,178,0.18);
  border-left: 4px solid var(--teal);
  color: var(--vn-navy-900);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 14px;
}
body.page-id-7 .vn-blue .vn-form .consent a { color: var(--vn-blue-500); }

/* reCAPTCHA: sits on white card, no plate needed */
body.page-id-7 .vn-blue .g-recaptcha {
  background: transparent;
  padding: 0;
  margin: 22px 0 4px;
  display: inline-block;
}

/* Submit row: VN-blue solid pill, white text (matches hero CTA) */
body.page-id-7 .vn-blue .vn-form .submit-row {
  border-top-color: var(--line);
}
body.page-id-7 .vn-blue .vn-form button.submit {
  background: var(--vn-blue-500);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0,108,255,0.30);
}
body.page-id-7 .vn-blue .vn-form button.submit:hover {
  background: #0058d4;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0,108,255,0.40);
}
body.page-id-7 .vn-blue .vn-form .submit-meta {
  color: var(--vn-muted);
}

/* Agent picker: chips recoloured for slate context.
   White pill + soft border + navy text. Ticked = VN-blue solid.
   Locked (Ethics, Audit) = teal-tinted with dashed teal border. */
.vn-agent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin: 8px 0 4px;
}
.vn-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 12px;
  background: #ffffff;
  color: var(--vn-navy-900);
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-transform: none;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, border-color 0.15s, box-shadow 0.15s, color 0.15s;
  user-select: none;
  margin: 0;
}
.vn-chip:hover {
  background: var(--vn-blue-100);
  border-color: var(--vn-blue-500);
  box-shadow: 0 4px 14px rgba(0,108,255,0.18);
  transform: translateY(-1px);
}
.vn-chip input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--vn-blue-500);
  flex-shrink: 0;
}
.vn-chip:has(input[type="checkbox"]:checked:not(:disabled)) {
  background: var(--vn-blue-500);
  color: #ffffff;
  border-color: var(--vn-blue-500);
  box-shadow: 0 6px 18px rgba(0,108,255,0.32);
}
.vn-chip:has(input[type="checkbox"]:checked:not(:disabled)) input[type="checkbox"] {
  accent-color: #ffffff;
}
.vn-chip--locked {
  background: var(--teal-light);
  color: var(--vn-navy-900);
  border: 1.5px dashed var(--teal);
  cursor: not-allowed;
}
.vn-chip--locked:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  box-shadow: none;
  transform: none;
}
.vn-chip--locked input[type="checkbox"] { pointer-events: none; opacity: 0.9; accent-color: var(--teal); }
.vn-chip__lock-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.82;
  margin-left: 4px;
  color: var(--teal);
}


/* ======================================================================
   13. Footer frame
====================================================================== */
.vn-footer { background: var(--navy-dark); color: #fff; }
.vn-footer-frame {
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 48px;
}
.vn-footer-frame__lead {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.vn-footer-frame__lead span { color: #7eb8e8; }
.vn-footer-frame__body {
  font-size: 14.5px;
  color: #c5daf2;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 18px;
}
.vn-footer-frame__vat {
  font-size: 12.5px;
  color: #7eb8e8;
  line-height: 1.7;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.vn-footer-frame a { color: #7eb8e8; text-decoration: underline; }
.vn-footer-frame a:hover { color: #fff; }

.vn-foot {
  padding: 36px 20px 56px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.vn-foot-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  color: rgba(255,255,255,0.78);
}
.vn-foot-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: white;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.4px;
}
.vn-foot-meta {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.vn-foot-links { font-size: 13px; }
.vn-foot-links a {
  color: #7eb8e8;
  text-decoration: none;
  font-weight: 600;
}
.vn-foot-links a:hover {
  color: #a8d0f0;
  text-decoration: underline;
}
.vn-foot-links span.sep { color: rgba(255,255,255,0.30); margin: 0 10px; }


/* ======================================================================
   14. Callouts, disclaimers, contact, frontier-close, stack-callout
====================================================================== */
.disclaimer-block {
  margin-top: 28px;
  padding: 22px 28px;
  background: rgba(0,108,255,0.10);
  border: 1px solid rgba(0,108,255,0.28);
  border-radius: 14px;
}
.disclaimer-block p { font-size: 15px; color: #e8f2ff; line-height: 1.8; margin: 0; }
.disclaimer-block strong { color: #fff; }

.disclaimer-block-light {
  margin-top: 28px;
  padding: 22px 28px;
  background: var(--blue-light);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.disclaimer-block-light p { font-size: 15px; color: var(--navy); line-height: 1.8; margin: 0; }
.disclaimer-block-light strong { color: var(--navy-dark); }

.contact-block {
  margin-top: 28px;
  padding: 28px 32px;
  background: rgba(0,108,255,0.10);
  border: 1px solid rgba(0,108,255,0.28);
  border-radius: 14px;
  text-align: center;
}
.contact-block p { font-size: 15px; color: #e8f2ff; line-height: 1.8; margin: 0 0 10px; }
.contact-block a.contact-link {
  display: inline-block;
  margin-top: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.4px;
}
.contact-block a.contact-link:hover { background: #0058d4; color: #fff; }

.frontier-close {
  background: linear-gradient(135deg, rgba(0,108,255,0.12), rgba(8,145,178,0.10));
  border: 1px solid rgba(0,108,255,0.25);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 32px 0 18px;
}
.frontier-close__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7eb8e8;
  margin-bottom: 14px;
}
.frontier-close p {
  font-size: 17px;
  color: #e8f2ff;
  line-height: 1.85;
  margin-bottom: 14px;
}
.frontier-close p:last-child { margin-bottom: 0; }
.frontier-close p:first-of-type {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
}
.frontier-close strong { color: #fff; }

.stack-callout {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 30px;
  margin: 24px 0 12px;
}
.stack-callout__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 12px;
}
.stack-callout p { font-size: 15.5px; color: var(--muted); line-height: 1.85; margin-bottom: 12px; }
.stack-callout p:last-child { margin-bottom: 0; }
.stack-callout strong { color: var(--navy); }
.stack-callout a { color: var(--blue); text-decoration: underline; }


/* ======================================================================
   15. Cycle-9 deployed thin-palette classes carried forward
   (.vn-wrap, .vn-card, .vn-callout, .vn-cta, .vn-accept, .vn-refuse,
    .vn-section). Kept verbatim from cycle-9 deployed home.html so the
   14 rebuilt page bodies can adopt the four-band rhythm without
   stripping the cycle-9 substrate.
====================================================================== */
.vn-wrap {
  background: #E6EAF1;
  color: #1A2B3C;
  font-family: 'Inter', system-ui, sans-serif;
  padding: 2.5rem 1rem;
}
.vn-card {
  background: #FFFFFF;
  border: 1px solid rgba(18, 58, 99, 0.30);
  border-top: 3px solid #006CFF;
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  margin: 0 0 0.6rem;
  box-shadow: 0 14px 32px rgba(13, 31, 53, 0.20), 0 4px 10px rgba(13, 31, 53, 0.12);
}
.vn-card p { margin: 0 0 0.85rem; line-height: 1.55; }
.vn-card p:last-child { margin-bottom: 0; }
.vn-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #123A63;
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.vn-callout {
  background: rgba(0,108,255,0.08);
  border-left: 4px solid #006CFF;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 0 0 22px;
  color: #0d1f35;
}
.vn-callout p { margin: 0; font-size: 14px; line-height: 1.6; }
.vn-callout strong { color: var(--navy); }

.vn-accept,
.vn-refuse {
  background: #FFFFFF;
  border: 1px solid rgba(18, 58, 99, 0.22);
  border-left: 4px solid #006CFF;
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  margin: 0 0 0.5rem;
  box-shadow: 0 14px 32px rgba(13, 31, 53, 0.22), 0 4px 10px rgba(13, 31, 53, 0.12);
  line-height: 1.55;
}
.vn-accept p,
.vn-refuse p { margin: 0; }

/* Tighten 3-col grid (overrides the inline style="gap:1.25rem;" on .vn-grid) */
.vn-grid { gap: 0.75rem !important; }
.vn-refuse { border-left: 4px solid #c0392b; }  /* red accent for refusal vs blue accept */

.vn-section { margin: 0 0 2.5rem; }

.vn-cta-wrap {
  background: #FFFFFF;
  border: 1px solid #123A63;
  border-radius: 6px;
  padding: 1.75rem;
  text-align: center;
  margin: 2rem 0 0;
}
.vn-cta {
  display: inline-block;
  background: #006CFF;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 22px rgba(0,108,255,0.32);
  transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
}
.vn-cta:hover,
.vn-cta:focus {
  background: #0058d4;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(0,108,255,0.44);
  transform: translateY(-1px);
}
.vn-cta-wrap p { margin: 0.75rem 0 0; font-size: 0.95rem; color: #1A2B3C; }
.vn-cta-wrap a.vn-inbox {
  color: #006CFF;
  text-decoration: none;
  font-family: 'Courier New', monospace;
}


/* ======================================================================
   16. Continue nav-strap, navy slab with Part X / N + prev / hub / next
   (port-and-rename pattern from gnl-site-v3.2-current.css lines 2580-2645)
====================================================================== */
.vn-continue {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 36px 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(18, 58, 99, 0.16);
}
.vn-continue__pos {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7eb8e8;
  margin: 0;
}
.vn-continue__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 4px 0 0;
}
.vn-continue__skip {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0 0;
}
.vn-continue__skip a {
  color: #7eb8e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(126, 184, 232, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.vn-continue__skip a:hover { color: #fff; border-bottom-color: #fff; }
.vn-continue__nav {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vn-continue__nav a {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.vn-continue__nav a:hover { background: var(--blue); border-color: var(--blue); }
.vn-continue__nav a.primary { background: var(--blue); border-color: var(--blue); }
.vn-continue__nav a.primary:hover { background: #0058d4; }


/* ======================================================================
   17. Read-more, horizontal pill cards
====================================================================== */
.vn-readmore { margin: 32px 0 0; }
.vn-readmore h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 16px;
}
.vn-readmore__row { display: flex; gap: 14px; flex-wrap: wrap; }
.vn-readmore__card {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.vn-readmore__card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(0,108,255,0.12);
  transform: translateY(-1px);
}
.vn-readmore__card .meta {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.vn-readmore__card .title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.35;
}


/* ======================================================================
   18. Full-width Astra override, site-wide on vn-wp-prod
   (replaces the per-page-ID rule from gnl-site-v3.2-current.css lines
    2244-2371; every page on vn-wp-prod is a VN page so the rule
   applies universally rather than enumerating page IDs)
====================================================================== */
#content > .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#primary {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  float: none !important;
}
#secondary { display: none !important; }
.entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Z-index hardening for full-bleed bands under Astra header break point */
.ast-header-break-point .entry-content { position: relative !important; z-index: 1 !important; }
.ast-header-break-point .entry-content .vn-dark,
.ast-header-break-point .entry-content .vn-dark-plain,
.ast-header-break-point .entry-content .vn-light,
.ast-header-break-point .entry-content .vn-soft,
.ast-header-break-point .entry-content .vn-warm { z-index: 1 !important; }


/* ======================================================================
   19. Mobile breakpoints (port from page-consultancy-rebuilt.html
   lines 154-160 and page-7-rebuilt.html lines 137-154)
====================================================================== */
@media (max-width: 768px) {
  .vn-inner { padding: 0 20px; }
  .vn-dark, .vn-dark-plain { padding: 56px 0; }
  .vn-light, .vn-soft, .vn-warm { padding: 48px 0; }
  .pull-quote,
  .refusal-block,
  .filter-block,
  .service-block,
  .stack-callout,
  .frontier-close,
  .contact-block { padding: 22px 22px; }
  .pull-quote__text { font-size: 18px; }
}

@media (max-width: 720px) {
  .vn-paddles { grid-template-columns: 1fr; }
  .vn-continue { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vn-continue__nav { margin-left: 0; width: 100%; }
}

@media (max-width: 600px) {
  .vn-dark { padding: 56px 16px 44px; }
  .vn-form-section { padding: 36px 14px 48px; }
  .vn-inner { padding: 0 18px; }
  .vn-form-card { padding: 26px 22px 30px; }
  .vn-foot { padding: 28px 16px 40px; }
  .vn-foot-inner { padding: 0 18px; }
}

@media (max-width: 480px) {
  .vn-hero-title { font-size: 28px; }
  .vn-readmore__row { flex-direction: column; }
}


/* ======================================================================
   20. Print
====================================================================== */
@media print {
  .vn-dark, .vn-dark-plain, .vn-soft, .vn-warm {
    background: #fff !important;
    color: #000 !important;
  }
  .dark-title,
  .dark-lead,
  .dark-body p,
  .vn-hero-title,
  .vn-hero-strapline,
  .vn-hero-lead,
  .vn-hero-frame,
  .frontier-close p { color: #000 !important; }
  .vn-dark::before,
  .vn-dark-plain::before { display: none !important; }
}


/* ======================================================================
   Ask Grace card (cycle 16: ported from gnl-site-v3.2-current.css §2480).
   Renders the black card with round teal-bordered logo immediately after
   the intake hero. Kept after the cycle-15 site-wide revert because the
   HTML still lives in page-id-7 content; without these styles the block
   would render unstyled.
====================================================================== */
.ask-grace {
  background: #111111;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 28px auto;
  max-width: 980px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30);
}
.ask-grace__logo {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.ask-grace__logo:hover,
.ask-grace__logo:focus {
  background: #1a4c5a;
  transform: translateY(-2px);
  outline: none;
}
.ask-grace__body { flex: 1; min-width: 240px; }
.ask-grace__kicker {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}
.ask-grace__copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #e8eef4;
  font-family: 'Inter', system-ui, sans-serif;
}
.ask-grace__svg text.gnl   { font-family: 'Montserrat', sans-serif; font-weight: 800; }
.ask-grace__svg text.grace { font-family: Georgia, "Times New Roman", serif; font-style: italic; }
@media (max-width: 720px) {
  .ask-grace { padding: 20px 22px; gap: 18px; }
  .ask-grace__logo { width: 64px; height: 64px; }
  .ask-grace__copy { font-size: 16px; }
}

/* ======================================================================
   GNL FLAGSHIP FORMAT PORT to VN (cycle 23, /lactate-early-warning/).
   Verbatim port from gnl-site-v3.2-current.css FLAGSHIP block.
   All body.page-id-XXXX lists collapsed to single body.page-id-83.
====================================================================== */

/* ==========================================
   GNL FLAGSHIP GUIDE FORMAT, locked 5 May 2026
   Schema for the IOB cluster + every future guide rebuild.
   Companion spec: docs/GNL_GUIDE_FLAGSHIP_FORMAT.md
   ========================================== */

:root {
  --gnl-page-bg-slate:        #c8d2dd;
  --gnl-page-bg-slate-darker: #b8c4d2;
  --gnl-grace-dark:           #111111;
  --gnl-grace-dark-hover:     #2a2a2a;
  --gnl-blue:                 #006CFF;
  --gnl-teal:                 #00B4D8;
  --gnl-teal-deep:            #007A94;
  --gnl-teal-light:           #E6F7FB;
  --gnl-page-navy:            #123a63;
  --gnl-page-text:            #1f2937;
  --gnl-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* --- Slate page background, applied to guide-page IDs ---
   Add a page ID to the list below to flip a page to the
   slate guide format. To roll out to a new cluster, append IDs.
*/
body.page-id-83,   /* IOB hub */
body.page-id-83    /* How we built Grace, Tomorrow's Medicine decode */
{
  background: var(--gnl-page-bg-slate) !important;
}

/* --- Ask Grace, black card with round teal-bordered logo, locked Option B --- */
.ask-grace {
  background: var(--gnl-grace-dark);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.ask-grace__logo {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gnl-grace-dark-hover);
  border: 2px solid var(--gnl-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.ask-grace__logo:hover,
.ask-grace__logo:focus {
  background: var(--gnl-teal-deep);
  transform: translateY(-2px);
  outline: none;
}
.ask-grace__body { flex: 1; min-width: 240px; }
.ask-grace__kicker {
  margin: 0 0 4px;
  font-family: var(--gnl-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gnl-teal);
}
.ask-grace__copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #e8eef4;
}
.ask-grace__svg text.gnl   { font-family: var(--gnl-font); font-weight: 800; }
.ask-grace__svg text.grace { font-family: Georgia, "Times New Roman", serif; font-style: italic; }

/* --- Disclosure, native <details>/<summary>, sunken-slate when closed --- */
.gnl-disclosure {
  margin: 14px 0;
  background: var(--gnl-page-bg-slate-darker);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.gnl-disclosure[open] {
  background: #fff;
  border-color: var(--gnl-teal);
  box-shadow: 0 4px 14px rgba(18, 58, 99, 0.10);
}
.gnl-disclosure summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-family: var(--gnl-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--gnl-page-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.gnl-disclosure summary:hover { background: var(--gnl-teal-light); }
.gnl-disclosure summary::-webkit-details-marker { display: none; }
.gnl-disclosure summary::after {
  content: "+";
  color: var(--gnl-teal-deep);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.gnl-disclosure[open] summary::after { content: "−"; }
.gnl-disclosure__body {
  padding: 6px 22px 20px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gnl-page-text);
  max-width: 800px;
}
.gnl-disclosure__body p { margin: 8px 0; }
.gnl-disclosure__body strong { color: var(--gnl-page-navy); }

/* --- Continue nav, navy slab with Part X / N + prev / hub / next pills --- */
.gnl-continue {
  background: var(--gnl-page-navy);
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 36px 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(18, 58, 99, 0.16);
}
.gnl-continue__pos {
  font-family: var(--gnl-font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gnl-teal);
  margin: 0;
}
.gnl-continue__title {
  font-family: var(--gnl-font);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 4px 0 0;
}
.gnl-continue__skip {
  font-family: var(--gnl-font);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0 0;
}
.gnl-continue__skip a {
  color: var(--gnl-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 180, 216, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.gnl-continue__skip a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.gnl-continue__nav {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gnl-continue__nav a {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--gnl-font);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gnl-continue__nav a:hover { background: var(--gnl-teal); border-color: var(--gnl-teal); }
.gnl-continue__nav a.primary { background: var(--gnl-teal); border-color: var(--gnl-teal); }
.gnl-continue__nav a.primary:hover { background: var(--gnl-teal-deep); }

/* --- Read more, horizontal pill cards (no stacked vertical list) --- */
.gnl-readmore { margin: 32px 0 0; }
.gnl-readmore h2 {
  font-family: var(--gnl-font);
  font-weight: 800;
  font-size: 22px;
  color: var(--gnl-page-navy);
  margin: 0 0 16px;
  letter-spacing: -0.2px;
  padding: 0 4px;
}
.gnl-readmore__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.gnl-readmore__card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 18px 22px;
  text-decoration: none;
  color: var(--gnl-page-navy);
  font-family: var(--gnl-font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 84px;
  box-shadow: 0 3px 10px rgba(18, 58, 99, 0.10);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.gnl-readmore__card:hover {
  border-color: var(--gnl-teal);
  box-shadow: 0 8px 24px rgba(18, 58, 99, 0.16);
  transform: translateY(-2px);
}
.gnl-readmore__arrow {
  color: var(--gnl-teal-deep);
  font-weight: 700;
  align-self: flex-end;
  margin-top: 8px;
  font-size: 18px;
}

/* --- Callout override on guide pages, white bubble with teal left bar ---
   Scoped to guide pages so other pages keep their navy-bordered callouts.
*/
body.page-id-83 .gnl-callout,
body.page-id-83 .gnl-callout {
  background: #fff;
  border-left: 4px solid var(--gnl-teal);
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 3px 10px rgba(18, 58, 99, 0.06);
}
body.page-id-83 .gnl-callout + .gnl-callout,
body.page-id-83 .gnl-callout + .gnl-callout {
  margin-top: 2rem;
}

/* --- Card lift on guide pages, since they sit on slate ---
   Cards already have white bg; we add the elevation shadow here.
*/
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card {
  box-shadow: 0 3px 10px rgba(18, 58, 99, 0.10), 0 1px 2px rgba(18, 58, 99, 0.05);
}

/* --- Mobile: Ask Grace stacks (logo on top), continue nav unwraps --- */
@media (max-width: 720px) {
  .ask-grace { flex-direction: column; align-items: flex-start; padding: 20px; }
  .ask-grace__logo { margin-bottom: 6px; }
  .gnl-continue__nav { margin-left: 0; }
}


/* ==========================================
   GNL FLAGSHIP, hot-fix 5 May 2026 evening
   Three misses from the first lock:
   1. gnl-card--soft on guide pages still rendered with the pale-blue
      --gnl-page-soft fill, which gave navy-on-light-blue.
   2. gnl-card--explorer likewise.
   3. <figure class="gnl-image"> had no margin in guide-page cards, so
      figures sat flush against text with no breathing room.
   ========================================== */

/* Force white cards on guide pages, regardless of soft/explorer modifier */
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer,
body.page-id-83 .gnl-card,
body.page-id-83 .gnl-card.gnl-card--soft,
body.page-id-83 .gnl-card.gnl-card--explorer {
  background: #ffffff !important;
}

/* Figure spacing on guide pages, breathing room above and below */
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure,
body.page-id-83 .gnl-card .gnl-image,
body.page-id-83 .gnl-card figure {
  margin: 2rem 0 !important;
  display: block;
}
body.page-id-83 .gnl-card .gnl-image img,
body.page-id-83 .gnl-card .gnl-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


/* ==========================================
   GNL FLAGSHIP, subsection edges (5 May 2026 evening, hot-fix #2)
   Subsections inside white cards need a subtle defined edge so they
   read as discrete units. Two patterns:
     (a) gnl-feature-box: 1px navy outline at low alpha + faint tint.
     (b) h3 subsection inside cards: hairline rule above (except first
         h3 in card), so each sub-area visually starts.
   ========================================== */

body.page-id-83 .gnl-card .gnl-feature-box,
body.page-id-83 .gnl-card .gnl-feature-box {
  border: 1px solid rgba(18, 58, 99, 0.18) !important;
  background: rgba(18, 58, 99, 0.025) !important;
  border-radius: 12px !important;
  padding: 22px 24px !important;
}

/* h3 subsection separator inside guide cards (skip first h3 to avoid a
   redundant rule under the card's h2). */
body.page-id-83 .gnl-card h3:not(:first-of-type),
body.page-id-83 .gnl-card h3:not(:first-of-type) {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 58, 99, 0.10);
}

/* Inside a feature-box, h3 should not get the separator (it's already
   bounded by the box outline). */
body.page-id-83 .gnl-feature-box h3,
body.page-id-83 .gnl-feature-box h3 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}


/* ==========================================
   GNL FLAGSHIP, subsection edges v2 (5 May 2026 evening, hot-fix #3)
   Override the 18% navy outline (too thin) with bold GNL blue +
   soft blue glow shadow. h3 separators get a bolder blue rule.
   ========================================== */

body.page-id-83 .gnl-card .gnl-feature-box,
body.page-id-83 .gnl-card .gnl-feature-box {
  border: 1.5px solid var(--gnl-blue) !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 22px 24px !important;
  box-shadow:
    0 6px 18px rgba(0, 108, 255, 0.18),
    0 2px 4px rgba(0, 108, 255, 0.10) !important;
}

/* h3 subsection separator inside guide cards, bolder blue rule */
body.page-id-83 .gnl-card h3:not(:first-of-type),
body.page-id-83 .gnl-card h3:not(:first-of-type) {
  margin-top: 36px !important;
  padding-top: 24px !important;
  border-top: 2px solid rgba(0, 108, 255, 0.45) !important;
}

/* ======================================================================
   GNL GUIDE CONTENT CSS PORT to VN (cycle 24, /lactate-early-warning/).
   Verbatim port of the .gnl-page typography + .gnl-card + .gnl-callout +
   .gnl-feature-box base styles from gnl-site-v3.2-current.css (lines
   1286-1750ish, before the FLAGSHIP block).
   This is the foundational layer the FLAGSHIP block sits on top of.
====================================================================== */


/* Body font variable for the guide content port (cycle 24). */
:root {
  --gnl-body-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Cycle 27: override the GNL flagship palette + framing tokens to VN values
   so .gnl-page / .gnl-hero / .gnl-card / .gnl-callout etc. read in VN's
   colour language, not GNL's. Without this, ports pull GNL teal #00B4D8 and
   gradient/line/shadow tokens that were never defined, leaving the hero
   un-framed and the page colour-mismatched with the rest of VN. */
:root {
  --gnl-page-navy:    #0d1f35;
  --gnl-page-text:    #123A63;
  --gnl-teal:         #0891b2;
  --gnl-teal-deep:    #056a82;
  --gnl-teal-light:   #e0f7fa;
  --gnl-page-line:    rgba(18, 58, 99, 0.16);
  --gnl-page-radius:    14px;
  --gnl-page-radius-sm: 8px;
  --gnl-page-card-bg: #ffffff;
  --gnl-page-shadow:  0 14px 32px rgba(13, 31, 53, 0.18), 0 4px 10px rgba(13, 31, 53, 0.10);
  --gnl-page-gradient: linear-gradient(160deg, #0d1f35 0%, #123a63 55%, #1a4a7a 100%);
}

/* Cycle 27: align .gnl-hero with VN's .vn-hero pattern — dark navy gradient,
   white text, centred. Was rendering bare left-aligned because the canonical
   --gnl-page-gradient + .gnl-hero centring rules weren't ported. */
.gnl-hero, .gnl-ciq-v2__hero {
  background: var(--gnl-page-gradient);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 56px 44px;
  box-shadow: 0 14px 36px rgba(13, 31, 53, 0.22);
  margin: 0 0 36px;
  text-align: center;
  position: relative;
}
.gnl-hero .gnl-kicker,
.gnl-hero__kicker {
  color: #7eb8e8;
  text-align: center;
  margin: 0 0 12px;
}
.gnl-hero .gnl-hero__title,
.gnl-page .gnl-hero .gnl-hero__title {
  color: #ffffff;
  text-align: center;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}
.gnl-hero__lead,
.gnl-hero .gnl-lead {
  color: #c5daf2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
}
.gnl-hero__lead em { color: #9fc2e8; font-style: italic; }
.gnl-hero__lead strong { color: #ffffff; }

   ============================ */

.gnl-page, .gnl-ciq-v2 {
  max-width: 980px;        /* cycle 26: match VN .vn-inner width for consistency */
  margin: 0 auto;
  padding: 0 32px;
  color: var(--gnl-page-text);
  font-family: var(--gnl-body-font);
  font-size: 17px;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .gnl-page, .gnl-ciq-v2 { padding: 0 18px; }
}

.gnl-page, .gnl-page *, .gnl-page *::before, .gnl-page *::after,
.gnl-ciq-v2, .gnl-ciq-v2 *, .gnl-ciq-v2 *::before, .gnl-ciq-v2 *::after { box-sizing: border-box; }

.gnl-page p, .gnl-page li, .gnl-page ul, .gnl-page ol,
.gnl-page blockquote, .gnl-page table, .gnl-page td, .gnl-page th, .gnl-page small,
.gnl-ciq-v2 p, .gnl-ciq-v2 li, .gnl-ciq-v2 ul, .gnl-ciq-v2 ol,
.gnl-ciq-v2 blockquote, .gnl-ciq-v2 table, .gnl-ciq-v2 td, .gnl-ciq-v2 th, .gnl-ciq-v2 small {
  font-family: var(--gnl-body-font);
}

.gnl-page p, .gnl-ciq-v2 p { margin: 0 0 16px 0; }

.gnl-page h1, .gnl-page h2, .gnl-page h3,
.gnl-hero__title,
.gnl-ciq-v2 h1, .gnl-ciq-v2 h2, .gnl-ciq-v2 h3 {
  color: var(--gnl-page-navy);
  line-height: 1.2;
  margin: 0 0 16px 0;
  font-family: var(--gnl-font);
}

.gnl-page h1, .gnl-hero__title, .gnl-ciq-v2 h1 { font-size: 42px; font-weight: 700; }
.gnl-page h2, .gnl-ciq-v2 h2 { font-size: 30px; font-weight: 700; }
.gnl-page h3, .gnl-ciq-v2 h3 { font-size: 22px; font-weight: 600; }

.gnl-page a, .gnl-ciq-v2 a { color: var(--gnl-page-navy); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.gnl-page ul, .gnl-page ol, .gnl-ciq-v2 ul, .gnl-ciq-v2 ol { margin: 0 0 18px 20px; padding: 0; }
.gnl-page li, .gnl-ciq-v2 li { margin-bottom: 8px; }
.gnl-page figure, .gnl-ciq-v2 figure { margin: 0; }
.gnl-page img, .gnl-ciq-v2 img { max-width: 100%; height: auto; }

.gnl-page iframe, .gnl-ciq-v2 iframe { width: 100%; min-height: 420px; border: 0; border-radius: var(--gnl-page-radius-sm); }
.gnl-page audio, .gnl-ciq-v2 audio { width: 100%; }

/* Hero */
.gnl-hero, .gnl-ciq-v2__hero {
  background: var(--gnl-page-gradient);
  border: 1px solid var(--gnl-page-line);
  border-radius: var(--gnl-page-radius);
  padding: 32px;
  box-shadow: var(--gnl-page-shadow);
  margin: 0 0 28px 0;
}

.gnl-kicker, .gnl-hero__kicker, .gnl-ciq-v2__kicker {
  margin: 0 0 10px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gnl-page-navy);
  font-family: var(--gnl-font);
}

.gnl-title, .gnl-hero__title, .gnl-ciq-v2__title { margin-bottom: 12px; }

.gnl-lead, .gnl-hero__lead, .gnl-ciq-v2__lead { font-size: 20px; color: var(--gnl-page-text); max-width: 880px; }

/* Editorial cards */
.gnl-page .gnl-card,
.gnl-page .gnl-card.gnl-card--editorial,
.gnl-card.gnl-card--editorial,
.gnl-page section.gnl-card,
.gnl-card--panel,
.gnl-ciq-v2__card {
  background: var(--gnl-page-card-bg);
  border: 1px solid var(--gnl-page-line);
  border-radius: var(--gnl-page-radius);
  padding: 28px;
  box-shadow: var(--gnl-page-shadow);
  margin: 0 0 24px 0;
}

.gnl-card--soft, .gnl-ciq-v2__card--soft { background: var(--gnl-page-soft) !important; }
.gnl-card--highlight, .gnl-ciq-v2__card--highlight { background: var(--gnl-page-highlight-bg) !important; }
.gnl-card--explorer, .gnl-ciq-v2__card--explorer { background: var(--gnl-page-gradient) !important; }
.gnl-card--center, .gnl-ciq-v2__card--center { text-align: center; }

/* Framework status card — dark navy, used on all CGM device pages */
.gnl-card--framework {
  background: var(--gnl-page-navy) !important;
  border-color: var(--gnl-page-navy-dark) !important;
}
.gnl-card--framework h2,
.gnl-card--framework h3,
.gnl-card--framework p,
.gnl-card--framework li,
.gnl-card--framework td,
.gnl-card--framework th,
.gnl-card--framework strong {
  color: var(--gnl-text-inverse) !important;
}
.gnl-card--framework .gnl-table {
  border-color: rgba(255,255,255,0.15);
}
.gnl-card--framework .gnl-table tr:nth-child(even) {
  background: rgba(255,255,255,0.07);
}
.gnl-card--framework .gnl-table tr:hover {
  background: rgba(255,255,255,0.12);
}
.gnl-card--framework .gnl-kicker {
  color: rgba(255,255,255,0.65) !important;
}
.gnl-card--framework .gnl-button--secondary {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.4) !important;
  background: transparent !important;
}
.gnl-card--framework .gnl-button--secondary:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.7) !important;
}
.gnl-card--framework .gnl-callout {
  background: rgba(255,255,255,0.08) !important;
  border-left-color: rgba(255,255,255,0.3) !important;
}
[data-theme="dark"] .gnl-card--framework {
  background: var(--gnl-page-navy-dark) !important;
}

/* Framework card — CORAL variant (Management guides: Exercise, future Alcohol/Nutrition) */
.gnl-card--framework-coral {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0,0,0,0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--gnl-coral-deep) 0%, var(--gnl-coral) 55%, #ff8a5c 100%) !important;
  border: 0 !important;
  color: #ffffff;
  padding: 42px 40px !important;
  box-shadow: 0 18px 50px rgba(201, 74, 45, 0.28), 0 2px 6px rgba(201, 74, 45, 0.18) !important;
}
.gnl-card--framework-coral::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffd6c2 0%, #ffffff 50%, #ffd6c2 100%);
  opacity: 0.85;
}
.gnl-card--framework-coral::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.gnl-card--framework-coral > * { position: relative; z-index: 1; }
.gnl-card--framework-coral .gnl-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  margin-bottom: 18px !important;
  color: #ffffff !important;
}
.gnl-card--framework-coral h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em;
  margin: 0 0 18px !important;
  max-width: 820px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.gnl-card--framework-coral p {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 780px;
}
.gnl-card--framework-coral p:first-of-type { font-size: 1.15rem; }
@media (max-width: 720px) {
  .gnl-card--framework-coral { padding: 28px 22px !important; }
  .gnl-card--framework-coral::after { width: 140px; height: 140px; bottom: -40px; right: -40px; }
}
.gnl-card--framework-coral h2,
.gnl-card--framework-coral h3,
.gnl-card--framework-coral p,
.gnl-card--framework-coral li,
.gnl-card--framework-coral td,
.gnl-card--framework-coral th,
.gnl-card--framework-coral strong { color: #ffffff !important; }
.gnl-card--framework-coral .gnl-kicker { color: rgba(255,255,255,0.75) !important; }
.gnl-card--framework-coral .gnl-table { border-color: rgba(255,255,255,0.18); }
.gnl-card--framework-coral .gnl-table tr:nth-child(even) { background: rgba(255,255,255,0.08); }
.gnl-card--framework-coral .gnl-table tr:hover { background: rgba(255,255,255,0.14); }
.gnl-card--framework-coral .gnl-callout {
  background: rgba(255,255,255,0.10) !important;
  border-left-color: rgba(255,255,255,0.35) !important;
}
.gnl-card--framework-coral .gnl-button--secondary {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.5) !important;
  background: transparent !important;
}
.gnl-card--framework-coral .gnl-button--secondary:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.8) !important;
}

/* Major in the Majors — 3-stat pattern for Exercise series
   Used as the first content card on every Exercise guide page.
   Three equal-weight stats: IOB · Starting glucose · Trend arrows. */
.gnl-majors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 6px 0 0;
}
.gnl-majors__item {
  background: var(--gnl-coral-light);
  border: 1px solid rgba(255,107,71,0.22);
  border-radius: var(--gnl-page-radius-sm);
  padding: 18px 16px;
  text-align: center;
}
.gnl-majors__rank {
  font-family: var(--gnl-font);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gnl-coral-deep);
  margin: 0 0 6px;
}
.gnl-majors__label {
  font-family: var(--gnl-font);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--gnl-page-navy);
  margin: 0 0 4px;
}
.gnl-majors__note {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--gnl-page-muted);
  margin: 0;
}
@media (max-width: 720px) {
  .gnl-majors { grid-template-columns: 1fr; }
}
[data-theme="dark"] .gnl-majors__item {
  background: var(--gnl-coral-light);
  border-color: rgba(255,140,110,0.3);
}
[data-theme="dark"] .gnl-majors__label { color: var(--gnl-page-navy); }

/* Stat badges — coral variant (Exercise) */
.gnl-stat--coral {
  color: var(--gnl-coral-deep);
  border-color: rgba(255,107,71,0.25);
  background: var(--gnl-coral-light);
}
[data-theme="dark"] .gnl-stat--coral {
  color: var(--gnl-coral-deep);
}

/* Feature box — coral tinted (Exercise "What GNL research shows" blocks) */
.gnl-card--coral-soft {
  background: var(--gnl-coral-light) !important;
  border: 1px solid rgba(255,107,71,0.22) !important;
  border-left: 4px solid var(--gnl-coral) !important;
}

/* Callouts */
.gnl-callout, .gnl-ciq-v2__callout {
  background: var(--gnl-page-callout-bg);
  border-left: 5px solid var(--gnl-page-navy);
  border-radius: 0 14px 14px 0;
  padding: 18px 18px 18px 20px;
  margin: 18px 0;
}

.gnl-callout p:last-child, .gnl-callout ul:last-child, .gnl-callout ol:last-child,
.gnl-ciq-v2__callout p:last-child, .gnl-ciq-v2__callout ul:last-child, .gnl-ciq-v2__callout ol:last-child { margin-bottom: 0; }

/* Quote box */
.gnl-quote-box { background: var(--gnl-page-callout-bg); border: 1px solid var(--gnl-page-line); border-radius: 16px; padding: 20px; margin: 18px 0; }
.gnl-quote-box blockquote { margin: 0; }

/* Tags */
.gnl-tag-row, .gnl-ciq-v2__tag-row { margin: 8px 0 18px 0; }

.gnl-tag, .gnl-ciq-v2__tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gnl-page-tag-bg);
  color: var(--gnl-page-navy);
  border: 1px solid var(--gnl-page-tag-border);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--gnl-font);
  margin: 0 8px 10px 0;
}

/* Buttons */
.gnl-button-row, .gnl-ciq-v2__button-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 14px 0; }
.gnl-button-row--stack { flex-direction: column; align-items: stretch; }
.gnl-button--full { width: 100%; text-align: center; box-sizing: border-box; }

/* CTA row, equal-width fill, locked site-wide 12 May 2026 after ep 38 review.
   Three buttons share the card width evenly on desktop/tablet, stack on mobile. */
.gnl-card--editorial .gnl-button-row,
.gnl-card--soft .gnl-button-row {
  flex-wrap: nowrap;
  align-items: stretch;
}
.gnl-card--editorial .gnl-button-row .gnl-button,
.gnl-card--soft .gnl-button-row .gnl-button {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
@media (max-width: 720px) {
  .gnl-card--editorial .gnl-button-row,
  .gnl-card--soft .gnl-button-row {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .gnl-card--editorial .gnl-button-row .gnl-button,
  .gnl-card--soft .gnl-button-row .gnl-button {
    width: 100%;
    white-space: normal;
  }
}

.gnl-button, .gnl-ciq-v2__button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--gnl-font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
}

.gnl-button:hover, .gnl-button:focus-visible,
.gnl-ciq-v2__button:hover, .gnl-ciq-v2__button:focus-visible { transform: translateY(-1px); text-decoration: none !important; }

.gnl-button:focus-visible, .gnl-ciq-v2__button:focus-visible { outline: 2px solid var(--gnl-blue); outline-offset: 2px; }

.gnl-button--primary, .gnl-ciq-v2__button--primary {
  background: var(--gnl-blue);
  color: var(--gnl-text-inverse) !important;
  border: 1px solid var(--gnl-blue);
}

.gnl-button--primary:hover, .gnl-button--primary:focus-visible,
.gnl-ciq-v2__button--primary:hover, .gnl-ciq-v2__button--primary:focus-visible {
  background: var(--gnl-page-navy-dark);
  border-color: var(--gnl-page-navy-dark);
  box-shadow: 0 4px 14px rgba(18, 58, 99, 0.25);
  color: var(--gnl-text-inverse) !important;
}

.gnl-button--secondary, .gnl-ciq-v2__button--secondary {
  background: var(--gnl-blue);
  color: var(--gnl-text-inverse) !important;
  border: 1px solid var(--gnl-blue);
}

.gnl-button--secondary:hover, .gnl-button--secondary:focus-visible,
.gnl-ciq-v2__button--secondary:hover, .gnl-ciq-v2__button--secondary:focus-visible {
  background: var(--gnl-page-navy-dark);
  border-color: var(--gnl-page-navy-dark);
  color: var(--gnl-text-inverse) !important;
  box-shadow: 0 4px 14px rgba(18, 58, 99, 0.25);
}

/* Layout helpers */
.gnl-two-col, .gnl-ciq-v2__two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.gnl-feature-box, .gnl-ciq-v2__phase-box { background: var(--gnl-page-white); border: 1px solid var(--gnl-page-line); border-radius: 18px; padding: 20px; }
.gnl-feature-box h3, .gnl-ciq-v2__phase-box h3 { margin-bottom: 10px; }

.gnl-stack > .gnl-feature-box + .gnl-feature-box,
.gnl-stack > .gnl-ciq-v2__phase-box + .gnl-ciq-v2__phase-box { margin-top: 18px; }

.gnl-explorer-grid, .gnl-ciq-v2__explorer-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; align-items: start; margin-top: 18px; }
.gnl-image, .gnl-ciq-v2__image { margin: 18px 0; }

.gnl-image img, .gnl-mini-image img,
.gnl-ciq-v2__image img, .gnl-ciq-v2__mini-image img { width: 100%; display: block; border-radius: 18px; border: 1px solid var(--gnl-page-line); box-shadow: var(--gnl-page-shadow-img); }

.gnl-mini-grid, .gnl-ciq-v2__mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }

.gnl-mini-image img, .gnl-ciq-v2__mini-image img { border-radius: 14px; border: 1px solid var(--gnl-page-line-soft); box-shadow: none; background: var(--gnl-page-white); }

.gnl-small-note, .gnl-ciq-v2__small-note { font-size: 14px; color: var(--gnl-page-muted); margin: 0; }

/* Table system */
.gnl-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--gnl-page-line); border-radius: 16px; background: var(--gnl-page-white); margin: 18px 0 22px 0; }
.gnl-table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: auto; }
.gnl-table th, .gnl-table td { padding: 12px 14px; text-align: left; vertical-align: top; line-height: 1.45; border-top: 1px solid var(--gnl-page-line); overflow-wrap: anywhere; }
.gnl-table thead th { background: var(--gnl-page-table-head-bg); color: var(--gnl-page-navy); font-weight: 700; border-top: none; font-family: var(--gnl-font); }
.gnl-table tbody tr:nth-child(even) { background: var(--gnl-page-table-row-alt); }
.gnl-table td:first-child, .gnl-table th:first-child { font-weight: 600; }
.gnl-table a { font-weight: 700; }

/* Gutenberg cleanup */
.gnl-page .wp-block-embed, .gnl-page .wp-block-image, .gnl-page .wp-block-audio,
.gnl-ciq-v2 .wp-block-embed, .gnl-ciq-v2 .wp-block-image, .gnl-ciq-v2 .wp-block-audio { margin-top: 18px; margin-bottom: 18px; }

.gnl-page .wp-block-embed__wrapper, .gnl-ciq-v2 .wp-block-embed__wrapper { overflow: hidden; border-radius: var(--gnl-page-radius-sm); }

/* Responsive — 900px */
@media (max-width: 900px) {
  .gnl-page, .gnl-ciq-v2 { font-size: 17px; }
  .gnl-page h1, .gnl-hero__title, .gnl-ciq-v2 h1 { font-size: 34px; }
  .gnl-page h2, .gnl-ciq-v2 h2 { font-size: 27px; }
  .gnl-hero, .gnl-card.gnl-card--editorial, .gnl-page section.gnl-card,
  .gnl-ciq-v2__hero, .gnl-ciq-v2__card { padding: 22px; }
  .gnl-two-col, .gnl-explorer-grid, .gnl-mini-grid,
  .gnl-ciq-v2__two-col, .gnl-ciq-v2__explorer-grid, .gnl-ciq-v2__mini-grid { grid-template-columns: 1fr; }
  .gnl-page iframe, .gnl-ciq-v2 iframe { min-height: 280px; }
  .gnl-table { min-width: 680px; }
}

/* Responsive — 520px */
@media (max-width: 520px) {
  .gnl-page h1, .gnl-hero__title, .gnl-ciq-v2 h1 { font-size: 28px; }
  .gnl-page h2, .gnl-ciq-v2 h2 { font-size: 22px; }
  .gnl-page h3, .gnl-ciq-v2 h3 { font-size: 19px; }
  .gnl-button, .gnl-ciq-v2__button { width: 100%; text-align: center; }
  .gnl-button-row, .gnl-ciq-v2__button-row { flex-direction: column; align-items: stretch; }
  /* Explorer mobile compaction */
  .gnl-hero, .gnl-ciq-v2__hero { padding: 16px; margin-bottom: 14px; }
  .gnl-hero__lead, .gnl-lead, .gnl-ciq-v2__lead { font-size: 16px; }
  .gnl-kicker, .gnl-hero__kicker { font-size: 11px; margin-bottom: 6px; }
  .gnl-explorer-brand { display: none !important; }
  .gnl-disclaimer-details { display: none !important; }
}

/* Explorer mobile footer — hide below 768px */
@media (max-width: 768px) {
  .gnl-explorer-footer { display: none; }
  .gnl-explorer-support { display: none; }
}


/* ======================================================================
   CYCLE 28: hero/palette override pushed to END of file so source order
   wins over the cycle-24 canonical .gnl-hero rule (line 2830). Cycle 27
   placed these too early; the canonical port re-set the bg + dropped the
   text-align: center, leaving the hero left-aligned and bare.
====================================================================== */
.gnl-hero,
.gnl-ciq-v2__hero,
.gnl-page .gnl-hero {
  background: linear-gradient(160deg, #0d1f35 0%, #123a63 55%, #1a4a7a 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  padding: 56px 44px !important;
  box-shadow: 0 14px 36px rgba(13, 31, 53, 0.22) !important;
  margin: 0 0 36px !important;
  text-align: center !important;
  color: #ffffff !important;
}
@media (max-width: 720px) {
  .gnl-hero,
  .gnl-ciq-v2__hero,
  .gnl-page .gnl-hero {
    padding: 36px 22px !important;
    border-radius: 14px !important;
  }
}
.gnl-hero .gnl-kicker,
.gnl-hero .gnl-hero__kicker,
.gnl-page .gnl-hero .gnl-kicker {
  color: #7eb8e8 !important;
  text-align: center !important;
  margin: 0 0 12px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
}
.gnl-hero .gnl-hero__title,
.gnl-page .gnl-hero .gnl-hero__title,
.gnl-page .gnl-hero h1 {
  color: #ffffff !important;
  text-align: center !important;
  font-size: clamp(28px, 5vw, 50px) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  margin: 0 0 18px !important;
}
.gnl-hero .gnl-hero__lead,
.gnl-hero .gnl-lead,
.gnl-page .gnl-hero .gnl-hero__lead,
.gnl-page .gnl-hero p {
  color: #c5daf2 !important;
  text-align: center !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}
.gnl-hero .gnl-hero__lead em,
.gnl-page .gnl-hero em { color: #9fc2e8 !important; font-style: italic !important; }
.gnl-hero .gnl-hero__lead strong,
.gnl-page .gnl-hero strong { color: #ffffff !important; }

/* Cycle 32: lactate page now uses VN section/inner pattern (cycle 30 rewrite).
   Body bg goes back to default white so the full-width .vn-light / .vn-soft
   / .vn-dark-plain section bands stand out by themselves — same model as
   home / services / about / case-studies. */
body.page-id-83 { background: #ffffff !important; }

/* The .gnl-page wrapper was stripped in cycle 30. Drop its width constraint
   on the lactate page so any residual .gnl-page (if WP re-injects one)
   doesn't squeeze the new VN section structure. */
body.page-id-83 .gnl-page {
  max-width: none !important;
  padding: 0 !important;
}

/* Ported flagship containers inside the VN .vn-inner — make sure they
   constrain the same way the rest of the VN site does (max 980px content,
   no max-width on the section band itself). */
body.page-id-83 .vn-light,
body.page-id-83 .vn-soft,
body.page-id-83 .vn-dark,
body.page-id-83 .vn-dark-plain {
  max-width: none !important;
  width: 100% !important;
}
body.page-id-83 .vn-inner {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}
@media (max-width: 720px) {
  body.page-id-83 .vn-inner { padding: 0 18px !important; }
}
/* .gnl-card and friends inside .vn-inner stay as inner editorial blocks, not
   ports of the GNL-canonical .gnl-page hierarchy. Remove any inherited
   margin-auto / max-width that fights .vn-inner's centring. */
body.page-id-83 .vn-inner > .gnl-card,
body.page-id-83 .vn-inner > .ask-grace,
body.page-id-83 .vn-inner > .gnl-callout,
body.page-id-83 .vn-inner > .gnl-feature-box,
body.page-id-83 .vn-inner > .gnl-readmore {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* ======================================================================
   CYCLE 37: contrast fix for .gnl-card / .gnl-feature-box inside a dark
   section (e.g. .vn-dark / .vn-dark-plain). Without this, ported
   .gnl-page typography forces navy text inside a dark-navy band — text
   becomes unreadable. Lactate "Tail risks" + any future dark-band ported
   content gets white text + light-blue accents + a translucent feature
   box matching the cycle-20 dark-CTA pattern.
====================================================================== */
.vn-dark .gnl-card,
.vn-dark-plain .gnl-card,
.vn-dark .gnl-card--editorial,
.vn-dark-plain .gnl-card--editorial,
.vn-dark .gnl-card--highlight,
.vn-dark-plain .gnl-card--highlight {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  padding: 0 !important;
}

.vn-dark .gnl-card h2,
.vn-dark .gnl-card h3,
.vn-dark .gnl-card p,
.vn-dark .gnl-card li,
.vn-dark-plain .gnl-card h2,
.vn-dark-plain .gnl-card h3,
.vn-dark-plain .gnl-card p,
.vn-dark-plain .gnl-card li {
  color: #ffffff !important;
}
.vn-dark .gnl-card h2,
.vn-dark .gnl-card h3,
.vn-dark-plain .gnl-card h2,
.vn-dark-plain .gnl-card h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
}
.vn-dark .gnl-card strong,
.vn-dark .gnl-card em,
.vn-dark-plain .gnl-card strong,
.vn-dark-plain .gnl-card em {
  color: #7eb8e8 !important;
}
.vn-dark .gnl-card a:not(.vn-cta):not(.contact-link),
.vn-dark-plain .gnl-card a:not(.vn-cta):not(.contact-link) {
  color: #7eb8e8 !important;
  text-decoration: underline !important;
}
.vn-dark .gnl-card a:not(.vn-cta):not(.contact-link):hover,
.vn-dark-plain .gnl-card a:not(.vn-cta):not(.contact-link):hover {
  color: #ffffff !important;
}

/* Feature box inside dark band: translucent panel like the cycle-20 CTA */
.vn-dark .gnl-feature-box,
.vn-dark-plain .gnl-feature-box {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-left: 4px solid #7eb8e8 !important;
  border-radius: 10px !important;
  padding: 22px 26px !important;
  margin: 22px 0 0 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22) !important;
}
.vn-dark .gnl-feature-box h3,
.vn-dark .gnl-feature-box p,
.vn-dark-plain .gnl-feature-box h3,
.vn-dark-plain .gnl-feature-box p {
  color: #ffffff !important;
}
.vn-dark .gnl-feature-box strong,
.vn-dark .gnl-feature-box em,
.vn-dark-plain .gnl-feature-box strong,
.vn-dark-plain .gnl-feature-box em {
  color: #7eb8e8 !important;
}

/* Callouts inside dark bands too */
.vn-dark .gnl-callout,
.vn-dark-plain .gnl-callout {
  background: rgba(255, 255, 255, 0.08) !important;
  border-left: 4px solid #7eb8e8 !important;
  color: #ffffff !important;
}
.vn-dark .gnl-callout p,
.vn-dark-plain .gnl-callout p,
.vn-dark .gnl-callout strong,
.vn-dark-plain .gnl-callout strong {
  color: #ffffff !important;
}


/* ======================================================================
   CYCLE 38: services-page emphasis. Tier blocks get a centred, bigger,
   VN-blue tier label + title (Light Touch / Strong Signal / Bullet Proof).
   Yes/no buckets get a centred, bigger, VN-blue headline above the body
   paragraph. Body paragraphs stay left-aligned for readability.
====================================================================== */
.services-stack .service-block__label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.services-stack .service-block__title {
  text-align: center;
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.vn-accept > h3,
.vn-refuse > h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--blue);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .services-stack .service-block__title { font-size: 24px; }
  .vn-accept > h3,
  .vn-refuse > h3 { font-size: 19px; }
}


/* ======================================================================
   CYCLE 38: /agents/ page — fix white-in-white details cards.
   The 13 agent <details> rows were styled inline with var(--line) borders
   (#d7e6f5, near-invisible) on white bg on .vn-light slate. Bumping every
   <details> inside .vn-agent-list to a strong VN-blue + black edge with a
   layered shadow; coloured left bars (red, blue, green) preserved by
   targeting via [style*="border-left"].
====================================================================== */
.vn-agent-list details {
  background: #ffffff !important;
  border: 1.5px solid #0d1f35 !important;
  border-radius: 10px !important;
  padding: 16px 22px !important;
  margin-bottom: 12px !important;
  box-shadow: 0 14px 32px rgba(13, 31, 53, 0.18), 0 4px 10px rgba(13, 31, 53, 0.10) !important;
}
.vn-agent-list details[style*="border-left:4px solid var(--blue)"] {
  border-left: 4px solid #006CFF !important;
}
.vn-agent-list details[style*="border-left:6px solid var(--refuse)"] {
  border-left: 6px solid #c0392b !important;
}
.vn-agent-list details[style*="border-left:6px solid var(--accept)"] {
  border-left: 6px solid #0e7a5c !important;
}
.vn-agent-list details summary {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  color: #0d1f35 !important;
  font-size: 15.5px !important;
}
.vn-agent-list details[open] {
  border-color: #006CFF !important;
  box-shadow: 0 18px 40px rgba(0, 108, 255, 0.20), 0 6px 14px rgba(13, 31, 53, 0.14) !important;
}
.vn-agent-list details > div {
  color: #123A63 !important;
}
.vn-agent-list details > div p {
  color: #123A63 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}
.vn-agent-list details > div strong {
  color: #0d1f35 !important;
}


/* ======================================================================
   CYCLE 40: /agents/intake/ contrast lift. Inputs and radio labels sat on
   the light-slate (#cbd5e1) form card with a faint slate-grey border —
   white-on-light-slate-on-dark-navy looked washed out. Now: navy-700
   border at 1.5px + small layered shadow so each field edge reads cleanly.
====================================================================== */
.vn-form input[type="text"],
.vn-form input[type="email"],
.vn-form input[type="tel"],
.vn-form input[type="url"],
.vn-form textarea,
.vn-form select,
.vn-form .radio-group label {
  border: 1.5px solid var(--vn-navy-700) !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(13, 31, 53, 0.12), 0 2px 6px rgba(13, 31, 53, 0.10) !important;
}
.vn-form input:focus,
.vn-form textarea:focus,
.vn-form select:focus {
  border-color: var(--vn-blue-500) !important;
  box-shadow: 0 0 0 3px rgba(0, 108, 255, 0.22),
              0 1px 0 rgba(13, 31, 53, 0.12),
              0 2px 6px rgba(13, 31, 53, 0.10) !important;
}
.vn-form .radio-group label:hover {
  border-color: var(--vn-blue-500) !important;
  background: var(--vn-blue-100) !important;
}
.vn-form .radio-group input[type="radio"]:checked + span,
.vn-form .radio-group label:has(input[type="radio"]:checked) {
  border-color: var(--vn-blue-500) !important;
  background: var(--vn-blue-100) !important;
}


/* ======================================================================
   CYCLE 41: /case-studies/ whole-card click. WP's wpautop wrapped the
   <a class="service-block"> inside / around <p> tags, breaking the anchor
   so only a tiny strip at the top of each card was clickable. Fix at the
   structural level: each card is a plain <div> with an absolute-positioned
   <a class="service-block__overlay"> sibling that captures clicks across
   the full card. Preserves accessibility (aria-label on the overlay).
====================================================================== */
.services-stack .service-block--card {
  position: relative;
}
.services-stack .service-block--card .service-block__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
}
.services-stack .service-block--card .service-block__overlay:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
.services-stack .service-block--card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(13, 31, 53, 0.26), 0 6px 14px rgba(13, 31, 53, 0.16);
}

/* ============================================================
   /start-a-brief/ (page 179) intake page styles.
   Moved out of inline <style> 2026-05-14: wpautop was mangling
   the in-content style block, leaving the hero unstyled.
   ============================================================ */
  .vn-brief-page * { box-sizing: border-box; }
  .vn-brief-page { font-family: 'Inter', system-ui, sans-serif; font-size: 15px; line-height: 1.65; }
  .vn-brief-page h1, .vn-brief-page h2 { font-family: 'Montserrat', sans-serif; }

  .vnb-dark {
    background: linear-gradient(160deg, #0d1f35 0%, #123A63 60%, #1a4a7a 100%);
    color: white; padding: 72px 20px 56px; width: 100%;
  }
  .vnb-dark-plain { background: #0d1f35; color: white; padding: 56px 20px 64px; width: 100%; }
  .vnb-inner { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .vnb-hero { text-align: center; }
  .vnb-eyebrow {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.78);
    background: rgba(0,108,255,0.18); border: 1px solid rgba(0,108,255,0.42);
    padding: 5px 14px; border-radius: 100px; margin-bottom: 22px;
  }
  .vnb-hero h1 {
    font-size: clamp(28px, 5vw, 44px); font-weight: 900; color: white;
    line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.5px;
  }
  .vnb-hero h1 span { color: #7eb8e8; }
  .vnb-hero p { color: #c5daf2; font-size: 17px; line-height: 1.65; max-width: 660px; margin: 0 auto; }
  .vnb-hero-frame {
    max-width: 680px; margin: 26px auto 0; padding: 16px 22px;
    background: rgba(0,108,255,0.12); border: 1px solid rgba(0,108,255,0.38);
    border-radius: 10px; color: #dbe9fb; font-size: 14.5px;
  }
  .vnb-hero-frame a { color: #7eb8e8; font-weight: 700; }

  .vnb-form-section { padding: 48px 20px 64px; }
  .vnb-form-card {
    max-width: 720px; margin: 0 auto; background: #cbd5e1;
    padding: 36px 36px 40px; border-radius: 14px; border-top: 4px solid #006CFF;
    box-shadow: 0 16px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06); color: #111;
  }
  .vnb-step-meta {
    font-size: 11px; font-weight: 800; color: #006CFF;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
  }
  .vnb-promise {
    background: rgba(0,108,255,0.08); border-left: 4px solid #006CFF;
    border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 0 0 22px; color: #0d1f35;
  }
  .vnb-promise p { margin: 0; font-size: 14px; line-height: 1.6; }

  .vn-form fieldset { border: 0; padding: 0; margin: 0 0 22px; }
  .vn-form legend { font-size: 16px; font-weight: 800; color: #0d1f35; padding: 0; margin-bottom: 8px; }
  .vn-form label { font-size: 14px; font-weight: 600; color: #0d1f35; display: block; margin-bottom: 6px; }
  .vn-form label.helper { font-size: 13px; color: #5b6776; font-weight: 400; margin-bottom: 10px; }
  .vn-form .req { color: #dc2626; }

  .vn-form input[type="text"], .vn-form input[type="email"], .vn-form textarea, .vn-form select {
    width: 100%; padding: 12px 14px; font-size: 15px;
    border: 1px solid #94a3b8; border-radius: 6px;
    background: white; color: #111; font-family: inherit;
  }
  .vn-form input:focus, .vn-form textarea:focus, .vn-form select:focus {
    outline: none; border-color: #006CFF; box-shadow: 0 0 0 3px rgba(0,108,255,0.18);
  }
  .vn-form textarea { min-height: 110px; resize: vertical; }

  .vn-form .radio-group { display: grid; gap: 8px; margin-top: 4px; }
  .vn-form .radio-group label {
    display: flex; align-items: flex-start; gap: 10px; padding: 11px 14px;
    background: white; border: 1px solid #94a3b8; border-radius: 6px;
    cursor: pointer; font-size: 14px; font-weight: 500; color: #111;
    transition: border-color 0.15s, background 0.15s;
  }
  .vn-form .radio-group label:hover { border-color: #006CFF; background: #EAF3FF; }
  .vn-form .radio-group input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: #006CFF; }

  .vn-form .consent {
    display: flex; gap: 10px; align-items: flex-start; padding: 16px 18px;
    background: white; border: 1px solid #94a3b8; border-left: 4px solid #006CFF;
    border-radius: 6px; font-size: 14px; color: #111; margin-top: 8px;
  }
  .vn-form .consent input { margin-top: 4px; flex-shrink: 0; accent-color: #006CFF; }
  .vn-form .consent a { color: #006CFF; }

  .vn-form .submit-row {
    margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(0,0,0,0.10);
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  }
  .vn-form button.submit {
    background: #006CFF; color: white; font-weight: 800; font-size: 15px; letter-spacing: 0.4px;
    padding: 14px 30px; border: 0; border-radius: 8px; cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,108,255,0.28);
    transition: transform 0.15s, box-shadow 0.15s; font-family: 'Montserrat', sans-serif;
  }
  .vn-form button.submit:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,108,255,0.42); }
  .vn-form button.submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
  .vn-form .submit-meta { font-size: 13px; color: #5b6776; }

  .vn-form-message { padding: 14px 18px; border-radius: 6px; margin-bottom: 18px; font-size: 14px; font-weight: 500; }
  .vn-form-message.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
  .vn-form-message.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

  .vnb-thanks { text-align: center; padding: 24px 0 8px; }
  .vnb-thanks h2 { font-size: 26px; color: #0d1f35; margin-bottom: 14px; font-weight: 900; }
  .vnb-thanks p { color: #123A63; max-width: 520px; margin: 0 auto 12px; font-size: 15px; }
  .vnb-thanks a { color: #006CFF; }

  .g-recaptcha { margin-top: 6px; }

  .vnb-tiers { max-width: 720px; margin: 36px auto 0; }
  .vnb-tiers h2 { color: white; font-size: 20px; font-weight: 900; margin: 0 0 14px; }
  .vnb-tiers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .vnb-tier-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; padding: 16px 18px; color: #c5daf2; font-size: 13.5px; line-height: 1.6;
  }
  .vnb-tier-card strong { color: white; font-family: 'Montserrat', sans-serif; }
  .vnb-tier-card a { color: #7eb8e8; font-weight: 700; }

  @media (max-width: 600px) {
    .vnb-dark { padding: 56px 16px 44px; }
    .vnb-form-section { padding: 36px 14px 48px; }
    .vnb-inner { padding: 0 18px; }
    .vnb-form-card { padding: 26px 22px 30px; }
    .vnb-tiers-grid { grid-template-columns: 1fr; }
  }
