/* ============================================================
   strc.css — STRC Explained page styles
   Bitcoin Magazine Pro
   
   All styles are scoped under .strc-guide to avoid
   conflicts with Bootstrap. No global styles are modified.
   
   Fonts required (add to <head> if not already loaded):
   https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800
   &family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400
   &family=DM+Mono:wght@400;500&display=swap
============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
.strc-guide {
  --strc-bg: #ffffff;
  --strc-bg2: #f9fafb;
  --strc-bg3: #f3f4f6;
  --strc-text: #111827;
  --strc-text2: #374151;
  --strc-muted: #6b7280;
  --strc-border: #e5e7eb;
  --strc-border2: #d1d5db;
  --strc-orange: #f7931a;
  --strc-orange-lt: #fff7ed;
  --strc-orange-bd: #fdba74;
  --strc-green: #15803d;
  --strc-green-lt: #f0fdf4;
  --strc-green-bd: #86efac;
  --strc-red: #b91c1c;
  --strc-red-lt: #fef2f2;
  --strc-red-bd: #fca5a5;
  --strc-blue: #1d4ed8;
  --strc-blue-lt: #eff6ff;
  --strc-blue-bd: #93c5fd;
  --strc-purple: #7c3aed;
  --strc-purple-lt: #f5f3ff;
  --strc-purple-bd: #c4b5fd;
  --strc-radius: 12px;
  --strc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --strc-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

/* ============================================================
   BREADCRUMB (scoped to avoid Bootstrap conflict)
============================================================ */
.strc-guide .breadcrumb {
  padding: 20px 0 0;
  font-size: 0.78rem;
  color: var(--strc-muted);
}
.strc-guide .breadcrumb a { color: var(--strc-muted); text-decoration: none; }
.strc-guide .breadcrumb a:hover { color: var(--strc-orange); }
.strc-guide .breadcrumb span { margin: 0 6px; }

/* ============================================================
   PAGE HEADER
============================================================ */
.page-header {
  padding: 32px 0 36px;
  border-bottom: 2px solid var(--strc-border);
  margin-bottom: 44px;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--strc-orange);
  background: var(--strc-orange-lt);
  border: 2px solid var(--strc-orange-bd);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.15;
  color: var(--strc-text);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.page-header h1 em {
  font-style: normal;
  color: var(--strc-orange);
}
.page-subtitle {
  font-size: 1rem;
  color: var(--strc-text2);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 20px;
}
.page-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--strc-muted);
}
.page-meta-item { display: flex; align-items: center; gap: 5px; }

/* ============================================================
   TABLE OF CONTENTS
============================================================ */
.toc {
  background: var(--strc-bg2);
  border: 1px solid var(--strc-border);
  border-left: 3px solid var(--strc-orange);
  border-radius: 0 var(--strc-radius) var(--strc-radius) 0;
  padding: 20px 24px;
  margin-bottom: 48px;
}
.toc-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--strc-muted);
  margin-bottom: 12px;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--strc-text2);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.toc-list li a:hover { color: var(--strc-orange); }
.toc-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--strc-muted);
  width: 22px;
  flex-shrink: 0;
}

/* ============================================================
   SECTION WRAPPER (wraps each diagram + its anchor)
============================================================ */
.guide-section {
  margin-bottom: 56px;
  scroll-margin-top: 80px;
}

/* ============================================================
   DIAGRAM CARD
============================================================ */
.diagram-card {
  background: var(--strc-bg);
  border: 1px solid var(--strc-border);
  border-radius: var(--strc-radius);
  box-shadow: var(--strc-shadow-md);
  overflow: hidden;
}
.diagram-header {
  background: var(--strc-bg2);
  padding: 18px 24px 16px;
  border-bottom: 1px solid var(--strc-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.diagram-num {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--strc-orange);
  letter-spacing: 3px;
  background: var(--strc-orange-lt);
  border: 2px solid var(--strc-orange-bd);
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.diagram-num.glossary-num {
  background: var(--strc-bg3);
  border: 2px solid var(--strc-border2);
  color: var(--strc-muted);
  letter-spacing: 2px;
}
.diagram-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--strc-text);
  letter-spacing: -0.2px;
}
.diagram-body { padding: 28px 24px; }

/* ============================================================
   IN PLAIN ENGLISH
============================================================ */
.plain-english {
  background: var(--strc-orange-lt);
  border-left: 3px solid var(--strc-orange);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
  margin: 0 24px 24px;
}
.plain-english-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--strc-orange);
  margin-bottom: 12px;
}
.plain-english ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plain-english ul li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--strc-text2);
  padding-left: 18px;
  position: relative;
}
.plain-english ul li::before {
  content: "\25B8";
  color: var(--strc-orange);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.7rem;
}

/* ============================================================
   GLOSSARY
============================================================ */
.glossary-intro {
  font-size: 0.88rem;
  color: var(--strc-text2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.term-card {
  background: var(--strc-bg2);
  border: 1px solid var(--strc-border);
  border-radius: 8px;
  padding: 15px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.term-card:hover {
  border-color: var(--strc-orange-bd);
  box-shadow: var(--strc-shadow-sm);
}
.term-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--strc-orange);
  margin-bottom: 6px;
}
.term-body { font-size: 0.78rem; color: var(--strc-text2); line-height: 1.65; }

/* ============================================================
   DIAGRAM 01 — THE MACHINE
============================================================ */
.machine-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 8px 0 16px;
  margin-bottom: 24px;
}
.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
}
.flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 9px;
  border: 1px solid var(--strc-border);
}
.node-investor .flow-icon  { background: var(--strc-blue-lt);   border-color: var(--strc-blue-bd); }
.node-atm .flow-icon       { background: var(--strc-orange-lt); border-color: var(--strc-orange-bd); }
.node-strategy .flow-icon  { background: var(--strc-purple-lt); border-color: var(--strc-purple-bd); }
.node-bitcoin .flow-icon   { background: var(--strc-orange-lt); border-color: var(--strc-orange); box-shadow: 0 0 12px rgba(247,147,26,0.2); }
.node-dividend .flow-icon  { background: var(--strc-green-lt);  border-color: var(--strc-green-bd); }
.flow-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-align: center;
  color: var(--strc-text);
  margin-bottom: 4px;
}
.flow-sub {
  font-size: 0.65rem;
  color: var(--strc-muted);
  text-align: center;
  line-height: 1.4;
  max-width: 95px;
}
.flow-arrow {
  color: var(--strc-orange);
  font-size: 1.9rem;
  flex-shrink: 0;
  margin-top: -20px;
  padding: 0 2px;
  font-weight: 900;
  line-height: 1;
}

.rate-adj {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.rate-rule {
  border-radius: 8px;
  padding: 13px 12px;
  text-align: center;
}
.rate-rule.up   { background: var(--strc-red-lt);    border: 2px solid var(--strc-red-bd); }
.rate-rule.hold { background: var(--strc-orange-lt); border: 2px solid var(--strc-orange-bd); }
.rate-rule.down { background: var(--strc-green-lt);  border: 2px solid var(--strc-green-bd); }
.rate-rule-condition {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.rate-rule.up .rate-rule-condition   { color: var(--strc-red); }
.rate-rule.hold .rate-rule-condition { color: var(--strc-orange); }
.rate-rule.down .rate-rule-condition { color: var(--strc-green); }
.rate-rule-label  { font-size: 0.68rem; color: var(--strc-muted); margin-bottom: 7px; line-height: 1.4; }
.rate-rule-action { font-size: 0.72rem; font-weight: 600; }
.rate-rule.up .rate-rule-action   { color: var(--strc-red); }
.rate-rule.hold .rate-rule-action { color: #c2410c; }
.rate-rule.down .rate-rule-action { color: var(--strc-green); }

.stat-row { display: flex; gap: 10px; flex-wrap: wrap; }
.stat-pill {
  background: var(--strc-orange-lt);
  border: 2px solid var(--strc-orange-bd);
  border-radius: 8px;
  padding: 10px 14px;
  flex: 1;
  min-width: 130px;
}
.stat-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--strc-orange);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label { font-size: 0.67rem; color: var(--strc-muted); }

/* ============================================================
   DIAGRAM 02 — DIVIDEND SOURCES
============================================================ */
.obligation-bar {
  background: var(--strc-bg2);
  border: 1px solid var(--strc-border);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ob-label { font-size: 0.65rem; color: var(--strc-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; font-family: 'DM Mono', monospace; }
.ob-figure { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.55rem; color: var(--strc-text); line-height: 1; }
.ob-figure.orange { color: var(--strc-orange); }
.ob-figure.muted  { font-size: 1.1rem; color: var(--strc-muted); }
.ob-figure span   { font-size: 0.85rem; color: var(--strc-muted); margin-left: 3px; }
.ob-divider { width: 1px; height: 36px; background: var(--strc-border); flex-shrink: 0; }
.ob-equals  { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--strc-border2); }

.sources-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.source-card {
  border-radius: 10px;
  padding: 18px 16px;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
}
.source-card.primary   { background: var(--strc-orange-lt); border-color: var(--strc-orange); }
.source-card.secondary { background: var(--strc-blue-lt);   border-color: var(--strc-blue-bd); }
.source-card.minor     { background: var(--strc-green-lt);  border-color: var(--strc-green-bd); }
.source-rank {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  border: 2px solid transparent;
}
.primary .source-rank   { background: rgba(247,147,26,0.2); color: #c2410c; border-color: var(--strc-orange-bd); }
.secondary .source-rank { background: rgba(29,78,216,0.1);  color: var(--strc-blue); border-color: var(--strc-blue-bd); }
.minor .source-rank     { background: rgba(21,128,61,0.1);  color: var(--strc-green); border-color: var(--strc-green-bd); }
.source-icon { font-size: 1.6rem; margin-bottom: 8px; }
.source-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.primary .source-title   { color: #c2410c; }
.secondary .source-title { color: var(--strc-blue); }
.minor .source-title     { color: var(--strc-green); }
.source-body { font-size: 0.74rem; color: var(--strc-text2); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.source-body strong { color: var(--strc-text); }
.source-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  border-radius: 6px;
  padding: 9px 10px;
  margin-top: auto;
}
.primary .source-amount   { background: rgba(247,147,26,0.15); color: #c2410c; }
.secondary .source-amount { background: rgba(29,78,216,0.1);   color: var(--strc-blue); }
.minor .source-amount     { background: rgba(21,128,61,0.1);   color: var(--strc-green); }
.source-amount-fig  { font-size: 1.05rem; line-height: 1; margin-bottom: 2px; }
.source-amount-note { font-size: 0.62rem; font-family: 'DM Mono', monospace; font-weight: 400; opacity: 0.8; line-height: 1.4; }

.honesty-box {
  background: var(--strc-red-lt);
  border: 1px solid var(--strc-red-bd);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.honesty-icon  { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.honesty-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--strc-red); margin-bottom: 5px; }
.honesty-body  { font-size: 0.76rem; color: var(--strc-text2); line-height: 1.65; }
.honesty-body strong { color: var(--strc-text); }
.honesty-body .orange { color: var(--strc-orange); font-weight: 600; }

/* ============================================================
   DIAGRAM 03 — FLYWHEEL
============================================================ */
.flywheel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.flywheel-panel {
  border-radius: 10px;
  padding: 20px 18px;
  border: 1.5px solid transparent;
}
.flywheel-panel.bull { background: var(--strc-green-lt); border-color: var(--strc-green-bd); }
.flywheel-panel.bear { background: var(--strc-red-lt);   border-color: var(--strc-red-bd); }
.flywheel-label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.bull .flywheel-label { background: rgba(21,128,61,0.12);  color: var(--strc-green); border: 2px solid var(--strc-green-bd); }
.bear .flywheel-label { background: rgba(185,28,28,0.1);   color: var(--strc-red); border: 2px solid var(--strc-red-bd); }
.flywheel-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.3;
}
.bull .flywheel-title { color: var(--strc-green); }
.bear .flywheel-title { color: var(--strc-red); }
.cycle-steps { display: flex; flex-direction: column; gap: 0; }
.cycle-step  { display: flex; gap: 10px; align-items: flex-start; position: relative; }
.cycle-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px; top: 28px; bottom: -8px;
  width: 2px;
}
.bull .cycle-step:not(:last-child)::after { background: var(--strc-green-bd); }
.bear .cycle-step:not(:last-child)::after { background: var(--strc-red-bd); }
.cycle-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 0.7rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.bull .cycle-dot { background: rgba(21,128,61,0.15); color: var(--strc-green); border: 1.5px solid var(--strc-green-bd); }
.bear .cycle-dot { background: rgba(185,28,28,0.1);  color: var(--strc-red);   border: 1.5px solid var(--strc-red-bd); }
.cycle-text { font-size: 0.75rem; color: var(--strc-text2); line-height: 1.55; padding: 4px 0 16px; }
.cycle-text strong { color: var(--strc-text); }
.bull .cycle-text .hl { color: var(--strc-green); }
.bear .cycle-text .hl { color: var(--strc-red); }
.cycle-return {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 9px 12px;
  border-radius: 7px;
  margin-top: 4px;
}
.bull .cycle-return { background: rgba(21,128,61,0.1);  color: var(--strc-green); border: 1px solid var(--strc-green-bd); }
.bear .cycle-return { background: rgba(185,28,28,0.08); color: var(--strc-red);   border: 1px solid var(--strc-red-bd); }

.break-box { background: var(--strc-bg2); border-radius: 10px; padding: 18px 20px; border: 1px solid var(--strc-border); }
.break-box-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--strc-text);
  margin-bottom: 12px;
}
.break-conditions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.break-cond {
  background: var(--strc-red-lt);
  border: 1px solid var(--strc-red-bd);
  border-radius: 8px;
  padding: 12px 12px;
}
.break-cond-trigger { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--strc-red); margin-bottom: 5px; }
.break-cond-effect  { font-size: 0.7rem; color: var(--strc-text2); line-height: 1.55; }
.break-cond-effect strong { color: var(--strc-text); }

.reserve-track { margin-top: 16px; background: var(--strc-bg2); border-radius: 10px; padding: 18px 20px; border: 1px solid var(--strc-blue-bd); }
.reserve-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--strc-text); margin-bottom: 14px; }
.reserve-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reserve-bar-label { font-size: 0.7rem; font-family: 'DM Mono', monospace; width: 60px; flex-shrink: 0; }
.reserve-bar-outer { flex: 1; height: 22px; background: var(--strc-bg3); border-radius: 5px; overflow: hidden; }
.reserve-bar-inner {
  height: 100%; border-radius: 5px;
  display: flex; align-items: center; padding-left: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.68rem;
  color: #fff;
}
.reserve-bar-note { font-size: 0.67rem; font-family: 'DM Mono', monospace; color: var(--strc-muted); width: 80px; flex-shrink: 0; text-align: right; }
.reserve-note-box {
  margin-top: 12px;
  padding: 11px 14px;
  background: var(--strc-bg3);
  border-radius: 7px;
  font-size: 0.73rem;
  color: var(--strc-text2);
  line-height: 1.6;
  border: 1px solid var(--strc-border);
}
.reserve-note-box strong { color: var(--strc-text); }

/* ============================================================
   DIAGRAM 04 — CAPITAL STACK
============================================================ */
.stack-container { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.stack-bars { flex: 0 0 300px; }
.stack-top-label {
  font-size: 0.63rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--strc-muted);
  font-family: 'DM Mono', monospace;
  margin-bottom: 12px;
  text-align: center;
}
.stack-item {
  border-radius: 7px;
  padding: 12px 14px;
  margin-bottom: 5px;
  position: relative;
  border: 1px solid transparent;
}
.si-debt  { background: var(--strc-purple-lt); border-color: var(--strc-purple-bd); }
.si-strf  { background: var(--strc-red-lt);    border-color: var(--strc-red-bd); }
.si-strc  { background: var(--strc-orange-lt); border-color: var(--strc-orange); box-shadow: 0 0 14px rgba(247,147,26,0.12); }
.si-strk  { background: var(--strc-blue-lt);   border-color: var(--strc-blue-bd); }
.si-strd  { background: var(--strc-green-lt);  border-color: var(--strc-green-bd); }
.si-mstr  { background: var(--strc-bg2);       border-color: var(--strc-border2); }
.stack-item-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.si-debt .stack-item-name  { color: var(--strc-purple); }
.si-strf .stack-item-name  { color: var(--strc-red); }
.si-strc .stack-item-name  { color: #c2410c; font-size: 0.9rem; }
.si-strk .stack-item-name  { color: var(--strc-blue); }
.si-strd .stack-item-name  { color: var(--strc-green); }
.si-mstr .stack-item-name  { color: var(--strc-text); }
.stack-item-detail { font-size: 0.67rem; color: var(--strc-muted); }
.stack-item-badge {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
}
.si-debt .stack-item-badge  { color: var(--strc-purple); }
.si-strf .stack-item-badge  { color: var(--strc-red); }
.si-strc .stack-item-badge  { color: var(--strc-orange); }
.si-strk .stack-item-badge  { color: var(--strc-blue); }
.si-strd .stack-item-badge  { color: var(--strc-green); }
.si-mstr .stack-item-badge  { color: var(--strc-muted); }

.stack-notes { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 8px; }
.stack-note-item {
  background: var(--strc-bg2);
  border-radius: 8px;
  padding: 11px 13px;
  border-left: 3px solid transparent;
  border: 1px solid var(--strc-border);
}
.stack-note-item.purple-note { border-left: 3px solid var(--strc-purple-bd); }
.stack-note-item.orange-note { border-left: 3px solid var(--strc-orange); }
.stack-note-item.green-note  { border-left: 3px solid var(--strc-green-bd); }
.stack-note-item.muted-note  { border-left: 3px solid var(--strc-border2); }
.stack-note-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 4px;
}
.stack-note-body { font-size: 0.7rem; color: var(--strc-text2); line-height: 1.55; }

/* ============================================================
   DIAGRAM 05 — ACCRETION vs DILUTION
============================================================ */
.accreet-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.accreet-panel {
  border-radius: 10px;
  padding: 18px 16px;
}
.accreet-panel.good { background: var(--strc-green-lt); border: 1.5px solid var(--strc-green-bd); }
.accreet-panel.bad  { background: #fffbeb;          border: 1.5px solid #fcd34d; }
.accreet-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.good .accreet-badge { background: rgba(21,128,61,0.12); color: var(--strc-green); border: 2px solid var(--strc-green-bd); }
.bad  .accreet-badge { background: rgba(217,119,6,0.15);  color: #92400e; border: 2px solid #fcd34d; }
.accreet-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.good .accreet-title { color: var(--strc-green); }
.bad  .accreet-title { color: #92400e; }
.step-list { display: flex; flex-direction: column; gap: 9px; }
.step { display: flex; gap: 9px; align-items: flex-start; }
.step-num {
  width: 21px; height: 21px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.65rem; flex-shrink: 0; margin-top: 1px;
}
.good .step-num { background: rgba(21,128,61,0.18); color: var(--strc-green); }
.bad  .step-num { background: rgba(217,119,6,0.18);  color: #92400e; }
.step-text { font-size: 0.76rem; color: var(--strc-text2); line-height: 1.5; }
.step-text strong { color: var(--strc-text); }

.btc-yield-box {
  background: var(--strc-bg2);
  border: 1px solid var(--strc-border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btc-yield-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--strc-orange);
  line-height: 1;
}
.btc-yield-num-label { font-size: 0.65rem; color: var(--strc-muted); font-family: 'DM Mono', monospace; letter-spacing: 1px; margin-bottom: 3px; }
.btc-yield-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--strc-text); margin-bottom: 4px; }
.btc-yield-body { font-size: 0.74rem; color: var(--strc-text2); line-height: 1.55; }
.btc-yield-text { flex: 1; min-width: 160px; }
.btc-hurdle { text-align: center; min-width: 100px; }
.btc-hurdle-label { font-size: 0.65rem; color: var(--strc-muted); font-family: 'DM Mono', monospace; margin-bottom: 2px; line-height: 1.4; }
.btc-hurdle-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--strc-green); line-height: 1; }
.btc-hurdle-sub { font-size: 0.63rem; color: var(--strc-muted); }

/* ============================================================
   DIAGRAM 06 — INVESTOR MATRIX
============================================================ */
.matrix-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.matrix-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-align: left;
  color: var(--strc-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 10px 12px;
  border-bottom: 2px solid var(--strc-border);
}
.matrix-table th.center { text-align: center; }
.matrix-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--strc-border);
  vertical-align: middle;
}
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table tr.highlight-row { background: var(--strc-orange-lt); }
.ticker-cell { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.95rem; }
.desc-cell { font-size: 0.73rem; color: var(--strc-text2); line-height: 1.4; max-width: 160px; }
.dot-bar { display: flex; gap: 4px; justify-content: center; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.fill-o { background: var(--strc-orange); }
.dot.half-o { background: var(--strc-orange-bd); }
.dot.fill-g { background: var(--strc-green); }
.dot.half-g { background: var(--strc-green-bd); }
.dot.fill-r { background: var(--strc-red); }
.dot.half-r { background: var(--strc-red-bd); }
.dot.fill-b { background: var(--strc-blue); }
.dot.half-b { background: var(--strc-blue-bd); }
.dot.fill-p { background: var(--strc-purple); }
.dot.empty  { background: var(--strc-border2); }
.cell-val { text-align: center; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; }
.cell-val.green  { color: var(--strc-green); }
.cell-val.orange { color: var(--strc-orange); }
.cell-val.muted  { color: var(--strc-muted); }

.investor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.investor-tags-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.66rem; color: var(--strc-muted); letter-spacing: 1.5px; text-transform: uppercase; width: 100%; margin-bottom: 2px; }
.investor-tag {
  font-size: 0.72rem;
  border-radius: 5px;
  padding: 4px 10px;
  font-weight: 500;
  border: 1px solid transparent;
}

/* ============================================================
   DIAGRAM 07 — BEAR CASE
============================================================ */
.bear-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.bear-card {
  background: var(--strc-bg2);
  border: 1px solid var(--strc-border);
  border-radius: 10px;
  padding: 16px;
}
.bear-card-icon  { font-size: 1.4rem; margin-bottom: 8px; }
.bear-card-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--strc-text); margin-bottom: 6px; }
.bear-card-body  { font-size: 0.74rem; color: var(--strc-text2); line-height: 1.55; }
.bear-card-body strong { color: var(--strc-text); }
.bear-card-body .orange { color: var(--strc-orange); font-weight: 600; }
.bear-card-body .red    { color: var(--strc-red); font-weight: 600; }

.hurdle-bar { background: var(--strc-bg2); border-radius: 10px; padding: 18px 20px; border: 1px solid var(--strc-border); }
.hurdle-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--strc-text); margin-bottom: 14px; }
.hurdle-row { margin-bottom: 12px; }
.hurdle-label { font-size: 0.7rem; color: var(--strc-muted); margin-bottom: 5px; display: flex; justify-content: space-between; }
.hurdle-label span { font-weight: 600; }
.hurdle-track { height: 28px; background: var(--strc-bg3); border-radius: 6px; overflow: hidden; }
.hurdle-fill {
  height: 100%; border-radius: 6px;
  display: flex; align-items: center; padding-left: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.75rem; color: #fff;
}
.hurdle-summary {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--strc-orange-lt);
  border: 1px solid var(--strc-orange-bd);
  border-radius: 8px;
  font-size: 0.74rem;
  color: var(--strc-text2);
  line-height: 1.6;
}
.hurdle-summary strong { color: #c2410c; font-family: 'Outfit', sans-serif; }

/* ============================================================
   PAGE FOOTER DISCLAIMER
============================================================ */
.page-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--strc-border);
  font-size: 0.72rem;
  color: var(--strc-muted);
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 680px) {
  .terms-grid         { grid-template-columns: 1fr; }
  .sources-container  { grid-template-columns: 1fr; }
  .rate-adj           { grid-template-columns: 1fr; }
  .accreet-compare    { grid-template-columns: 1fr; }
  .flywheel-split     { grid-template-columns: 1fr; }
  .break-conditions   { grid-template-columns: 1fr; }
  .bear-grid          { grid-template-columns: 1fr; }
  .stack-container    { flex-direction: column; }
  .machine-flow       { gap: 2px; }
  .flow-node          { min-width: 80px; }
  .flow-icon          { width: 46px; height: 46px; font-size: 1.1rem; }
  .btc-yield-box      { flex-direction: column; }
  .diagram-header h2  { font-size: 0.92rem; }
}
/* ─────────────────────────────────────────────────────────
   SHARED — both CTAs use the same dark card base
───────────────────────────────────────────────────────── */

.strc-cta-dashboard,
.strc-cta-alerts {
  position: relative;
  background: linear-gradient(135deg, #111827 0%, #1e2d3d 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  margin: 32px 0;
}

/* Grid texture overlay */
.strc-cta-dashboard::before,
.strc-cta-alerts::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 147, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 147, 26, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Orange glow — top right */
.strc-cta-dashboard::after,
.strc-cta-alerts::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────────
   CTA 1 — STRATEGY DASHBOARD
   Paste after Section 05, before Section 06
───────────────────────────────────────────────────────── */

.strc-cta-dashboard__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
}

.strc-cta-dashboard__text {
  flex: 1;
  min-width: 0;
}

.strc-cta-dashboard__eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7931a;
  margin-bottom: 6px;
  font-weight: 500;
}

.strc-cta-dashboard__heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #f9fafb;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.strc-cta-dashboard__body {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.strc-cta-dashboard__body strong {
  color: #e5e7eb;
  font-weight: 600;
}

.strc-cta-dashboard__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 190px;
}

/* Primary orange button — shared by both CTAs */
.strc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #f7931a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  letter-spacing: -0.1px;
}

.strc-btn-primary:hover {
  background: #ea7d0a;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.strc-btn-primary svg {
  flex-shrink: 0;
}

/* Ghost secondary button */
.strc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #9ca3af;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  padding: 7px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.strc-btn-secondary:hover {
  border-color: #f7931a;
  color: #f7931a;
  text-decoration: none;
}

/* Free badge */
.strc-free-badge {
  display: inline-block;
  background: rgba(21, 128, 61, 0.25);
  color: #4ade80;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  vertical-align: middle;
  margin-left: 4px;
  text-transform: uppercase;
}


/* ─────────────────────────────────────────────────────────
   CTA 2 — ALERTS / SUBSCRIPTION
   Paste inside Section 07, after .bear-grid, before .hurdle-bar
───────────────────────────────────────────────────────── */

.strc-cta-alerts {
  padding: 28px;
}

.strc-cta-alerts__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.strc-cta-alerts__icon-col {
  flex-shrink: 0;
}

.strc-cta-alerts__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(247, 147, 26, 0.15);
  border: 1.5px solid rgba(247, 147, 26, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.strc-cta-alerts__content {
  flex: 1;
}

.strc-cta-alerts__eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f7931a;
  margin-bottom: 8px;
  font-weight: 500;
}

.strc-cta-alerts__heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #f9fafb;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.strc-cta-alerts__heading em {
  font-style: normal;
  color: #f7931a;
}

.strc-cta-alerts__body {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 20px;
}

.strc-cta-alerts__body strong {
  color: #e5e7eb;
  font-weight: 600;
}

/* Feature pills */
.strc-cta-alerts__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.strc-alert-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  color: #d1d5db;
  font-family: 'DM Sans', sans-serif;
}

.strc-alert-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7931a;
  flex-shrink: 0;
}

/* CTA actions row */
.strc-cta-alerts__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.strc-btn-alert-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7931a;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.1px;
  white-space: nowrap;
}

.strc-btn-alert-primary:hover {
  background: #ea7d0a;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* Social proof line */
.strc-cta-alerts__proof {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: #6b7280;
  font-family: 'DM Mono', monospace;
}

.strc-cta-alerts__proof::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(107, 114, 128, 0.4);
}


/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 600px and below
───────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .strc-cta-dashboard__inner {
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }
  .strc-cta-dashboard__actions {
    width: 100%;
    min-width: unset;
  }
  .strc-btn-primary,
  .strc-btn-secondary {
    width: 100%;
  }
  .strc-cta-alerts__inner {
    flex-direction: column;
    gap: 16px;
  }
  .strc-cta-alerts__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .strc-btn-alert-primary {
    width: 100%;
    justify-content: center;
  }
}
