:root {
  --navy: #10233d;
  --navy-mid: #183153;
  --navy-light: #2a4a74;
  --blue-surface: #f4f8fd;
  --blue-surface-strong: #e6eef9;
  --gold: #b8872a;
  --gold-light: #d4a84b;
  --gold-pale: #f5edda;
  --cream: #faf8f4;
  --white: #ffffff;
  --border: #ddd8cf;
  --border-light: #eeebe5;
  --text-dark: #0d1b2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --positive: #166534;
  --negative: #991b1b;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Libre Franklin', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 3px rgba(13, 27, 46, 0.06), 0 1px 2px rgba(13, 27, 46, 0.04);
  --shadow-md: 0 4px 16px rgba(13, 27, 46, 0.08), 0 2px 6px rgba(13, 27, 46, 0.04);
  --shadow-lg: 0 12px 40px rgba(13, 27, 46, 0.12), 0 4px 12px rgba(13, 27, 46, 0.06);
  --radius: 4px;
  --radius-lg: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.site-topbar {
  background: linear-gradient(90deg, #17304f 0%, #214368 100%);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-left {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.06em;
}

.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar-right a {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.topbar-right a:hover {
  color: var(--gold-light);
}

.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #163353 0%, #2b5a87 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(16, 35, 61, 0.14);
}

.brand-emblem svg {
  width: 20px;
  height: 20px;
}

.brand-name {
  font-family: var(--ff-display);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-family: var(--ff-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
}

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

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}

.nav-links > li > a:hover {
  color: var(--navy);
  background: var(--cream);
}

.nav-links > li > a.active {
  color: var(--gold);
}

.caret {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  flex-shrink: 0;
}

.has-dd:hover .dd-menu {
  display: block;
}

.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  overflow: hidden;
  z-index: 300;
}

.dd-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 17px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.14s, color 0.14s;
}

.dd-menu a:last-child {
  border-bottom: none;
}

.dd-menu a:hover {
  background: var(--gold-pale);
  color: var(--navy);
}

.dd-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

.dd-menu a:hover .dd-dot {
  opacity: 1;
}

.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.ham-btn:hover {
  border-color: var(--gold);
}

.ham-btn span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ham-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ham-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ham-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob-drawer {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  position: sticky;
  top: 66px;
  z-index: 195;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 66px);
  overflow-y: auto;
}

.mob-drawer.open {
  display: block;
}

.mob-group-label {
  padding: 10px 20px 4px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.mob-drawer a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.13s, color 0.13s;
}

.mob-drawer a:hover,
.mob-drawer a.active {
  background: var(--gold-pale);
  color: var(--navy);
}

.mob-drawer a.sub {
  padding-left: 32px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.mob-drawer a.sub:hover {
  color: var(--navy);
}

.mob-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.page-hero {
  background: linear-gradient(135deg, #17304f 0%, #21476d 52%, #2a608b 100%);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(184, 135, 42, 0.11) 0%, transparent 60%),
    radial-gradient(ellipse 52% 68% at 8% 48%, rgba(165, 210, 255, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.hero-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  max-width: none;
  line-height: 1.75;
  white-space: nowrap;
}

.page-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 80px;
  background: linear-gradient(180deg, var(--blue-surface) 0%, var(--white) 220px);
}

.section-panel {
  display: none;
}

.section-panel.active {
  display: block;
  animation: fadeIn 0.28s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.section-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 520px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe5f1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  animation: riseIn 0.35s ease backwards;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:nth-child(2) {
  animation-delay: 0.07s;
}

.card:nth-child(3) {
  animation-delay: 0.13s;
}

.card-header {
  background: linear-gradient(90deg, #193756 0%, #244a71 100%);
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card-header-title {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.card-header-sub {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  color: #fff;
  letter-spacing: 0.08em;
}

.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.card > .tbl-wrap + .tbl-wrap {
  border-top: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 440px;
}

.data-table thead th {
  background: #edf4fb;
  padding: 10px 18px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #212529;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table thead th.center {
  text-align: center;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.12s;
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: #f6faff;
}

.data-table td {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--text-body);
  vertical-align: middle;
}

.data-table td.center {
  text-align: center;
}

.data-table td.center .dl-btn {
  justify-content: center;
}

.sr-num {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  width: 36px;
}

.year-cell {
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 11px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.16s;
  white-space: nowrap;
}

.dl-btn:hover {
  background: linear-gradient(90deg, #193756 0%, #244a71 100%);
  border-color: #244a71;
  color: var(--white);
}

.dl-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.dl-btn.empty {
  background: transparent;
  border-style: dashed;
  color: var(--text-faint);
  pointer-events: none;
}

.dl-btn.pdf {
  border-color: #dc2626;
  color: #dc2626;
}

.dl-btn.pdf:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: var(--white);
}

.dl-btn.php {
  border-color: #0369a1;
  color: #0369a1;
}

.dl-btn.php:hover {
  background: #0369a1;
  border-color: #0369a1;
  color: var(--white);
}

.q-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.q-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 9px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}

.q-chip:hover {
  background: linear-gradient(90deg, #193756 0%, #244a71 100%);
  color: var(--white);
  border-color: #244a71;
}

.q-chip.empty {
  border-style: dashed;
  color: var(--text-faint);
  pointer-events: none;
  background: transparent;
}

.q-chip svg {
  width: 10px;
  height: 10px;
}

.sub-section-row td {
  background: var(--gold-pale);
  padding: 9px 18px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-top: 2px solid var(--gold-light);
  border-bottom: 1px solid var(--border);
}

.sub-section-row td span {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 8px;
  font-size: 11px;
}

.iepf-year-header td {
  background: var(--gold-pale);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  padding: 9px 18px;
  border-top: 2px solid var(--border);
}

.notice-banner {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff8ec 100%);
  border: 1px solid #e5c97a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 13px 18px;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.notice-banner svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.notice-banner p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

.search-bar {
  position: relative;
  max-width: 260px;
}

.search-bar input {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 13px 7px 32px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.18s;
}

.search-bar input:focus {
  border-color: var(--gold);
}

.search-bar svg {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  color: var(--text-faint);
}

.form-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  background: #e0eaff;
  color: #1d4ed8;
  padding: 2px 8px;
  border-radius: 4px;
}

.tag-yes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 500;
  background: #d1fae5;
  border: 1px solid rgba(22, 101, 52, 0.2);
  color: var(--positive);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-no {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 500;
  background: #fee2e2;
  border: 1px solid rgba(153, 27, 27, 0.2);
  color: var(--negative);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-na {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 500;
  background: #f3f4f6;
  border: 1px solid rgba(107, 114, 128, 0.2);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 66px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(13, 27, 46, 0.04);
}

.tab-scroll-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38px;
  border: 0;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 0.18s, opacity 0.18s;
}

.tab-scroll-btn span {
  font-size: 28px;
  line-height: 1;
}

.tab-scroll-btn:hover {
  color: var(--gold);
}

.tab-scroll-btn:disabled {
  cursor: default;
  opacity: 0.28;
}

.tab-scroll-left {
  left: 0;
  box-shadow: 12px 0 18px -12px rgba(13, 27, 46, 0.22);
}

.tab-scroll-right {
  right: 0;
  box-shadow: -12px 0 18px -12px rgba(13, 27, 46, 0.22);
}

.section-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 46px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}

.section-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 14px 12px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: color 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-count {
  background: var(--gold-pale);
  color: var(--gold);
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 10px;
}

.tab-btn.active .tab-count {
  background: var(--gold);
  color: var(--white);
}

.marquee-bar {
  background: linear-gradient(90deg, #1a3659 0%, #244a72 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 150;
}

.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 48px;
  height: 100%;
  z-index: 2;
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-mid), transparent);
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-mid), transparent);
}

.marquee-inner {
  display: inline-flex;
  animation: marquee-scroll 38s linear infinite;
  padding: 8px 0;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-text {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-text a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.marquee-text a:hover {
  color: var(--white);
}

.marquee-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 12px;
}

.site-hero {
  background: linear-gradient(135deg, #17304f 0%, #21476d 54%, #2b628d 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 85% 50%, rgba(184, 135, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 75% at 12% 55%, rgba(165, 210, 255, 0.14) 0%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.site-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
}

.site-hero .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 28px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary-hero:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-primary-hero svg {
  width: 14px;
  height: 14px;
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.18s;
}

.btn-outline-hero:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(8, 21, 38, 0.14);
}

.stat-cell {
  background: rgba(255, 255, 255, 0.07);
  padding: 22px 24px;
  transition: background 0.18s;
}

.stat-cell:hover {
  background: rgba(255, 255, 255, 0.11);
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.stat-value {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 3px;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.stat-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
}

.stat-gold {
  color: var(--gold-light);
}

.about-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--blue-surface) 0%, var(--white) 100%);
  border-top: 1px solid #d9e5f3;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.about-company-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-iso {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.cin-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 22px;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.cin-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cin-value {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.about-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.about-body strong {
  color: var(--navy);
}

.about-wide-note {
  width: 100%;
  margin-top: 18px;
}

.mgmt-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.mgmt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.mgmt-card-eyebrow {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.mgmt-card-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 18px;
}

.mgmt-card-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

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

.quicklinks {
  background: linear-gradient(135deg, #17304f 0%, #22476d 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quicklinks-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.quicklinks-label {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.ql-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.18s, border-color 0.18s;
}

.ql-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(184, 135, 42, 0.4);
}

.ql-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(184, 135, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ql-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.ql-name {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  margin-bottom: 2px;
}

.ql-sub {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-grid > .card {
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 26px 26px 0;
  flex: 1;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-row:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: #eef5ff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.contact-label {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-value strong {
  color: var(--navy);
  font-weight: 600;
}

.contact-value a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.18s;
}

.contact-value a:hover {
  color: var(--navy);
}

.cin-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  background: #e7f0ff;
  color: #1d4ed8;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 5px;
}

.map-wrap {
  margin-top: auto;
  padding: 20px 26px 26px;
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
  filter: grayscale(15%);
}

.year-group-row td {
  background: var(--gold-pale);
  padding: 9px 18px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-top: 2px solid var(--gold-light);
  border-bottom: 1px solid var(--border);
}

.year-group-row td span {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 8px;
  font-size: 11px;
}

.page-section {
  margin-bottom: 52px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.person-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: riseIn 0.35s ease backwards;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.person-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.person-card:nth-child(2) {
  animation-delay: 0.06s;
}

.person-card:nth-child(3) {
  animation-delay: 0.12s;
}

.person-card:nth-child(4) {
  animation-delay: 0.18s;
}

.person-card:nth-child(5) {
  animation-delay: 0.24s;
}

.person-card:nth-child(6) {
  animation-delay: 0.3s;
}

.person-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b3a5b 0%, #2f6693 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 18px rgba(24, 49, 83, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  color: #f7e6bf;
  letter-spacing: 0.02em;
}

.person-name {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}

.person-role {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.person-role-badge {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid;
}

.badge-independent {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.badge-nonexec {
  background: var(--gold-pale);
  border-color: #e5c97a;
  color: #92600a;
}

.badge-kmp {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.person-contact {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.person-contact[hidden] {
  display: none;
}

.person-contact-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 22px;
  margin-top: 6px;
  margin-left: 8px;
  float: right;
  cursor: pointer;
  vertical-align: middle;
}

.person-contact-toggle svg {
  width: 13px;
  height: 13px;
}

.person-contact a {
  font-size: 11.5px;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}

.person-contact a:hover {
  color: var(--navy);
}

.person-contact svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(560px, 1fr));
  gap: 20px;
}

.desig-chair {
  font-weight: 600;
  color: var(--navy);
}

.profile-banner {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff8ec 100%);
  border: 1px solid #e5c97a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.profile-banner svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.profile-banner-text {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
}

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

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}

.profile-link:hover {
  color: var(--navy);
}

.profile-link svg {
  width: 13px;
  height: 13px;
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

footer {
  background: linear-gradient(135deg, #17304f 0%, #22476d 100%);
  border-top: 3px solid var(--gold);
  padding: 40px 0 22px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}

.footer-brand-sub {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 13px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 13px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.26);
  letter-spacing: 0.04em;
}

.footer-credit {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.22);
}

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

.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: #214368;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
  box-shadow: var(--shadow-md);
  z-index: 500;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  transform: translateY(-3px);
}

.back-top svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 960px) {
  .site-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 28px;
  }

  .hero-right {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

  .ham-btn {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-desc {
    white-space: normal;
  }

  .people-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }
}

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

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

@media (max-width: 640px) {
  .site-topbar {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    padding: 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .page-body {
    padding: 20px 14px 60px;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .section-tabs {
    padding: 0 44px;
  }

  .topbar-inner {
    padding: 0 16px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-top {
    bottom: 14px;
    right: 14px;
  }

  .section-tabs-wrap {
    top: 66px;
  }

  .site-hero .hero-inner,
  .about-inner,
  .quicklinks-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mgmt-card {
    padding: 20px 20px 20px 24px;
  }

  .quicklinks-grid {
    grid-template-columns: 1fr 1fr;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .section-title {
    font-size: 22px;
  }
}

/* Page-specific conflict fixes */
.page-hero .hero-inner {
  padding: 0 28px;
}

.page-hero .hero-eyebrow {
  margin-bottom: 14px;
}

.page-hero .hero-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  margin-bottom: 14px;
}

.page-hero .hero-divider {
  width: 44px;
  margin-bottom: 16px;
}

.page-hero .hero-desc {
  font-size: 14px;
  line-height: 1.75;
}

.site-hero .hero-eyebrow {
  margin-bottom: 18px;
}

.site-hero .hero-title {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.site-hero .hero-divider {
  width: 48px;
  margin-bottom: 20px;
}

.about-section .section-eyebrow {
  margin-bottom: 6px;
}

.about-section .section-title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 8px;
}

.about-section .section-note {
  font-size: 13.5px;
  max-width: 540px;
  line-height: 1.65;
}

.about-left p[style*='font-size:13.5px'] {
  max-width: 100%;
}

.page-section > .section-eyebrow {
  margin-bottom: 6px;
}

.page-section > .section-title {
  font-size: 24px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.page-body > .section-header .section-note {
  max-width: 640px;
}

#panel-annual .section-note {
  max-width: 720px;
}

.investor-page .section-header > div {
  width: 100%;
}

.investor-page .section-header .section-note {
  width: 100%;
  max-width: none;
}

@media (max-width: 600px) {
  .site-hero .hero-inner {
    padding: 48px 16px;
  }

  .page-hero .hero-inner {
    padding: 0 16px;
  }
}
