@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=IBM+Plex+Sans+Condensed:wght@300;400;600&display=swap");

:root {
  --font-family: "IBM Plex Sans", system-ui, sans-serif;
  --font-heading: "IBM Plex Sans Condensed", "IBM Plex Sans", system-ui, sans-serif;
  --color-bg: #f5f2ec;
  --color-surface: #ffffff;
  --color-surface-soft: #f4f7fa;
  --color-text: #0b1422;
  --color-muted: #5a6478;
  --color-border: rgba(14, 42, 77, 0.14);
  --color-primary: #0e2a4d;
  --color-primary-dark: #081c36;
  --color-primary-soft: rgba(14, 42, 77, 0.08);
  --color-accent: #bc1b25;
  --color-footer: #081c36;
  --color-shadow: rgba(8, 28, 54, 0.10);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --sidebar-width: 310px;
}
* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-family); font-size: 1rem; line-height: 1.5; color: var(--color-text); background: var(--color-bg); }
html.doc-layout-pending .app-shell { opacity: 0; }
html.doc-layout-ready .app-shell { opacity: 1; transition: opacity 0.14s ease; }
html.doc-layout-leaving .app-shell { opacity: 0.92; }
.doc-icon { --doc-icon-size: 1.1em; width: var(--doc-icon-size); height: var(--doc-icon-size); display: inline-grid; place-items: center; flex: 0 0 auto; color: var(--color-accent); line-height: 1; vertical-align: -0.16em; }
.doc-icon svg { width: 100%; height: 100%; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-icon { display: inline-flex; align-items: center; justify-content: center; }
.nav-icon .doc-icon { --doc-icon-size: 1.05rem; }
.search > .doc-icon { --doc-icon-size: 1rem; }
.dropdown-indicator .doc-icon, .landing-direct-arrow .doc-icon { --doc-icon-size: 1rem; color: currentColor; }
.landing-icon .doc-icon, .card-icon .doc-icon { --doc-icon-size: 1.3rem; }
.landing-icon, .card-icon { color: var(--color-accent); }
h1 > .doc-icon, h2 > .doc-icon, h3 > .doc-icon { margin-right: 0.42em; color: var(--color-accent); }
.hero h1 > .doc-icon { --doc-icon-size: 0.72em; vertical-align: -0.08em; }
.section-header h2 > .doc-icon, .article-block h2 > .doc-icon { --doc-icon-size: 0.82em; }
.detail-block h3 > .doc-icon, .article-block h3 > .doc-icon { --doc-icon-size: 0.95em; }
.nav-lock.doc-icon { --doc-icon-size: 0.9rem; margin-left: auto; color: var(--color-accent); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-primary); }
code { padding: 2px 5px; border-radius: 6px; background: var(--color-surface-soft); color: var(--color-primary-dark); font-family: Consolas, "Courier New", monospace; font-size: 0.95em; overflow-wrap: anywhere; word-break: break-word; }
.app-shell { min-height: 100vh; display: grid; grid-template-columns: var(--sidebar-width) minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; background: var(--color-surface); border-right: 2px solid var(--color-accent); padding: 28px 22px; }
.sidebar-close-btn, .mobile-menu-btn, .sidebar-backdrop { display: none; }
.auth-only[hidden], .internal-nav { display: none !important; }
.is-authenticated .internal-nav:not([hidden]) { display: block !important; }
[data-auth-required="true"] .auth-protected { visibility: hidden; }
[data-auth-required="true"].auth-ready .auth-protected { visibility: visible; }
.brand { display: flex; align-items: center; margin-bottom: 28px; padding: 4px 2px; }
.brand-logo { display: block; width: min(100%, 205px); height: auto; transition: opacity 0.2s ease, transform 0.2s ease; }
.brand:hover .brand-logo { opacity: 0.88; transform: translateY(-1px); }
.sidebar-label { display: block; margin: 24px 0 10px; color: var(--color-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-label-link { margin-left: -6px; margin-right: -6px; padding: 5px 6px; border-radius: var(--radius-sm); }
.sidebar-label-link:hover, .sidebar-label-link.active, .sidebar-label-link.is-section-active, .sidebar-label-link[aria-current="page"] { color: var(--color-primary-dark); background: var(--color-primary-soft); }
.nav-empty { margin: 8px 0 0; color: var(--color-muted); font-size: 0.875rem; }
.nav-list, .subnav-list { list-style: none; padding: 0; margin: 0; }
.nav-group { border-radius: var(--radius-sm); }
.nav-group > summary.nav-link { list-style: none; user-select: none; }
.nav-group > summary.nav-link::-webkit-details-marker { display: none; }
.nav-label { flex: 1; }
.dropdown-indicator { margin-left: auto; color: var(--color-muted); transition: transform 0.2s ease; }
.nav-group[open] .dropdown-indicator { transform: rotate(180deg); }
.nav-item { margin-bottom: 8px; }
.nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-weight: 600; color: var(--color-text); cursor: pointer; }
.nav-link:hover, .nav-link.active, .nav-link.is-current { background: var(--color-primary-soft); color: var(--color-primary-dark); }
.nav-icon { width: 1.35rem; text-align: center; font-size: 1rem; }
.subnav-list { margin: 5px 0 12px 39px; padding-left: 12px; border-left: 1px solid var(--color-border); }
.subnav-list a { display: block; padding: 6px 0; color: var(--color-muted); font-size: 0.875rem; cursor: pointer; overflow-wrap: anywhere; }
.subnav-list a:hover, .subnav-list a.active, .subnav-list a[aria-current="page"] { color: var(--color-primary); }
.subnav-list a.active, .subnav-list a[aria-current="page"] { margin-left: -12px; padding-left: 9px; border-left: 3px solid var(--color-primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--color-primary-soft); font-weight: 700; }
.subnav-list a.subnav-heading.active, .subnav-list a.subnav-heading[aria-current="page"] { margin-left: 0; padding-left: 0; border-left: 0; border-radius: 0; background: transparent; color: var(--color-muted); font-weight: 400; }
.subnav-text { display: block; padding: 6px 0; color: var(--color-muted); font-size: 0.875rem; overflow-wrap: anywhere; }
.subnav-heading { display: block; padding: 6px 0; color: var(--color-muted); font-size: 0.875rem; font-weight: 400; text-transform: none; letter-spacing: 0; overflow-wrap: anywhere; }
.nav-item.is-hidden, .subnav-list li.is-hidden { display: none; }
.main { min-width: 0; }
.topbar { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px 36px; background: var(--color-primary-dark); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.topbar-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.breadcrumb { min-width: 0; display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.84); font-size: 0.82rem; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.breadcrumb.is-empty { visibility: hidden; }
.breadcrumb a { color: rgba(255, 255, 255, 0.84); text-decoration: none; }
.breadcrumb a:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb-current { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.breadcrumb-separator { color: rgba(255, 255, 255, 0.46); }
.search { position: relative; z-index: 30; width: min(320px, 100%); display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface); color: var(--color-muted); box-shadow: 0 8px 18px var(--color-shadow); }
.search input { width: 100%; border: 0; outline: 0; background: transparent; font: inherit; color: var(--color-text); }
.search input::placeholder { color: var(--color-muted); }
.search-autocomplete { position: absolute; top: calc(100% + 10px); right: 0; z-index: 90; width: min(560px, calc(100vw - 32px)); max-height: min(72vh, 560px); overflow: auto; padding: 10px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); color: var(--color-text); box-shadow: 0 20px 42px var(--color-shadow); }
.search-autocomplete[hidden] { display: none; }
.search-autocomplete-label { padding: 4px 8px 9px; color: var(--color-muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.search-result-group { padding-top: 8px; border-top: 1px solid var(--color-border); }
.search-result-group:first-of-type { padding-top: 0; border-top: 0; }
.search-result-group + .search-result-group { margin-top: 8px; }
.search-result-category { padding: 7px 8px 5px; color: var(--color-primary-dark); font-size: 0.82rem; font-weight: 800; }
.search-result-link { display: grid; gap: 3px; padding: 9px 10px; border-radius: var(--radius-sm); color: var(--color-text); text-decoration: none; }
.search-result-link:hover, .search-result-link.is-active { background: var(--color-primary-soft); color: var(--color-primary-dark); }
.search-result-title { font-weight: 800; line-height: 1.25; overflow-wrap: anywhere; }
.search-result-meta, .search-result-snippet { color: var(--color-muted); font-size: 0.82rem; line-height: 1.35; overflow-wrap: anywhere; }
.search-empty-state { padding: 14px 10px; color: var(--color-muted); font-size: 0.92rem; }
.search-highlight { padding: 0 2px; border-radius: 4px; background: rgba(247, 148, 29, 0.24); color: inherit; }
.search-recent-query { width: 100%; display: block; padding: 9px 10px; border: 0; border-radius: var(--radius-sm); background: transparent; color: var(--color-text); font: inherit; font-weight: 700; text-align: left; cursor: pointer; }
.search-recent-query:hover { background: var(--color-primary-soft); color: var(--color-primary-dark); }
.content { width: 100%; max-width: none; min-width: 0; margin: 0; padding: 32px clamp(16px, 1.8vw, 30px) 124px; }
.hero { min-width: 0; padding: 32px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(14, 42, 77, 0.08), rgba(188, 27, 37, 0.05)), var(--color-surface); box-shadow: 0 18px 45px var(--color-shadow); margin-bottom: 24px; overflow-wrap: anywhere; }
.eyebrow { margin: 0 0 10px; color: var(--color-accent); font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; }
.page-status { display: inline-flex; align-items: center; margin: -2px 0 14px; padding: 4px 9px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface-soft); color: var(--color-muted); font-size: 0.8rem; font-weight: 700; }
h1, h2, h3 { margin-top: 0; font-family: var(--font-heading); line-height: 1.2; color: var(--color-text); overflow-wrap: anywhere; word-break: normal; }
h1, h2 { font-weight: 300; }
h1 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { margin-bottom: 16px; font-size: clamp(1.5rem, 2vw, 2rem); }
h3 { margin-bottom: 8px; font-size: 1.15rem; }
p { margin-top: 0; }
.hero-text { max-width: 980px; margin-bottom: 24px; color: var(--color-muted); font-size: 1.125rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pill-list a, .pill-list span { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 10px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface-soft); color: var(--color-text); font-size: 0.9rem; font-weight: 600; }
.pill-list a:hover { border-color: var(--color-primary); color: var(--color-primary-dark); background: var(--color-primary-soft); }
.section { margin-top: 34px; }
.section-header { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 16px; }
.section-header p { margin: 0; color: var(--color-muted); max-width: 860px; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card { grid-column: span 6; min-width: 0; min-height: 170px; padding: 20px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: 0 12px 28px var(--color-shadow); overflow-wrap: anywhere; }
.card.full { grid-column: span 12; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 14px; background: var(--color-primary-soft); color: var(--color-primary); font-size: 1.35rem; }
.card h2, .card h3, .card p, .card li { overflow-wrap: anywhere; word-break: normal; }
.card p { color: var(--color-muted); margin-bottom: 12px; }
.card ul { margin: 0; padding-left: 20px; }
.card li { margin-bottom: 8px; }
.detail-list { display: grid; gap: 24px; }
.detail-block { padding-bottom: 22px; border-bottom: 1px solid var(--color-border); }
.detail-block:last-child { padding-bottom: 0; border-bottom: 0; }
.detail-block h3 { margin: 0 0 10px; font-size: 1.2rem; }
.detail-block p { margin: 0; color: var(--color-muted); line-height: 1.6; }
.detail-block .check-list { margin: 0; padding-left: 22px; color: var(--color-muted); }
.index-panel { padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); box-shadow: 0 12px 28px var(--color-shadow); }
.index-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.index-link { display: block; padding: 14px; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-surface-soft); color: var(--color-text); font-weight: 700; text-decoration: none; cursor: pointer; overflow-wrap: anywhere; }
.index-link span { display: block; margin-top: 4px; color: var(--color-muted); font-size: 0.875rem; font-weight: 400; }
.home-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.home-tile { min-width: 0; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 28px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: 0 12px 28px var(--color-shadow); overflow-wrap: anywhere; }
.home-tile:hover { border-color: var(--color-primary); color: inherit; background: var(--color-surface); transform: translateY(-2px); }
.home-tile h2 { margin-bottom: 10px; font-size: clamp(1.45rem, 2vw, 2rem); overflow-wrap: anywhere; }
.home-tile p { margin: 0; color: var(--color-muted); max-width: 520px; overflow-wrap: anywhere; }
.tile-graphic { min-height: 180px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: linear-gradient(135deg, var(--color-surface-soft), rgba(88, 163, 153, 0.12)); overflow: hidden; }
.tech-graphic { width: min(100%, 360px); height: auto; color: var(--color-primary); }
.home-content { min-height: calc(100vh - 85px); display: flex; flex-direction: column; padding-top: 8px; padding-bottom: 4px; }
.home-content .hero { padding: 8px 14px; margin-bottom: 8px; }
.home-content h1 { margin-bottom: 4px; font-size: clamp(1.2rem, 1.5vw, 1.6rem); }
.home-content .hero-text { margin-bottom: 0; max-width: none; font-size: 0.82rem; line-height: 1.28; }
.home-content .pill-list { display: none; margin-top: 8px; gap: 6px; }
.home-content .pill-list a, .home-content .pill-list span { min-height: 26px; padding: 4px 8px; font-size: 0.78rem; }
.home-section { flex: 1; min-height: 0; display: flex; flex-direction: column; margin-top: 0; }
.home-section .section-header { margin-bottom: 4px; }
.home-section .section-header h2 { margin-bottom: 2px; font-size: 1rem; }
.home-section .section-header p { font-size: 0.78rem; }
.home-section .home-grid { flex: 1; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(140px, 1fr)); gap: 12px; }
.home-section .home-tile { min-height: 0; padding: 12px; gap: 6px; overflow: hidden; }
.home-section .home-tile-feature { grid-column: span 2; flex-direction: row; align-items: center; }
.home-section .home-tile-feature .tile-graphic { width: min(36%, 180px); min-width: 140px; flex: 0 0 auto; }
.home-section .home-tile h2 { margin-bottom: 5px; font-size: clamp(1.05rem, 1.2vw, 1.22rem); }
.home-section .home-tile p { font-size: 0.78rem; line-height: 1.26; }
.home-section .tile-graphic { min-height: clamp(48px, 7vh, 82px); }
.home-section .tech-graphic { width: min(100%, 170px); max-height: clamp(62px, 8vh, 90px); }
.home-content .footer { margin-top: 6px; padding-top: 5px; padding-bottom: 5px; font-size: 0.82rem; }
.home-content .site-footer-mark { width: 28px; height: 28px; border-radius: 8px; }
.start-home-content { min-height: calc(100vh - 77px); padding: 0; overflow: hidden; }
.doc-home-hero { position: relative; min-height: calc(100vh - 77px); display: grid; align-items: center; overflow: hidden; color: #ffffff; background: #081c36 url("assets/startseite/plexlog-hero-poster.jpg") center / cover no-repeat; }
.doc-home-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.doc-home-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 28, 54, 0.86) 0%, rgba(8, 28, 54, 0.66) 42%, rgba(8, 28, 54, 0.44) 100%), rgba(8, 28, 54, 0.24); }
.doc-home-inner { position: relative; z-index: 1; width: min(100%, 1560px); margin: 0 auto; display: grid; grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr); gap: clamp(28px, 4vw, 70px); align-items: center; padding: clamp(28px, 3.8vw, 56px); }
.doc-home-main { min-width: 0; }
.doc-home-kicker { width: fit-content; display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; padding: 10px 16px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; background: rgba(255, 255, 255, 0.13); color: rgba(255, 255, 255, 0.9); font-weight: 800; box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18); }
.doc-home-kicker span { width: 10px; height: 10px; border-radius: 50%; background: #45d9a5; box-shadow: 0 0 0 8px rgba(69, 217, 165, 0.13); }
.doc-home-main h1 { margin: 0 0 12px; color: #ffffff; font-family: var(--font-heading); font-size: 8.4rem; font-weight: 300; line-height: 0.9; letter-spacing: 0; white-space: nowrap; }
.doc-home-lead { max-width: 780px; margin: 0 0 22px; color: rgba(255, 255, 255, 0.82); font-size: 1.18rem; line-height: 1.5; }
.doc-home-search.search { width: min(720px, 100%); min-height: 52px; margin: 0 0 20px; padding: 12px 18px; border-color: rgba(255, 255, 255, 0.36); background: rgba(255, 255, 255, 0.94); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28); }
.doc-home-search.search input { font-size: 1.04rem; }
.doc-home-search .search-autocomplete { left: 0; right: auto; width: min(720px, calc(100vw - var(--sidebar-width) - 72px)); }
.doc-home-actions { justify-self: end; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: min(940px, 100%); }
.doc-home-actions a { min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 13px 20px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.12); color: #ffffff; font-weight: 800; backdrop-filter: blur(12px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16); }
.doc-home-actions a:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.48); background: rgba(188, 27, 37, 0.88); color: #ffffff; }
.doc-home-actions a:last-child:nth-child(odd) { grid-column: auto; }
.doc-home-actions span { color: #ff7f7b; font-size: 0.76rem; letter-spacing: 0.08em; }
.doc-home-status { min-width: 0; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); background: rgba(8, 28, 54, 0.88); color: #ffffff; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34); backdrop-filter: blur(18px); }
.doc-home-status-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.doc-home-status-head strong { position: relative; padding-left: 18px; letter-spacing: 0.02em; }
.doc-home-status-head strong::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 8px; height: 8px; border-radius: 50%; background: #ff7f7b; }
.doc-home-status-head span { color: rgba(255, 255, 255, 0.58); font-weight: 800; white-space: nowrap; }
.doc-home-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 20px 0; }
.doc-home-metrics div { min-height: 102px; display: grid; align-content: center; justify-items: center; gap: 4px; padding: 12px 10px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.06); text-align: center; }
.doc-home-metrics strong { font-size: 2.45rem; line-height: 1; }
.doc-home-metrics span { color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; font-weight: 800; }
.doc-home-status-list { display: grid; gap: 9px; }
.doc-home-status-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.78); font-weight: 800; }
.doc-home-status-list a:hover { background: rgba(255, 255, 255, 0.11); color: #ffffff; }
.doc-home-status-list strong { color: #45d9a5; }
.landing-grid, .landing-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.landing-group { min-width: 0; min-height: 124px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: 0 12px 28px var(--color-shadow); overflow: hidden; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.landing-group > summary { display: flex; align-items: center; gap: 14px; min-height: 124px; padding: 20px; cursor: pointer; list-style: none; }
.landing-group > summary::-webkit-details-marker { display: none; }
.landing-group[open] > summary { border-bottom: 0; background: transparent; }
.landing-group:not(.is-submenu-active):hover { transform: translateY(-2px); border-color: var(--color-primary); box-shadow: 0 16px 34px var(--color-shadow); }
.landing-direct { display: flex; align-items: center; gap: 14px; min-height: 124px; padding: 20px; color: inherit; cursor: pointer; }
.landing-direct:hover { border-color: var(--color-primary); color: inherit; background: var(--color-surface-soft); }
.landing-direct-arrow { margin-left: auto; color: var(--color-muted); font-weight: 800; }
.landing-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: var(--color-primary-soft); color: var(--color-primary); font-size: 1.25rem; }
.landing-title { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.landing-title strong { display: block; color: var(--color-text); font-size: 1.08rem; }
.landing-title span { display: block; margin-top: 2px; color: var(--color-muted); font-size: 0.86rem; }
.landing-links { list-style: none; margin: 0; padding: 14px 20px 18px 74px; columns: 1; column-gap: 0; }
.landing-links li { break-inside: avoid; margin-bottom: 7px; }
.landing-links a, .landing-links .subnav-text { color: var(--color-muted); font-size: 0.9rem; overflow-wrap: anywhere; }
.landing-links a:hover { color: var(--color-primary-dark); }
.landing-links .subnav-heading { display: block; margin-top: 6px; padding: 5px 0 3px; color: var(--color-text); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
@media (min-width: 981px) {
  .landing-navigation-section { min-height: calc(100dvh - 230px); display: flex; flex-direction: column; }
  .landing-menu-overview:not(.is-submenu) { flex: 1; align-content: start; }
  .landing-menu-overview:not(.is-submenu) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .landing-menu-overview:not(.is-submenu) > .landing-group { min-height: 180px; }
  .landing-menu-overview:not(.is-submenu) > .landing-group > summary,
  .landing-menu-overview:not(.is-submenu) > .landing-direct { min-height: 180px; padding: 24px; }
  .landing-menu-overview:not(.is-submenu) .landing-icon { width: 56px; height: 56px; border-radius: 16px; }
  .landing-menu-overview:not(.is-submenu) .landing-title strong { font-size: 1.18rem; }
  .landing-menu-overview:not(.is-submenu) .landing-title span { margin-top: 6px; font-size: 0.92rem; }
}
:is(.landing-grid, .landing-list).is-submenu { display: block; }
:is(.landing-grid, .landing-list).is-submenu > .landing-group:not(.is-submenu-active), :is(.landing-grid, .landing-list).is-submenu > .landing-direct { display: none; }
:is(.landing-grid, .landing-list).is-submenu > .landing-group.is-submenu-active { min-height: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; transform: none; }
:is(.landing-grid, .landing-list).is-submenu > .landing-group.is-submenu-active > summary { display: none; }
:is(.landing-grid, .landing-list).is-submenu .landing-group-body { padding: 0; }
.landing-submenu-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.landing-submenu-title { margin: 0; font-size: clamp(1.45rem, 2vw, 2rem); }
.landing-submenu-back { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; font-weight: 800; cursor: pointer; box-shadow: 0 8px 18px var(--color-shadow); }
.landing-submenu-back:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
:is(.landing-grid, .landing-list).is-submenu .landing-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; padding: 0; }
:is(.landing-grid, .landing-list).is-submenu .landing-links li { display: flex; min-width: 0; min-height: 94px; margin: 0; }
:is(.landing-grid, .landing-list).is-submenu .landing-links a { width: 100%; display: flex; align-items: center; padding: 16px 18px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); color: var(--color-text); font-size: 0.96rem; font-weight: 800; box-shadow: 0 9px 22px var(--color-shadow); overflow-wrap: anywhere; transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease; }
:is(.landing-grid, .landing-list).is-submenu .landing-links a::after { content: '\2192'; margin-left: auto; padding-left: 14px; color: var(--color-primary); font-size: 1.1rem; }
:is(.landing-grid, .landing-list).is-submenu .landing-links a:hover { transform: translateY(-2px); border-color: var(--color-primary); color: var(--color-primary-dark); }
:is(.landing-grid, .landing-list).is-submenu .landing-links .subnav-heading { margin: 0; text-transform: none; letter-spacing: 0; font-size: 0.96rem; }
.tutorial-app { display: grid; gap: 18px; }
.tutorial-category-tabs { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 0 2px; }
.tutorial-category-tab { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface); color: var(--color-muted); font: inherit; font-weight: 800; cursor: pointer; box-shadow: 0 8px 18px var(--color-shadow); }
.tutorial-category-tab span { min-width: 24px; min-height: 24px; display: inline-grid; place-items: center; padding: 0 7px; border-radius: 999px; background: var(--color-surface-soft); color: var(--color-muted); font-size: 0.76rem; }
.tutorial-category-tab:hover, .tutorial-category-tab.is-active { border-color: var(--color-primary); background: var(--color-primary); color: #ffffff; }
.tutorial-category-tab.is-active span, .tutorial-category-tab:hover span { background: rgba(255, 255, 255, 0.16); color: #ffffff; }
.tutorial-watch-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.85fr); gap: 22px; align-items: start; }
.tutorial-feature, .tutorial-related { min-width: 0; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: 0 12px 28px var(--color-shadow); overflow: hidden; }
.tutorial-main-video { position: relative; width: 100%; aspect-ratio: 16 / 9; min-height: 270px; overflow: hidden; background: #071d2f; }
.tutorial-main-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: #071d2f; }
.tutorial-main-poster { position: absolute; inset: 0; width: 100%; height: 100%; display: block; padding: 0; border: 0; background: #071d2f; color: #ffffff; cursor: pointer; font: inherit; text-align: left; }
.tutorial-main-poster img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.18s ease; }
.tutorial-main-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 28, 54, 0.04), rgba(8, 28, 54, 0.5)); }
.tutorial-main-poster:hover img { transform: scale(1.025); }
.tutorial-main-play { position: absolute; left: 50%; top: 50%; z-index: 1; width: 74px; height: 74px; display: grid; place-items: center; border-radius: 999px; transform: translate(-50%, -50%); background: var(--color-primary); color: #ffffff; box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3); }
.tutorial-main-play .doc-icon { --doc-icon-size: 2.6rem; color: #ffffff; }
.tutorial-main-poster-caption { position: absolute; left: 18px; bottom: 18px; z-index: 1; padding: 8px 12px; border-radius: 999px; background: rgba(8, 28, 54, 0.86); color: #ffffff; font-size: 0.84rem; font-weight: 800; }
.tutorial-embed-helper { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-md); background: rgba(8, 29, 52, 0.88); color: #ffffff; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28); opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease; }
.tutorial-embed-helper.is-visible, .tutorial-embed-helper:focus-within { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tutorial-embed-helper span { min-width: 0; color: rgba(255, 255, 255, 0.88); font-size: 0.82rem; line-height: 1.35; }
.tutorial-embed-helper a, .tutorial-embed-fallback a { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 34px; padding: 7px 11px; border-radius: 999px; background: #ffffff; color: var(--color-primary); font-size: 0.82rem; font-weight: 900; }
.tutorial-embed-helper a:hover, .tutorial-embed-fallback a:hover { color: var(--color-primary-dark); }
.tutorial-embed-fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; overflow: hidden; background: #071d2f; color: #ffffff; text-align: center; }
.tutorial-embed-fallback img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: saturate(0.8); }
.tutorial-embed-fallback::after { content: ""; position: absolute; inset: 0; background: rgba(7, 29, 47, 0.68); }
.tutorial-embed-fallback-content { position: relative; z-index: 1; display: grid; justify-items: center; gap: 12px; max-width: 520px; }
.tutorial-embed-fallback strong { font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.2; }
.tutorial-embed-fallback p { margin: 0; color: rgba(255, 255, 255, 0.82); line-height: 1.45; }
.tutorial-main-copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 16px; align-items: center; padding: 14px 18px 16px; }
.tutorial-main-category { margin: 0 0 8px; color: var(--color-primary); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.tutorial-main-copy h3 { margin: 0; color: var(--color-text); font-size: clamp(1.12rem, 1.5vw, 1.45rem); line-height: 1.22; }
.tutorial-main-copy p { margin: 0; color: var(--color-muted); line-height: 1.45; }
.tutorial-main-copy .tutorial-main-category, .tutorial-main-copy h3, .tutorial-main-copy p { grid-column: 1; }
.tutorial-main-copy p:not(.tutorial-main-category) { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tutorial-main-link { grid-column: 2; grid-row: 1 / span 3; display: inline-flex; width: fit-content; min-height: 38px; align-items: center; padding: 8px 12px; border-radius: var(--radius-sm); background: var(--color-primary); color: #ffffff; font-weight: 800; white-space: nowrap; }
.tutorial-main-link:hover { background: var(--color-primary-dark); color: #ffffff; }
.tutorial-related { display: grid; grid-template-rows: auto minmax(0, 1fr); align-content: stretch; height: var(--tutorial-related-height, auto); min-height: 0; max-height: none; }
.tutorial-related-header { padding: 16px 16px 12px; border-bottom: 1px solid var(--color-border); background: var(--color-surface-soft); }
.tutorial-related-header h3 { margin: 0 0 4px; color: var(--color-text); font-size: 1.02rem; }
.tutorial-related-header p { margin: 0; color: var(--color-muted); font-size: 0.84rem; font-weight: 700; }
.tutorial-related-list { display: grid; align-content: start; gap: 0; overflow: hidden; }
.tutorial-related-item { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 13px; align-items: center; padding: 12px 13px; border: 0; border-bottom: 1px solid var(--color-border); background: var(--color-surface); color: inherit; font: inherit; text-align: left; cursor: pointer; }
.tutorial-related-item:hover { background: var(--color-surface-soft); }
.tutorial-related-item img { width: 150px; aspect-ratio: 16 / 9; display: block; object-fit: cover; border-radius: var(--radius-sm); background: #071d2f; box-shadow: 0 8px 18px var(--color-shadow); }
.tutorial-related-copy { min-width: 0; display: grid; gap: 5px; }
.tutorial-related-copy strong { color: var(--color-text); font-size: 0.96rem; line-height: 1.22; }
.tutorial-related-copy span { color: var(--color-muted); font-size: 0.78rem; line-height: 1.32; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tech-graphic .line { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.tech-graphic .thin { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: 0.55; }
.tech-graphic .panel { fill: var(--color-surface); stroke: var(--color-border); stroke-width: 2; }
.tech-graphic .soft { fill: var(--color-primary-soft); }
.tech-graphic .teal { fill: var(--color-accent); }
.tech-graphic .amber { fill: var(--color-footer); }
.tech-graphic .green { fill: var(--color-primary); }
.article-shell { display: block; }
.article-toc { display: none; }
.article-toc strong { display: block; margin-bottom: 10px; font-size: 0.95rem; }
.article-toc a { display: block; padding: 7px 0; color: var(--color-muted); font-size: 0.9rem; border-top: 1px solid transparent; }
.article-toc a:hover { color: var(--color-primary-dark); }
.article-body { display: grid; gap: 14px; }
.article-block { min-width: 0; padding: clamp(18px, 1.6vw, 24px); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: 0 12px 28px var(--color-shadow); overflow-wrap: anywhere; }
.article-block h2 { margin-bottom: 10px; font-size: 1.55rem; }
.article-block h3 { margin-top: 20px; }
.article-block p { color: var(--color-muted); }
.article-block ul, .article-block ol { margin: 12px 0 0; padding-left: 22px; color: var(--color-muted); }
.article-block li { margin-bottom: 8px; }
.doc-note, .doc-warning { margin-top: 16px; padding: 15px 16px; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-surface-soft); color: var(--color-text); }
.doc-warning { border-color: rgba(220, 53, 69, 0.35); background: rgba(220, 53, 69, 0.08); }
.compat-tool { display: grid; gap: 18px; margin-top: 18px; }
.compat-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.compat-field { display: grid; gap: 8px; color: var(--color-text); font-weight: 700; }
.compat-field span { font-size: 0.9rem; }
.compat-select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; box-shadow: 0 8px 18px var(--color-shadow); }
.compat-select:disabled { color: var(--color-muted); background: var(--color-surface-soft); box-shadow: none; }
.compat-result { padding: 18px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface-soft); }
.compat-result strong { display: block; margin-bottom: 6px; color: var(--color-text); font-size: 1.05rem; }
.compat-result p { margin-bottom: 12px; }
.compat-result-link { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 12px; border-radius: var(--radius-sm); background: var(--color-primary); color: #ffffff; font-weight: 700; }
.compat-result-link[hidden] { display: none; }
.compat-result-link:hover { color: #ffffff; background: var(--color-primary-dark); }
.compat-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 14px 0 0; }
.compat-meta[hidden], .compat-related[hidden] { display: none; }
.compat-meta div { padding: 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); }
.compat-meta dt { margin-bottom: 4px; color: var(--color-muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.compat-meta dd { margin: 0; color: var(--color-text); font-weight: 700; overflow-wrap: anywhere; }
.compat-related { margin-top: 14px; padding: 14px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); }
.compat-related strong { display: block; margin-bottom: 8px; color: var(--color-text); }
.compat-related ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.compat-related a { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 10px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface-soft); color: var(--color-primary-dark); font-size: 0.86rem; font-weight: 700; }
.compat-related a:hover { border-color: var(--color-primary); background: var(--color-primary-soft); }
.compat-contact-form { display: grid; gap: 14px; margin-top: 16px; }
.auth-form { display: grid; gap: 14px; max-width: 520px; margin-top: 16px; }
.login-content { height: calc(100vh - 85px); min-height: 0; display: flex; flex-direction: column; padding-top: 12px; padding-bottom: 10px; overflow: hidden; }
.login-content .hero { padding: 12px 16px; margin-bottom: 8px; }
.login-content h1 { margin-bottom: 6px; font-size: clamp(1.45rem, 2vw, 2rem); }
.login-content .hero-text { margin-bottom: 0; font-size: 0.88rem; line-height: 1.3; }
.login-content .section { flex: 1; min-height: 0; margin-top: 0; }
.login-content .article-body { grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 14px; align-items: start; }
.login-content .article-block { padding: 14px; }
.login-content .article-block h2 { margin-bottom: 6px; font-size: 1.14rem; }
.login-content .article-block p { margin-bottom: 7px; }
.login-content .auth-form { gap: 8px; margin-top: 8px; }
.login-content .compat-input { min-height: 36px; padding-top: 7px; padding-bottom: 7px; }
.login-content .compat-submit { min-height: 36px; padding-top: 7px; padding-bottom: 7px; }
.login-content .footer { margin-top: auto; padding: 8px 12px; font-size: 0.8rem; }
@media (max-width: 980px) { .login-content { height: auto; min-height: auto; overflow: visible; } .login-content .article-body { grid-template-columns: 1fr; } .login-content .footer { margin-top: 24px; } }
.compat-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.compat-field-full { grid-column: 1 / -1; }
.compat-input { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; box-shadow: 0 8px 18px var(--color-shadow); }
.compat-file-input { padding: 9px 12px; }
.compat-textarea { min-height: 120px; resize: vertical; }
.compat-form-note, .compat-form-status { margin: 0; color: var(--color-muted); font-size: 0.9rem; }
.compat-submit { justify-self: start; min-height: 40px; padding: 9px 14px; border: 0; border-radius: var(--radius-sm); background: var(--color-primary); color: #ffffff; font: inherit; font-weight: 700; cursor: pointer; }
.compat-submit:hover { background: var(--color-primary-dark); }
.doc-editor-bar { position: sticky; top: 77px; z-index: 9; padding: 10px 36px; border-bottom: 1px solid var(--color-border); background: var(--color-surface); box-shadow: 0 8px 18px var(--color-shadow); }
.doc-editor-bar-inner { width: 100%; max-width: none; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--color-text); }
.doc-editor-bar strong { margin-right: 4px; color: var(--color-primary-dark); }
.doc-editor-bar button, .doc-editor-file-button { min-height: 36px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 11px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface-soft); color: var(--color-text); font: inherit; font-weight: 700; cursor: pointer; }
.doc-editor-bar button:hover, .doc-editor-file-button:hover { border-color: var(--color-primary); color: var(--color-primary-dark); background: var(--color-primary-soft); }
.doc-editor-file-button input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.doc-editor-status { min-height: 20px; color: var(--color-muted); font-size: 0.9rem; }
.doc-editable-field { outline: 1px dashed var(--color-accent); outline-offset: 3px; border-radius: 4px; }
.doc-editable-field:focus { outline: 2px solid var(--color-primary); background: var(--color-primary-soft); }
.doc-editor-added-block { animation: doc-editor-pulse 0.8s ease; }
.doc-editor-attachments { margin-top: 24px; }
.doc-editor-file-list { display: grid; gap: 9px; margin: 14px 0 0; padding: 0; list-style: none; }
.doc-editor-file-list li { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface-soft); color: var(--color-muted); }
.doc-editor-file-list a { color: var(--color-primary-dark); font-weight: 800; overflow-wrap: anywhere; }
.doc-editor-file-list span { font-size: 0.86rem; }
.doc-editor-file-list button { min-height: 30px; margin-left: auto; padding: 5px 9px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; font-size: 0.85rem; font-weight: 700; cursor: pointer; }
.doc-editor-file-list button:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
.doc-editor-empty { color: var(--color-muted); font-style: italic; }
@keyframes doc-editor-pulse { from { box-shadow: 0 0 0 4px var(--color-primary-soft); } to { box-shadow: none; } }
.figure-placeholder { margin: 18px 0 0; padding: 18px; border: 1px dashed var(--color-border); border-radius: var(--radius-md); background: var(--color-surface-soft); color: var(--color-muted); font-size: 0.95rem; }
.doc-figure { width: fit-content; max-width: 100%; margin: 18px 0 0; padding: 12px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface-soft); }
.doc-figure img { display: block; width: auto; max-width: min(100%, 1120px); height: auto; object-fit: contain; border-radius: calc(var(--radius-md) - 3px); border: 1px solid var(--color-border); background: var(--color-surface); }
.doc-figure figcaption { margin-top: 9px; color: var(--color-muted); font-size: 0.9rem; }
.doc-table { width: 100%; margin-top: 14px; border-collapse: collapse; overflow: hidden; border-radius: var(--radius-md); font-size: 0.94rem; }
.doc-table th, .doc-table td { padding: 10px 11px; border: 1px solid var(--color-border); vertical-align: top; text-align: left; }
.doc-table th { background: var(--color-primary-soft); color: var(--color-text); }
.doc-table td { color: var(--color-muted); background: var(--color-surface); }
.table-wrap { width: 100%; max-width: 100%; overflow-x: auto; }
.documents-table { table-layout: fixed; }
.documents-table th, .documents-table td { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.documents-table th:nth-child(1), .documents-table td:nth-child(1) { width: 36%; }
.documents-table th:nth-child(2), .documents-table td:nth-child(2) { width: 28%; }
.documents-table th:nth-child(3), .documents-table td:nth-child(3) { width: 12%; white-space: nowrap; }
.documents-table th:nth-child(4), .documents-table td:nth-child(4) { width: 24%; }
.document-category { margin-top: 24px; }
.document-category-header { margin-bottom: 10px; }
.table-download-link { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 7px 10px; border-radius: var(--radius-sm); background: var(--color-primary); color: #ffffff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.table-download-link:hover { background: var(--color-primary-dark); color: #ffffff; }
.profile-filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 14px 0 2px; padding: 14px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface-soft); }
.profile-filter-bar label { color: var(--color-text); font-weight: 800; }
.profile-filter-select { min-width: min(100%, 280px); min-height: 42px; padding: 9px 38px 9px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; font-weight: 700; }
.profile-filter-select:focus { outline: 2px solid var(--color-primary-soft); border-color: var(--color-primary); }
.profile-filter-count { margin-left: auto; color: var(--color-muted); font-size: 0.9rem; font-weight: 800; }
.profile-table { min-width: 0; table-layout: fixed; }
.profile-table th, .profile-table td { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.profile-table th:nth-child(1), .profile-table td:nth-child(1) { width: 5%; }
.profile-table th:nth-child(2), .profile-table td:nth-child(2) { width: 16%; }
.profile-table th:nth-child(3), .profile-table td:nth-child(3) { width: 10%; }
.profile-table th:nth-child(5), .profile-table td:nth-child(5), .profile-table th:nth-child(6), .profile-table td:nth-child(6), .profile-table th:nth-child(8), .profile-table td:nth-child(8), .profile-table th:nth-child(9), .profile-table td:nth-child(9) { width: 9%; }
.profile-table-wrap { margin-top: 12px; }
.evu-profile-table, .dv-profile-table { font-size: 0.86rem; }
.evu-profile-table th, .evu-profile-table td, .dv-profile-table th, .dv-profile-table td { padding: 8px 9px; line-height: 1.45; }
.evu-profile-table th:nth-child(1), .evu-profile-table td:nth-child(1) { width: 68px; white-space: nowrap; }
.evu-profile-table th:nth-child(2), .evu-profile-table td:nth-child(2) { width: 19%; }
.evu-profile-table th:nth-child(3), .evu-profile-table td:nth-child(3) { width: 9%; }
.evu-profile-table th:nth-child(4), .evu-profile-table td:nth-child(4) { width: 18%; }
.evu-profile-table th:nth-child(5), .evu-profile-table td:nth-child(5), .evu-profile-table th:nth-child(6), .evu-profile-table td:nth-child(6), .evu-profile-table th:nth-child(8), .evu-profile-table td:nth-child(8), .evu-profile-table th:nth-child(9), .evu-profile-table td:nth-child(9) { width: 8%; }
.evu-profile-table th:nth-child(7), .evu-profile-table td:nth-child(7) { width: 18%; }
.dv-profile-table th:nth-child(1), .dv-profile-table td:nth-child(1) { width: 68px; white-space: nowrap; }
.dv-profile-table th:nth-child(2), .dv-profile-table td:nth-child(2) { width: 20%; }
.dv-profile-table th:nth-child(3), .dv-profile-table td:nth-child(3) { width: 12%; }
.dv-profile-table th:nth-child(4), .dv-profile-table td:nth-child(4) { width: 12%; }
.dv-profile-table th:nth-child(5), .dv-profile-table td:nth-child(5), .dv-profile-table th:nth-child(6), .dv-profile-table td:nth-child(6) { width: 16%; }
.dv-profile-table th:nth-child(7), .dv-profile-table td:nth-child(7) { width: 24%; }
#release-eintraege .changelog-table th:first-child, #release-eintraege .changelog-table td:first-child { width: 112px; min-width: 112px; white-space: nowrap; }
#release-eintraege .changelog-table th:nth-child(2), #release-eintraege .changelog-table td:nth-child(2) { width: 58%; }
#release-eintraege .changelog-table th:nth-child(3), #release-eintraege .changelog-table td:nth-child(3) { width: auto; }
.changelog-table th, .changelog-table td { word-break: normal; overflow-wrap: break-word; }
.changelog-filter { display: grid; gap: 8px; margin: 16px 0 12px; }
.changelog-filter label { color: var(--color-text); font-weight: 800; }
.changelog-filter-input { width: 100%; min-height: 42px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset; }
.changelog-filter-input:focus { outline: 2px solid var(--color-primary-soft); border-color: var(--color-primary); }
.changelog-filter-count { color: var(--color-muted); font-size: 0.88rem; font-weight: 700; }
.changelog-entry { display: grid; gap: 6px; }
.changelog-entry p { margin: 0; }
.changelog-file-hint { display: inline-block; margin-top: 6px; color: var(--color-muted); font-size: 0.84rem; line-height: 1.35; }
.profile-card-list { display: grid; gap: 14px; margin-top: 18px; }
.profile-card { min-width: 0; padding: 18px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface-soft); overflow-wrap: anywhere; }
.profile-card-header { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.profile-card-header h3 { flex: 1 1 240px; margin: 0; font-size: 1.1rem; }
.profile-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 9px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary-dark); font-size: 0.82rem; font-weight: 800; }
.profile-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; }
.profile-meta div { min-width: 0; padding: 10px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); }
.profile-meta dt { margin-bottom: 4px; color: var(--color-muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.profile-meta dd { margin: 0; color: var(--color-text); overflow-wrap: anywhere; }
.changelog-version-select { width: 100%; min-height: 36px; padding: 7px 10px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); font: inherit; font-weight: 700; }
.footer { margin-top: 44px; padding: 12px 22px; border-top: 0; border-radius: var(--radius-md); background: var(--color-footer); color: #ffffff; font-size: 0.9rem; box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.10); }
.site-footer { position: fixed; left: var(--sidebar-width); right: 0; bottom: 0; z-index: 50; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px; margin: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.site-footer-brand { display: flex; align-items: center; gap: 12px; color: #ffffff; font-weight: 800; }
.site-footer-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(255, 255, 255, 0.18); color: #ffffff; font-weight: 800; }
.site-footer-address, .site-footer-contact { margin: 0; color: #ffffff; line-height: 1.45; }
.site-footer-contact a { color: inherit; font-weight: 700; }
@media (min-width: 981px) and (max-height: 820px) { .home-section .home-grid { flex: 0 0 auto; grid-template-rows: repeat(2, minmax(0, 140px)); } .home-section .tile-graphic { min-height: 48px; } .home-section .tech-graphic { max-height: 62px; } }
@media (max-width: 980px) { .app-shell { grid-template-columns: 1fr; } .sidebar { position: fixed; inset: 0 auto 0 0; z-index: 80; width: min(86vw, 340px); height: 100dvh; max-height: 100dvh; padding: 26px 22px; border-right: 2px solid var(--color-accent); border-bottom: 0; box-shadow: 20px 0 50px rgba(0, 0, 0, 0.25); transform: translateX(-105%); transition: transform 0.22s ease; } body.nav-open { overflow: hidden; } body.nav-open .sidebar { transform: translateX(0); } .sidebar-close-btn { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; background: var(--color-surface-soft); color: var(--color-text); font-size: 1.35rem; cursor: pointer; } .brand { padding-right: 46px; } .sidebar-backdrop { display: block; position: fixed; inset: 0; z-index: 70; border: 0; background: rgba(7, 29, 33, 0.46); opacity: 0; pointer-events: none; transition: opacity 0.22s ease; } body.nav-open .sidebar-backdrop { opacity: 1; pointer-events: auto; } .topbar { grid-template-columns: auto minmax(0, 1fr); display: grid; align-items: center; padding: 12px 16px; gap: 10px 12px; } .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 40px; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, 0.34); border-radius: 999px; background: rgba(255, 255, 255, 0.14); color: #ffffff; font: inherit; font-weight: 800; cursor: pointer; } .breadcrumb { font-size: 0.78rem; } .topbar-actions { grid-column: 1 / -1; width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; } .topbar-actions .search { order: 4; flex: 1 1 240px; width: auto; } .doc-editor-bar { position: static; padding: 10px 16px; } .doc-editor-bar-inner { align-items: stretch; } .doc-editor-bar button, .doc-editor-file-button { flex: 1 1 180px; } .content { padding: 30px 22px 50px; } .hero { padding: 28px; } .card, .card.full { grid-column: span 12; } .index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .home-grid { grid-template-columns: 1fr; } .home-content { min-height: auto; padding-top: 22px; padding-bottom: 30px; } .home-section .home-grid { flex: 0 0 auto; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; } .home-section .home-tile-feature { grid-column: 1 / -1; } .home-section .home-tile-wide { grid-column: 1 / -1; } .landing-grid, .compat-meta { grid-template-columns: 1fr; } .tutorial-grid { grid-template-columns: 1fr; padding-left: 20px; } .article-shell { grid-template-columns: 1fr; } .article-toc { position: static; } }
@media (max-width: 980px) { .content { padding-bottom: 138px; } .site-footer { left: 0; } }
@media (max-width: 980px) { .is-authenticated .topbar-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; width: auto; max-width: 100%; gap: 10px; } .is-authenticated .topbar-actions .search { grid-column: 1 / 3; grid-row: 3; min-width: 0; width: 100%; } }
@media (max-width: 620px) { .sidebar { width: min(92vw, 340px); padding: 22px 18px; } .subnav-list { margin-left: 20px; } .section-header { display: block; } .index-grid { grid-template-columns: 1fr; } .home-tile { min-height: 300px; padding: 22px; } .tile-graphic { min-height: 150px; } .home-content .hero { padding: 20px; } .home-section .home-grid { grid-template-columns: 1fr; } .home-section .home-tile { min-height: 0; padding: 18px; } .home-section .home-tile-feature, .home-section .home-tile-wide { flex-direction: column; align-items: stretch; } .home-section .home-tile-feature .tile-graphic, .home-section .home-tile-wide .tile-graphic { width: 100%; min-width: 0; } .home-section .tile-graphic { min-height: 110px; } .landing-group > summary { align-items: flex-start; padding: 16px; } .landing-links { padding: 14px 16px 18px; columns: 1; } .tutorial-grid { padding: 14px 16px 18px; } .profile-meta { grid-template-columns: 1fr; } .compat-fields, .compat-form-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { body { overflow-x: hidden; } .topbar { padding-left: 12px; padding-right: 12px; } .topbar-actions, .search { min-width: 0; } .content { padding-left: 14px; padding-right: 14px; } .hero { padding: 20px 16px; } .home-content .hero { padding: 18px 16px; } .article-block, .card, .index-panel, .profile-card, .compat-result, .compat-related { padding-left: 14px; padding-right: 14px; } h1 { font-size: clamp(1.75rem, 8vw, 2.35rem); } .home-content h1 { font-size: clamp(1.25rem, 6vw, 1.75rem); } p, li, td, th, .hero-text, .card p, .home-tile p, .article-block p { overflow-wrap: anywhere; } }

.software-ui-page .control-name {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 500;
}
.software-ui-page .figure-placeholder {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
}
.software-ui-page .placeholder-screen {
  min-height: 170px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: inset 0 0 0 8px var(--color-primary-soft);
  padding: 18px;
}
.software-ui-page .placeholder-bar {
  height: 26px;
  border-radius: 8px;
  background: var(--color-primary);
  opacity: 0.9;
}
.software-ui-page .placeholder-lines,
.software-ui-page .placeholder-grid {
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--color-border) 0 18%, transparent 18% 25%, var(--color-border) 25% 62%, transparent 62% 70%, var(--color-border) 70% 100%);
  height: 18px;
  opacity: 0.75;
}
.software-ui-page .placeholder-grid {
  height: 70px;
  background:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 32px 24px;
  opacity: 0.45;
}
.software-ui-page .muted,
.muted {
  color: var(--color-muted);
}
.software-ui-page .logger-screenshot {
  max-width: min(100%, 820px);
}
.software-ui-page .logger-screenshot img {
  image-rendering: auto;
  object-fit: contain;
  background: #ffffff;
}
.software-landing-grid .landing-group-body {
  padding: 0 20px 18px 74px;
}
.software-landing-grid .landing-group-body p {
  margin: 0 0 12px;
  color: var(--color-muted);
}
.software-landing-grid .landing-links {
  padding: 0;
}
@media (max-width: 980px) {
  .landing-grid, .compat-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  :is(.landing-grid, .landing-list).is-submenu .landing-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .landing-grid { grid-template-columns: 1fr; }
  .landing-group, .landing-direct { min-height: 94px; }
  .landing-group > summary, .landing-direct { min-height: 94px; align-items: center; padding: 16px; }
  :is(.landing-grid, .landing-list).is-submenu .landing-links { grid-template-columns: 1fr; }
  .landing-submenu-header { align-items: flex-start; flex-direction: column-reverse; }
}
@media (max-width: 760px) {
  .software-ui-page .figure-placeholder {
    grid-template-columns: 1fr;
  }
}
.logger-model-page .article-body {
  overflow-x: auto;
}
.logger-model-wrap {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 18px 0;
}
.logger-model-screen {
  width: min(100%, 880px);
  min-height: 520px;
  max-width: 880px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  color: #050505;
  box-shadow: 0 18px 45px rgba(15, 69, 74, 0.14);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
}
.logger-model-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 10px 12px 8px;
  border-bottom: 1px solid #cfcfcf;
}
.logger-tab {
  height: 52px;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  background: linear-gradient(#ffffff, #f2f2f2);
  color: #050505;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}
.logger-tab.active {
  box-shadow: inset 0 -3px 0 var(--color-primary);
}
.logger-model-view {
  flex: 1;
  min-height: 0;
  padding: 14px;
  overflow: auto;
  background: #ffffff;
}
.logger-model-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 8px;
  border-top: 1px solid #e0e0e0;
  color: #333333;
  font-size: 0.78rem;
}
.logger-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.logger-menu-col h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 1rem;
}
.logger-menu-button,
.logger-choice-button,
.logger-close {
  min-height: 38px;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  background: linear-gradient(#ffffff, #e8e8e8);
  color: #050505;
  font-weight: 600;
  cursor: pointer;
}
.logger-menu-button {
  width: 100%;
  margin: 0 0 10px;
}
.logger-menu-button:disabled {
  background: #f2f2f2;
  color: #9b9b9b;
  cursor: not-allowed;
}
.logger-choice-view,
.logger-final-view {
  position: relative;
  min-height: 100%;
}
.logger-close {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 118px;
}
.logger-choice-view h3,
.logger-final-view h3 {
  margin: 0 130px 24px 0;
  color: #111111;
  font-size: 1.15rem;
}
.logger-choice-buttons {
  display: grid;
  gap: 14px;
  width: min(280px, 80%);
  margin: 80px auto 0;
}
.logger-final-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(240px, 0.8fr);
  gap: 14px;
  align-items: start;
}
.logger-model-shot {
  position: relative;
  width: min(100%, 800px);
  margin: 0 auto;
  border: 1px solid #c7dedd;
  border-radius: 6px;
  background: #f9ffff;
  padding: 8px;
  line-height: 0;
}
.logger-model-shot img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #ffffff;
}
.logger-model-hotspot-stage {
  position: relative;
}
.logger-hotspot-layer {
  position: absolute;
  inset: 8px;
  pointer-events: none;
}
.logger-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(14, 96, 103, 0);
  color: transparent;
  cursor: help;
  pointer-events: auto;
}
.logger-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.logger-hotspot-button {
  cursor: pointer;
}
.logger-hotspot:hover,
.logger-hotspot:focus {
  outline: none;
  border-color: rgba(14, 96, 103, 0.85);
  background: rgba(14, 96, 103, 0.14);
  box-shadow: 0 0 0 2px rgba(14, 96, 103, 0.16);
}
.logger-hotspot-field:hover,
.logger-hotspot-field:focus {
  border-color: rgba(185, 124, 25, 0.9);
  background: rgba(185, 124, 25, 0.14);
  box-shadow: 0 0 0 2px rgba(185, 124, 25, 0.14);
}
.logger-hotspot-dropdown:hover,
.logger-hotspot-dropdown:focus {
  border-color: rgba(55, 111, 166, 0.95);
  background: rgba(55, 111, 166, 0.16);
  box-shadow: 0 0 0 2px rgba(55, 111, 166, 0.16);
}
.logger-dropdown-popover {
  position: absolute;
  z-index: 8;
  width: min(250px, 42%);
  max-height: 190px;
  overflow: auto;
  border: 1px solid #8fa6a8;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  padding: 8px;
  line-height: 1.35;
}
.logger-dropdown-popover strong,
.logger-dropdown-popover span {
  display: block;
}
.logger-dropdown-popover strong {
  margin: 0 0 4px;
  font-size: 0.86rem;
}
.logger-dropdown-note {
  margin: 0 0 7px;
  color: #677375;
  font-size: 0.74rem;
}
.logger-dropdown-options {
  display: grid;
  gap: 3px;
}
.logger-dropdown-option {
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 5px 7px;
  background: #f5f7f7;
  color: #111111;
  cursor: help;
  font-size: 0.8rem;
}
.logger-dropdown-option:hover,
.logger-dropdown-option:focus {
  outline: none;
  border-color: #0e6067;
  background: #e8f4f3;
}
.logger-model-help {
  width: min(100%, 800px);
  margin: 8px auto 0;
  color: #516466;
  font-size: 0.84rem;
  line-height: 1.45;
}
.logger-hover-panel {
  max-height: 350px;
  overflow: auto;
  border: 1px solid #d6e8e7;
  border-radius: 6px;
  background: #f7fbfb;
  padding: 10px;
}
.logger-hover-panel h4 {
  margin: 0 0 8px;
  color: #133333;
  font-size: 0.9rem;
}
.logger-hover-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}
.logger-hover-button,
.logger-hover-field {
  position: relative;
  border: 1px solid #aebfbe;
  border-radius: 4px;
  background: #ffffff;
  padding: 7px 9px;
  color: #050505;
  font-size: 0.82rem;
  cursor: help;
}
.logger-hover-field {
  background: #eef7f7;
}
.logger-menu-button[data-tip],
.logger-choice-button[data-tip],
.logger-hover-button[data-tip],
.logger-hover-field[data-tip] {
  position: relative;
}
.logger-menu-button[data-tip]::after,
.logger-choice-button[data-tip]::after,
.logger-hover-button[data-tip]::after,
.logger-hover-field[data-tip]::after {
  display: none !important;
  content: none !important;
}
.logger-floating-tip {
  position: fixed;
  z-index: 10000;
  max-width: min(390px, calc(100vw - 24px));
  border: 1px solid rgba(209, 239, 235, 0.28);
  border-radius: 8px;
  background: #092f33;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 0.84rem;
  line-height: 1.42;
  pointer-events: none;
  white-space: pre-line;
}
.logger-floating-tip strong {
  display: block;
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 0.88rem;
}
.logger-floating-tip span {
  display: block;
}
.logger-no-shot,
.logger-empty {
  color: #667777;
  font-size: 0.9rem;
}
.logger-no-shot {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 320px;
  border: 1px dashed #aebfbe;
  border-radius: 4px;
  background: #f7fbfb;
  line-height: 1.4;
  text-align: center;
  padding: 18px;
}
.logger-no-shot strong,
.logger-no-shot span {
  display: block;
}
@media (max-width: 900px) {
  .logger-model-screen {
    min-width: 760px;
  }
}
@media (max-width: 760px) {
  .logger-final-grid {
    grid-template-columns: 1fr;
  }
  .logger-menu-grid {
    gap: 14px;
  }
}
.html-logger-workbench {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.html-logger-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}
.html-logger-toolbar [data-main] {
  display: none;
}
.html-logger-toolbar button {
  border: 1px solid #b9c1c1;
  border-radius: 2px;
  background: linear-gradient(#ffffff, #e9eeee);
  color: var(--color-text);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.html-logger-toolbar button.active,
.html-logger-toolbar button:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}
.html-logger-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.html-logger-device {
  border: 1px solid #8f8f8f;
  border-radius: 0;
  background: #f1f1f1;
  color: #050505;
  padding: 15px;
  box-shadow:
    0 1px 0 #ffffff inset,
    0 18px 34px rgba(8, 51, 55, 0.16);
  overflow-x: auto;
}
.html-logger-device.has-screenshot {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: min(100%, 800px);
}
.html-logger-canvas {
  position: relative;
  width: min(100%, 800px);
  aspect-ratio: 5 / 3;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #707070;
  background: #ffffff;
  font-family: var(--font-family);
}
.html-logger-screen-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
.html-logger-canvas.has-screenshot {
  background: #ffffff;
  border: 0;
}
.html-logger-watermark {
  position: absolute;
  left: 40px;
  bottom: 18px;
  z-index: 0;
  color: rgba(0, 0, 0, 0.08);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 2px;
  pointer-events: none;
}
.html-logger-canvas.has-screenshot .html-logger-watermark,
.html-logger-canvas.has-screenshot .html-logger-title {
  display: none;
}
.html-logger-title {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 1;
  max-width: 420px;
  color: #101010;
  font-size: 18px;
  font-weight: 700;
  pointer-events: none;
}
.html-shot-choices {
  position: absolute;
  right: 8px;
  top: 48px;
  z-index: 8;
  display: flex;
  gap: 4px;
}
.html-shot-choices button {
  border: 1px solid #707070;
  border-radius: 1px;
  background: linear-gradient(#ffffff, #dedede);
  color: #111111;
  padding: 4px 10px;
  font: 700 12px var(--font-family);
  cursor: pointer;
}
.html-shot-choices button.active,
.html-shot-choices button:hover {
  background: linear-gradient(#e9f7f7, #cdeeee);
  border-color: #0e6067;
}
.html-scroll-action {
  position: absolute;
  left: 18.2%;
  z-index: 5;
  width: 4.4%;
  height: 7.2%;
  border: 1px solid transparent;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
}
.html-scroll-up {
  top: 16.8%;
}
.html-scroll-down {
  top: 85.6%;
}
.html-scroll-action:hover,
.html-scroll-action:focus {
  border-color: #0b6870;
  background: rgba(42, 160, 170, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 2px rgba(14, 96, 103, 0.28);
  outline: none;
}
.html-control {
  position: absolute;
  z-index: 2;
  display: block;
  min-width: 18px;
  min-height: 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #050505;
  font-family: var(--font-family);
  line-height: 1.1;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}
.html-logger-canvas.has-screenshot .html-control {
  background: rgba(255, 255, 255, 0.01);
  border-color: transparent;
  box-shadow: none;
  color: transparent;
  text-shadow: none;
}
.html-control span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.html-control small {
  display: none;
}
.html-button {
  border-color: #9d9d9d;
  background: linear-gradient(#ffffff, #e4e4e4);
  text-align: center;
  font-weight: 700;
  padding: 3px 5px;
}
.html-button span {
  text-align: center;
}
.html-button.is-disabled {
  color: #8a8a8a;
  background: #f0f0f0;
}
.html-button.is-active {
  border-color: #0e6067;
  background: linear-gradient(#e9f7f7, #cdeeee);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}
.html-label {
  background: transparent;
  border-color: transparent;
  padding: 1px 2px;
  font-weight: 700;
}
.html-input,
.html-select {
  border-color: #7f7f7f;
  background: #ffffff;
  padding: 3px 5px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}
.html-select::after {
  content: "v";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #333333;
  font-size: 10px;
}
.html-list {
  border-color: #1f1f1f;
  background:
    linear-gradient(#d9d9d9 0 22px, transparent 22px),
    linear-gradient(90deg, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 100% 100%, 70px 100%;
  padding: 4px 6px;
}
.html-field:not(.html-label) span,
.html-button span {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.html-control:hover,
.html-control:focus {
  outline: none;
  border-color: #0e6067;
  background-color: rgba(14, 96, 103, 0.14);
  box-shadow: 0 0 0 2px rgba(14, 96, 103, 0.16);
}
.html-logger-canvas.has-screenshot .html-control:hover,
.html-logger-canvas.has-screenshot .html-control:focus {
  border-color: #0b6870;
  background: rgba(42, 160, 170, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 2px rgba(14, 96, 103, 0.28);
}
.html-field:hover,
.html-field:focus {
  border-color: #b97c19;
  background-color: rgba(185, 124, 25, 0.14);
}
.html-logger-canvas.has-screenshot .html-field:hover,
.html-logger-canvas.has-screenshot .html-field:focus {
  border-color: #b97c19;
  background: rgba(255, 193, 92, 0.2);
}
.html-dropdown-menu {
  position: absolute;
  z-index: 20;
  width: 245px;
  max-height: 190px;
  overflow: auto;
  border: 1px solid #777777;
  border-radius: 3px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  padding: 8px;
  font-family: var(--font-family);
}
.html-dropdown-menu strong,
.html-dropdown-menu span {
  display: block;
}
.html-dropdown-menu strong {
  margin-bottom: 4px;
  font-size: 13px;
}
.html-dropdown-menu span {
  margin-bottom: 7px;
  color: #616b6c;
  font-size: 11px;
}
.html-dropdown-menu button {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 3px;
  background: #f3f6f6;
  color: #111111;
  padding: 5px 7px;
  text-align: left;
  cursor: help;
}
.html-dropdown-menu button:hover,
.html-dropdown-menu button:focus {
  border-color: #0e6067;
  background: #e8f4f3;
  outline: none;
}
.html-logger-status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: min(100%, 820px);
  margin: 6px auto 0;
  color: #333333;
  font-size: 11px;
}
.html-logger-device.has-screenshot .html-logger-status {
  display: none;
}
.html-logger-inspector {
  display: none;
}
.html-logger-inspector h3 {
  margin: 0 0 10px;
}
.html-logger-inspector p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  white-space: pre-line;
}
@media (max-width: 1050px) {
  .html-logger-layout {
    justify-content: flex-start;
    overflow-x: auto;
  }
}
@media (max-width: 760px) {
  .html-logger-workbench {
    padding: 12px;
  }
  .html-logger-device {
    padding: 8px;
  }
}
.logger-atlas-page .logger-atlas-group {
  scroll-margin-top: 92px;
}
.logger-atlas-entry {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  margin: 0 0 16px;
  overflow: hidden;
}
.logger-atlas-entry summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  cursor: pointer;
  color: var(--color-text);
}
.logger-atlas-entry summary strong,
.logger-atlas-entry summary small {
  display: block;
}
.logger-atlas-entry summary small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.logger-atlas-body {
  border-top: 1px solid var(--color-border);
  padding: 18px;
}
.logger-atlas-figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.logger-atlas-shot {
  margin: 0;
}
.logger-atlas-shot img {
  width: auto;
  max-width: 100%;
  max-height: 440px;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}
.logger-atlas-missing {
  display: grid;
  gap: 6px;
  min-height: 150px;
  align-content: center;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  color: var(--color-muted);
  padding: 18px;
}
.logger-atlas-missing strong {
  color: var(--color-text);
}
.logger-atlas-table td:first-child {
  min-width: 190px;
}
.logger-atlas-table td:nth-child(3) {
  min-width: 150px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .logger-atlas-body {
    padding: 14px;
  }
  .logger-atlas-figures {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .doc-home-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .doc-home-main h1 {
    font-size: 6.6rem;
  }
  .doc-home-status {
    width: min(100%, 720px);
  }
  .tutorial-watch-layout {
    grid-template-columns: 1fr;
  }
  .tutorial-related {
    height: auto;
    max-height: none;
    min-height: 0;
  }
  .tutorial-related-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tutorial-related-item {
    border-right: 1px solid var(--color-border);
  }
}

@media (max-width: 980px) {
  .start-home-content,
  .doc-home-hero {
    min-height: calc(100vh - 128px);
  }
  .doc-home-inner {
    padding: 28px 22px 42px;
  }
  .doc-home-main h1 {
    font-size: 5.4rem;
  }
  .doc-home-lead {
    font-size: 1.05rem;
  }
  .doc-home-metrics strong {
    font-size: 2.1rem;
  }
  .doc-home-search .search-autocomplete {
    width: min(720px, calc(100vw - 44px));
  }
}

@media (max-width: 700px) {
  .start-home-content {
    padding: 0 !important;
  }
  .doc-home-inner {
    padding: 26px 14px 34px;
  }
  .doc-home-main h1 {
    font-size: 4.4rem;
  }
  .doc-home-kicker {
    max-width: 100%;
    font-size: 0.86rem;
    white-space: normal;
  }
  .doc-home-lead {
    font-size: 0.96rem;
  }
  .doc-home-search.search,
  .doc-home-search.search input,
  .doc-home-actions,
  .doc-home-main,
  .doc-home-status {
    min-width: 0;
  }
  .doc-home-main {
    width: 100%;
    max-width: 100%;
  }
  .doc-home-main > * {
    max-width: 100%;
  }
  .doc-home-search.search {
    width: 100%;
  }
  .doc-home-search.search input {
    font-size: 0.96rem;
  }
  .doc-home-actions,
  .doc-home-metrics {
    grid-template-columns: 1fr;
  }
  .doc-home-actions a {
    overflow-wrap: anywhere;
  }
  .doc-home-status-head {
    display: grid;
  }
  .doc-home-metrics div {
    min-height: 88px;
  }
  .tutorial-main-video {
    min-height: 220px;
  }
  .tutorial-main-copy {
    grid-template-columns: 1fr;
  }
  .tutorial-main-link {
    grid-column: 1;
    grid-row: auto;
    margin-top: 6px;
  }
  .tutorial-related-list {
    grid-template-columns: 1fr;
  }
  .tutorial-related-item {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .doc-home-inner {
    width: min(100%, 390px);
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 460px) {
  .doc-home-main h1 {
    font-size: 3rem;
  }
  .doc-home-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .doc-home-status {
    padding: 16px;
  }
  .tutorial-related-item {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .tutorial-related-item img {
    width: 112px;
  }
  .tutorial-main-video {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doc-home-video {
    display: none;
  }
  .doc-home-actions a:hover,

  .home-tile:hover,
  .brand:hover .brand-logo {
    transform: none;
  }
}
