:root {
  --navy: #102a43;
  --blue: #1f5f99;
  --light-blue: #eaf4ff;
  --gold: #f2b705;
  --green: #1f9d55;
  --text: #243b53;
  --muted: #627d98;
  --border: #d9e2ec;
  --bg: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

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


/* Header */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand h1 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--navy);
}

.brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}

.main-nav a:hover {
  background: var(--light-blue);
}


/* Hero */

.hero {
  background:
    radial-gradient(circle at top right, rgba(31, 95, 153, 0.22), transparent 34%),
    linear-gradient(135deg, #102a43 0%, #1f5f99 100%);
  color: var(--white);
  padding: 88px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 12px;
  border-radius: 999px;
  color: #f8fbff;
}

.hero h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.03;
  margin: 20px 0;
  max-width: 850px;
}

.hero p {
  font-size: 1.17rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  filter: brightness(0.96);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}


/* Status Card */

.status-card {
  background: var(--white);
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.status-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf3;
  color: #0b6b3a;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 157, 85, 0.16);
}

.status-card p {
  color: var(--muted);
}

.status-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

.status-meta span {
  color: var(--muted);
}

.status-meta strong {
  text-align: right;
  color: var(--navy);
}


/* Sections */

.section {
  padding: 76px 0;
}

.section-light {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.eyebrow {
  color: var(--blue);
  margin-bottom: 10px;
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-heading h2,
.two-column h2,
.contact-panel h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin: 0 0 12px;
}

.section-dark h2 {
  color: var(--white);
}

.section-heading p,
.two-column p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.82);
}


/* Project Cards */

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.project-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--light-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.project-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.project-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.card-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}


/* Purpose */

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.notice {
  background: #fff8db;
  border-left: 5px solid var(--gold);
  padding: 18px 20px;
  border-radius: 12px;
  margin-top: 24px;
  color: var(--navy);
}


/* Standards */

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.standard-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.standard-item h3 {
  color: var(--navy);
  margin-top: 0;
}

.standard-item p {
  color: var(--muted);
  margin-bottom: 0;
}


/* Contact */

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.contact-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-box p {
  margin: 8px 0;
}

.contact-box a {
  color: var(--gold);
  font-weight: 800;
}


/* Footer */

.site-footer {
  background: #0b1d30;
  color: rgba(255, 255, 255, 0.75);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}


/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 70px 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav a {
    padding: 8px 10px;
  }

  .hero {
    padding: 54px 0;
  }

  .hero h2 {
    font-size: 2.25rem;
  }

  .project-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
  }

  .status-meta {
    flex-direction: column;
    gap: 4px;
  }

  .status-meta strong {
    text-align: left;
  }

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