/* Page-specific styles for Authority Gets Compliance. Influence Gets Commitment. */

/* ===== HERO THEME ===== */
.article-hero { background: linear-gradient(160deg, #0d0f1a 0%, #141828 55%, #0f1120 100%); }
.article-tag-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.tag-insights { background: #1a1a40; }
.tag-career   { background: #1a3a60; }
.article-hero-sub { color: #8a90b8; }
.article-meta-read { color: #5a608a; }
.article-cta { background: linear-gradient(135deg, #0d0f1a 0%, #141828 100%); border: 2px solid #2a2a5a; }
.article-cta p { color: #8a90b8; }
.article-cta a.secondary { color: #8a90b8; border: 2px solid #2a2a5a; }

/* ===== H3 OVERRIDE ===== */
.article-body h3 {
  font-size: 19px;
  font-weight: 900;
  color: #0d0f1a;
  text-transform: none;
  letter-spacing: 0;
  margin: 40px 0 10px;
}
.article-body h3::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: #62b517;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ===== CC COMPOUND ===== */
.cc-compound {
  background: #f0f5e8;
  border-left: 4px solid #62b517;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.cc-compound-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #62b517;
  margin-bottom: 8px;
}
.cc-compound-body {
  font-size: 15px;
  color: #1a2a10;
  line-height: 1.7;
}

/* ===== DEFINITION PAIR ===== */
.definition-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.definition-pair.is-visible { opacity: 1; transform: none; }
@media (max-width: 640px) { .definition-pair { grid-template-columns: 1fr; } }

.def-card {
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.def-authority { background: #f5f0fc; border: 1px solid #d0b8ee; }
.def-influence { background: #f0f8e8; border: 1px solid #b8e098; }

.def-word {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.def-authority .def-word { color: #6a2aaa; }
.def-influence .def-word { color: #3a7a10; }

.def-text {
  font-size: 14px;
  line-height: 1.65;
  color: #2a2a3a;
}
.def-outcome {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
}
.def-authority .def-outcome { background: #e0c8f8; color: #4a1a80; }
.def-influence .def-outcome { background: #c8e898; color: #1a5008; }

.def-note {
  font-size: 12px;
  color: #6a6a7a;
  line-height: 1.55;
  font-style: italic;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  padding-top: 10px;
  margin-top: 2px;
}

/* ===== AUTHORITY SPECTRUM ===== */
.authority-spectrum {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8e8f4;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.authority-spectrum.is-visible { opacity: 1; transform: none; }

.spectrum-header {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  padding: 8px 14px;
  background: #f0f0f8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7a9a;
  border-bottom: 1px solid #e0e0f0;
}

.spectrum-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f8;
  background: #fafafa;
}
.spectrum-row:last-child { border-bottom: none; }
.spectrum-row-ic {
  background: #f4fbed;
}

.spectrum-role {
  font-size: 13px;
  font-weight: 600;
  color: #2a2a3a;
}
.spectrum-row-ic .spectrum-role { color: #2a6010; font-weight: 700; }

.spectrum-bar-track {
  height: 8px;
  background: #e8e8f4;
  border-radius: 4px;
  overflow: hidden;
}
.spectrum-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: #a080c8;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.spectrum-bar-ic  { background: #62b517; }
.spectrum-bar-mgr { background: #4a6aaa; }

/* ===== SCOPE COMPARE ===== */
.scope-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scope-compare.is-visible { opacity: 1; transform: none; }
@media (max-width: 640px) { .scope-compare { grid-template-columns: 1fr; } }

.scope-card {
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scope-mgr { background: #f5f0fc; border: 1px solid #d0b8ee; }
.scope-ic  { background: #f0f8e8; border: 1px solid #b8e098; }

.scope-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scope-mgr .scope-label { color: #6a2aaa; }
.scope-ic  .scope-label { color: #3a7a10; }

/* Manager box visual */
.scope-box-visual {
  position: relative;
  padding: 12px;
  border: 2px dashed #c0a0e0;
  border-radius: 8px;
  background: #ede5f8;
}
.scope-box-title {
  font-size: 11px;
  font-weight: 900;
  color: #6a2aaa;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.scope-box-item {
  font-size: 12px;
  color: #4a1a80;
  padding: 3px 0;
  border-bottom: 0.5px solid #d0b8ee;
  line-height: 1.4;
}
.scope-box-item:last-child { border-bottom: none; }
.scope-box-wall {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 10px;
  background: #c0a0e0;
  color: #3a0a60;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* IC web visual */
.scope-web-visual {
  position: relative;
  height: 110px;
  background: #e8f5d8;
  border-radius: 8px;
  border: 1px solid #b8e098;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scope-web-center {
  font-size: 11px;
  font-weight: 900;
  color: #2a6010;
  background: #62b517;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.3;
}
.scope-web-spoke {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: #2a6010;
  background: #c8e898;
  padding: 3px 7px;
  border-radius: 10px;
}
.scope-spoke-1 { top: 8px;  left: 50%; transform: translateX(-50%); }
.scope-spoke-2 { top: 28px; left: 8px; }
.scope-spoke-3 { top: 28px; right: 8px; }
.scope-spoke-4 { bottom: 28px; left: 8px; }
.scope-spoke-5 { bottom: 28px; right: 8px; }

.scope-desc {
  font-size: 13px;
  color: #4a4a5a;
  line-height: 1.65;
}
.scope-ic .scope-desc { color: #2a4a1a; }

/* ===== PATH CALLOUT ===== */
.path-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.path-callout.is-visible { opacity: 1; transform: none; }
@media (max-width: 640px) { .path-callout { grid-template-columns: 1fr; } }

.path-card {
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.path-ic  { background: #f0f8e8; border: 1px solid #b8e098; }
.path-mgr { background: #edf0fa; border: 1px solid #c0c8e8; }

.path-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.path-ic  .path-label { color: #3a7a10; }
.path-mgr .path-label { color: #3a4a9a; }

.path-body {
  font-size: 14px;
  line-height: 1.65;
  color: #2a2a3a;
}

/* ===== INFLUENCE TACTICS ===== */
.influence-tactics {
  margin: 28px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.influence-tactics.is-visible { opacity: 1; transform: none; }

.tactic {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eaeaf4;
}
.tactic:last-child { border-bottom: none; }

.tactic-num {
  font-family: monospace;
  font-size: 12px;
  font-weight: 900;
  color: #62b517;
  background: #f0f8e8;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.tactic-title {
  font-size: 15px;
  font-weight: 900;
  color: #1a1a2a;
  margin-bottom: 6px;
}
.tactic-detail {
  font-size: 14px;
  color: #404050;
  line-height: 1.7;
}
