/* ─────────────────────────────────────────────────────────────
   inner-page.css — shared chrome for the static inner pages.
   Loaded by /project-hawk.html, /rfi-hawk.html, /water-hawk.html,
   and the city pages (tampa, norfolk, oklahoma-city, texas, ncr,
   colorado-springs, huntsville). Each page can layer page-specific
   overrides in a small inline <style> block in <head>.
   Visual language: dark void background, cyan + gold + bone palette,
   Cinzel for display, JetBrains Mono for HUD readouts, Inter for body.
   ───────────────────────────────────────────────────────────── */

:root {
  --void: #0a0612;
  --void-2: #0e0a1a;
  --void-deep: #050309;
  --bone: #e8dfd0;
  --bone-dim: rgba(232, 223, 208, 0.6);
  --bone-soft: rgba(232, 223, 208, 0.85);
  --cyan: #00d8ff;
  --cyan-rgb: 0, 216, 255;
  --gold: #d4a04a;
  --gold-rgb: 212, 160, 74;
  --crimson: #ff1a44;
  --hairline: rgba(232, 223, 208, 0.14);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--void); color: var(--bone); scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(var(--gold-rgb), 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(var(--cyan-rgb), 0.04) 0%, transparent 55%),
    var(--void);
}
a { color: var(--cyan); text-decoration: none; transition: color 0.18s; }
a:hover { color: #5af0ff; }

/* ── Top nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.92), rgba(8, 6, 14, 0.78) 80%, rgba(8, 6, 14, 0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(var(--cyan-rgb), 0.12);
}
.nav img { height: 28px; }
.nav-brand {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--bone);
}
.nav-sep { color: var(--gold); font-size: 12px; }
.nav-prod {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cyan);
  text-transform: uppercase;
}
.nav-spacer { flex: 1; }
.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(var(--cyan-rgb), 0.45);
  padding: 8px 14px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.nav-cta:hover { background: rgba(var(--cyan-rgb), 0.15); border-color: var(--cyan); color: #fff; }
@media (max-width: 640px) {
  .nav { padding: 12px 16px; gap: 10px; }
  .nav-prod, .nav-brand { font-size: 10px; letter-spacing: 0.22em; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  padding: 60px 28px 76px;
  overflow: hidden;
  border-bottom: 1px solid rgba(var(--cyan-rgb), 0.18);
}
/* Per-page hero image goes into .hero-bg via inline style or extra CSS:
     .hero-bg { background-image: linear-gradient(...), url('assets/HERO.webp'); }
   See project-hawk.html for the reference treatment. */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.85) contrast(1.05) brightness(0.78);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,
      rgba(var(--cyan-rgb), 0.06) 0px,
      rgba(var(--cyan-rgb), 0.06) 1px,
      transparent 1px,
      transparent 3px);
  mix-blend-mode: screen;
  opacity: 0.45;
}
.hero-frame {
  position: absolute; inset: 28px;
  pointer-events: none; z-index: 2;
}
.hero-frame::before, .hero-frame::after {
  content: ''; position: absolute;
  width: 22px; height: 22px;
  border: 1.5px solid var(--cyan);
  opacity: 0.7;
}
.hero-frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-frame::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hero-frame i {
  position: absolute;
  width: 22px; height: 22px;
  border: 1.5px solid var(--cyan);
  opacity: 0.7;
}
.hero-frame .i-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero-frame .i-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero-wrap {
  position: relative; z-index: 3;
  max-width: 1080px; margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: hk-pulse 1.6s ease-in-out infinite;
}
@keyframes hk-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
.hero h1 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 60px);
  letter-spacing: 0.04em;
  line-height: 0.98;
  margin: 0 0 18px;
}
.hero h1 .accent { color: var(--gold); }
.hero-latin {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-latin::before { content: '/ '; color: rgba(var(--gold-rgb), 0.45); }
.hero-lede {
  font-size: 18px;
  color: var(--bone);
  max-width: 64ch;
  margin: 0 0 32px;
}
.hero-lede .em { color: var(--cyan); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 22px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  display: inline-block;
}
.btn-primary {
  background: rgba(var(--cyan-rgb), 0.18);
  color: var(--cyan);
  border: 1px solid rgba(var(--cyan-rgb), 0.65);
}
.btn-primary:hover { background: rgba(var(--cyan-rgb), 0.34); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover { border-color: rgba(var(--cyan-rgb), 0.65); color: var(--cyan); }

/* ── Section framing ───────────────────────────────────────── */
section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 28px;
}
.sec-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--cyan);
  text-transform: uppercase;
}
.sec-eyebrow .num {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.sec-eyebrow .rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(var(--cyan-rgb), 0.45), transparent);
}
section h2 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
}
section .sec-lede {
  color: var(--bone-soft);
  font-size: 16.5px;
  max-width: 62ch;
  margin: 0 0 24px;
}

/* ── Stat strip ────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(var(--cyan-rgb), 0.12);
  border: 1px solid rgba(var(--cyan-rgb), 0.22);
  margin-top: 10px;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(14, 10, 26, 0.85), rgba(8, 6, 14, 0.92));
}
.stat-v {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 6px rgba(var(--cyan-rgb), 0.4);
  font-variant-numeric: tabular-nums;
}
.stat-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--bone-dim);
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── Capability cards ──────────────────────────────────────── */
.caps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}
@media (min-width: 760px) { .caps { grid-template-columns: 1fr 1fr; } }
.cap {
  background: linear-gradient(180deg, rgba(14, 10, 26, 0.7), rgba(8, 6, 14, 0.85));
  border: 1px solid var(--hairline);
  border-left: 2px solid rgba(var(--cyan-rgb), 0.55);
  padding: 22px 24px;
  position: relative;
}
.cap::before, .cap::after {
  content: ''; position: absolute;
  width: 10px; height: 10px;
  border: 1px solid rgba(var(--cyan-rgb), 0.5);
  pointer-events: none;
}
.cap::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.cap::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.cap-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cap-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.cap-body { color: var(--bone-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }
.cap-list { list-style: none; padding: 0; margin: 12px 0 0; }
.cap-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bone-soft);
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}
.cap-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ── Callout (used for CUI law, geography pitch, etc.) ─────── */
.callout {
  margin-top: 22px;
  padding: 28px 30px;
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.08), rgba(var(--gold-rgb), 0.02));
  border: 1px solid rgba(var(--gold-rgb), 0.45);
  position: relative;
}
.callout::before, .callout::after {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
}
.callout::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.callout::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.callout-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}
.callout h2 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.callout h2 .accent { color: var(--cyan); }
.callout p { color: var(--bone-soft); font-size: 15px; margin: 0; max-width: 70ch; }

/* ── Final CTA block ───────────────────────────────────────── */
.final-cta {
  margin-top: 30px;
  padding: 36px 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.08), rgba(8, 6, 14, 0.92));
  border: 1px solid rgba(var(--cyan-rgb), 0.45);
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--cyan);
}
.final-cta::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.final-cta::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.final-cta h2 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
}
.final-cta p { color: var(--bone-soft); max-width: 56ch; margin: 0 auto 24px; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  max-width: 1080px;
  margin: 56px auto 0;
  padding: 28px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
footer a.back { color: var(--bone-dim); border-bottom: 1px dotted var(--bone-dim); }
footer a.back:hover { color: var(--bone); border-bottom-color: var(--bone); }
footer a.gold { color: var(--gold); border-bottom: 1px dotted rgba(var(--gold-rgb), 0.5); }

/* ── FAQ accordions (used by some pages) ───────────────────── */
.faq { margin-top: 12px; }
.faq details {
  border-top: 1px solid var(--hairline);
  padding: 16px 4px;
}
.faq details[open] { background: rgba(var(--cyan-rgb), 0.03); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--bone);
  display: flex; align-items: baseline; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
  font-size: 18px;
  width: 16px;
}
.faq details[open] summary::before { content: '−'; }
.faq-body {
  margin: 10px 0 0 28px;
  color: var(--bone-soft);
  font-size: 14.5px;
  line-height: 1.6;
}
