:root {
  --navy: #0d2340;
  --royal: #2459d8;
  --sky: #9dc4ff;
  --mist: #eef5ff;
  --ink: #122033;
  --muted: #5b6b84;
  --line: rgba(13, 35, 64, 0.12);
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(13, 35, 64, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(157, 196, 255, 0.35), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 45%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.site-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.84);
  border-bottom: 1px solid rgba(13, 35, 64, 0.08);
}

.site-header .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  padding: 0.35rem;
  border: 1px solid rgba(13, 35, 64, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand-copy span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
}

.nav a[aria-current="page"],
.nav a:hover,
.nav a:focus-visible {
  background: var(--navy);
  color: white;
  outline: none;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(36, 89, 216, 0.1);
  color: var(--royal);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero h1,
.section-title {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
}

.hero p,
.lead,
.card p,
.content p,
.content li,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--royal);
  color: white;
  box-shadow: 0 16px 30px rgba(36, 89, 216, 0.22);
}

.button.secondary {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.92));
  border: 1px solid rgba(13, 35, 64, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(13, 35, 64, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--navy);
}

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

.section {
  padding: 2rem 0 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 0 0 0.5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid rgba(13, 35, 64, 0.08);
  box-shadow: 0 10px 30px rgba(13, 35, 64, 0.06);
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.card .badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--royal);
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline,
.bullets {
  display: grid;
  gap: 0.75rem;
}

.timeline article,
.bullet-item {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 35, 64, 0.08);
}

.bullet-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.board-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--royal), var(--sky));
  flex: 0 0 auto;
}

.person strong {
  display: block;
  color: var(--navy);
}

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

.form {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(13, 35, 64, 0.18);
  background: white;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(36, 89, 216, 0.18);
  border-color: var(--royal);
}

.footer {
  margin-top: 3rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer .card {
  background: linear-gradient(180deg, rgba(13, 35, 64, 0.97), rgba(13, 35, 64, 0.9));
  color: white;
}

.footer a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.resource-links {
  display: grid;
  gap: 0.75rem;
}

.resource-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 35, 64, 0.08);
  background: white;
}

@media (max-width: 940px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .board-list {
    grid-template-columns: 1fr;
  }

  .section-head,
  .site-header .site-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1160px);
  }

  .site-header .site-shell {
    width: min(100% - 1rem, 1160px);
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .nav a {
    text-align: center;
    padding-inline: 0.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .resource-link {
    flex-direction: column;
    align-items: flex-start;
  }
}