:root {
  --navy: #0a2342;
  --red: #c0392b;
  --gold: #e8b84b;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --text: #2c3e50;
  --muted: #6b7c93;
  --border: #dde1e7;
  --shadow: 0 2px 12px rgba(10,35,66,0.10);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── Nav ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
}
.nav-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #d4a836; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #a93226; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: #0d2d57; transform: translateY(-1px); }

/* ── Page wrapper ── */
.page { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }
.page-header { margin-bottom: 2.5rem; }
.page-header h1 { font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem; }
.page-header p { color: var(--muted); font-size: 1.05rem; }
.divider { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0.75rem 0 1.25rem; }

/* ── Cards grid ── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(10,35,66,0.13); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.card a { color: var(--red); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.card a:hover { text-decoration: underline; }

/* ── Section ── */
section.section { padding: 3rem 0; border-top: 1px solid var(--border); }
section.section:first-of-type { border-top: none; }
section.section h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.4rem; }
.section-meta { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ── Table ── */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: var(--navy); color: white; }
th { padding: 0.85rem 1rem; text-align: left; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; }
td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--light-bg); }
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-green { background: #d4edda; color: #155724; }
.badge-blue  { background: #cce5ff; color: #004085; }
.badge-gold  { background: #fff3cd; color: #856404; }
.badge-red   { background: #f8d7da; color: #721c24; }

/* ── Board grid ── */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.board-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.board-card .role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 0.35rem; }
.board-card .name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.board-card a { color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.board-card a:hover { color: var(--red); }

/* ── Info box ── */
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box h4 { color: var(--navy); margin-bottom: 0.4rem; }
.info-box p, .info-box li { color: var(--muted); font-size: 0.95rem; }
.info-box ul { padding-left: 1.2rem; margin-top: 0.4rem; }
.info-box li { margin-bottom: 0.2rem; }

/* ── Alert ── */
.alert {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #664d03;
}
.alert strong { font-weight: 700; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.contact-block h4 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-block p, .contact-block a { color: var(--muted); font-size: 0.95rem; display: block; margin-bottom: 0.35rem; text-decoration: none; }
.contact-block a:hover { color: var(--red); }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { color: white; margin-bottom: 0.75rem; font-size: 0.95rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.83rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.65rem 1rem; border-radius: 6px; }
  .nav-toggle { display: block; }
  .hero { padding: 2.5rem 1rem; }
  .page { padding: 2rem 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
