/* tokens.css is linked separately (versioned) in base.eta — NOT @import-ed here,
   because @import would load it at a stable, unversioned URL that the immutable
   1-year cache would then never refresh after a token change. */

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
  font-family: inherit;
}

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- top nav: full-bleed bar, content aligned to the centred column --- */

.topnav {
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-bg);
}

.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.topnav__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--color-navy);
}

.topnav__brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topnav__brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-bronze);
  display: inline-block;
}

.topnav__links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 13.5px;
  color: var(--color-text-muted);
}

.topnav__links a {
  text-decoration: none;
  transition: color 0.15s ease;
}

.topnav__links a:hover {
  color: var(--color-blue);
}

.topnav__links a[aria-current="page"] {
  color: var(--color-navy);
  font-weight: 700;
}

.topnav__hamburger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.topnav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topnav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topnav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.topnav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile off-canvas panel */

.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: none;
  flex-direction: column;
  padding: 16px 20px 24px;
  z-index: 50;
}

.mobile-panel[data-open="true"] {
  display: flex;
}

.mobile-panel__head {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--color-line);
  margin: 0 -20px 8px;
  padding: 0 20px 12px;
}

.mobile-panel__close {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius);
  background: none;
  color: var(--color-navy);
  cursor: pointer;
}

.mobile-panel__close:hover {
  background: var(--color-panel);
}

.mobile-panel__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  font-size: 17px;
}

.mobile-panel__links a {
  text-decoration: none;
  padding: 15px 4px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-navy);
  font-weight: 700;
}

/* --- lang switch --- */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2px 3px 2px 8px;
  font-size: 13px;
  font-weight: 700;
}

.lang-switch__globe {
  color: var(--color-text-muted);
  margin-right: 4px;
  flex-shrink: 0;
}

.lang-switch a {
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  color: var(--color-navy);
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch a:hover {
  color: var(--color-blue);
}

.lang-switch a[aria-current="true"] {
  background: var(--color-blue);
  color: var(--color-bg);
}

/* larger variant inside the mobile menu panel */
.lang-switch--panel {
  align-self: flex-start;
  margin-top: 22px;
  font-size: 15px;
  padding: 4px 5px 4px 10px;
}

.lang-switch--panel a {
  padding: 8px 14px;
}

.mobile-panel__login {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  font-size: 16px;
  padding: 15px 22px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-bg);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: var(--radius);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-login:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

/* --- buttons --- */

/* primary = filled light-blue (v2). */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-blue);
  border-radius: var(--radius);
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-bg);
  background: var(--color-blue);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

/* secondary = white + hairline border, hover blue */
.btn--secondary {
  background: var(--color-bg);
  color: var(--color-navy);
  border-color: var(--color-line);
}

.btn--secondary:hover {
  background: var(--color-bg);
  color: var(--color-blue);
  border-color: var(--color-blue);
}

/* text-link CTA = bronze bottom-border, navy text (v2) */
.link-cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--color-bronze);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.link-cta:hover {
  color: var(--color-blue);
}

/* --- hero --- */

.hero {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 76px 0 68px;
}

.hero__kicker {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-moss);
  font-weight: 700;
  margin: 0 0 14px;
}

.hero__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hero__body {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* --- numbered index list --- */

.index-list {
  padding: 8px 0 24px;
}

.index-list__item {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 0.5px solid var(--color-border);
}

.index-list__item:last-child {
  border-bottom: 0.5px solid var(--color-border);
}

.index-list__num {
  font-size: 13px;
  color: var(--color-amber);
  font-weight: 700;
  width: 26px;
  flex-shrink: 0;
}

.index-list__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}

.index-list__desc {
  font-size: 16px;
  color: var(--color-text-body);
  margin: 0;
  max-width: 560px;
  line-height: 1.65;
}

/* --- section heading --- */

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* --- fabric: hero-only overlay SVG that draws the depth mesh (no thread, DEC-052) --- */

.fabric-scope {
  position: relative;
}

.fabric {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.fabric-scope > .hero__copy,
.fabric-scope > .hero__illustration {
  position: relative;
  z-index: 1;
}

/* empty box in the hero right column; network.js centres the mesh hub on it */
.hub-anchor {
  width: 100%;
  min-height: 280px;
}

/* --- strand: content section = text + its own self-contained constellation.
   No line connects sections and none touches the text (DEC-052). --- */

.strand {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 84px 0;
}

.strand--first {
  padding-top: 32px;
}

.strand--b {
  flex-direction: row-reverse;
}

.strand__text {
  flex: 1 1 auto;
  max-width: 560px;
}

.strand__viz {
  flex: 0 0 340px;
  display: flex;
  justify-content: center;
}

/* --- product windows: concrete illustrations beside each section (design v2,
   _window.eta). Three types share the same chrome DNA: list / table / browser. --- */

.win {
  width: 100%;
  max-width: 340px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.win__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--color-navy);
}

.win__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.win__dot--bronze {
  background: var(--color-bronze);
}

.win__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-bg);
}

.win__meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-on-navy);
}

.win__body {
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--color-text);
}

.win__body--flush {
  padding: 0;
}

.win__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-line);
}

.win__row:last-child {
  border-bottom: none;
}

.win__rowdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.win__rowdot--blue {
  background: var(--color-blue);
}

.win__rowdot--bronze {
  background: var(--color-bronze);
}

.win__rowlabel {
  flex: 1;
  min-width: 0;
}

.win__tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
}

.win__chip {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-bronze-text);
}

/* table window */
.win-table {
  width: 100%;
  border-collapse: collapse;
}

.win-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--color-panel);
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-line);
}

.win-table td {
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-line);
}

.win-table tr:last-child td {
  border-bottom: none;
}

.win-table__last {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

/* browser window */
.win__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-line);
}

.win__tl {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-browser-dot);
}

.win__url {
  margin-left: 8px;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 3px 10px;
}

.chat {
  font-size: 13px;
  line-height: 1.5;
}

.chat--ask {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--color-text);
  margin-bottom: 10px;
}

.chat--answer {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--color-text);
}

.chat__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bronze);
  margin-top: 5px;
}

.strand__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-amber);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.strand__book {
  flex-shrink: 0;
}

.strand__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.strand__body {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0;
}

.strand__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.strand__link:hover {
  border-color: var(--color-amber);
}

/* Snap-scroll and the guide-arrow overlay were removed 2026-07-02 (design v2):
   the site now uses plain, roomy scrolling — more breathing space, no forced
   per-section jump. Section illustrations are concrete product windows
   (_window.eta), not the old abstract constellations. */

@media (max-width: 760px) {
  .strand,
  .strand--b {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 44px 0;
  }
  .strand__viz {
    order: -1;
    flex-basis: auto;
    align-self: stretch;
    width: 100%;
  }
  /* on mobile every illustration spans the full column width, regardless of its
     content length — otherwise short cards (e.g. members) shrink to content. */
  .win {
    max-width: 100%;
  }
  /* the first section sits right under the hero network on mobile — no second
     network directly below it (DEC-053) */
  .strand--first .strand__viz {
    display: none;
  }
  .constellation {
    max-width: 220px;
  }
  .strand__title {
    font-size: 21px;
  }
}

/* --- footer --- */

.site-footer {
  border-top: 0.5px solid var(--color-border);
  padding: 40px 0 28px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.site-footer__head {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  margin: 0 0 12px;
}

.site-footer__col a {
  display: block;
  padding: 5px 0;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__col a:hover {
  color: var(--color-amber);
}

.site-footer__tagline {
  font-size: 13px;
}

@media (max-width: 560px) {
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* --- lexikon --- */

.lex-search {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 4px 0 32px;
}

.lex-search__input {
  flex: 1;
  font-size: 16px;
  padding: 12px 14px;
  border: 0.5px solid var(--color-border);
  background: var(--color-paper);
  color: var(--color-ink);
}

.lex-search__input:focus {
  outline: none;
  border-color: var(--color-amber);
}

.lex-note {
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 560px;
}

.lex-cat {
  margin: 0 0 28px;
}

.lex-cat__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.lex-cat__count {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.lex-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lex-list li {
  padding: 3px 0;
}

.lex-list a {
  color: var(--color-text-body);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lex-list a:hover {
  color: var(--color-amber);
}

.lex-list--cols {
  columns: 3;
  column-gap: 32px;
}

.lex-list__term {
  font-weight: 700;
  color: var(--color-ink);
}

.lex-list__cat {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .lex-list--cols { columns: 2; }
}

@media (max-width: 560px) {
  .lex-list--cols { columns: 1; }
}

/* --- lexikon entry --- */

.lex-entry {
  max-width: 680px;
  padding: 8px 0 24px;
}

.lex-entry__breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.lex-entry__breadcrumb a {
  color: var(--color-amber);
  text-decoration: none;
}

.lex-entry__term {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.lex-entry__alt {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}

.lex-entry__def {
  font-size: 18px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0 0 20px;
}

.lex-entry__source {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 24px;
}

.lex-entry__source a {
  color: var(--color-amber);
}

/* --- magazin --- */

.mag-list {
  max-width: 720px;
  padding: 8px 0 24px;
}

.mag-item {
  display: block;
  padding: 28px 0;
  border-top: 0.5px solid var(--color-border);
  text-decoration: none;
  color: inherit;
}

.mag-item:last-child {
  border-bottom: 0.5px solid var(--color-border);
}

.mag-item__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 8px;
}

.mag-item__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
  margin: 0 0 8px;
}

.mag-item:hover .mag-item__title {
  color: var(--color-amber);
}

.mag-item__excerpt {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0 0 10px;
  max-width: 620px;
}

.mag-item__more {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-amber);
}

.mag-article {
  max-width: 680px;
  padding: 8px 0 24px;
}

.mag-article__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mag-article__meta a {
  color: var(--color-amber);
  text-decoration: none;
}

.mag-article__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.mag-article__byline {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

.mag-article__back {
  margin-top: 32px;
}

/* rendered markdown article body */
.prose {
  font-size: 17px;
  color: var(--color-text-body);
  line-height: 1.75;
}

.prose h2 {
  font-size: 23px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

.prose h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 28px 0 10px;
}

.prose p {
  margin: 0 0 18px;
}

.prose ul,
.prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.prose li {
  margin: 0 0 8px;
}

.prose a {
  color: var(--color-amber);
}

.prose strong {
  color: var(--color-ink);
}

.prose blockquote {
  margin: 0 0 18px;
  padding-left: 18px;
  border-left: 2px solid var(--color-amber);
  color: var(--color-text-muted);
}

.prose h2 {
  scroll-margin-top: 72px;
}

/* --- magazin: editorial two-column layout + sidebar (DEC-057) --- */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}

@media (min-width: 1000px) {
  .article-layout {
    grid-template-columns: minmax(0, 720px) 300px;
    gap: 56px;
    justify-content: center;
    align-items: start;
  }
}

.article-layout .mag-article {
  max-width: none;
}

.article-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1000px) {
  .article-side {
    position: sticky;
    top: 78px;
  }
}

.side-block {
  border-top: 0.5px solid var(--color-border);
  padding-top: 16px;
}

.side-block__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  margin: 0 0 12px;
}

.side-toc__list,
.side-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-toc__list li {
  margin: 0 0 8px;
}

.side-toc__list a {
  font-size: 14px;
  color: var(--color-text-body);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.side-toc__list a:hover {
  color: var(--color-amber);
}

.share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  border: 0.5px solid var(--color-border);
  background: none;
  color: var(--color-ink);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.share-btn:hover {
  color: var(--color-amber);
  border-color: var(--color-amber);
}

.share-copy.is-copied {
  color: var(--color-moss);
  border-color: var(--color-moss);
}

.side-links li {
  margin: 0 0 6px;
}

.side-links a {
  font-size: 14px;
  color: var(--color-amber);
  text-decoration: none;
}

.side-links a:hover {
  text-decoration: underline;
}

.side-links--stack a {
  color: var(--color-text-body);
  font-weight: 700;
  line-height: 1.4;
  display: block;
  margin-bottom: 10px;
}

.side-links--stack a:hover {
  color: var(--color-amber);
  text-decoration: none;
}

.side-cta {
  background: var(--color-ink);
  color: var(--color-paper);
  border-top: none;
  padding: 20px;
}

.side-cta__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.side-cta__text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  opacity: 0.9;
}

.side-cta .btn {
  border-color: var(--color-paper);
  color: var(--color-paper);
  width: 100%;
  text-align: center;
}

.side-cta .btn:hover {
  background: var(--color-paper);
  color: var(--color-ink);
}

.side-cta__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-paper);
  opacity: 0.85;
  text-decoration: none;
}

.side-cta__link:hover {
  opacity: 1;
}

/* magazin category dropdown (internal linking only, collapsed everywhere) */
.mag-toolbar {
  display: flex;
  justify-content: flex-end;
  max-width: 720px;
  margin: 0 0 20px;
}

.cat-dropdown {
  position: relative;
  font-size: 14px;
}

.cat-dropdown > summary {
  cursor: pointer;
  list-style: none;
  padding: 8px 14px;
  border: 0.5px solid var(--color-border);
  color: var(--color-ink);
  font-weight: 700;
}

.cat-dropdown > summary::-webkit-details-marker {
  display: none;
}

.cat-dropdown > summary::after {
  content: " ▾";
  color: var(--color-text-muted);
}

.cat-dropdown[open] > summary::after {
  content: " ▴";
}

.cat-dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
  min-width: 250px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--color-paper);
  border: 0.5px solid var(--color-border);
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cat-dropdown__menu a {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--color-text-body);
  text-decoration: none;
}

.cat-dropdown__menu a:hover {
  color: var(--color-amber);
}

.cat-dropdown__menu a.is-active {
  color: var(--color-ink);
  font-weight: 700;
}

/* --- scroll-reveal (marketing site only, MANIFEST §4 2026-07-02 loosened animation rule) --- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* --- generic page intro (product/pricing/security) --- */

.page-intro {
  padding: 72px 0 40px;
  max-width: 680px;
}

.page-intro__kicker {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-moss);
  font-weight: 700;
  margin: 0 0 14px;
}

.page-intro__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.page-intro__body {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

.block {
  padding: 44px 0;
  border-top: 0.5px solid var(--color-border);
  max-width: 680px;
}

.block__title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
}

.block__body {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

/* closing call-to-action block (end of every core page) */
.closing-cta {
  border-top: none;
  text-align: center;
  max-width: none;
  padding: 80px 0 48px;
}

.closing-cta .block__title {
  font-size: 24px;
  margin: 0 0 12px;
}

.closing-cta .block__body {
  max-width: 560px;
  margin: 0 auto 22px;
}

/* --- pricing --- */

.price-card {
  border: 0.5px solid var(--color-border);
  padding: 32px 34px;
  max-width: 560px;
}

.price-tag {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 4px;
}

.price-tag__per {
  font-size: 16px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.price-card__lead {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-amber);
  margin: 18px 0 4px;
}

.price-card__note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 16px 0 0;
}

.feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  max-width: 520px;
}

.feature-list li {
  font-size: 16px;
  color: var(--color-text-body);
  padding: 14px 0;
  border-top: 0.5px solid var(--color-border);
}

.feature-list li:last-child {
  border-bottom: 0.5px solid var(--color-border);
}

/* --- faq --- */

.faq-section {
  max-width: 680px;
  padding: 44px 0;
}

.faq-section .block__title {
  margin-bottom: 6px;
}

.faq-item {
  padding: 22px 0;
  border-top: 0.5px solid var(--color-border);
  max-width: 680px;
}

.faq-item:last-child {
  border-bottom: 0.5px solid var(--color-border);
}

.faq-item__q {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.faq-item__a {
  font-size: 16px;
  color: var(--color-text-body);
  margin: 0;
  line-height: 1.6;
}

/* --- legal content --- */

.legal-content h1 {
  font-size: 26px;
  margin: 0 0 8px;
}

.legal-content h2 {
  font-size: 18px;
  margin: 30px 0 8px;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.7;
}

.legal-content {
  padding: 32px 0 48px;
  max-width: 760px;
}

/* --- desktop layout (deliberate, not a mobile-first cascade — DEC-009 correction) --- */

@media (min-width: 1024px) {
  .topnav__links {
    display: flex;
  }

  .topnav__hamburger {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 56px;
    padding: 120px 0 112px;
  }

  .hero__copy {
    flex: 1;
  }

  .hero__illustration {
    flex: 1.15;
  }

  .hero__title {
    font-size: 40px;
  }
}

/* =========================================================================
   Content-Hub portal + Hilfe (design v2, 2026-07-03) — magazine/portal look.
   ========================================================================= */

/* section head: title left, "view all" link right */
.hub-sec__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 20px;
}
.hub-sec__head .section-title {
  margin: 0;
}
.hub-section {
  padding: 20px 0;
}

/* portal entry tiles (Lexikon / Magazin / Hilfe) */
.hub-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 8px 0 12px;
}
.hub-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.hub-tile:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
}
.hub-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--color-panel);
  color: var(--color-blue);
  margin-bottom: 4px;
}
.hub-tile__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
}
.hub-tile__desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.hub-tile__cta {
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-bronze-text);
}

/* magazine feature card (latest article, prominent) */
.feature-card {
  display: block;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  border-top: 3px solid var(--color-bronze);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-pop);
  transform: translateY(-2px);
}
.feature-card__body {
  padding: 24px 26px 26px;
}
.feature-card__meta {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.feature-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.feature-card__excerpt {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 640px;
}
.feature-card__more {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue);
}

/* secondary article grid */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}
.hub-postcard {
  display: block;
  padding: 18px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.hub-postcard:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
}
.hub-postcard__meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 6px;
}
.hub-postcard__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
  margin: 0;
}

/* home "Neu im Magazin" compact list (was unstyled) */
.hub-artlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hub-artlist li {
  border-top: 1px solid var(--color-line);
}
.hub-artlist li:last-child {
  border-bottom: 1px solid var(--color-line);
}
.hub-artlist a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  text-decoration: none;
  color: var(--color-navy);
  transition: color 0.15s ease;
}
.hub-artlist a:hover {
  color: var(--color-blue);
}
.hub-artlist__t {
  font-size: 16px;
  font-weight: 700;
}
.hub-artlist__m {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* lexikon popular terms as pill chips */
.term-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.term-chip {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.term-chip:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: var(--color-bg);
}

/* Hilfe center list */
.help-cats {
  padding: 8px 0 24px;
}
.help-cat {
  margin: 0 0 28px;
}
.help-cat__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-bronze-text);
  margin: 0 0 12px;
}
.help-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.help-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding: 18px 44px 18px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.help-item:hover {
  border-color: var(--color-blue);
  transform: translateY(-1px);
}
.help-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
}
.help-item__desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.help-item__arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--color-blue);
  font-weight: 700;
}

@media (min-width: 720px) {
  .hub-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .help-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================================
   Extended product-window illustration types (design v2, 2026-07-03) — one
   distinct, content-fitting illustration per section (no repeating loop).
   ========================================================================= */

.win-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.win-ic--blue { color: var(--color-blue); }
.win-ic--white { color: var(--color-bg); }
.win-ic--muted { color: var(--color-text-muted); }

/* versions */
.ver-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 3px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.ver-tag--now {
  color: var(--color-bg);
  background: var(--color-bronze);
  border-color: var(--color-bronze);
}
.ver-restore {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-blue);
}

/* governance toggle */
.tgl {
  width: 34px;
  height: 19px;
  border-radius: 11px;
  background: var(--color-blue);
  position: relative;
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0;
}
.tgl::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 17px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-bg);
}

/* team avatar */
.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* tenant isolation */
.win--iso {
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.iso-box {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}
.iso-box--mine {
  border-color: var(--color-blue);
  background: var(--color-panel);
}
.iso-box--others {
  color: var(--color-text-muted);
}
.iso-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  padding: 10px 0;
}

/* delete-confirm */
.win__bar--danger { background: var(--color-danger); }
.del-note {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}
.del-code {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-navy);
  text-align: center;
  padding: 6px 0;
}
.del-input {
  height: 36px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  margin: 8px 0 12px;
}
.del-btn {
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--color-danger);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 14px;
}

/* --- 404 page --- */
.notfound {
  max-width: 560px;
  margin: 0 auto;
  padding: 112px 0 96px;
  text-align: center;
}
.notfound__code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-bronze-text);
  margin: 0 0 12px;
}
.notfound__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.notfound__body {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 28px;
}
.notfound__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
