/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --navy: #0f172a;
  --navy2: #111827;
  --red: #9f1d35;
  --gold: #f5c542;
  --cream: #fff8ea;
  --muted: #64748b;
  --line: #ffffff29;
}

* {
  box-sizing: border-box;
}

html, body {
  color: #111827;
  background: #f8fafc;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

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

.nav {
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 18px 36px;
  display: flex;
  position: sticky;
  top: 0;
}

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

.logo {
  background: linear-gradient(135deg, var(--navy), #000);
  color: #fff;
  border: 3px solid var(--gold);
  border-radius: 18px;
  place-items: center;
  width: 58px;
  height: 58px;
  font-size: 28px;
  font-weight: 900;
  display: grid;
  box-shadow: 0 12px 30px #0f172a40;
}

.brandTitle {
  letter-spacing: -1px;
  font-size: 32px;
  font-weight: 950;
}

.brandSub {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
}

.links {
  color: #334155;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-weight: 800;
  display: flex;
}

.mailBtn {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
}

.hero {
  color: #fff;
  background: radial-gradient(circle at 20% 10%, #f5c54240, #0000 26%), linear-gradient(135deg, #0f172afa, #1e293bf0), linear-gradient(45deg, #0f172a, #9f1d35);
  min-height: 640px;
}

.heroOverlay {
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px 36px;
  display: grid;
}

.pill {
  color: #3f2b00;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 24px;
  padding: 10px 16px;
  font-weight: 950;
  display: inline-block;
}

.hero h1 {
  letter-spacing: -4px;
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .96;
}

.hero p {
  color: #dbe4ef;
  max-width: 780px;
  font-size: 22px;
  line-height: 1.65;
}

.heroActions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  display: flex;
}

.primary, .secondary {
  border-radius: 14px;
  padding: 15px 23px;
  font-weight: 950;
}

.primary {
  background: var(--gold);
  color: #1f2937;
}

.secondary {
  border: 1px solid var(--line);
  color: #fff;
  background: #ffffff14;
}

.missionCard {
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff17;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 70px #00000040;
}

.missionCard h2 {
  margin-top: 0;
  font-size: 30px;
}

.missionCard ul {
  color: #f8fafc;
  padding-left: 22px;
  font-size: 18px;
  line-height: 2;
}

.intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 62px 28px 34px;
}

.intro h2 {
  letter-spacing: -2px;
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
}

.intro p {
  color: #475569;
  font-size: 21px;
  line-height: 1.7;
}

.categoryGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 36px 70px;
  display: grid;
}

.categoryCard {
  border-top: 6px solid var(--red);
  background: #fff;
  border-radius: 26px;
  min-height: 230px;
  padding: 30px;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 12px 34px #0f172a17;
}

.categoryCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px #0f172a24;
}

.categoryCard h3 {
  margin: 0 0 12px;
  font-size: 27px;
}

.categoryCard p {
  color: #526173;
  font-size: 17px;
  line-height: 1.65;
}

.categoryCard span {
  color: var(--red);
  margin-top: 12px;
  font-weight: 950;
  display: inline-block;
}

.bottomBand {
  background: var(--cream);
  border-top: 1px solid #f1dfad;
  padding: 70px 36px;
}

.bottomBand > div {
  max-width: 1040px;
  margin: 0 auto;
}

.bottomBand h2 {
  letter-spacing: -2px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.bottomBand p {
  color: #475569;
  font-size: 21px;
  line-height: 1.75;
}

.site {
  max-width: 1220px;
  margin: 0 auto;
  padding: 36px;
}

.site h1 {
  letter-spacing: -3px;
  font-size: clamp(42px, 6vw, 68px);
}

.section-lead {
  color: #475569;
  font-size: 22px;
  line-height: 1.7;
}

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

.card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 34px #0f172a17;
}

.card h3 {
  font-size: 24px;
}

.card p {
  color: #526173;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .heroOverlay {
    grid-template-columns: 1fr;
    padding: 56px 24px;
  }

  .categoryGrid, .grid {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/