/* 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 { height: 44px; width: auto; display: block; }
@media (max-width: 640px) { .nav-logo img { height: 36px; } }
.nav-items { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-items > li { position: relative; }
.nav-link { color: var(--navy); font-size: 15px; font-weight: 500; padding: 10px 0; 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 20px; border-radius: 4px; font-weight: 600; font-size: 14px; 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: 1024px) {
  .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(--teal-dark); 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: var(--navy); color: #FFFFFF; padding: 64px 0; }
.page-hero .container-narrow { text-align: left; }
.page-hero-eyebrow { color: var(--teal); 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: rgba(255, 255, 255, 0.9); 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; }
}
