/* HIT Pacific Broadband — shared brand styles */
:root {
  --navy:    #003B5C;
  --blue:    #0082CA;
  --orange:  #F56B20;
  --cyan:    #00E0FF;
  --yellow:  #FFD200;
  --green:   #2BA745;
  --magenta: #D81B60;
  --white:   #F8F9FA;
  --gray:    #E9ECEF;
  --dark:    #0B0E14;
  --text:    #1a2e3b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

/* ── Header ── */
header {
  background: var(--navy);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); text-decoration: none; }
.logo span { color: var(--orange); }
header nav a { color: var(--gray); text-decoration: none; font-size: 0.9rem; margin-left: 1.5rem; transition: color 0.15s; }
header nav a:hover { color: var(--cyan); }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.8;
}
footer a { color: var(--cyan); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-brand { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.footer-brand span { color: var(--orange); }

/* ── Prose content pages (privacy, terms, etc.) ── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.prose h1 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.prose .subtitle { color: #4a6070; font-size: 0.95rem; margin-bottom: 2.5rem; }
.prose h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; color: #2e4050; }
.prose a { color: var(--blue); }
.prose a:hover { color: var(--orange); }
.prose .pending-notice {
  background: var(--gray);
  border-left: 4px solid var(--orange);
  padding: 1rem 1.25rem;
  border-radius: 0 0.4rem 0.4rem 0;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #2e4050;
}

@media (max-width: 600px) {
  header nav { display: none; }
  .prose { padding: 2rem 1.25rem 3rem; }
}
