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

:root {
  --blue:       #1A4FA0;
  --blue-mid:   #2560B8;
  --blue-light: #EBF2FF;
  --blue-pale:  #F4F8FF;
  --accent:     #0F9D7A;
  --accent-lt:  #E6F7F3;
  --slate:      #2C3E55;
  --slate-mid:  #4A5F75;
  --slate-lt:   #8899AB;
  --border:     #DDE4EC;
  --border-lt:  #EEF2F7;
  --white:      #FFFFFF;
  --bg:         #F7F9FC;
  --bg-mid:     #EFF3F8;
  --red-lt:     #FFF0F0;
  --red:        #E84040;
  --green:      #27AE73;
  --font-disp:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--slate); font-size: 14.5px; line-height: 1.7; }

/* ─── TICKER ─── */
.ticker-wrap { background: var(--blue); overflow: hidden; }
.ticker-inner { display: flex; animation: ticker-scroll 35s linear infinite; width: max-content; }
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tick {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 28px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.tick .lbl { color: rgba(255,255,255,0.4); font-size: 10.5px; letter-spacing: 0.05em; }
.tick .v   { color: #fff; font-weight: 500; }
.tick .up  { color: #4EEAA8; font-size: 11px; }
.tick-dot  { color: rgba(255,255,255,0.2); }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 5px 64px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; color: var(--slate-lt);
}
.topbar a { color: var(--slate-lt); text-decoration: none; margin-right: 18px; transition: color .2s; }
.topbar a:hover { color: var(--blue); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.reg-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--blue-light); color: var(--blue);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(26,79,160,0.18);
}
.reg-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ─── NAV ─── */
nav.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(44,62,85,0.06);
}
.logo { display: flex; align-items: center; gap: 12px; padding: 15px 0; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-words { line-height: 1.2; }
.logo-name { font-family: var(--font-disp); font-size: 17px; font-weight: 700; color: var(--slate); letter-spacing: -0.01em; display: block; }
.logo-tag  { font-size: 10px; color: var(--slate-lt); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  padding: 20px 15px; font-size: 13px; font-weight: 500;
  color: var(--slate-mid); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav-btn {
  margin-left: 16px; background: var(--blue); color: #fff;
  font-size: 12.5px; font-weight: 600;
  padding: 8px 20px; border-radius: 6px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background .2s;
}
.nav-btn:hover { background: var(--blue-mid); }

/* hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;

  position: relative;
  z-index: 999;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 998;

    display: flex;
    flex-direction: column;

    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.mobile-panel.open {
    max-height: 500px;
}

.mobile-panel a {
  padding: 12px 24px; font-size: 14px; font-weight: 500;
  color: var(--slate-mid); text-decoration: none;
  border-bottom: 1px solid var(--border-lt);
}
.mobile-panel a:hover, .mobile-panel a.active { color: var(--blue); background: var(--blue-pale); }
.mobile-panel.open { display: flex; }

/* ─── ANNOUNCEMENT BAND ─── */
.ann-band {
  background: var(--blue-light);
  border-bottom: 1px solid rgba(26,79,160,0.15);
  padding: 9px 64px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--blue); overflow: hidden;
}
.ann-pill {
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 9px; border-radius: 20px;
  white-space: nowrap; flex-shrink: 0;
}
.ann-text { flex: 1; overflow: hidden; }
.ann-inner { display: inline-flex; gap: 0; animation: ticker-scroll 28s linear infinite; width: max-content; }
.ann-item { white-space: nowrap; padding: 0 48px 0 0; color: var(--blue); font-size: 12.5px; }
.ann-item::after { content: '·'; margin-left: 48px; opacity: 0.4; }
.ann-item:last-child::after { display: none; }

/* ─── HERO ─── */
.hero {
  background: var(--bg);
  padding: 72px 64px 64px;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}
.hero-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700; color: var(--slate);
  line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 18px;
}
.hero h1 .hl { color: var(--blue); }
.hero-desc { font-size: 15px; color: var(--slate-mid); max-width: 500px; line-height: 1.85; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-blue {
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 11px 26px; border-radius: 6px;
  text-decoration: none; letter-spacing: 0.01em;
  transition: background .2s; border: 1.5px solid var(--blue);
}
.btn-blue:hover { background: var(--blue-mid); }
.btn-ghost {
  background: transparent; color: var(--blue);
  font-size: 13px; font-weight: 600;
  padding: 11px 26px; border-radius: 6px;
  text-decoration: none; letter-spacing: 0.01em;
  border: 1.5px solid var(--blue); transition: background .2s;
}
.btn-ghost:hover { background: var(--blue-light); }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; transition: box-shadow .2s;
}
.hcard:hover { box-shadow: 0 4px 18px rgba(26,79,160,0.09); }
.hcard .lbl { font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: 7px; }
.hcard .val { font-family: var(--font-disp); font-size: 28px; font-weight: 700; color: var(--slate); line-height: 1; margin-bottom: 3px; }
.hcard .sub { font-size: 11.5px; color: var(--slate-lt); }
.hcard.blue-card { background: var(--blue); border-color: var(--blue); }
.hcard.blue-card .lbl { color: rgba(255,255,255,0.55); }
.hcard.blue-card .val { color: #fff; }
.hcard.blue-card .sub { color: rgba(255,255,255,0.6); }
.hcard.green-card { background: var(--accent-lt); border-color: rgba(15,157,122,0.2); }
.hcard.green-card .lbl { color: var(--accent); }
.hcard.green-card .val { color: var(--accent); font-size: 20px; }
.hcard.green-card .sub { color: rgba(15,157,122,0.7); }

/* ─── STATS ROW ─── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 32px 40px; border-right: 1px solid var(--border);
  text-align: center; transition: background .2s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--bg); }
.stat-cell .n { font-family: var(--font-disp); font-size: 40px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 5px; }
.stat-cell .n sup { font-size: 20px; }
.stat-cell .lbl { font-size: 11.5px; color: var(--slate-lt); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

/* ─── SECTION COMMONS ─── */
.section { padding: 72px 64px; }
.section.bg-light { background: var(--bg); }
.section.bg-white { background: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.eyebrow::before { content:''; display: block; width: 18px; height: 2px; background: var(--blue); border-radius: 2px; }
.sec-title {
  font-family: var(--font-disp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; color: var(--slate);
  line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 12px;
}
.sec-lead { font-size: 15px; color: var(--slate-mid); line-height: 1.85; margin-bottom: 6px; }
.divider { height: 1px; background: var(--border); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--bg);
  padding: 56px 64px 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { display: block; margin-bottom: 10px; }
.page-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--slate);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px;
}
.page-hero p { font-size: 15px; color: var(--slate-mid); line-height: 1.85; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; margin-top: 44px; }
.about-body p { font-size: 14.5px; color: var(--slate-mid); line-height: 1.9; margin-bottom: 15px; }
.meta-table { margin-top: 28px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; font-size: 13px; }
.meta-row { display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid var(--border-lt); }
.meta-row:last-child { border-bottom: none; }
.meta-key { padding: 10px 16px; background: var(--bg); color: var(--slate-lt); font-weight: 500; border-right: 1px solid var(--border-lt); }
.meta-val { padding: 10px 16px; color: var(--slate); font-size: 13px; letter-spacing: 0.02em; }
.about-features { display: flex; flex-direction: column; gap: 12px; }
.feat {
  padding: 18px 20px; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.feat:hover { transform: translateX(3px); box-shadow: 0 3px 12px rgba(26,79,160,0.07); }
.feat-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--blue-light); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.feat-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; }
.feat-copy h4 { font-size: 13.5px; font-weight: 600; color: var(--slate); margin-bottom: 3px; }
.feat-copy p { font-size: 12.5px; color: var(--slate-lt); line-height: 1.6; }

/* ─── BOARD ─── */
.board-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 40px; }
.bcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.bcard:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(44,62,85,0.08); }
.bavatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-light); border: 1.5px solid rgba(26,79,160,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-size: 16px; font-weight: 700;
  color: var(--blue); margin-bottom: 14px;
}
.bavatar.ind { background: var(--bg); border-color: var(--border); color: var(--slate-mid); }
.bcard h3 { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 3px; line-height: 1.3; }
.bcard .role { font-size: 12px; color: var(--slate-lt); margin-bottom: 10px; }
.ind-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-lt);
  border: 1px solid rgba(15,157,122,0.25);
  padding: 2px 7px; border-radius: 20px; margin-left: 4px; vertical-align: middle;
}
.bcard .din { font-family: var(--font-mono); font-size: 10.5px; color: var(--slate-lt); background: var(--bg); padding: 3px 8px; border-radius: 4px; display: inline-block; }
.kmp-strip {
  margin-top: 32px; background: var(--blue); border-radius: 10px;
  padding: 28px 32px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.kmp-block .k { font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 5px; }
.kmp-block .v { font-size: 14.5px; font-weight: 600; color: #fff; line-height: 1.3; }
.kmp-block .r { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* committee table */
.committee-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-top: 28px; }
.committee-table th { background: var(--bg); text-align: left; padding: 10px 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--slate-lt); border-bottom: 1px solid var(--border); }
.committee-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-lt); color: var(--slate); vertical-align: top; }
.committee-table tr:last-child td { border-bottom: none; }
.committee-table tr:hover td { background: var(--bg); }

.committee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.committee-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.committee-title {
    background: var(--bg);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    border-bottom: 1px solid var(--border);
}

.committee-table {
    width: 100%;
    margin-top: 0;
}

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

    .committee-card {
        overflow-x: auto;
    }
}

/* ─── POLICY GROUPS ─── */
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.policy-group {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.policy-head { background: var(--bg); padding: 20px 24px; border-bottom: 1px solid var(--border); }
.policy-head h3 { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.policy-head p { font-size: 12px; color: var(--slate-lt); line-height: 1.5; }
.policy-list { padding: 8px 0; }
.policy-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; gap: 16px;
  border-bottom: 1px solid var(--border-lt); transition: background .15s;
}
.policy-item:last-child { border-bottom: none; }
.policy-item:hover { background: var(--bg); }
.policy-item strong { font-size: 13.5px; font-weight: 600; color: var(--slate); display: block; margin-bottom: 2px; }
.policy-item span { font-size: 12px; color: var(--slate-lt); line-height: 1.4; }
.doc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  text-decoration: none; white-space: nowrap;
  padding: 5px 12px; border: 1px solid rgba(26,79,160,0.25);
  border-radius: 5px; transition: background .2s;
  flex-shrink: 0;
}
.doc-link:hover { background: var(--blue-light); }
.doc-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── FINANCIALS ─── */
.inv-tabs { display: flex; gap: 0; border-bottom: 1.5px solid var(--border); margin-bottom: 36px; margin-top: 36px; }
.inv-tab {
  padding: 11px 22px; font-size: 13px; font-weight: 500;
  color: var(--slate-lt); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1.5px;
  transition: color .2s, border-color .2s; user-select: none;
}
.inv-tab.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }
.inv-tab:hover:not(.active) { color: var(--slate); }
.doc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.doc-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: box-shadow .2s; }
.doc-card:hover { box-shadow: 0 4px 16px rgba(26,79,160,0.08); }
.doc-head { background: var(--bg); border-bottom: 1px solid var(--border); padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; }
.doc-head .type { font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); }
.doc-head .yr { font-family: var(--font-mono); font-size: 11.5px; color: var(--slate-lt); }
.doc-body { padding: 16px 18px 20px; }
.doc-body p { font-size: 12.5px; color: var(--slate-mid); line-height: 1.65; margin-bottom: 14px; }
.doc-body .doc-link { font-size: 12px; }

/* notices / timeline */
.notices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.notice-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.notice-card h4 { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.notice-card p { font-size: 13px; color: var(--slate-mid); line-height: 1.65; margin-bottom: 14px; }
.notice-chip { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; margin-bottom: 10px; }
.chip-blue { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(26,79,160,0.2); }
.chip-green { background: var(--accent-lt); color: var(--accent); border: 1px solid rgba(15,157,122,0.2); }

/* auditor card */
.info-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.info-card h4 { font-size: 15px; font-weight: 600; color: var(--slate); margin-bottom: 16px; font-family: var(--font-disp); }
.info-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border-lt); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-row .ik { color: var(--slate-lt); font-weight: 500; }
.info-row .iv { color: var(--slate); font-weight: 600; text-align: right; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 44px; }
.cblock { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 26px; transition: box-shadow .2s, transform .2s; }
.cblock:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(26,79,160,0.07); }
.cblock-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cblock-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.ctitle { font-size: 13px; font-weight: 700; color: var(--slate); letter-spacing: 0.02em; margin-bottom: 10px; text-transform: uppercase; }
.cblock p { font-size: 13.5px; color: var(--slate-mid); line-height: 1.9; }
.cblock a { color: var(--blue); text-decoration: none; }
.cblock a:hover { text-decoration: underline; }
.bold { font-weight: 600; color: var(--slate); }

.escalation { margin-top: 44px; }
.esc-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.esc-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px;
  transition: box-shadow .2s;
}
.esc-step:hover { box-shadow: 0 3px 12px rgba(26,79,160,0.07); }
.esc-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-mono);
}
.esc-body h4 { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.esc-body p { font-size: 13px; color: var(--slate-mid); line-height: 1.7; }
.esc-body a { color: var(--blue); font-weight: 600; text-decoration: none; }
.esc-body a:hover { text-decoration: underline; }

.odr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: var(--accent-lt); border: 1px solid rgba(15,157,122,0.25);
  padding: 5px 12px; border-radius: 20px; text-decoration: none;
  margin-top: 10px; transition: background .2s;
}
.odr-badge:hover { background: rgba(15,157,122,0.15); }

/* ─── COMP / POLICIES QUICK LINKS ─── */
.comp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.comp-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px;
  transition: box-shadow .2s;
}
.comp-card:hover { box-shadow: 0 4px 16px rgba(26,79,160,0.08); }
.comp-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.comp-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; }
.comp-card h3 { font-size: 14.5px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.comp-card p { font-size: 13px; color: var(--slate-mid); line-height: 1.65; margin-bottom: 14px; }
.comp-links { display: flex; flex-direction: column; gap: 6px; }
.comp-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--blue); text-decoration: none;
  padding: 5px 0; border-bottom: 1px solid var(--border-lt);
  transition: color .2s;
}
.comp-links a:last-child { border-bottom: none; }
.comp-links a:hover { color: var(--blue-mid); }
.comp-links a svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  background: #0F1D36;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 56px 64px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .fn { font-family: var(--font-disp); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand .fs { font-size: 13px; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-reg-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-reg-row span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.07em;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 20px 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-disc { font-size: 11.5px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 720px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(26,79,160,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-2px); }

/* ─── CONTACT SECTION SPECIFIC ─── */
.contact-section { padding: 72px 64px; background: var(--bg); }

/* ─── FADE IN ─── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .section, .hero, .page-hero, .footer-top, .topbar, nav.main-nav, .ann-band, .contact-section { padding-left: 32px; padding-right: 32px; }
  .footer-bottom { padding-left: 32px; padding-right: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .board-grid { grid-template-columns: repeat(2,1fr); }
  .kmp-strip { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section, .hero, .page-hero, .contact-section { padding-left: 20px; padding-right: 20px; padding-top: 48px; padding-bottom: 40px; }
  .topbar, .footer-top, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  nav.main-nav { padding: 0 20px; }
  .ann-band { padding: 8px 20px; }
  .nav-links, .nav-btn, .topbar-right { display: none; }
  .hamburger { display: flex; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .board-grid { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .notices-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .hero h1 { font-size: 32px; }
}

.notice-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
  }

  .notice-table th {
      background: var(--bg);
      padding: 12px 16px;
      text-align: left;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--slate-lt);
      border-bottom: 1px solid var(--border);
  }

  .notice-table td {
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-lt);
      font-size: 13px;
  }

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

  .notice-table tr:hover td {
      background: var(--bg);
  }

  .cblock iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
    border-radius: 8px;
  }

  .grievance-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
      align-items: stretch;
  }

  .grievance-grid .cblock {
      height: 100%;
      box-sizing: border-box;
  }

  .grievance-grid > .esc-steps {
      height: 100%;
      margin-top: 0;
      box-sizing: border-box;
  }

  .grievance-grid > .esc-steps .esc-step {
      flex: 1;
  }

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