/* Simple, clean bulletin-style website
   Edit freely. No build tools required. */

:root {
  /* Material 3 Light Theme Tokens (Coastal Palette) */
  --bg: #F0F4F8;
  /* Base Surface */
  /* Surface (Slightly darker for card contrast) */
  --panel: #F8FAFC;
  /* Surface Container Low */
  /* Surface Container Low */
  --panel2: #FFFFFF;
  /* Surface Container High */
  --text: #1A1C1E;
  /* On Surface */
  --muted: #43474E;
  /* On Surface Variant */

  /* Primary: Ocean Blue */
  --accent: #00639B;
  /* Primary */
  --on-accent: #FFFFFF;
  /* On Primary */

  /* Secondary: Seafoam/Teal */
  --accent2: #006D4F;
  /* Secondary */

  --border: rgba(114, 119, 127, 0.25);
  /* Outline Variant */
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);


  --radius: 24px;
  /* M3 Rounded Corners */
  --max: 1100px;
  --font: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(0, 99, 155, .04), transparent 60%),
    radial-gradient(900px 700px at 100% 0%, rgba(0, 109, 79, .04), transparent 55%),
    linear-gradient(180deg, #F0F4F8, #E2E8F0 40%, #F0F4F8);
  line-height: 1.5;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 22px;
  border: 1px solid rgba(0, 99, 155, 0.15);
  border-radius: 14px;
  background: rgba(0, 99, 155, 0.05);
}

.brand-title {
  font-weight: 700;
  letter-spacing: .2px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.nav {
  display: flex;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.nav-brand:hover {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--border);
  text-decoration: none;
  background: rgba(230, 237, 248, .04);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 10px 0 18px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  display: block;
  padding: 10px 20px;
  color: var(--muted);
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(0, 99, 155, .08);
  text-decoration: none;
}

.hero {
  padding: 64px 0 42px;
  background: #EBF1F9;
  text-align: center;
}

.hero-centered {
  max-width: 900px;
  margin: 0 auto;
}

.hero-copy {
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  font-weight: 800;
  color: var(--text);
}

.lead {
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 720px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}

.card {
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: var(--panel2);
  box-shadow: var(--shadow);
  transition: transform 0.2s cubic-bezier(0.2, 0.0, 0, 1), box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 99, 155, .15);
}

.card-kicker {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.card-value {
  font-size: 18px;
  font-weight: 800;
  margin-top: 6px;
}

.card-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(0, 99, 155, .08);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  text-decoration: none;
}

.button:hover {
  background: rgba(0, 99, 155, .12);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.button.primary {
  background: var(--accent);
  color: var(--on-accent);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.button.primary:hover {
  box-shadow: 0 4px 12px rgba(0, 99, 155, 0.3);
  border-color: transparent;
  background: #005685;
  /* Slightly darker shift */
}

.button.small {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.fineprint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.hero-panel {
  padding: 32px;
  border-radius: 28px;
  border: none;
  background: #EBF1F9;
  /* Surface Container */
  color: var(--text);
  box-shadow: none;
}

.panel-title {
  margin: 0 0 10px;
  font-size: 16px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li {
  margin: 8px 0;
}

.panel-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(0, 99, 155, .40);
  background: rgba(0, 99, 155, .05);
  color: var(--text);
  font-size: 13px;
}

.section {
  padding: 42px 0;
}

.section.alt {
  background: #F4F8FC;
  /* Alternating Background */
  border-top: none;
  border-bottom: none;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.section p {
  color: var(--muted);
  margin-top: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.info-box {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel2);
  box-shadow: var(--shadow);
}

.info-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.pill-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 500;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(0, 109, 79, .06);
  border: 1px solid rgba(0, 109, 79, .15);
}

.small {
  font-size: 13px;
  color: var(--muted);
}

.compact {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.compact li {
  margin: 6px 0;
}

.link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.map-box {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel2);
  box-shadow: var(--shadow);
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(230, 237, 248, .10);
  margin-top: 10px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel2);
  box-shadow: var(--shadow);
}

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

.table th,
.table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(230, 237, 248, .08);
  text-align: left;
}

.table th {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .10em;
  background: rgba(242, 246, 252, 0.8);
  backdrop-filter: blur(4px);
}

.table td {
  color: var(--text);
  font-feature-settings: "tnum";
}

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

.table tbody tr:hover td {
  background: rgba(0, 99, 155, 0.04);
  /* Subtle hover highlight */
  transition: background 0.2s ease;
}

/* Partners Section */
.partners {
  padding: 24px 0 42px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.partners-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-link img {
  max-height: 48px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-link:hover img {
  filter: grayscale(0%);
}



.site-footer {
  border-top: 1px solid var(--border);
  background: #F0F4F8;
  padding: 32px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Logo placements (navbar, hero, footer) --- */

/* Navbar */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 44px;
  width: auto;
  display: block;
}

.nav-title {
  font-weight: 700;
  line-height: 1.1;
}

/* Hero */
.hero-logo {
  text-align: center;
  margin: 0 0 1.25rem 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-logo img {
  max-width: 240px;
  width: min(240px, 70vw);
  height: auto;
  display: inline-block;
}

/* Footer */
.footer-badge {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem 0;
}

.footer-badge img {
  max-width: 140px;
  width: min(140px, 55vw);
  height: auto;
  opacity: 0.95;
}

/* Mobile polish */
@media (max-width: 640px) {
  .nav-logo {
    height: 38px;
  }

  .nav-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    display: none;
    /* Hide subtitle on mobile to save space */
  }

  .brand-text {
    flex: 1;
    min-width: 0;
    /* Allow flex shrinking */
  }
}

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

  .hero-cards {
    grid-template-columns: 1fr;
  }

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

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

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-inner {
    flex-direction: column;
  }
}