/* CommunAT site styles — navy / electric blue / gold */
:root {
  --navy: #0B1B3B;
  --navy-2: #142A55;
  --blue: #1E90FF;
  --gold: #D4A52A;
  --off-white: #F7F8FB;
  --soft-gray: #E5E7EB;
  --text: #1F2937;
  --muted: #6B7280;
  --max-w: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { color: var(--navy); margin: 0 0 .5rem; line-height: 1.2; }
h1 { font-size: 2.4rem; letter-spacing: -0.02em; }
h2 { font-size: 1.6rem; margin-top: 2rem; }
h3 { font-size: 1.15rem; margin-top: 1.25rem; }
p { margin: 0 0 1rem; }

/* Top nav */
.nav {
  background: var(--navy);
  color: white;
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: white;
}
.brand .at { color: var(--gold); }
.brand .i { color: var(--blue); opacity: .6; font-style: italic; font-size: .9em; }
.nav-links { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: .95rem; }
.nav-links a:hover { color: white; text-decoration: none; }
.nav-links a.active { color: var(--gold); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  padding: 64px 22px 56px;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; }
.hero h1 { color: white; max-width: 760px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 680px; }
.hero .accent { color: var(--gold); }
.status-strip {
  display: inline-block;
  background: rgba(212,165,42,0.18);
  border: 1px solid rgba(212,165,42,0.45);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 18px;
  letter-spacing: .02em;
}

/* Sections */
.section { padding: 56px 22px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section.alt { background: white; }
.eyebrow {
  color: var(--blue);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .5rem;
}

/* Card grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.card {
  background: white;
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  padding: 24px;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { border-color: var(--blue); transform: translateY(-2px); }
.card h3 { margin-top: 0; }
.card .icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
  margin-bottom: 14px;
}
.card a { font-weight: 600; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

/* Pillbox list */
.pillbox { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.pill {
  background: var(--off-white);
  border: 1px solid var(--soft-gray);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .9rem;
  color: var(--navy);
}

/* CTA block */
.cta-block {
  background: var(--navy);
  color: white;
  padding: 40px 28px;
  border-radius: 14px;
  margin: 36px 0;
  border-left: 6px solid var(--gold);
}
.cta-block h2 { color: white; margin-top: 0; }
.cta-block p { color: rgba(255,255,255,0.85); }
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
.btn.ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

/* Form */
form.contact {
  background: white;
  border: 1px solid var(--soft-gray);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  gap: 14px;
  margin-top: 1.5rem;
}
form.contact label { font-weight: 600; color: var(--navy); font-size: .95rem; }
form.contact input, form.contact textarea, form.contact select {
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}
form.contact textarea { min-height: 120px; resize: vertical; }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; margin: 1.5rem 0; }
.stat { background: white; border: 1px solid var(--soft-gray); border-radius: 12px; padding: 20px; }
.stat .n { color: var(--navy); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat .l { color: var(--muted); font-size: .85rem; margin-top: 6px; }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 36px 22px 28px;
  margin-top: 60px;
  font-size: .92rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer .brand { color: white; font-size: 1.05rem; }
.footer a { color: var(--gold); }
.footer .small { font-size: .85rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* Note callout */
.note {
  background: rgba(30,144,255,0.07);
  border-left: 4px solid var(--blue);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: .95rem;
}

/* Inline emphasis */
strong { color: var(--navy); }
