:root {
  --bg: #07090d;
  --surface: #0d1118;
  --line: rgba(255,255,255,.11);
  --text: #f7f9fc;
  --muted: #a8b2c2;
  --blue: #69b8ff;
  --blue-2: #2f88d8;
  --max: 1240px;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(66,151,229,.12), transparent 30rem),
    radial-gradient(circle at 0% 35%, rgba(66,151,229,.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7,9,13,.86);
  backdrop-filter: blur(20px);
}
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: .08em; }
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(105,184,255,.5);
  background-position: center;
  background-size: cover;
}
.brand span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-size: .95rem; }
.brand small { margin-top: 6px; font-size: .64rem; color: var(--muted); letter-spacing: .22em; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; color: #dbe3ef; }
.site-nav a:not(.button):hover { color: var(--blue); }
.nav-toggle { display: none; color: var(--text); background: transparent; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #06101a;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(47,136,216,.2);
}
.button:hover { transform: translateY(-1px); filter: brightness(1.08); }
.button-small { min-height: 38px; padding: 0 16px; }
.button-ghost { color: var(--text); background: rgba(255,255,255,.03); border-color: var(--line); box-shadow: none; }
.hero { min-height: calc(100vh - 82px); display: grid; align-items: center; padding: 70px 24px; overflow: hidden; }
.hero-grid { width: min(var(--max), 100%); margin: auto; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--blue); font-weight: 800; font-size: .76rem; letter-spacing: .2em; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 900px; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .98; letter-spacing: -.055em; margin-bottom: 28px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; }
h3 { font-size: 1.25rem; }
.hero-lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 42px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); padding-top: 24px; gap: 20px; }
.hero-metrics div { display: flex; flex-direction: column; }
.hero-metrics span { color: var(--muted); font-size: .82rem; margin-top: 4px; }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-logo {
  position: relative;
  z-index: 2;
  width: min(580px, 100%);
  aspect-ratio: 1;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}
.logo-orbit { position: absolute; width: 112%; aspect-ratio: 1; border: 1px solid rgba(105,184,255,.24); border-radius: 50%; box-shadow: 0 0 100px rgba(47,136,216,.15) inset; }
.logo-orbit::before, .logo-orbit::after { content: ""; position: absolute; inset: 8%; border: 1px dashed rgba(255,255,255,.12); border-radius: 50%; }
.logo-orbit::after { inset: 20%; border-style: solid; border-color: rgba(105,184,255,.17); }
.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.split-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.text-link { color: var(--blue); font-weight: 800; white-space: nowrap; }
.service-grid, .card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card, .content-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  overflow: hidden;
}
.service-card::after, .content-card::after { content: ""; position: absolute; inset: auto -30% -60% 20%; height: 180px; background: radial-gradient(circle, rgba(105,184,255,.17), transparent 68%); }
.service-card span { color: var(--blue); font-weight: 900; font-size: .74rem; letter-spacing: .16em; }
.service-card h3 { margin-top: 55px; }
.service-card p, .content-card p { color: var(--muted); }
.content-card { min-height: 260px; display: flex; flex-direction: column; }
.content-card .card-meta { color: var(--blue); font-weight: 800; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.content-card .card-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: #cfd7e4; font-size: .85rem; }
.empty-state { grid-column: 1/-1; padding: 42px; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; }
.alt-section { position: relative; }
.alt-section::before { content: ""; position: absolute; inset: 30px -100vw; z-index: -1; background: rgba(255,255,255,.018); border-block: 1px solid rgba(255,255,255,.045); }
.cta-panel { margin-bottom: 110px; padding: 54px; border: 1px solid rgba(105,184,255,.32); border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: linear-gradient(135deg, rgba(105,184,255,.11), rgba(255,255,255,.02)); }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.site-footer { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 55px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 20px; color: var(--muted); }
.site-footer strong { color: var(--text); }
.veteran-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.footer-identity {
  display: grid;
  gap: 14px;
}
.footer-bottom > p {
  margin-bottom: 0;
  text-align: right;
}
.veteran-owned-badge {
  width: clamp(142px, 15vw, 190px);
  height: auto;
  flex: 0 0 auto;
}
.veteran-crisis-line {
  max-width: 460px;
  display: grid;
  gap: 3px;
  text-align: right;
}
.veteran-crisis-line strong {
  font-size: 1rem;
}
.veteran-crisis-line span {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.45;
}
.veteran-crisis-line a {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(105,184,255,.65);
  text-underline-offset: 3px;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; margin: auto; }
  .service-grid, .card-grid { grid-template-columns: repeat(2,1fr); }
  .site-nav { display: none; position: absolute; top: 82px; left: 0; right: 0; padding: 24px; background: #090c12; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 680px) {
  .hero, .section { padding-top: 72px; padding-bottom: 72px; }
  .service-grid, .card-grid { grid-template-columns: 1fr; }
  .hero-metrics { grid-template-columns: 1fr; }
  .split-heading, .cta-panel, .site-footer { align-items: flex-start; flex-direction: column; display: flex; }
  .veteran-footer { align-items: flex-start; justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-identity { gap: 12px; }
  .veteran-crisis-line { text-align: left; }
  .footer-bottom > p { text-align: left; }
  .cta-panel { padding: 34px; margin-bottom: 70px; }
}
