.content-page { background: #0d1211; }

.content-page .site-header { position: sticky; }
.content-page .site-nav a[aria-current="page"] { color: var(--corporate-green); font-weight: 750; }

.content-hero {
  padding: clamp(70px, 9vw, 130px) 0 clamp(66px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 22%, color-mix(in srgb, var(--page-accent, var(--accent)) 15%, transparent), transparent 32%),
    linear-gradient(145deg, #111816, var(--bg) 62%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span::before { margin-right: 8px; color: #53615e; content: "/"; }

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.content-hero-grid > * { min-width: 0; }

.content-kicker {
  margin: 0 0 18px;
  color: var(--page-accent, var(--accent));
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.content-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.content-lead {
  max-width: 780px;
  margin: 32px 0 0;
  color: #c7d0ce;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.content-hero-aside {
  padding: 28px 0 4px;
  border-top: 1px solid color-mix(in srgb, var(--page-accent, var(--accent)) 55%, var(--line));
}

.content-hero-aside img {
  width: min(220px, 80%);
  max-height: 92px;
  margin-bottom: 32px;
  object-fit: contain;
  object-position: left center;
}

.content-hero-aside img.logo-on-dark-monochrome { filter: brightness(0) invert(1); opacity: .92; }

.content-hero-aside p { margin: 0; color: var(--muted); font-size: 14px; }
.content-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.content-meta span { padding: 7px 9px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.content-layout {
  display: grid;
  grid-template-columns: minmax(200px, .28fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 126px);
  padding-block: clamp(72px, 9vw, 132px);
  align-items: start;
}

.content-toc {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.content-toc strong { padding: 18px 0; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.content-toc a { padding: 13px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-decoration: none; }
.content-toc a:hover { color: var(--text); }

.content-layout > *,
.prose { min-width: 0; }
.prose { max-width: 920px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 88px 0 26px; font-size: clamp(34px, 4.5vw, 58px); line-height: 1; }
.prose h3 { margin: 48px 0 16px; font-size: clamp(23px, 2.8vw, 34px); line-height: 1.15; }
.prose p,
.prose li { color: #bdc8c5; font-size: 17px; line-height: 1.75; }
.prose p { max-width: 76ch; }
.prose a { color: #7be0d4; text-underline-offset: 4px; }
.prose ul,
.prose ol { max-width: 76ch; padding-left: 22px; }
.prose li { margin: 10px 0; padding-left: 6px; }
.prose strong { color: var(--text); }

.fact-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 54px;
}

.fact,
.compare-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.fact span { display: block; margin-bottom: 16px; color: var(--page-accent, var(--accent)); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.fact strong { display: block; font-size: 21px; line-height: 1.25; }
.fact p,
.compare-card p { margin-bottom: 0; font-size: 14px; line-height: 1.6; }

.engineering-note {
  margin: 44px 0;
  padding: 30px 34px;
  border-left: 3px solid var(--page-accent, var(--accent));
  background: color-mix(in srgb, var(--page-accent, var(--accent)) 7%, var(--surface));
}

.engineering-note strong { display: block; margin-bottom: 9px; font-size: 18px; }
.engineering-note p { margin: 0; font-size: 15px; }

.matrix-wrap { width: 100%; max-width: 100%; margin: 36px 0 54px; overflow-x: auto; overscroll-behavior-inline: contain; }
.matrix { width: 100%; min-width: 700px; border-collapse: collapse; }
.matrix th,
.matrix td { padding: 17px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.matrix th { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.matrix td { color: #bdc8c5; font-size: 14px; }

.source-list {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.source-list h2 { margin-top: 0; font-size: 28px; }
.source-list li { font-size: 13px; }

.content-cta {
  padding-block: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.content-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.content-cta h2 { max-width: 800px; margin: 0; font-size: clamp(34px, 5vw, 68px); }
.content-cta p { max-width: 700px; color: var(--muted); }

.compact-footer { padding: 52px 0 24px; border-top: 1px solid var(--corporate-line); background: #f5f6f3; color: var(--corporate-ink); }
.compact-footer-main { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.compact-footer .competence-logo { width: 180px; margin-bottom: 18px; }
.compact-footer p { max-width: 620px; color: #5b635c; font-size: 13px; }
.compact-footer-nav { display: flex; flex-wrap: wrap; gap: 9px 22px; justify-content: flex-end; max-width: 520px; }
.compact-footer-nav a { color: inherit; font-size: 13px; text-decoration: none; }
.compact-footer-bottom { margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--corporate-line); color: #667067; font-size: 11px; }

.hub-hero h1 { max-width: 1160px; }
.hub-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.hub-card { grid-column: span 6; min-height: 330px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); background: var(--surface); color: inherit; text-decoration: none; transition: transform .28s ease, border-color .28s ease; }
.hub-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.hub-card-wide { grid-column: span 8; }
.hub-card-small { grid-column: span 4; }
.hub-card span { color: var(--accent); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hub-card h2 { margin: auto 0 18px; font-size: clamp(27px, 3vw, 43px); line-height: 1.03; }
.hub-card p { margin: 0; color: var(--muted); }
.hub-section { padding-block: clamp(70px, 8vw, 116px); }
.hub-section-title { max-width: 760px; margin-bottom: 50px; }
.hub-section-title h2 { margin-bottom: 18px; }
.hub-section-title p { color: var(--muted); }

.related-block { margin-top: 78px; padding-top: 32px; border-top: 1px solid var(--line); }
.related-block > h2 { margin: 0 0 28px; font-size: clamp(28px, 3vw, 42px); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.related-grid a { display: flex; min-height: 220px; flex-direction: column; padding: 24px; background: var(--surface); color: inherit; text-decoration: none; transition: background .25s ease, transform .25s ease; }
.related-grid a:hover { background: var(--surface-2); transform: translateY(-3px); }
.related-grid span { color: var(--page-accent, var(--accent)); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.related-grid strong { margin: auto 0 10px; font-size: 20px; line-height: 1.15; }
.related-grid small { color: var(--muted); font-size: 12px; line-height: 1.5; }

@media (max-width: 900px) {
  .content-hero-grid,
  .content-layout,
  .content-cta-grid { grid-template-columns: 1fr; }
  .content-hero-aside { max-width: 560px; }
  .content-toc { position: static; grid-template-columns: repeat(2, 1fr); }
  .content-toc strong { grid-column: 1 / -1; }
  .content-toc a { padding-right: 12px; }
  .hub-card,
  .hub-card-wide,
  .hub-card-small { grid-column: span 6; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { min-height: 170px; }
}

@media (max-width: 680px) {
  .content-hero { padding-top: 52px; }
  .content-hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .content-hero h1 { overflow-wrap: anywhere; hyphens: auto; }
  .content-layout { gap: 58px; }
  .content-toc { grid-template-columns: 1fr; }
  .fact-grid,
  .compare-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card,
  .hub-card-wide,
  .hub-card-small { grid-column: auto; min-height: 280px; }
  .compact-footer-main { grid-template-columns: 1fr; }
  .compact-footer-nav { justify-content: flex-start; }
}
