/* KI-Kompass v2.6 — Shared Stylesheet */
/* Extracted from monolithic index.html + new classes for multi-page architecture */

:root {
  --c-bg: #2a2420;
  --c-bg2: #2d2520;
  --c-bg3: #221e1a;
  --c-border: #4a3f2f;
  --c-border2: #6b5d4f;
  --c-text: #e8d4a0;
  --c-text2: #d4c5a9;
  --c-text3: #a89968;
  --c-green-bg: rgba(95, 211, 95, 0.1);
  --c-green-text: #5fd35f;
  --c-green-border: rgba(95, 211, 95, 0.4);
  --c-yellow-bg: rgba(232, 160, 48, 0.1);
  --c-yellow-text: #e8a030;
  --c-yellow-border: rgba(232, 160, 48, 0.4);
  --c-red-bg: rgba(240, 128, 128, 0.1);
  --c-red-text: #f08080;
  --c-red-border: rgba(240, 128, 128, 0.4);
  --c-blue-bg: rgba(107, 141, 184, 0.1);
  --c-blue-text: #a8c8e8;
  --c-blue-border: #6b8db8;
  --c-accent: #7dd3e8;
  --c-accent-light: rgba(125,211,232,0.1);
  --radius: 10px;
  --radius-sm: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
}

/* HEADER */
.site-header {
  background: var(--c-bg);
  border-bottom: 0.5px solid var(--c-border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.site-header .brand {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header .doc-title {
  font-size: 13px;
  color: var(--c-text2);
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.print-btn {
  background: var(--c-bg2);
  border: 0.5px solid var(--c-border2);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text2);
  cursor: pointer;
  transition: background .15s;
}
.print-btn:hover { background: var(--c-bg3); }

/* LAYOUT */
.layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 52px);
}

/* SIDEBAR */
.sidebar {
  border-right: 0.5px solid var(--c-border);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 52px;
  height: calc(100vh - 52px);
  overflow-y: auto;
}
.sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text3);
  margin-bottom: .75rem;
}
.sidebar nav a {
  display: block;
  font-size: 13px;
  color: var(--c-text2);
  text-decoration: none;
  padding: 4px 8px;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1px;
  transition: all .15s;
  line-height: 1.4;
}
.sidebar nav a:hover, .sidebar nav a.active {
  background: var(--c-bg2);
  color: var(--c-text);
  border-left-color: var(--c-accent);
}
.sidebar nav a.sub {
  padding-left: 18px;
  font-size: 12px;
  color: var(--c-text3);
}
.sidebar nav a.sub:hover, .sidebar nav a.sub.active {
  color: var(--c-text2);
}
.sidebar-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--c-border);
  font-size: 11px;
  color: var(--c-text3);
  line-height: 1.6;
}
.sidebar-meta strong { color: var(--c-text2); font-weight: 500; }

/* MAIN */
main {
  padding: 2.5rem 3rem 4rem;
  max-width: 760px;
}

/* HERO */
.hero {
  position: relative;
  background: url('hero-bg.webp') center center / cover no-repeat;
  margin: 0 0 2.5rem 0;
  padding: 3.5rem 3rem 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18,16,13,0.92) 0%, rgba(18,16,13,0.78) 45%, rgba(18,16,13,0.35) 75%, transparent 100%);
  z-index: 2;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-video.loaded { opacity: 1; }
.hero > *:not(.hero-video) { position: relative; z-index: 3; }
.hero h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .5rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  max-width: 520px;
}
.hero .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

/* SECTIONS */
section { margin-bottom: 3rem; }

/* MODULE VISUALS */
.module-visual {
  width: 100%;
  max-width: 680px;
  margin: 1.5rem auto 2rem;
  display: block;
  border-radius: var(--radius);
  border: 0.5px solid var(--c-border);
}
.module-visual-caption {
  font-size: 11px;
  color: var(--c-text3);
  text-align: center;
  margin: -1rem auto 2rem;
  font-style: italic;
}
h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: .5rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 10px;
  scroll-margin-top: 68px;
}
h2:first-child { border-top: none; padding-top: 0; }
h2 .section-num {
  font-size: 11px;
  font-weight: 600;
  background: var(--c-bg2);
  border: 0.5px solid var(--c-border2);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  color: var(--c-text3);
  letter-spacing: .04em;
}
h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 1.5rem 0 .4rem;
  color: var(--c-text);
}

/* LEAD */
.lead {
  background: var(--c-blue-bg);
  border-left: 3px solid var(--c-blue-border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 13.5px;
  color: var(--c-text);
  line-height: 1.6;
}
.lead strong { font-weight: 600; color: var(--c-blue-text); }

/* CALLOUT */
.callout {
  border-radius: var(--radius-sm);
  padding: .875rem 1rem;
  margin: .75rem 0 1rem;
  font-size: 13.5px;
  line-height: 1.6;
  border: 0.5px solid var(--c-border);
}
.callout.green { background: var(--c-green-bg); border-color: var(--c-green-border); color: var(--c-green-text); }
.callout.yellow { background: var(--c-yellow-bg); border-color: var(--c-yellow-border); color: var(--c-yellow-text); }
.callout.red { background: var(--c-red-bg); border-color: var(--c-red-border); color: var(--c-red-text); }
.callout.blue { background: var(--c-blue-bg); border-color: var(--c-blue-border); color: var(--c-blue-text); }
.callout.neutral { background: var(--c-bg2); }
.callout strong { font-weight: 600; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1rem 0; }
.card {
  background: var(--c-bg);
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
}
.card-head { display: flex; align-items: center; gap: 8px; margin-bottom: .5rem; }
.card-icon { font-size: 16px; }
.card-title { font-size: 13.5px; font-weight: 600; }
.card p { font-size: 13px; color: var(--c-text2); line-height: 1.55; }
.card strong { font-weight: 600; color: var(--c-text); }

/* TABLE */
.tbl-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border: 0.5px solid var(--c-border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead tr { background: var(--c-bg2); }
th {
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-text2);
  padding: 10px 12px;
  border-bottom: 0.5px solid var(--c-border);
}
td { padding: 10px 12px; border-bottom: 0.5px solid var(--c-border); vertical-align: top; line-height: 1.5; color: var(--c-text2); }
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--c-bg2); }
td strong { color: var(--c-text); font-weight: 600; }

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-g { background: var(--c-green-bg); color: var(--c-green-text); }
.badge-y { background: var(--c-yellow-bg); color: var(--c-yellow-text); }
.badge-r { background: var(--c-red-bg); color: var(--c-red-text); }
.badge-gr { background: var(--c-bg2); color: var(--c-text3); border: 0.5px solid var(--c-border); }
.badge-b { background: var(--c-blue-bg); color: var(--c-blue-text); }

/* DETAIL BLOCKS */
.detail {
  background: var(--c-bg2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: .75rem 0 1.25rem;
}
.detail-row { display: flex; gap: 10px; margin-bottom: .4rem; }
.detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text3);
  min-width: 140px;
  margin-top: 2px;
  flex-shrink: 0;
}
.detail-val { font-size: 13.5px; color: var(--c-text2); line-height: 1.55; }
.detail-val strong { font-weight: 600; color: var(--c-text); }

/* PROSE */
p { font-size: 13.5px; color: var(--c-text2); margin-bottom: .6rem; line-height: 1.65; }
p:last-child { margin-bottom: 0; }
p strong { font-weight: 600; color: var(--c-text); }
ul.prose, ol.prose { padding-left: 1.1rem; margin: .4rem 0 .8rem; }
ul.prose li, ol.prose li { font-size: 13.5px; color: var(--c-text2); margin-bottom: .3rem; line-height: 1.55; }
ul.prose li strong, ol.prose li strong { font-weight: 600; color: var(--c-text); }

/* COLLAPSIBLE */
details { margin: .5rem 0; }
details summary {
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: .5rem .75rem;
  background: var(--c-bg2);
  border-radius: var(--radius-sm);
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--c-text);
}
details summary::after { content: '+'; font-size: 16px; color: var(--c-text3); }
details[open] summary::after { content: '−'; }
details .detail-body { padding: .75rem .75rem .25rem; }

/* MODULE PREVIEW (Übersicht, vor dem Gate) */
.module-preview-list .module-item {
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid var(--c-accent);
  cursor: pointer;
  transition: all .2s;
}
.module-preview-list .module-item:hover {
  border-color: var(--c-accent);
  background: var(--c-bg2);
}
.module-preview-list .module-header {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: start;
  padding: .875rem 1.25rem;
  cursor: pointer;
  background: transparent;
  user-select: none;
}
.module-preview-list .module-arrow {
  font-size: 12px;
  color: var(--c-accent);
  padding-top: 4px;
  text-align: right;
  opacity: .6;
  transition: opacity .2s;
}
.module-preview-list .module-item:hover .module-arrow { opacity: 1; }

/* MODULE ACCORDION (volle Module, hinter dem Gate) */
.module-list { margin: 1.5rem 0; }
.module-item {
  border: 0.5px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.module-item:hover { border-color: var(--c-border2); }
.module-header {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: start;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: var(--c-bg);
  transition: background .15s;
  user-select: none;
}
.module-header:hover { background: var(--c-bg2); }
.module-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  padding-top: 2px;
}
.module-info { }
.module-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-text3);
  margin-bottom: 4px;
}
.module-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
  line-height: 1.35;
}
.module-desc {
  font-size: 12.5px;
  color: var(--c-text2);
  line-height: 1.5;
}
.module-arrow {
  font-size: 14px;
  color: var(--c-text3);
  transition: transform .2s;
  padding-top: 4px;
  text-align: right;
}
.module-item.open .module-arrow { transform: rotate(90deg); }
.module-item.open { border-color: var(--c-accent); }
.module-content {
  display: none;
  padding: 0 1.25rem 1.5rem;
  border-top: 0.5px solid var(--c-border);
  background: var(--c-bg3);
}
.module-content-inner {
  padding-top: 1.5rem;
}
.module-item.open .module-content { display: block; }

/* Alternating module backgrounds for better separation */
.gated-content > section:nth-child(odd) .module-item .module-header {
  background: var(--c-bg2);
}
.gated-content > section:nth-child(odd) .module-item .module-content {
  background: rgba(34, 30, 26, 0.6);
}

/* CONTENT GATE */
.gate-section {
  position: relative;
  margin: 2rem 0;
}
.gated-content {
  max-height: 180px;
  overflow: hidden;
  position: relative;
  transition: max-height .6s ease;
}
.gated-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--c-bg) 75%);
  pointer-events: none;
  transition: opacity .4s;
}
.gated-content.unlocked {
  max-height: none;
  overflow: visible;
}
.gated-content.unlocked::after {
  display: none;
}

.gate-overlay {
  text-align: center;
  padding: 2rem 1.5rem;
  margin: -1rem 0 2rem;
  position: relative;
  z-index: 2;
}
.gate-overlay.hidden { display: none; }
.gate-box {
  background: linear-gradient(160deg, rgba(107,141,184,0.12) 0%, var(--c-bg2) 50%, rgba(107,141,184,0.08) 100%);
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(107,141,184,0.15), 0 0 60px rgba(107,141,184,0.06);
}
.gate-icon {
  font-size: 32px;
  margin-bottom: .75rem;
}
.gate-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .5rem;
}
.gate-desc {
  font-size: 13px;
  color: var(--c-text2);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.gate-form { display: flex; flex-direction: column; gap: 12px; }
.gate-email {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--c-bg3);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  outline: none;
  transition: border-color .2s;
}
.gate-email:focus { border-color: var(--c-accent); }
.gate-email::placeholder { color: var(--c-text3); }
.gate-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--c-text3);
  text-align: left;
  line-height: 1.4;
}
.gate-consent input { margin-top: 2px; min-width: 16px; min-height: 16px; cursor: pointer; accent-color: var(--c-accent); }
.gate-consent a { color: var(--c-accent); text-decoration: none; }
.gate-consent a:hover { text-decoration: underline; }
.gate-submit {
  width: 100%;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius-sm);
  color: var(--c-accent);
  cursor: pointer;
  transition: all .2s;
}
.gate-submit:hover:not(:disabled) {
  background: var(--c-accent);
  color: var(--c-bg);
}
.gate-submit:disabled {
  display: none;
}
.gate-note {
  font-size: 11px;
  color: var(--c-text3);
  margin-top: 8px;
}
.gate-optins {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 12px;
  background: var(--c-bg3);
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--c-border);
}
.gate-optins-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}
.gate-optin {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--c-text2);
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
}
.gate-optin input { margin-top: 2px; min-width: 16px; min-height: 16px; cursor: pointer; accent-color: var(--c-accent); }

/* QUICK CARD */
.quick-card {
  border: 0.5px solid var(--c-border);
  border-left: 3px solid var(--c-green-border);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  background: var(--c-bg);
}
.quick-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: .4rem; }
.quick-title { font-size: 14px; font-weight: 600; }
.quick-card p { font-size: 13px; color: var(--c-text2); line-height: 1.55; margin-bottom: .3rem; }
.quick-card p:last-child { margin-bottom: 0; }
.quick-card strong { font-weight: 600; color: var(--c-text); }

/* CTA SECTION */
.cta-section {
  background: var(--c-blue-bg);
  border: 1px solid var(--c-blue-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.cta-section h3 { color: var(--c-blue-text); margin-bottom: .5rem; }
.cta-section p { text-align: center; }
.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius-sm);
  color: var(--c-accent);
  transition: all .2s;
}
.cta-btn:hover {
  background: var(--c-accent);
  color: var(--c-bg);
}

/* FOOTER */
.site-footer {
  border-top: 0.5px solid var(--c-border);
  padding: 1.5rem 3rem;
  font-size: 12px;
  color: var(--c-text3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer a { color: var(--c-accent); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-disclaimer {
  font-size: 11px;
  color: var(--c-text3);
  line-height: 1.5;
  opacity: .7;
  margin-top: 4px;
}

/* PRINT */
@media print {
  .site-header, .sidebar, .print-btn, .gate-overlay, .update-abo-box { display: none !important; }
  .layout { display: block; }
  main { padding: 1rem; max-width: 100%; }
  .gated-content { max-height: none !important; overflow: visible !important; }
  .gated-content::after { display: none !important; }
  .module-content { display: block !important; }
  h2 { page-break-before: always; }
  h2:first-child { page-break-before: avoid; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .module-nav { display: none !important; }
  .breadcrumb { display: none !important; }
}

/* LINKS */
a { color: #7dd3e8; }
.module-content a, .detail-body a, .module-content-inner a { color: #7dd3e8; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.module-content a:hover, .detail-body a:hover, .module-content-inner a:hover { color: #a8e8f4; }

/* MOBILE */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  main { padding: 1.5rem 1.25rem 3rem; }
  .card-grid { grid-template-columns: 1fr; }
  .site-header .doc-title { display: none; }
  .module-header { grid-template-columns: 42px 1fr 24px; padding: .875rem 1rem; }
  .gate-box { padding: 1.5rem 1.25rem; }
  .site-footer { padding: 1.5rem 1.25rem; }
  p, .lead, .callout, ul.prose li, ol.prose li, .detail-val, .module-desc { font-size: 14.5px; }
  h2 { font-size: 17px; }
  h3 { font-size: 14.5px; }
  .module-title { font-size: 14.5px; }
  .module-label { font-size: 11px; }
  table, th, td { font-size: 13px; }
  .module-content p, .module-content li, .module-content .callout,
  .module-content .lead, .module-content .detail-val { font-size: 14.5px; }
  .module-content table, .module-content th, .module-content td { font-size: 13px; }
  .module-content-inner p, .module-content-inner li, .module-content-inner .callout,
  .module-content-inner .lead, .module-content-inner .detail-val { font-size: 14.5px; }
  .module-content-inner table, .module-content-inner th, .module-content-inner td { font-size: 13px; }
  details summary { font-size: 14px; }
  .breadcrumb { font-size: 12px; }
  .module-nav { flex-direction: column; }
}

/* SKIP LINK */
.skip-link { position: absolute; top: -999px; left: 1rem; padding: .5rem 1rem; background: var(--c-accent); color: #1a1612; border-radius: var(--radius-sm); font-size: 13px; text-decoration: none; z-index: 999; }
.skip-link:focus { top: 60px; }

/* ═══ NEW CLASSES FOR MULTI-PAGE ARCHITECTURE ═══ */

/* BREADCRUMB */
.breadcrumb {
  font-size: 13px;
  color: var(--c-text3);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--c-border);
}
.breadcrumb a {
  color: var(--c-accent);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  margin: 0 6px;
  color: var(--c-text3);
}

/* MODULE HEADER STATIC (no accordion, direct display on module pages) */
.module-header-static {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--c-border);
}

/* MODULE NAVIGATION (prev/next) */
.module-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 2.5rem 0;
  padding: 1.25rem 0;
  border-top: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
}
.module-nav a {
  color: var(--c-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .15s;
}
.module-nav a:hover {
  color: #a8e8f4;
}
.module-nav-hub {
  font-size: 12px !important;
  color: var(--c-text3) !important;
}
.module-nav-hub:hover {
  color: var(--c-text2) !important;
}

/* UPDATE-ABO-BOX */
.update-abo-box {
  background: var(--c-bg2);
  border: 0.5px solid var(--c-border2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
}
.update-abo-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .5rem;
}
.update-abo-box > p {
  font-size: 13px;
  color: var(--c-text2);
  margin-bottom: 1rem;
  text-align: center;
}
.update-abo-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.update-abo-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--c-bg3);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  outline: none;
  transition: border-color .2s;
}
.update-abo-form input[type="email"]:focus { border-color: var(--c-accent); }
.update-abo-form input[type="email"]::placeholder { color: var(--c-text3); }
.update-abo-form button {
  width: 100%;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius-sm);
  color: var(--c-accent);
  cursor: pointer;
  transition: all .2s;
}
.update-abo-form button:hover:not(:disabled) {
  background: var(--c-accent);
  color: var(--c-bg);
}
.update-abo-form button:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.update-abo-confirm {
  color: var(--c-green-text);
  font-size: 13px;
  font-weight: 500;
  padding: .5rem 0;
}

/* Preview cards as links */
a.module-item {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.module-item:hover {
  text-decoration: none;
}
