/* Voyager Research — launch-ready site (brand v3, Night Passage tokens) */
:root {
  --black: #05070a;
  --graphite: #10151c;
  --graphite-2: #171d25;
  --ink: #15191f;
  --muted: #606975;
  --line: #d9dee5;
  --paper: #f5f2eb;
  --paper-2: #ebe7dd;
  --white: #ffffff;
  --blue: #59c7ff;
  --blue-soft: #9bdfff;
  --amber: #ffa028;
  --amber-burnt: #b3641c;
  --indigo: #121a30;
  --silver: #cfd6df;
  --teal: #336c85;
}

@font-face {
  font-family: "Barlow";
  src: url("fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.caps {
  font-family: Barlow, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.deg { color: var(--amber); letter-spacing: 0; margin-left: 0.05em; }

/* ===== header ===== */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 38px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0));
}

.brand { font-size: 14px; white-space: nowrap; }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

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

.nav-cta {
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 8px 14px;
}

.nav-cta:hover { border-color: var(--white); }

/* ===== hero band (compact) ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 78% -10%, rgba(18, 26, 48, 0.9), rgba(5, 7, 10, 0) 60%),
    linear-gradient(150deg, #040608, #0d121a 55%, #05070a);
  color: var(--paper);
  padding: 148px 38px 78px;
  overflow: hidden;
}

.hero-stars span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--silver);
}

.hero-stars span:nth-child(1) { top: 22%; left: 12%; opacity: 0.35; }
.hero-stars span:nth-child(2) { top: 34%; left: 78%; opacity: 0.5; width: 3px; height: 3px; }
.hero-stars span:nth-child(3) { top: 58%; left: 64%; opacity: 0.28; }
.hero-stars span:nth-child(4) { top: 18%; left: 55%; opacity: 0.4; }
.hero-stars span:nth-child(5) { top: 70%; left: 24%; opacity: 0.22; }
.hero-stars span:nth-child(6) { top: 44%; left: 90%; opacity: 0.3; }

.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }

.hero .kicker {
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 17ch;
}

.hero p {
  margin: 0 0 26px;
  color: rgba(245, 242, 235, 0.78);
  font-size: 17px;
  max-width: 52ch;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  border-radius: 4px;
  padding: 11px 18px;
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary { background: var(--white); color: var(--ink); }
.btn-primary:hover { background: var(--blue-soft); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.45); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }

/* ===== sections ===== */
.section { padding: 84px 38px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-kicker {
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.section h2 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.section p.lede { color: var(--muted); font-size: 17px; max-width: 60ch; }

/* dispatch card */
.dispatch {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 30px 34px;
  display: grid;
  gap: 10px;
}

.dispatch .meta {
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-burnt);
}

.dispatch h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.dispatch .dek { color: var(--muted); font-size: 16px; max-width: 62ch; margin: 0; }

.dispatch .read {
  margin-top: 8px;
  font-family: Barlow, Inter, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.dispatch .read:hover { color: var(--ink); }

.rolling-note { margin-top: 18px; color: var(--muted); font-size: 14px; }

/* consulting teaser / dark panel */
.panel-dark {
  background: linear-gradient(140deg, #0a0f16, #10151c 60%, #05070a);
  color: var(--paper);
}

.panel-dark .section-kicker { color: var(--amber); }
.panel-dark p.lede { color: rgba(245, 242, 235, 0.75); }

/* consulting page lists */
.work-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; max-width: 68ch; }
.work-list li { border-left: 2px solid var(--teal); padding: 2px 0 2px 14px; }
.work-list li strong { display: block; font-size: 15.5px; }
.work-list li span { color: var(--muted); font-size: 14.5px; }

.panel-dark .work-list li { border-left-color: var(--blue-soft); }
.panel-dark .work-list li strong { color: var(--white); }
.panel-dark .work-list li span { color: rgba(245, 242, 235, 0.72); }

/* legal */
.legal-body { max-width: 68ch; }
.legal-body h2 { font-size: 22px; margin-top: 34px; }
.legal-body p { color: var(--ink); }
.legal-body .quiet { color: var(--muted); }

/* ===== footer ===== */
.site-footer { background: var(--black); color: var(--white); }

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-inner .brand { font-size: 13px; }
.footer-inner p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.6); font-size: 13.5px; max-width: 48ch; }
.footer-disambig { font-size: 12px !important; color: rgba(255, 255, 255, 0.38) !important; }
.footer-links { display: grid; gap: 6px; font-size: 13px; color: rgba(255, 255, 255, 0.72); }
.footer-links a:hover { color: var(--white); }

@media (max-width: 720px) {
  .site-header { padding: 14px 18px; }
  .brand { font-size: 11px; letter-spacing: 0.1em; }
  .nav-links { display: none; }
  .hero { padding: 120px 22px 60px; }
  .section { padding: 60px 22px; }
  .dispatch { padding: 22px 20px; }
  .footer-inner { padding: 34px 22px; }
}
