#progress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--indigo), var(--indigo));
  z-index: 300;
  transition: width .1s linear;
}

/* ── NAVBAR ── */
/* .navbar {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 64px;
    } */

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.01em;
}

.nav-brand .accent {
  color: var(--indigo);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .18s;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, .9);
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--indigo);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .83rem;
  font-weight: 700;
  padding: .5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .18s;
}

.nav-cta:hover {
  opacity: .88;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 72px 2rem 56px;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--indigo);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero .lead {
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: .92rem;
}

.hero-meta {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-meta span {
  font-size: .77rem;
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.hero-meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  display: inline-block;
  flex-shrink: 0;
}

/* ── LAYOUT ── */

.page-body {
  padding: 56px 0 88px;
  background: var(--white);
}

/* ── TOC ── */
.toc {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-left: 4px solid var(--indigo);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
  margin-bottom: 2.75rem;
}

.toc-title {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--indigo);
  margin-bottom: .9rem;
}

.toc ol {
  list-style: none;
  counter-reset: tc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .75rem;
}

@media (max-width: 540px) {
  .toc ol {
    grid-template-columns: 1fr;
  }
}

.toc li {
  counter-increment: tc;
}

.toc a {
  font-size: .86rem;
  color: var(--gray-600);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .18s;
}

.toc a::before {
  content: counter(tc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-200);
  min-width: 1.5rem;
  transition: color .18s;
}

.toc a:hover {
  color: var(--navy-text);
}

.toc a:hover::before {
  color: var(--indigo);
}

/* ── SECTION BLOCK ── */
.sb {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.sb:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.sb-head {
  margin-bottom: 1.1rem;
}

.sb-num {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  background: var(--indigo-light);
  color: var(--indigo);
  border-radius: 6px;
  padding: .28rem .55rem;
  margin-top: .2rem;
  white-space: nowrap;
}

.sb h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-text);
  line-height: 1.3;
}


@media (max-width: 480px) {
  .sb-body {
    padding-left: 0;
  }
}

.sb-body p {
  color: var(--gray-600);
  font-size: .875rem;
  margin-bottom: .85rem;
}

.sb-body p:last-child {
  margin-bottom: 0;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: .7rem;
  margin: 1rem 0;
}

.card {
  background: #0343ca;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  transition: box-shadow .2s;
}

.card:hover {
  box-shadow: var(--shadow-float);
}

.card-icon {
  font-size: 1.2rem;
  margin-bottom: .4rem;
}

.card-label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}

.card-desc {
  font-size: .76rem;
  color: var(--white);
  line-height: 1.5;
}

/* ── LIST ── */
.slist {
  list-style: none;
  margin: .75rem 0;
  padding-left: 0;
}

.slist li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .875rem;
  color: var(--gray-600);
  margin-bottom: .5rem;
}

.slist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .05em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--indigo);
}

/* ── HIGHLIGHT ── */
.hl {
  background: var(--indigo-light);
  border: 1px solid rgba(0, 201, 167, .22);
  border-radius: var(--radius);
  padding: .95rem 1.15rem;
  margin: 1rem 0;
  font-size: .86rem;
  color: var(--gray-600);
}

.hl strong {
  color: var(--navy-text);
}

/* ── TABLE ── */
.dtable {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .84rem;
}

.dtable th {
  background: var(--off-white);
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: .65rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-100);
}

.dtable td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.dtable tr:last-child td {
  border-bottom: none;
}

.dtable tr:hover td {
  background: var(--off-white);
}

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-avatar {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
  min-width: 200px;
}

.contact-details strong {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy-text);
}

.contact-details p {
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: .2rem;
}

.clinks {
  margin-top: .7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.clink {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--indigo);
  border: 1.5px solid rgba(79, 110, 247, .22);
  border-radius: 7px;
  padding: .28rem .75rem;
  text-decoration: none;
  transition: background .18s;
}

.clink:hover {
  background: var(--indigo-light);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
}

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

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .65rem;
}

.footer-brand-name .accent {
  color: var(--indigo);
}

.footer-tagline {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.65;
  max-width: 220px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .85rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .45rem;
}

.footer-col a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .18s;
}

.footer-col a:hover,
.footer-col a.current {
  color: var(--indigo);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .28);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--indigo);
}

/* ── NOTE ── */
.page-note {
  font-size: .78rem;
  color: var(--gray-400);
  text-align: center;
  padding-top: .75rem;
}

.page-note a {
  color: var(--indigo);
}

tbody tr:first-child td {
  background: #ffffff;
  color: var(--gray-600);
}

tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}