/**
 * NoBullNation — Financial Education For: Shared Styles
 * =======================================================
 * Loaded by: /financial-education-for/* pages
 * Upload to: /assets/persona.css
 * Link tag in head.php persona case:
 *   <link rel="stylesheet" href="<?= BASE_PATH ?>/assets/persona.css?v=<?= ASSET_VERSION ?>">
 *
 * Structure:
 *  1. Layout — persona-layout grid
 *  2. Sidebar — nav, labels, active states
 *  3. Hero — full-bleed photo hero (index pages)
 *  4. Pain strip — marquee
 *  5. Reality blocks — two-column editorial
 *  6. Section structure — fm-section, fm-inner
 *  7. Field manual — redflag, protocol, scripts, fm-card
 *  8. Lessons — phase bands, cards, locked, capture
 *  9. GDPR — consent checkbox
 * 10. Hub page — /financial-education-for/
 * 11. Responsive
 */

/* ═══════════════════════════════════════════════════════════════
   1. LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.persona-layout {
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  min-height: 60vh;
  align-items: start;
  width: 100%;
}
.persona-content { min-width: 0; width: 100%; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   2. SIDEBAR
   ═══════════════════════════════════════════════════════════════ */

.persona-sidebar {
  position: sticky; top: 76px; max-height: calc(100vh - 76px);
  overflow-y: auto; border-right: 1px solid var(--border);
  background: var(--bg-1); padding: 28px 0; scrollbar-width: none;
}
.persona-sidebar::-webkit-scrollbar { display: none; }
.sidebar-section-label {
  font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); display: block;
  padding: 0 18px; margin-bottom: 0.5rem;
}
.sidebar-pages {
  list-style: none; padding: 0; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border); padding-bottom: 1.2rem;
}
.sidebar-pages a {
  display: block; padding: 7px 18px; font-family: var(--ff-body); font-size: 0.8rem;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.14s, background 0.14s; line-height: 1.4;
}
.sidebar-pages a:hover  { color: var(--text-bright); background: var(--bg-2); }
.sidebar-pages a.active { color: var(--gold); background: var(--gold-glow); }
.sidebar-sections { list-style: none; padding: 0; }
.sidebar-sections a {
  display: flex; align-items: flex-start; gap: 9px; padding: 8px 18px;
  font-size: 0.78rem; color: var(--text-muted); text-decoration: none;
  transition: color 0.13s, background 0.13s; line-height: 1.4;
  border-left: 2px solid transparent;
}
.sidebar-sections a:hover  { color: var(--text-bright); background: var(--bg-2); }
.sidebar-sections a.active { color: var(--gold); border-left-color: var(--gold); background: var(--gold-glow); }
.sidebar-section-num {
  font-family: var(--ff-mono); font-size: 0.6rem; color: var(--gold);
  flex-shrink: 0; padding-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   3. HERO — full-bleed photo (index pages)
   ═══════════════════════════════════════════════════════════════ */

.persona-hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border); padding: 80px 0;
}
.persona-hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center 40%;
  filter: brightness(0.5) saturate(0.65);
}
.persona-hero-tex {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 24px,
    rgba(255,255,255,0.016) 24px, rgba(255,255,255,0.016) 25px);
  pointer-events: none;
}
.persona-hero-glow {
  position: absolute; top: -15%; left: 40%; transform: translateX(-50%);
  width: 800px; height: 700px;
  background: radial-gradient(ellipse, rgba(213,167,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.persona-hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.65) 42%, rgba(17,17,17,0.18) 100%);
}
.persona-hero-inner {
  max-width: 680px; margin: 0 auto 0 5vw;
  padding: 0 24px; position: relative; z-index: 1;
}
@media (min-width: 1300px) {
  .persona-hero-inner { margin-left: calc((100vw - 1060px) / 2); }
}
.persona-hero-title {
  font-family: var(--ff-display); font-weight: 800; color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 1.4rem;
}
.persona-hero-title em { color: var(--gold); font-style: normal; }
.persona-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 520px; line-height: 1.78; margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.persona-hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.h-stat span {
  display: block; font-family: var(--ff-display);
  font-size: 1.9rem; font-weight: 800;
  color: var(--gold-light); letter-spacing: -0.025em;
}
.h-stat em {
  font-style: normal; font-size: 0.62rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--ff-mono);
}

/* ═══════════════════════════════════════════════════════════════
   4. PAIN STRIP
   ═══════════════════════════════════════════════════════════════ */

.pain-strip { background: var(--gold); overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.15); }
.pain-scroll {
  display: flex; white-space: nowrap;
  animation: persona-marquee 40s linear infinite; width: max-content;
}
.pain-strip:hover .pain-scroll { animation-play-state: paused; }
@keyframes persona-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pain-item {
  font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #080808; flex-shrink: 0;
  padding: 12px 0; display: inline-flex; align-items: center;
}
.pain-item::after { content: "◆"; margin: 0 1.4rem; opacity: 0.3; font-size: 0.4rem; }

/* ═══════════════════════════════════════════════════════════════
   5. REALITY BLOCKS
   ═══════════════════════════════════════════════════════════════ */

.reality-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 460px; border-bottom: 1px solid var(--border);
}
.reality-block--flip { direction: rtl; }
.reality-block--flip > * { direction: ltr; }
.reality-img { position: relative; overflow: hidden; background: var(--bg-card); min-height: 280px; }
.reality-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(0.75); display: block;
}
.reality-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.1) 100%);
}
.reality-text {
  padding: 56px 52px; display: flex; flex-direction: column;
  justify-content: center; background: var(--bg-1);
}
.reality-eyebrow {
  font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem;
}
.reality-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.13;
  margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.reality-text p { color: var(--text); font-size: 0.97rem; line-height: 1.82; margin-bottom: 0.9rem; }
.reality-text p:last-child { margin-bottom: 0; }
.reality-text strong { color: var(--gold); font-weight: 600; }
.reality-pull {
  margin-top: 1.4rem; padding: 14px 18px; background: #0a0a0a;
  border-left: 2px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative; overflow: hidden;
}
.reality-pull::after {
  content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px,
    rgba(255,255,255,0.022) 10px, rgba(255,255,255,0.022) 11px);
  pointer-events: none;
}
.reality-pull p { font-style: italic; color: var(--text-bright); font-size: 0.92rem; margin: 0; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   6. SECTION STRUCTURE
   ═══════════════════════════════════════════════════════════════ */

.fm-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.fm-section:last-of-type { border-bottom: none; }
.fm-inner { max-width: 1060px; margin: 0 auto; padding: 0 40px; }
.fm-section-header { margin-bottom: 2.5rem; }
.fm-section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.fm-section-header p { color: var(--text-muted); max-width: 540px; font-size: 0.95rem; line-height: 1.7; }
.persona-page-cta { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border); text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   7. FIELD MANUAL COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

.redflag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.redflag-card {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-left: 3px solid var(--gold); border-radius: var(--radius-lg);
  padding: 22px; position: relative; overflow: hidden;
}
.redflag-card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 14px,
    rgba(255,255,255,0.011) 14px, rgba(255,255,255,0.011) 15px);
  pointer-events: none;
}
.redflag-label {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.6rem;
}
.redflag-card h3 { font-size: 1rem; color: var(--text-bright); margin-bottom: 0.6rem; line-height: 1.28; }
.redflag-verbatim {
  font-family: var(--ff-mono); font-size: 0.78rem; color: var(--text-muted); font-style: italic;
  border-left: 2px solid var(--border-2); padding: 8px 12px; margin-bottom: 0.75rem;
  background: var(--bg-2); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.55; position: relative; z-index: 1;
}
.redflag-translation { font-size: 0.85rem; color: var(--text); line-height: 1.6; position: relative; z-index: 1; }
.redflag-translation strong { color: var(--gold); }
.redflag-anchor {
  display: block; margin-top: 0.75rem; font-family: var(--ff-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
  text-decoration: none; transition: color 0.15s;
}
.redflag-anchor:hover { color: var(--gold); }

.protocol-steps { display: flex; flex-direction: column; gap: 2px; }
.protocol-step { background: var(--bg-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden; }
.protocol-step-header {
  display: flex; align-items: center; gap: 1rem; padding: 16px 20px;
  cursor: pointer; transition: background 0.15s;
}
.protocol-step-header:hover { background: var(--bg-card-2); }
.protocol-week {
  font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; background: var(--gold); color: #000;
  padding: 3px 8px; border-radius: 2px; font-weight: 700; flex-shrink: 0;
}
.protocol-step-title { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--text-bright); flex: 1; }
.protocol-chevron { color: var(--text-dim); font-size: 0.8rem; transition: transform 0.2s; }
.protocol-step.open .protocol-chevron { transform: rotate(180deg); }
.protocol-body {
  display: none; padding: 0 20px 20px; border-top: 1px solid var(--border);
  animation: accordionOpen 0.28s ease;
}
.protocol-step.open .protocol-body { display: block; }
@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.protocol-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.protocol-item:last-child { border-bottom: none; }
.protocol-priority {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 2px; flex-shrink: 0; margin-top: 2px;
}
.protocol-priority--do-first { background: rgba(213,167,22,0.15); color: var(--gold); }
.protocol-priority--consider  { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.protocol-priority--avoid     { background: rgba(255,255,255,0.03); color: var(--text-dim); }
.protocol-item-content h4 { font-size: 0.92rem; color: var(--text-bright); margin-bottom: 3px; }
.protocol-item-content p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.scripts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 10px; }
.script-card {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-top: 3px solid var(--gold); border-radius: var(--radius-lg); overflow: hidden;
}
.script-header { padding: 18px 20px 14px; border-bottom: 1px solid var(--border); }
.script-label {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.script-header h3 { font-size: 0.97rem; color: var(--text-bright); line-height: 1.3; }
.script-body { padding: 16px 20px; }
.script-text {
  font-family: var(--ff-mono); font-size: 0.78rem; color: var(--text); line-height: 1.7;
  background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-md);
  padding: 14px 16px; white-space: pre-wrap; word-break: break-word; margin-bottom: 0.75rem;
}
.script-copy-btn {
  font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bg-surface); border: 1px solid var(--border-2); color: var(--text-dim);
  padding: 7px 14px; border-radius: var(--pill); cursor: pointer; transition: all 0.15s;
}
.script-copy-btn:hover  { border-color: var(--gold); color: var(--gold); }
.script-copy-btn.copied { border-color: #27ae60; color: #27ae60; }
.script-note { font-size: 0.78rem; color: var(--text-dim); line-height: 1.55; margin-top: 0.6rem; }

.fm-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.fm-card {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-top: 3px solid var(--gold); border-radius: var(--radius-lg);
  padding: 22px; position: relative; overflow: hidden;
}
.fm-card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 14px,
    rgba(255,255,255,0.011) 14px, rgba(255,255,255,0.011) 15px);
  pointer-events: none;
}
.fm-card-tag {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.fm-card h3 { font-size: 0.97rem; color: var(--text-bright); margin-bottom: 0.5rem; }
.fm-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; position: relative; z-index: 1; }
.fm-card strong { color: var(--text-bright); }
a.fm-card {
  text-decoration: none; color: var(--text); transition: background 0.15s, transform 0.14s;
  border-left: 3px solid var(--gold); border-top: 1px solid var(--border-2); border-radius: var(--radius-lg);
}
a.fm-card:hover { background: var(--bg-card-2); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   8. LESSONS
   ═══════════════════════════════════════════════════════════════ */

.lessons-section { padding: 0; }
.lessons-header  { padding: 52px 0 36px; border-bottom: 1px solid var(--border); }
.lessons-header .container { text-align: center; }
.phase-band {
  display: flex; align-items: center; gap: 1rem; padding: 16px 24px;
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border); margin-top: 2rem;
  position: sticky; top: 76px; z-index: 10;
}
.phase-pill {
  font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; background: var(--gold); color: #000;
  padding: 3px 9px; border-radius: 2px; font-weight: 700;
}
.phase-title { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 700; color: var(--text-bright); }
.phase-desc { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.06em; margin-left: auto; }
.lessons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.lesson-card {
  background: var(--bg-card); padding: 26px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; border-top: 3px solid var(--pillar-colour, var(--gold));
}
.lesson-card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 16px,
    rgba(255,255,255,0.012) 16px, rgba(255,255,255,0.012) 17px);
  pointer-events: none;
}
.lesson-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.lesson-num-badge {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pillar-colour, var(--gold));
}
.lesson-card h3 { font-size: 1rem; color: var(--text-bright); line-height: 1.3; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.lesson-universal { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.artist-angle {
  font-size: 0.82rem; color: var(--text); line-height: 1.65; padding: 10px 14px;
  background: var(--bg-2); border-left: 2px solid var(--pillar-colour, var(--gold));
  border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 0.75rem; position: relative; z-index: 1;
}
.lesson-shift { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.shift-label {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pillar-colour, var(--gold)); display: block; margin-bottom: 0.3rem;
}
.lesson-deeper {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--ff-mono);
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim);
  text-decoration: none; margin-top: 0.75rem; transition: color 0.15s;
}
.lesson-deeper:hover { color: var(--gold) !important; }
.lesson-card--locked { opacity: 0.72; background: var(--bg-2); }
.lock-badge {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bg-surface); border: 1px solid var(--border-2); color: var(--text-dim);
  padding: 2px 7px; border-radius: 2px;
}
.unlock-scroll-link {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--ff-mono);
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  margin-top: 0.9rem; text-decoration: none; transition: color 0.15s;
}
.unlock-scroll-link:hover { color: var(--gold-light); }
.capture-section { padding: 80px 0; background: var(--bg-1); border-top: 1px solid var(--border); text-align: center; }
.capture-inner { max-width: 560px; margin: 0 auto; }
.locked-callout {
  display: inline-block; font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; background: rgba(213,167,22,0.12); border: 1px solid var(--gold-dim);
  color: var(--gold); padding: 5px 14px; border-radius: var(--pill); margin-bottom: 1.5rem;
}
.capture-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; letter-spacing: -0.025em; }
.capture-section p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.capture-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 0.5rem; }
.capture-form input[type="email"] {
  flex: 1; min-width: 0; padding: 13px 16px; font-family: var(--ff-body); font-size: 0.9rem;
  background: var(--bg-card); border: 1px solid var(--border-2); border-right: none;
  color: var(--text); border-radius: var(--radius-md) 0 0 var(--radius-md);
  outline: none; transition: border-color 0.18s;
}
.capture-form input[type="email"]:focus { border-color: var(--gold-dim); }
.capture-form input[type="email"]::placeholder { color: var(--text-dim); }
.capture-form button {
  padding: 13px 20px; background: var(--gold); color: #000; font-family: var(--ff-display);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer; white-space: nowrap; transition: background 0.15s;
}
.capture-form button:hover { background: var(--gold-light); }
.capture-note { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text-dim); letter-spacing: 0.06em; margin-top: 0.75rem; }
.capture-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════════════════════════════════════════════════════
   9. GDPR
   ═══════════════════════════════════════════════════════════════ */

.gdpr-consent { display: flex; align-items: flex-start; gap: 10px; margin: 0.9rem auto 0.75rem; max-width: 480px; text-align: left; }
.gdpr-consent input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.gdpr-consent label { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text-dim); line-height: 1.55; letter-spacing: 0.04em; cursor: pointer; }
.gdpr-consent label a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.gdpr-consent label a:hover { color: var(--gold-light); }
.gdpr-error { color: #e74c3c !important; }
@keyframes captureHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(213,167,22,0); }
  30%  { box-shadow: 0 0 0 8px rgba(213,167,22,0.28); }
  100% { box-shadow: 0 0 0 0 rgba(213,167,22,0); }
}
.capture-section.highlighted { animation: captureHighlight 1.4s ease; }

/* ═══════════════════════════════════════════════════════════════
   10. HUB PAGE
   ═══════════════════════════════════════════════════════════════ */

.persona-hub-hero {
  padding: 72px 0 52px; border-bottom: 1px solid var(--border);
  background: var(--bg-1); position: relative; overflow: hidden;
}
.persona-hub-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 22px,
    rgba(255,255,255,0.016) 22px, rgba(255,255,255,0.016) 23px);
  pointer-events: none;
}
.persona-hub-hero::after {
  content: ""; position: absolute; top: -20%; right: 5%; width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(213,167,22,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.persona-hub-inner { max-width: 1060px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.persona-hub-inner h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.75rem; letter-spacing: -0.025em; }
.persona-hub-inner p  { color: var(--text-muted); max-width: 520px; font-size: 1rem; line-height: 1.75; }
.persona-cards-section { padding: 60px 0 80px; }
.persona-cards-inner   { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.persona-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px; margin-top: 1.5rem; }
.persona-card {
  background: var(--bg-card); border: 1px solid var(--border-2); border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--text); position: relative; overflow: hidden;
  transition: background 0.16s, transform 0.14s; text-decoration: none;
}
.persona-card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 14px,
    rgba(255,255,255,0.012) 14px, rgba(255,255,255,0.012) 15px);
  pointer-events: none;
}
.persona-card:hover { background: var(--bg-card-2); transform: translateY(-2px); color: var(--text); }
.persona-card-meta { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.25rem; position: relative; z-index: 1; }
.persona-card h2 { font-size: 1.3rem; color: var(--text-bright); margin-bottom: 0.35rem; text-transform: capitalize; position: relative; z-index: 1; }
.persona-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 0.75rem; position: relative; z-index: 1; }
.persona-card-cta { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1; margin-top: auto; }

/* ═══════════════════════════════════════════════════════════════
   11. RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .persona-layout { grid-template-columns: 1fr !important; }
  .persona-sidebar {
    position: static; max-height: none; border-right: none;
    border-bottom: 1px solid var(--border); padding: 12px 0; display: flex; flex-wrap: wrap;
  }
  .sidebar-pages { display: flex; flex-wrap: wrap; border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .sidebar-pages a { padding: 8px 14px; font-size: 0.75rem; }
  .sidebar-sections { display: none; }
  .sidebar-section-label { display: none; }
}
@media (max-width: 860px) {
  .reality-block { grid-template-columns: 1fr; }
  .reality-block--flip { direction: ltr; }
  .reality-text { padding: 36px 24px; }
}
@media (max-width: 768px) {
  .lessons-grid { grid-template-columns: 1fr; }
  .redflag-grid  { grid-template-columns: 1fr; }
  .scripts-grid  { grid-template-columns: 1fr; }
  .fm-card-grid  { grid-template-columns: 1fr; }
  .fm-inner      { padding: 0 20px; }
  .capture-form  { flex-direction: column; max-width: 320px; }
  .capture-form input[type="email"] { border-right: 1px solid var(--border-2); border-radius: var(--radius-md); }
  .capture-form button { border-radius: var(--radius-md); }
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .persona-hero { padding: 60px 0; }
  .persona-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .phase-desc { display: none; }
}
