/* global-common.css — Second Half Full
 * Shared styles for global pages (index · About) and proof pages
 * LOCKED — update here, propagates to all linked pages
 * Last updated: 2026-05-29
 */

/* ── BASE VARIABLES ── */
:root {
  --bg:        #13141A;
  --nav:       #1C1D24;
  --section:   #1E1F27;
  --card:      #242530;
  --text:      #F2F2EE;
  --muted:     rgba(255,255,255,0.55);
  --faint:     rgba(255,255,255,0.5);
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.14);
  --secondary: rgba(255,255,255,0.65);
  --know:      #378ADD;
  --authority: #2E6FB5;
  --orange:    #F5821F;
  --green:     #8DC63F;
  --accent:    #E8B84B;
  --lever-01:  #A8D96C;
  --lever-02:  #72C44A;
  --lever-03:  #3DAF6A;
  --lever-04:  #2B9E88;
  --lever-05:  #1E7A6A;
}

/* ── NAV — Component 2, justify-content: space-between ── */
nav, nav.shf-nav { background: var(--nav); border-bottom: 1px solid var(--border); padding: 0 48px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-name { font-weight: 900; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: white; line-height: 1.1; }
.nav-logo-tagline { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-links li a, .nav-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); text-decoration: none; padding: 0 14px; line-height: 60px; display: block; letter-spacing: 0.03em; border-bottom: 2px solid transparent; transition: color .15s, border-bottom-color .15s; }
.nav-links li a:hover, .nav-links a:hover { color: rgba(255,255,255,0.85); }
.nav-links li a.active, .nav-links a.active { color: white; border-bottom-color: white; }
.nav-cta { background: var(--orange); color: white; font-size: 13px; font-weight: 700; text-decoration: none; padding: 8px 16px; border-radius: 6px; white-space: nowrap; }
.nav-cta:hover { opacity: 0.88; }
@media (max-width: 700px) { nav, nav.shf-nav { padding: 0 20px; } .nav-links { display: none; } }

/* ── FOOTER — Component 3 ── */
footer { background: var(--nav); border-top: 1px solid var(--border); padding: 40px 32px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; max-width: 340px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.5; }
.footer-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.footer-nav { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-nav a:hover { color: var(--text); }
.footer-cta { display: inline-block; background: var(--orange); color: #fff; border-radius: 6px; padding: 8px 16px; font-size: 13px; font-weight: 600; text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--text); }
