/* Intelligent Title — Site CSS v2.1 (Stage 1.1) */

:root {
  --navy: #0F2342;
  --navy-dark: #081733;
  --teal: #14A3B8;
  --teal-dark: #0E7F91;
  --text: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-panel: #F1F5F9;
  --border: #E5E7EB;
  --border-strong: #CBD5E1;
  --serif: 'Source Serif 4', 'Source Serif Pro', Georgia, "Times New Roman", serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(15, 35, 66, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 35, 66, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 35, 66, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* HEADER / NAV */
.site-header { background: #FFFFFF; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-wrap { max-width: 1280px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img, .nav-logo svg { height: 40px; width: auto; display: block; }
@media (max-width: 640px) { .nav-logo img, .nav-logo svg { height: 36px; } }
.nav-items { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-items > li { position: relative; }
.nav-link { color: var(--navy); font-size: 14px; font-weight: 500; padding: 10px 0; white-space: nowrap; cursor: pointer; display: flex; align-items: center; gap: 6px; background: none; border: none; font-family: var(--sans); text-decoration: none; }
.nav-link:hover { color: var(--teal-dark); }
.nav-caret { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-left: 2px; }
.nav-cta { background: var(--teal); color: #FFFFFF !important; padding: 10px 18px; border-radius: 4px; font-weight: 600; font-size: 14px; white-space: nowrap; transition: background 0.2s; text-decoration: none; }
.nav-cta:hover { background: var(--teal-dark); color: #FFFFFF !important; }

.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-lg); padding: 32px; min-width: 880px; display: none; z-index: 200; }
.nav-items > li:hover .mega-menu, .nav-items > li:focus-within .mega-menu { display: block; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; }
.mega-item { padding: 14px 16px; border-radius: 6px; transition: background 0.15s; display: block; text-decoration: none; color: var(--text); }
.mega-item:hover { background: var(--bg-panel); }
.mega-item-title { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.mega-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
.mega-item.disabled { opacity: 0.55; cursor: default; }
.mega-item.disabled:hover { background: transparent; }

.nav-mobile-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--navy); cursor: pointer; padding: 4px 8px; }

@media (max-width: 1180px) {
  .nav-items { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-items.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #FFFFFF; padding: 24px; gap: 12px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav-items.open > li { width: 100%; }
  .mega-menu { position: static; transform: none; min-width: 0; padding: 12px 0 0 0; border: none; box-shadow: none; display: block; }
  .mega-grid { grid-template-columns: 1fr; }
}

/* IDENTITY BLOCK */
.identity-block { background: var(--bg-panel); border-top: 3px solid var(--teal); padding: 22px 0; }
.identity-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; justify-content: space-between; }
.identity-text { font-size: 14px; color: var(--text); line-height: 1.55; max-width: 720px; }
.identity-text strong { color: var(--navy); }
.identity-cta { background: var(--navy); color: #FFFFFF !important; padding: 12px 22px; border-radius: 4px; font-weight: 600; font-size: 14px; white-space: nowrap; transition: background 0.2s; text-decoration: none; }
.identity-cta:hover { background: var(--navy-dark); }
.identity-framework-link { display: block; margin-top: 8px; font-size: 13px; color: var(--teal-dark); font-weight: 500; }
.identity-framework-link:hover { color: var(--navy); text-decoration: underline; }

@media (max-width: 768px) { .identity-inner { flex-direction: column; align-items: flex-start; } }

/* BRAND LOCKUP BLOCK — constituent/company pages */
.brand-lockup-block { background: #FFFFFF; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.brand-lockup-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand-lockup-inner img { max-width: 640px; width: 100%; height: auto; display: block; }
.brand-lockup-cta { background: var(--teal); color: #FFFFFF !important; padding: 12px 22px; border-radius: 4px; font-weight: 600; font-size: 14px; white-space: nowrap; text-decoration: none; transition: background 0.2s; }
.brand-lockup-cta:hover { background: var(--teal-dark); }
@media (max-width: 900px) { .brand-lockup-inner { flex-direction: column; align-items: flex-start; } .brand-lockup-inner img { max-width: 100%; } }

/* HERO */
.hero { padding: 80px 0 64px 0; background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%); }
.hero-inner { max-width: 960px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero-eyebrow { color: var(--navy); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.hero-h1 { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.hero-sub { font-size: 17px; color: var(--text); max-width: 720px; margin: 0 auto 32px auto; line-height: 1.6; }
.hero-imperative { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 32px; }
.hero-imperative span { color: var(--teal-dark); }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--teal); color: #FFFFFF; padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: var(--teal-dark); color: #FFFFFF; }
.btn-secondary { background: transparent; color: var(--navy); padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: 15px; border: 1.5px solid var(--navy); text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-secondary:hover { background: var(--navy); color: #FFFFFF; }

@media (max-width: 640px) {
  .hero { padding: 56px 0 48px 0; }
  .hero-h1 { font-size: 32px; }
  .hero-tagline { font-size: 17px; }
  .hero-imperative { font-size: 18px; }
}

/* SECTIONS */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.section-title { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-lead { font-size: 17px; color: var(--text); margin-bottom: 40px; max-width: 800px; }
.section-eyebrow { color: var(--teal-dark); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }

/* TILE GRID */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; transition: all 0.2s; text-decoration: none; color: var(--text); }
.tile-link:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tile-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.tile-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; flex-grow: 1; margin-bottom: 16px; }
.tile-cta { color: var(--teal-dark); font-size: 13px; font-weight: 600; letter-spacing: 0.03em; }
.tile-inactive { opacity: 0.65; cursor: default; }
.tile-inactive:hover { transform: none; box-shadow: none; border-color: var(--border); }
.tile-inactive .tile-cta { color: var(--text-light); }

@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tile-grid { grid-template-columns: 1fr; } }

/* CONSTITUENT PAGE MODULES */
.page-hero { background: #FFFFFF; color: var(--navy); padding: 64px 0; }
.page-hero .container-narrow { text-align: left; }
.page-hero-eyebrow { color: var(--navy); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.page-hero-h1 { font-family: var(--serif); font-size: 38px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.page-hero-lead { font-size: 17px; line-height: 1.6; color: var(--text); max-width: 780px; margin-bottom: 28px; }
.page-hero .btn-primary { background: var(--teal); }
.page-hero .btn-primary:hover { background: #FFFFFF; color: var(--navy); }

.module { padding: 56px 0; border-bottom: 1px solid var(--border); }
.module:last-of-type { border-bottom: none; }
.module-num { color: var(--teal-dark); font-family: var(--serif); font-size: 14px; font-weight: 700; letter-spacing: 0.15em; margin-bottom: 8px; }
.module-title { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 20px; letter-spacing: -0.01em; }
.module p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; color: var(--text); }
.module p:last-child { margin-bottom: 0; }
.module strong { color: var(--navy); }

/* TIMELINE TABLE */
.timeline-table { width: 100%; border-collapse: collapse; margin: 28px 0 12px 0; background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.timeline-table th { background: var(--navy); color: #FFFFFF; padding: 14px 18px; text-align: left; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.timeline-table td { padding: 14px 18px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text); line-height: 1.5; vertical-align: top; }
.timeline-table tr:nth-child(even) td { background: var(--bg-soft); }
.timeline-table .stage-cell { font-weight: 600; color: var(--navy); white-space: nowrap; width: 140px; }
.timeline-table .with-cell { color: var(--teal-dark); font-weight: 500; }

.module ul { margin: 16px 0; padding-left: 22px; }
.module ul li { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 8px; }
.module ul li strong { color: var(--navy); }

.sub-block { margin-top: 28px; padding: 20px 24px; background: var(--bg-soft); border-left: 3px solid var(--teal); border-radius: 0 6px 6px 0; }
.sub-block-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }

.callout { background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-panel) 100%); border: 1px solid var(--border); border-radius: 8px; padding: 28px 32px; margin: 32px 0; }
.callout-eyebrow { color: var(--teal-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.callout p { margin: 0; font-size: 16px; color: var(--text); }

/* ORDER BLOCK — Direct Payment Link Button */
.order-embed-block { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 72px 0; color: #FFFFFF; text-align: center; }
.order-embed-block .order-eyebrow { color: var(--teal); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.order-embed-block h2 { font-family: var(--serif); font-size: 32px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.order-embed-block p { font-size: 16px; color: rgba(255, 255, 255, 0.85); max-width: 680px; margin: 0 auto 20px auto; }
.order-embed-block .order-price { font-family: var(--serif); font-size: 48px; font-weight: 700; color: #FFFFFF; margin: 24px 0 8px 0; letter-spacing: -0.02em; }
.order-embed-block .order-price-note { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.order-embed-block .btn-order-cta { display: inline-block; background: var(--teal); color: #FFFFFF; padding: 18px 40px; border-radius: 6px; font-weight: 700; font-size: 17px; text-decoration: none; transition: all 0.2s; letter-spacing: 0.01em; }
.order-embed-block .btn-order-cta:hover { background: #FFFFFF; color: var(--navy); }
.order-embed-block .order-fine { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-top: 24px; }

/* UNDERWRITERS */
.underwriters { padding: 56px 0; background: var(--bg-soft); text-align: center; }
.underwriters-eyebrow { color: var(--teal-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.underwriters-title { font-family: var(--serif); font-size: 24px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.underwriters-list { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 800px; margin: 0 auto; }
.underwriters-list strong { color: var(--navy); }

/* UNIVERSAL TIMELINE */
.universal-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ut-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; padding: 28px; text-align: center; }
.ut-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; line-height: 1; }
.ut-title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.ut-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 800px) { .universal-timeline { grid-template-columns: 1fr; } }

/* DISCIPLINE PAGE — CONSTITUENT MATRIX */
.discipline-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.discipline-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.discipline-card-title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.discipline-card-trigger { display: inline-block; background: var(--bg-panel); color: var(--teal-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 14px; }
.discipline-card-desc { font-size: 14px; color: var(--text); line-height: 1.6; }
.discipline-card-desc strong { color: var(--navy); }

@media (max-width: 900px) { .discipline-matrix { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .discipline-matrix { grid-template-columns: 1fr; } }

/* FOOTER */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.75); padding: 56px 0 32px 0; font-size: 13px; line-height: 1.6; }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { margin-bottom: 16px; max-width: 260px; }
.footer-brand img { width: 100%; height: auto; display: block; border-radius: 6px; }
.footer-tagline { font-family: var(--serif); font-style: italic; color: rgba(255, 255, 255, 0.85); font-size: 14px; margin-bottom: 16px; max-width: 380px; }
.footer-contact { color: rgba(255, 255, 255, 0.85); font-size: 13px; }
.footer-contact a { color: var(--teal); }
.footer-heading { color: #FFFFFF; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255, 255, 255, 0.75); }
.footer-links a:hover { color: #FFFFFF; }
.footer-legal { max-width: 1200px; margin: 0 auto; padding: 24px 24px 0 24px; border-top: 1px solid rgba(255, 255, 255, 0.15); font-size: 11px; color: rgba(255, 255, 255, 0.55); line-height: 1.6; }
.footer-legal p { margin-bottom: 10px; }

@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; } }


/* CHECKMARK UTILITY (Stage 1.9) */
.check { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.check-inline { width: 20px; height: 22px; margin-right: 8px; vertical-align: -5px; }
.check-outcome { width: 22px; height: 24px; margin-right: 10px; vertical-align: -6px; }
.check-workflow { width: 24px; height: 26px; margin-right: 12px; vertical-align: -7px; }
.check-timeline { width: 48px; height: 52px; margin: 0 auto 12px auto; display: block; }
.check-discipline { width: 18px; height: 20px; margin-right: 6px; vertical-align: -4px; }

/* Workflow list — checkmarks replace numeric bullets */
ol.workflow-steps { list-style: none; padding-left: 0; margin: 20px 0; }
ol.workflow-steps > li { position: relative; padding-left: 44px; margin-bottom: 14px; line-height: 1.6; }
ol.workflow-steps > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 30px;
  background-image: url('/assets/images/check-shield-light.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Discipline card outcome line — small checkmark before the bolded closing sentence */
.discipline-card-desc strong { color: var(--navy); }

@media (max-width: 640px) {
  .check-timeline { width: 40px; height: 44px; }
  ol.workflow-steps > li { padding-left: 36px; }
  ol.workflow-steps > li::before { width: 24px; height: 26px; }
}


/* Sub-block title inline checkmark (Stage 1.9) */
.sub-block-title { display: flex; align-items: center; gap: 4px; }
.sub-block-title .check { display: inline-block; }


/* BRAND BLOCK (Stage 1.9.1) — Landing-page top lockup on homepage + Discipline */
.it-brand-block {
  text-align: center;
  background: #FFFFFF;
  padding: 64px 40px 56px;
  border-bottom: 1px solid var(--border);
}
.it-brand-block__container { max-width: 720px; margin: 0 auto; }
.it-brand-block__mark {
  width: 80px;
  height: 90px;
  color: var(--navy);
  margin: 0 auto 28px;
  display: block;
}
.it-brand-block__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.it-brand-block__subtitle {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
}
.it-brand-block__divider {
  width: 64px;
  height: 1px;
  background: #00D4D4;
  margin: 0 auto 28px;
}
.it-brand-block__underwriter-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
}
.it-brand-block__underwriter {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
}
@media (max-width: 1023px) {
  .it-brand-block { padding: 56px 32px 48px; }
  .it-brand-block__title { font-size: 48px; }
}
@media (max-width: 767px) {
  .it-brand-block { padding: 48px 24px 40px; }
  .it-brand-block__title { font-size: 40px; }
  .it-brand-block__mark { width: 64px; height: 72px; margin-bottom: 20px; }
  .it-brand-block__underwriter { font-size: 18px; }
}
@media (max-width: 479px) {
  .it-brand-block { padding: 40px 20px 32px; }
  .it-brand-block__title { font-size: 32px; }
  .it-brand-block__subtitle { font-size: 12px; }
  .it-brand-block__underwriter { font-size: 16px; }
}

/* LEGAL DOCUMENT PAGES */
.legal-doc { padding: 48px 0 96px 0; font-size: 15px; line-height: 1.7; color: var(--text); }
.legal-doc h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 12px 0; letter-spacing: -0.01em; }
.legal-doc p { margin: 0 0 16px 0; }
.legal-doc p:first-of-type { font-size: 16px; color: var(--navy); margin-bottom: 28px; }
.legal-doc a { color: var(--teal-dark); text-decoration: underline; }
.legal-doc a:hover { color: var(--navy); }
.legal-doc strong { color: var(--navy); }

/* FOOTER LEGAL LINKS ROW */
.footer-legal-links { margin: 16px 0 8px 0; font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
.footer-legal-links a { color: rgba(255,255,255,0.85); text-decoration: none; margin: 0 4px; }
.footer-legal-links a:hover { color: #FFFFFF; text-decoration: underline; }
.footer-legal-links .sep { color: rgba(255,255,255,0.4); margin: 0 6px; }

/* Stage 1.9.7: Footer legal-links visibility hardening + order-block/footer separator */
.site-footer .footer-legal .footer-legal-links { font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; margin: 0 0 16px 0; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer .footer-legal .footer-legal-links a { color: #FFFFFF; text-decoration: none; font-weight: 500; }
.site-footer .footer-legal .footer-legal-links a:hover { text-decoration: underline; color: var(--teal); }
.site-footer .footer-legal .footer-legal-links .sep { color: rgba(255,255,255,0.4); margin: 0 8px; }

/* Visual separator between order-embed-block and site-footer */
.order-embed-block + .site-footer { border-top: 4px solid var(--teal); }
.site-footer { margin-top: 0; }

/* Stage 1.9.8: fix massive checkmarks on customer pages */
.outcomes { list-style: none; padding: 0; margin: 20px 0; }
.outcomes li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.6; }
.outcomes li:last-child { border-bottom: none; }
.outcomes .check { width: 22px; height: 24px; flex-shrink: 0; margin-top: 2px; }

/* Global fallback: any bare .check without a size modifier is inline-scaled */
.check:not(.check-timeline):not(.check-workflow):not(.check-outcome):not(.check-inline):not(.check-discipline) { width: 20px; height: 22px; vertical-align: -5px; margin-right: 8px; }

/* Stage 1.9.9: Footer brand lockup (ported from FooterLogo.jsx) */
.it-footer-logo {
  --it-icon-color: #FFFFFF;
  --it-wordmark-color: #FFFFFF;
  --it-brand-line-color: rgba(255, 255, 255, 0.72);
  --it-underwriter-color: rgba(255, 255, 255, 0.48);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 340px;
  margin-bottom: 16px;
}
.it-footer-logo__mark-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.it-footer-logo__icon {
  color: var(--it-icon-color);
  flex-shrink: 0;
}
.it-footer-logo__wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--it-wordmark-color);
  letter-spacing: -0.01em;
}
.it-footer-logo__brand-line {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--it-brand-line-color);
}
.it-footer-logo__underwriter-line {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--it-underwriter-color);
}

/* Stage 1.9.10: Trust bar (replaces brand-lockup-block) */
/* Desktop default: static bar under nav, underwriter left + priced CTA right */
.trust-bar {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 76px; /* sit directly under sticky nav */
  z-index: 90;
  transition: padding 0.2s ease, background 0.2s ease;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trust-bar__underwriter {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.trust-bar__underwriter strong {
  color: var(--navy);
  font-weight: 600;
}
.trust-bar__cta {
  display: inline-block;
  background: var(--teal);
  color: #FFFFFF !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.trust-bar__cta:hover { background: var(--teal-dark); }

/* Condensed state on scroll: tighter padding, subtle shadow */
.trust-bar.is-condensed {
  padding: 8px 0;
  box-shadow: 0 2px 8px rgba(15, 35, 66, 0.06);
}
.trust-bar.is-condensed .trust-bar__underwriter { font-size: 12px; }

/* Tablet: same layout, slightly tighter */
@media (max-width: 900px) {
  .trust-bar__underwriter { font-size: 12px; }
  .trust-bar__cta { font-size: 13px; padding: 9px 16px; }
}

/* Mobile: stack vertically, CTA becomes full width, underwriter fades on scroll */
@media (max-width: 640px) {
  .trust-bar { top: 68px; padding: 10px 0; }
  .trust-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 16px;
  }
  .trust-bar__underwriter {
    text-align: center;
    font-size: 11.5px;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
    max-height: 60px;
    overflow: hidden;
  }
  .trust-bar__cta {
    text-align: center;
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
  }
  /* On scroll: collapse underwriter line, keep priced CTA */
  .trust-bar.is-condensed .trust-bar__underwriter {
    max-height: 0;
    opacity: 0;
    margin: 0;
  }
  .trust-bar.is-condensed .trust-bar__inner { gap: 0; }
}

/* ===== AESTHETIC PASS (Stage 1.9.14) — typography & spatial refinements ===== */

/* Balanced line breaks: no orphaned words on headings & short text blocks */
h1, h2, h3, .hero-h1, .page-hero-h1, .hero-tagline, .hero-imperative,
.module-title, .order-embed-block h2, .underwriters-title {
  text-wrap: balance;
}

/* Orphan control on all paragraph & lead copy */
p, .hero-sub, .page-hero-lead, .identity-text, li {
  text-wrap: pretty;
}

/* Hero sub: slightly narrower measure + relaxed rhythm for readability */
.hero-sub { max-width: 640px; line-height: 1.7; }

/* Page hero lead: same treatment */
.page-hero-lead { line-height: 1.7; }

/* Trust line under hero CTA: slightly stronger so it reads as assurance, not fine print */
.hero .hero-cta-row + div { color: var(--text) !important; font-weight: 500; }

/* Identity band: crisper type */
.identity-text { font-size: 14.5px; line-height: 1.65; }

/* Section eyebrows: more presence */
.hero-eyebrow, .page-hero-eyebrow, .order-eyebrow { letter-spacing: 0.14em; }

/* Card copy: comfortable rhythm */
.mega-item-desc { line-height: 1.55; }


/* === Who We Serve tile frame enhancement (item 3) === */
.tile { border: 1.5px solid #c3cdd9; box-shadow: 0 2px 10px rgba(15,35,66,.08); transition: border-color .2s, box-shadow .2s; }
.tile:hover { border-color: #0F2342; box-shadow: 0 6px 18px rgba(15,35,66,.14); }
@media (max-width: 640px) {
  .tile { border: 1.5px solid #8fa0b5; box-shadow: 0 3px 12px rgba(15,35,66,.12); }
}
<style>/* Homepage hero underlay (light hero: veil keeps navy copy at AA per measured 7.0:1 worst case) */
.hero{position:relative;overflow:hidden}
.hero .hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:70% 50%}
.hero .hero-scrim{position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.72) 45%,rgba(255,255,255,.15) 75%)}
.hero > *:not(.hero-img):not(.hero-scrim){position:relative;z-index:2}
@media (max-width:640px){.hero .hero-img{object-position:72% 50%}.hero .hero-scrim{background:linear-gradient(90deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.72) 70%,rgba(255,255,255,.35) 100%)}}
/* Seat-page fused heroes: category image behind the page-hero copy, navy veil on the copy side */
.page-hero{position:relative;overflow:hidden}
.page-hero .ph-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:75% 50%}
.page-hero .ph-veil{position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.62) 50%,rgba(255,255,255,.10) 85%)}
.page-hero > .container-narrow, .page-hero > *:not(.ph-img):not(.ph-veil){position:relative;z-index:2}
/* Fog's AA caution: kickers/eyebrows over imagery use navy, never muted gray or dark teal */
.page-hero .page-hero-eyebrow{color:#0F2342}
@media (max-width:640px){.page-hero .ph-veil{background:linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.75) 65%,rgba(255,255,255,.30) 100%)}}
</style>
/* ============================================================
   Inline header logo — append to /assets/css/site.css
   Also update the existing sizing rules on lines 42-43 so they
   match the inline <svg> as well as the old <img>:

     .nav-logo img, .nav-logo svg { height: 40px; width: auto; display: block; }
     @media (max-width: 640px) {
       .nav-logo img, .nav-logo svg { height: 36px; }
     }
   ============================================================ */

.it-logo .it-shield,
.it-logo .it-check { fill: none; stroke-linejoin: round; }
.it-logo .it-shield { stroke: var(--navy, #0F2342); stroke-width: 3; }
.it-logo .it-check  { stroke: #00D4D4; stroke-width: 4; stroke-linecap: round; }
.it-logo .it-word   { fill: var(--navy, #0F2342); font-family: var(--serif, 'Source Serif 4', 'Source Serif Pro', Georgia, serif); }

/* Draw-on, once per page load. pathLength="100" normalises the dash maths,
   so editing the shield or check geometry never breaks the timing. */
@media (prefers-reduced-motion: no-preference) {
  .it-logo .it-shield {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: it-draw 760ms cubic-bezier(.22, .61, .36, 1) 80ms forwards;
  }
  .it-logo .it-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: it-draw 420ms cubic-bezier(.34, 1.32, .64, 1) 700ms forwards,
               it-settle 900ms ease-out 1100ms 1;
  }
  .it-logo .it-word { opacity: 0; animation: it-fade 640ms ease-out 420ms forwards; }
  .it-logo .it-sm   { opacity: 0; animation: it-fade 520ms ease-out 1180ms forwards; }
}

@keyframes it-draw { to { stroke-dashoffset: 0; } }
@keyframes it-fade { to { opacity: 1; } }
@keyframes it-settle {
  0%   { stroke: #00D4D4; }
  28%  { stroke: #6FF3F3; }
  100% { stroke: #00D4D4; }
}

/* === ut-card hover highlight (Day 1 / 24 hrs / Closing timeline) === */
.ut-card { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.ut-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 10px 26px rgba(15,35,66,.16); background: #F4FBFC; }
.ut-card:hover .ut-num { color: var(--teal-dark); }
.ut-card:hover .check-timeline { transform: scale(1.08); }
.ut-card .check-timeline { transition: transform .18s ease; }

/* ============================================================
   Navigation interactions — append to /assets/css/site.css

   The vocabulary is the same one the logo uses: a teal line that
   draws itself. Nothing bounces, nothing reflows, nothing moves
   while the reader is trying to aim at it.
   ============================================================ */

/* ---------- Top-level links: underline draws in from the left ---------- */

.nav-link { position: relative; }

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal, #14A3B8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(.22, .61, .36, 1);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-items > li:hover > .nav-link::after,
.nav-items > li:focus-within > .nav-link::after { transform: scaleX(1); }

/* Current page stays underlined in navy, so it reads as state, not hover. */
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--navy, #0F2342);
}
.nav-link[aria-current="page"]:hover::after { background: var(--teal, #14A3B8); }

/* Caret turns over when the mega menu is up. */
.nav-caret {
  transition: transform 220ms cubic-bezier(.22, .61, .36, 1);
  transform-origin: 50% 40%;
}
.nav-items > li:hover .nav-caret,
.nav-items > li:focus-within .nav-caret { transform: rotate(-180deg); }

/* ---------- Mega menu items: teal edge grows, row eases right ---------- */

.mega-item {
  position: relative;
  transition: background 150ms ease, transform 180ms cubic-bezier(.22, .61, .36, 1);
}
.mega-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 2px;
  background: var(--teal, #14A3B8);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 220ms cubic-bezier(.22, .61, .36, 1);
}
.mega-item:hover::before,
.mega-item:focus-visible::before { transform: scaleY(1); }
.mega-item:hover,
.mega-item:focus-visible { transform: translateX(3px); }
.mega-item-title { transition: color 180ms ease; }
.mega-item:hover .mega-item-title { color: var(--teal-dark, #0E7F91); }

/* Disabled rows must not respond. */
.mega-item.disabled::before { display: none; }
.mega-item.disabled:hover { transform: none; }
.mega-item.disabled:hover .mega-item-title { color: var(--navy, #0F2342); }

/* ---------- Order CTA: one light sweep across the fill ---------- */

.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 200ms ease, transform 180ms cubic-bezier(.22, .61, .36, 1);
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,
    transparent 22%, rgba(255, 255, 255, .30) 50%, transparent 78%);
  transform: translateX(-120%);
}
.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  animation: nav-sweep 640ms cubic-bezier(.22, .61, .36, 1) forwards;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

@keyframes nav-sweep { to { transform: translateX(120%); } }

/* ---------- Reduced motion: state without movement ---------- */

@media (prefers-reduced-motion: reduce) {
  .nav-link::after,
  .nav-caret,
  .mega-item,
  .mega-item::before,
  .mega-item-title,
  .nav-cta,
  .nav-cta::before { transition: none; animation: none; }
  .mega-item:hover,
  .mega-item:focus-visible,
  .nav-cta:hover { transform: none; }
  .nav-cta:hover::before,
  .nav-cta:focus-visible::before { animation: none; }
}

/* Mobile nav: mega collapsed by default; opens on tap (targets real markup: plain <li> + .mega-menu) */
@media (max-width: 1180px) {
  .nav-items > li.mega-parent > .mega-menu { display: none; }
  .nav-items > li.mega-parent.mega-open > .mega-menu { display: block; }
  .nav-items.open .nav-link { padding: 10px 0; font-size: 17px; }
  .nav-items.open { max-height: 75vh; overflow-y: auto; }
  .nav-items > li.mega-parent > button .nav-caret { display: inline-block; transition: transform .2s; }
  .nav-items > li.mega-parent.mega-open > button .nav-caret { transform: rotate(180deg); }
}


/* ===== Contrast rhythm pass (1.9.37) ===== */
.proof-band-2{background:linear-gradient(180deg,#F4F8FA 0%,#EAF1F5 100%);border-top:1px solid #E0E8EE;border-bottom:1px solid #E0E8EE}
.uw-4c{color:#0E7F91}
.timeline-math-2{background:#FFFFFF;border-top:1px solid #E9EEF3}
.tm-card{border:1px solid #DFE7EE !important;box-shadow:0 2px 10px rgba(15,35,66,.05)}
.ut-card,.tile{box-shadow:0 1px 4px rgba(15,35,66,.05)}
/* typography: no auto-hyphenation, balanced headings, smooth rag sitewide */
h1,h2,h3{text-wrap:balance}
p,li{overflow-wrap:normal;word-break:normal}
body{hyphens:none;-webkit-hyphens:none}
