/* lever-common.css — Second Half Full
 * Shared styles for all 5 lever pages (Identify · Define · Build · Reach · Retain)
 * Lever-specific overrides (--accent, --accent-muted, --accent-border) go in each page's <style> block
 * LOCKED — update here, propagates to all 5 lever pages
 * Last updated: 2026-05-28
 */

/* ── 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);
  --authority: #2E6FB5;
  --orange:    #F5821F;
  --green:     #8DC63F;
  --lever-01:  #A8D96C;  /* Define */
  --lever-02:  #72C44A;  /* Identify */
  --lever-03:  #3DAF6A;  /* Build */
  --lever-04:  #2B9E88;  /* Reach */
  --lever-05:  #1E7A6A;  /* Retain */
}

/* ── HERO (LOCKED — all 5 lever pages) ── */
/* gradient background, 64/48/48 padding, border-bottom — DO NOT override in individual pages */
.hero { background: linear-gradient(160deg, #2A2B35 0%, #1C1D24 100%); padding: 64px 48px 48px; border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.hero-copy { max-width: 580px; }
.hero-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px; }
.hero h1 { font-size: clamp(24px,3vw,40px); font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: var(--text); letter-spacing: -0.02em; }
.hero-desc { font-size: 16px; line-height: 1.65; margin-bottom: 28px; color: var(--secondary); }
@media (max-width: 768px) { .hero { padding: 40px 24px; } .hero-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ── NAV (Component 2 — LOCKED) ── */
nav.shf-nav {
  background: var(--nav);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-wordmark { display: flex; flex-direction: column; }
.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 { 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 0.15s, border-bottom-color 0.15s; }
.nav-links li a:hover { color: rgba(255,255,255,0.85); }
.nav-links li 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; }

/* ── FOOTER (Component 3 — LOCKED) ── */
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); }

/* ── SLIDE-IN PANEL (Component 13 — LOCKED 2026-05-28) ── */
/* Panel uses padding:0 — header and content sections manage their own padding */
.hub-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 200; }
.hub-overlay.open { opacity: 1; pointer-events: all; }
.hub-panel { position: fixed; top: 0; right: -480px; width: 440px; max-width: 92vw; height: 100vh; background: var(--nav); border-left: 1px solid rgba(255,255,255,0.14); padding: 0; overflow-y: auto; transition: right .3s cubic-bezier(.4,0,.2,1); z-index: 201; display: flex; flex-direction: column; }
.hub-panel.open { right: 0; }
.hub-panel-close { background: rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.2); color: #13141A; width: 36px; height: 36px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .15s; }
.hub-panel-close:hover { background: rgba(0,0,0,0.25); }
.hub-panel-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.hub-panel-h2 { font-size: 22px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 0; }

/* ── SLIDE-IN CONVERSION STRUCTURE (LOCKED — conversion optimization) ── */
.hub-panel-header { padding: 20px 28px 22px; flex-shrink: 0; }
.hub-panel-header-btn-row { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.hub-panel-cream { background: #F2EDE3; flex: 1; overflow-y: auto; padding: 0 0 4px; }
.hub-panel-row { display: grid; grid-template-columns: 1fr 1fr; }
.hub-panel-row-header { background: rgba(43,43,49,0.04); border-bottom: 1px solid rgba(43,43,49,0.1); }
.hub-panel-col { padding: 16px 20px; }
.hub-panel-col:first-child { border-right: 1px solid rgba(43,43,49,0.06); }
.hub-panel-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #2b2b31; margin-bottom: 4px; }
.hub-panel-col-price { font-size: 12px; color: rgba(43,43,49,0.45); }
.hub-panel-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 20px 20px; }
/* CTA conversion colors — LOCKED: free=green, paid=authority-blue */
.hub-panel-cta-free { display: flex; align-items: center; justify-content: center; background: #8DC63F; color: #13141A; font-size: 12px; font-weight: 700; border-radius: 7px; padding: 13px 14px; text-decoration: none; text-align: center; line-height: 1.4; }
.hub-panel-cta-paid { display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #2E6FB5; border: 1.5px solid rgba(46,111,181,0.35); border-radius: 7px; padding: 13px 14px; text-decoration: none; text-align: center; line-height: 1.4; background: #fff; }

/* ── IN PRACTICE BLOCK (Component 4 — LOCKED) ── */
.in-practice {
  --ph-color: #2B9E88;
  background: color-mix(in srgb, var(--ph-color) 6%, transparent);
  border: 0.5px solid color-mix(in srgb, var(--ph-color) 20%, transparent);
  border-left: 3px solid var(--ph-color);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin: 24px 0;
}
.in-practice-eyebrow { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: color-mix(in srgb, var(--ph-color) 80%, transparent); margin-bottom: 8px; }
.in-practice-body { font-size: 15px; font-style: italic; color: rgba(255,255,255,0.65); line-height: 1.7; }
.in-practice-body strong { color: white; font-style: normal; }
.in-practice-body em { color: #8DC63F; font-style: normal; }

/* ── BACK NAV (Component 7 — LOCKED) ── */
.panel-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.back-link { color: var(--muted); text-decoration: none; font-size: 13px; }
.back-link:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav.shf-nav { padding: 0 20px; }
  .nav-links { display: none; }
}
