:root {
  --bc-navy:       #172e81;
  --bc-gold:       #ebbf14;
  --bc-gold-light: #ebbf14cc;
  --bc-cream:      #e9ecef;
  --bc-white:      #FFFFFF;
  --bc-gray-100:   #e9ecef;
  --bc-gray-200:   #E8E4DC;
  --bc-gray-500:   #7A7060;
  --bc-gray-700:   #6c757d;
  --bc-gray-dark:  #2f2f2f;
  --bc-text:       #2f2f2f;
  --bc-alert:      #B03A2E;
  --bc-blue-dark:  #070f2c;

   --font-display: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
   --font-body:    'HelveticaNeueLTStd-Roman', Helvetica, Arial, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-soft: 0 2px 12px rgba(0,33,71,0.08);
  --shadow-lift: 0 8px 32px rgba(0,33,71,0.14);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1100px;
  --content-width: 740px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bc-text);
  background: var(--bc-cream);
}


a {
  color: var(--bc-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover  { color: var(--bc-gold); }
a:focus-visible {
  outline: 3px solid var(--bc-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.breadcrumb{
    background: var(--bc-cream);
}

/* =============================================
   SKIP NAVIGATION — ADA
============================================= */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--bc-navy);
  color: var(--bc-white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-nav:focus { top: 0; }



/* =============================================
   HERO BANNER
============================================= */
.hero { 
   background: var(--bc-blue-dark); 
   position: relative; 
   overflow: hidden; 
}
.hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle at 60% 40%, rgba(200,150,42,0.18) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30px; left: 10%; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(200,150,42,0.08) 0%, transparent 70%); pointer-events: none; }
.hero__inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bc-gold-light); margin-bottom: 1.25rem; }
.hero__eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--bc-gold); }

.hero__title { font-family: var(--font-display); font-size: 3rem; font-weight: 400; line-height: 1.2; color: var(--bc-gold);  margin-bottom: 1.5rem; }

.hero__subtitle { font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1.2; color: var(--bc-white);  margin-bottom: 1.5rem; }

.hero__lead { font-size: 1.1rem; line-height: 1.7; color: white;  margin-bottom: 2rem; }
.hero__alert { 
   display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    background: #00000070;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem 0 1.25rem;
    max-width: 640px;
 }

.hero__alert-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--bc-gold-light); }
.hero__alert p { font-size: 1rem; color: white; line-height: 1.6; }
.hero__alert strong { color: var(--bc-gold-light); }


.mt-0{
   margin-top: 0;
}
.object-cover {
    object-fit: cover;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

.heroImg{
   border-radius: 10px;
    box-shadow: 0px 0px 12px 2px #ffffff;
}

/* =============================================
   JUMP-LINK NAV (On-Page Navigation)
============================================= */
.jump-nav { background: var(--bc-white); border-bottom: 2px solid var(--bc-gray-200); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-soft); }
.jump-nav__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; overflow-x: auto; scrollbar-width: none; }
.jump-nav__inner::-webkit-scrollbar { display: none; }
.jump-nav ol { display: flex; list-style: none; gap: 0; white-space: nowrap; }
.jump-nav a { display: block; padding: 0.875rem 1.125rem; font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; color: var(--bc-gray-dark); text-decoration: none; border-bottom: 3px solid transparent; transition: color var(--transition), border-color var(--transition); }
.jump-nav a:hover { color: var(--bc-navy); border-bottom-color: var(--bc-gold); }
.jump-nav a:focus-visible { outline: 3px solid var(--bc-gold); outline-offset: -3px; }

/* =============================================
   MAIN LAYOUT
============================================= */
.page-banner {
  width: 100%;
    margin: 0 auto;
    padding: 5% 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
  .page-banner {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) { 
   .page-banner { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  } 

 }

.page-body { 
  max-width: var(--max-width); 
  margin: 0 auto; padding: 2% 0 4% 0; 
  display: grid; 
  grid-template-columns: 1fr 280px; 
  gap: 3rem; 
  align-items: start;
}

@media (max-width: 900px) { 
  .page-body { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  } 
}



/* =============================================
   MAIN CONTENT
============================================= */
.main-content { min-width: 0; }

@media (max-width: 900px) { 
  .main-content { order: 2; }
}

.section-block { margin-bottom: 3.5rem; scroll-margin-top: 72px; }
.section-block__header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--bc-gray-200); }
.section-block__icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--bc-navy); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--bc-gold-light); }
.section-block__icon svg { width: 20px; height: 20px; }
h2.section-title { font-family: var(--font-display); font-size: clamp(1.375rem, 3vw, 1.75rem); font-weight: 400; color: var(--bc-navy); line-height: 1.25; }

/* =============================================
   ACCORDION
============================================= */
.accordion { border: 1px solid var(--bc-gray-200); overflow: hidden; background: var(--bc-white); box-shadow: var(--shadow-soft); }
.accordion__item { border-bottom: 1px solid var(--bc-gray-200); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--bc-navy); transition: background var(--transition); }
.accordion__trigger:hover { background: var(--bc-gray-100); }
.accordion__trigger:focus-visible { outline: 3px solid var(--bc-gold); outline-offset: -3px; }
.accordion__trigger-left { display: flex; align-items: center; gap: 0.75rem; }
.accordion__tag { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2em 0.6em; border-radius: 999px; background: var(--bc-gold-light); color: var(--bc-navy); flex-shrink: 0; }
.accordion__tag--new { background: #D4EDDA; color: #155724; }
.accordion__tag--updated { background: #FFF3CD; color: #856404; }
.accordion__tag--limit { background: #F8D7DA; color: var(--bc-alert); }
.accordion__chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--bc-gray-500); transition: transform var(--transition); }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__trigger[aria-expanded="true"] { background: var(--bc-gray-100); color: var(--bc-navy); }
.accordion__panel { display: none; padding: 2rem 1.5rem 1rem 1.5rem; animation: fadeSlide 200ms ease; }
.accordion__panel.is-open { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   CONTENT TYPOGRAPHY (inside panels)
============================================= */
.prose h4 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 400; color: var(--bc-navy); margin: 1.25rem 0 0.5rem; }
.prose h4:first-child { margin-top: 0; }
.prose p { font-size: 1rem; color: var(--bc-text); margin-bottom: 0.875rem; line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.375rem; margin-bottom: 0.875rem; }
.prose li { font-size: 1rem; color: var(--bc-text); margin-bottom: 0.375rem; line-height: 1.65; }
.prose ul li::marker { color: var(--bc-gold); }
.prose a { color: var(--bc-navy); font-weight: 500; }
.prose strong { color: var(--bc-navy); }
.prose em { font-style: italic; }

/* Callout box */
.callout { background: var(--bc-gray-100); border-left: 4px solid var(--bc-gold); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 1rem 1.25rem; margin: 1.125rem 0; }

.calloutInverted { background: white;  }

.callout p { margin: 0; font-size: 1rem; color: var(--bc-text); }
.callout strong { color: var(--bc-navy); }

/* Cohort chips */
.cohort-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0 1rem; list-style: none; padding: 0; }
.cohort-list li { background: var(--bc-navy); color: var(--bc-white); font-size: 0.8125rem; font-weight: 500; padding: 0.3em 0.9em; border-radius: 999px; margin: 0; }

/* Date badge */
.date-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: #ffea97; color: var(--bc-navy); font-size: 0.8125rem; font-weight: 700; padding: 0.3em 0.875em; margin-bottom: 1rem; }

/* Limit grid */
.limit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; margin: 1rem 0; }
.limit-card { background: var(--bc-cream); border: 1px solid var(--bc-gray-200); border-radius: var(--radius-md); padding: 1rem; text-align: center; }
.limit-card__amount { font-family: var(--font-display); font-size: 1.5rem; color: var(--bc-navy); display: block; line-height: 1.2; }
.limit-card__label { font-size: 0.75rem; color: var(--bc-gray-500); margin-top: 0.25rem; }

/* Plan comparison */
.plan-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1rem 0; }
@media (max-width: 480px) { .plan-compare { grid-template-columns: 1fr; } }
.plan-card { border: 1px solid var(--bc-gray-200); border-radius: var(--radius-md); padding: 1rem; background: var(--bc-white); }
.plan-card__name { font-weight: 700; font-size: 0.875rem; color: var(--bc-navy); margin-bottom: 0.4rem; }
.plan-card p { font-size: 0.8125rem; margin: 0; }

/* =============================================
   SIDEBAR
============================================= */
.sidebar { position: sticky; top: 72px; }


.sidebar-card { background: var(--bc-white); border: 1px solid var(--bc-gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 1.25rem; }


@media (max-width: 900px) {
  .sidebar {
    display: contents;
  }

  .sidebar-card:nth-child(1) {
    order: 1;
  }

  .sidebar-card:nth-child(2) {
    order: 3;
  }
}


.sidebar-card__header { background: var(--bc-navy); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.625rem; }
.sidebar-card__header svg { width: 18px; height: 18px; color: var(--bc-gold-light); flex-shrink: 0; }
.sidebar-card__title { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bc-white); }
.sidebar-card__body { padding: 1.125rem 1.25rem; }
.sidebar-card p { font-size: 0.95rem; color: var(--bc-text); line-height: 1.6; margin-bottom: 0.875rem; }
.sidebar-card__cta { display: block; background: var(--bc-gold); color: var(--bc-navy); font-weight: 700; font-size: 0.875rem; text-align: center; padding: 0.75rem 1rem; border-radius: var(--radius-md); text-decoration: none; transition: background var(--transition), transform var(--transition); }
.sidebar-card__cta:hover { background: var(--bc-gold-light); transform: translateY(-1px); color: var(--bc-navy); }
.sidebar-card__cta:focus-visible { outline: 3px solid var(--bc-navy); outline-offset: 2px; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid var(--bc-gray-100); }
.sidebar-links li:last-child { border: none; }
.sidebar-links a { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; font-size: 1rem; font-weight: 500; color: var(--bc-navy); text-decoration: none; transition: background var(--transition); }
.sidebar-links a:hover { background: var(--bc-gray-100); }
.sidebar-links a::after { content: '→'; color: var(--bc-gold); font-size: 0.875rem; }

/* Timeline widget */
.timeline { padding: 0; list-style: none; }
.timeline li { display: flex; gap: 0.875rem; padding-bottom: 1.125rem; position: relative; }
.timeline li:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 28px; bottom: 0; width: 2px; background: var(--bc-gray-200); }
.timeline__dot { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--bc-navy); color: var(--bc-gold-light); font-size: 0.6875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 1; }
.timeline__content {}
.timeline__date { font-size: 0.75rem; font-weight: 700; color: var(--bc-gold); text-transform: uppercase; letter-spacing: 0.06em; }
.timeline__text { font-size: 0.8125rem; color: var(--bc-gray-700); line-height: 1.5; }

/* =============================================
   INTRO PARAGRAPH (above accordion sections)
============================================= */
.intro { background: var(--bc-white); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2.5rem; border: 1px solid var(--bc-gray-200); box-shadow: var(--shadow-soft); }
.intro p { font-size: 1rem; color: var(--bc-text); line-height: 1.75; margin-bottom: 0.75rem; }
.intro p:last-child { margin-bottom: 0; }

/* =============================================
   FOOTER CTA STRIP
============================================= */
.footer-cta { background: var(--bc-blue-dark); padding: 3rem 1.5rem; text-align: center; }
.footer-cta__inner { max-width: 600px; margin: 0 auto; }
.footer-cta h2 { font-family: var(--font-display); font-size: 1.625rem; font-weight: 400; color: var(--bc-white); margin-bottom: 0.75rem; }
.footer-cta p { font-size: 1rem; color: var(--bc-white); margin-bottom: 1.5rem; }

a.footer-cta-link { font-size: 1rem; color: var(--bc-white); margin-bottom: 1.5rem; text-decoration: underline;
   }


button.footerCtaBtn{ 
   display: inline-block; 
   background: var(--bc-gold); 
   color: var(--bc-navy); 
   font-weight: 700; 
   font-size: 1rem; 
   padding: 15px; 
   line-height: 1;
   border-radius: var(--radius-md); 
   text-decoration: none; 
   transition: background var(--transition), transform var(--transition); 
}

button.footerCtaBtn:hover  { 
   background: var(--bc-navy); 
   transform: translateY(-2px); 
   color: var(--bc-gold); 
}

/* =============================================
   RESPONSIVE UTILITIES
============================================= */
@media (max-width: 640px) {
  .hero { padding: 2.5rem 1rem 2.5rem; }
  .page-body { padding: 2rem 1rem 3rem; }
  .accordion__trigger { padding: 1rem 1.125rem; font-size: 1rem; }
  .accordion__panel { padding: 5% }
  .intro { padding: 1.25rem; }
}

/* =============================================
   PRINT STYLES
============================================= */
@media print {
  .jump-nav, .sidebar, .footer-cta, .skip-nav { display: none; }
  .page-body { grid-template-columns: 1fr; }
  .accordion__panel { display: block !important; }
}


.accordion_heading{
       font-family: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
       color: #172e81;
       font-size: 1.3rem;
       line-height: 1.2;
}