/* =====================================================
   LEVEL ZERO REP PROGRAM — SHARED IDENTITY STYLES
   Applies to: join.html, scout.html, operator.html, rep-faq.html
   ===================================================== */

:root {
  --rep-ink: #1a1a18;
  --rep-cream: #f4f0e8;
  --rep-yellow: #e8b800;
  --rep-yellow-dk: #b38f00;
  --rep-muted: rgba(244,240,232,0.45);
  --rep-border: rgba(244,240,232,0.1);
  --rep-gold: #e8b800;
}

/* ── UNIFIED REP NAV BAR ── */
.rep-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--rep-ink);
  border-bottom: 2px solid var(--rep-yellow);
  position: relative;
  z-index: 100;
}

.rep-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

/* The unified reticle mark — same on all rep pages */
.rep-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.rep-nav-name {
  font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rep-cream);
  line-height: 1;
}

.rep-nav-name span {
  color: var(--rep-yellow);
}

.rep-nav-name small {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.35);
  font-weight: 400;
  margin-top: 2px;
}

.rep-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rep-nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.4);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}

.rep-nav-link:hover { color: var(--rep-yellow); }
.rep-nav-link.active { color: var(--rep-yellow); }

.rep-nav-cta {
  font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rep-ink);
  background: var(--rep-yellow);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  margin-left: 8px;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.rep-nav-cta:hover { opacity: 0.9; }

/* ── UNIFIED FOOTER ── */
.rep-footer {
  background: var(--rep-ink);
  border-top: 1px solid rgba(244,240,232,0.08);
  padding: 28px 22px 20px;
}

.rep-footer-inner {
  max-width: 540px;
  margin: 0 auto;
}

.rep-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.rep-footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.rep-footer-links a:hover { color: var(--rep-yellow); }

.rep-footer-contact {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.rep-footer-contact a {
  font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(244,240,232,0.08);
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.rep-footer-contact a:hover {
  border-color: rgba(232,184,0,0.3);
  color: var(--rep-cream);
}

.rep-footer-legal {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.18);
  text-align: center;
  line-height: 1.9;
}
