@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue: #1268ad;
  --blue-dark: #0d4f86;
  --blue-deep: #0d1830;
  --text: #4d5365;
  --muted: #788092;
  --line: #e9edf3;
  --soft: #f6f9fc;
  --white: #fff;
  --shadow: 0 8px 28px rgba(23, 48, 78, .08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(30,55,80,.07);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1464a2;
  min-width: 170px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  border-radius: 10px 3px 10px 3px;
  background: linear-gradient(145deg, #1784c9, #0b5795);
  box-shadow: 0 5px 15px rgba(18,104,173,.2);
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .5px;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #7b8190;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #4e5566;
}

.nav a {
  position: relative;
  padding: 28px 0;
}

.nav a:hover { color: var(--blue); }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}

.nav a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #344052;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 455px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1268ad 0%, #0d5f9f 55%, #155f98 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -180px;
  height: 300px;
  background: rgba(255,255,255,.055);
  transform: rotate(-4deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 82px 0 88px;
  text-align: center;
  max-width: 900px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #0c6cb6;
}

.hero .eyebrow { color: rgba(255,255,255,.8); }

.hero h1 {
  margin: 15px 0 16px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -.8px;
  font-weight: 900;
}

.hero h1 span { color: #dcefff; }

.hero-text {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 10px 23px;
  border-radius: 5px;
  font-weight: 900;
  font-size: 13px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(0,0,0,.14);
}

.btn-primary {
  background: #fff;
  color: #1165a7;
}

.btn-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

.hero-note {
  margin-top: 26px;
  font-size: 11px;
  color: rgba(255,255,255,.7);
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #9fe0ff;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .13;
  background: #fff;
}

.glow-one { width: 280px; height: 280px; top: -100px; right: 5%; }
.glow-two { width: 190px; height: 190px; bottom: -80px; left: 7%; }

.intro {
  padding: 85px 0 95px;
  background: #fff;
}

.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 43px;
}

.section-heading h2,
.focus h2,
.cta h2 {
  margin: 8px 0 8px;
  color: #53586a;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 900;
}

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

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

.resource-card {
  display: flex;
  gap: 18px;
  min-height: 190px;
  padding: 28px;
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: #d9e9f6;
  box-shadow: 0 15px 35px rgba(23,48,78,.12);
}

.resource-card.featured {
  background: linear-gradient(150deg, #f8fcff, #fff);
  border-top: 3px solid var(--blue);
}

.icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf5fd;
  color: #1169aa;
  font-size: 20px;
  font-weight: 900;
}

.card-content { min-width: 0; }

.tag {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #1680c8;
}

.resource-card h3 {
  margin: 4px 0 7px;
  color: #4f5566;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.resource-card p {
  margin: 0 0 16px;
  color: #747c8b;
  font-size: 12px;
  line-height: 1.65;
}

.card-link {
  color: #0869ad;
  font-size: 11px;
  font-weight: 900;
}

.card-link b { margin-left: 4px; }

.focus {
  padding: 82px 0;
  background: #f5f8fb;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.focus h2 {
  font-size: 38px;
  color: #4c5365;
}

.focus p {
  max-width: 550px;
  color: #707989;
}

.focus-links {
  display: grid;
  gap: 9px;
}

.focus-links a {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  padding: 17px 18px;
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 6px;
  box-shadow: 0 5px 18px rgba(22,45,72,.05);
  transition: transform .18s ease, border-color .18s ease;
}

.focus-links a:hover {
  transform: translateX(5px);
  border-color: #cfe4f4;
}

.focus-links span {
  color: #9ba4b1;
  font-size: 12px;
  font-weight: 900;
}

.focus-links strong {
  color: #4f5667;
  font-size: 14px;
}

.focus-links b { color: #1268ad; }

.cta {
  padding: 82px 0;
  text-align: center;
  background: #1268ad;
}

.cta-inner { max-width: 760px; }

.cta .section-kicker { color: #bfe5ff; }

.cta h2 {
  color: #fff;
  font-size: 34px;
}

.cta p {
  margin: 0 auto 25px;
  color: rgba(255,255,255,.82);
}

.footer {
  color: #c2c9d4;
  background: #101a2c;
}

.footer-main {
  min-height: 190px;
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-footer { color: #fff; }

.brand-footer small { color: #8f98a8; }

.footer-brand p {
  margin: 14px 0 0;
  color: #8490a3;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding: 16px 0;
  background: #172238;
  color: #8792a5;
  text-align: center;
  font-size: 10px;
}

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 560px); }

  .nav {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 68px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(20,40,60,.13);
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 13px 14px;
    border-bottom: 1px solid #f0f2f5;
  }

  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }

  .menu-toggle { display: block; }

  .hero { min-height: 500px; }
  .hero-inner { padding: 70px 0; }
  .hero h1 { font-size: 43px; }
  .hero-text { font-size: 15px; }

  .intro, .focus, .cta { padding: 65px 0; }

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

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

  .section-heading h2,
  .focus h2,
  .cta h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
