
:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-2: #f9fbff;
    --text: #101828;
    --muted: #667085;
    --line: #d9e2ef;
    --line-strong: #c4d0df;
    --ink: #0f172a;
    --primary: #2563eb;
    --primary-2: #0f766e;
    --accent: #b45309;
    --danger: #b42318;
    --success: #027a48;
    --sidebar: #122033;
    --sidebar-2: #0d1726;
    --shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
    --radius: 8px;
    --topbar-h: 66px;
    --sidebar-w: 292px;
    --toc-w: 250px;
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 118, 110, 0.12), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.11), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f7fb 46%, #eef3f7 100%),
        var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
code {
    font-family: var(--mono);
    font-size: 0.9em;
    padding: 0.1rem 0.32rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f3f6fb;
    color: #16325f;
    overflow-wrap: anywhere;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--topbar-h);
    display: grid;
    grid-template-columns: auto auto minmax(220px, 620px) auto;
    gap: 14px;
    align-items: center;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.78);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}
.brand__logo {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a, var(--primary), var(--primary-2));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}
.brand__text { display: grid; line-height: 1.15; }
.brand__text small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.iconButton {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    display: none;
    place-items: center;
    font-size: 20px;
}
.menuGlyph {
    display: grid;
    gap: 4px;
    width: 18px;
}
.menuGlyph span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.search { position: relative; width: 100%; }
.search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    width: 18px;
    height: 18px;
}
.search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px 12px 42px;
    background: var(--surface-2);
    color: var(--text);
    outline: none;
}
.search input:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.searchResults {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(420px, 70vh);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 8px;
    z-index: 80;
}
.searchResult {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
    text-decoration: none;
}
.searchResult:hover { background: #eef4ff; }
.searchResult strong { display: block; color: var(--text); }
.searchResult span { display: block; color: var(--muted); font-size: 13px; }
.topbar__right { display: inline-flex; align-items: center; gap: 10px; justify-content: end; }
.pill, .tag, .ownerBadge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.ownerBadge { color: #1849a9; background: #eef4ff; border-color: #c7d7fe; }
.ownerBadge--muted { color: #344054; background: #f8fafc; border-color: var(--line); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 800;
    background: #fff;
}
.btn--ghost { background: transparent; }

.layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr) var(--toc-w);
    min-height: calc(100vh - var(--topbar-h));
    background:
        linear-gradient(rgba(15, 23, 42, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.022) 1px, transparent 1px);
    background-size: 38px 38px, 38px 38px;
}
.sidebar {
    position: sticky;
    top: var(--topbar-h);
    height: calc(100vh - var(--topbar-h));
    overflow: auto;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(18, 32, 51, 0.9), rgba(13, 23, 38, 0.94)),
        radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.26), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(15, 118, 110, 0.24), transparent 36%);
    color: #e7eefc;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 18px 0 50px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}
.sidebar__section {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 10px;
}
.sidebar__section + .sidebar__section {
    margin-top: 12px;
}
.sidebar__title {
    margin: 0 0 8px;
    color: rgba(231, 238, 252, 0.7);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 0 4px;
}
.nav { display: grid; gap: 5px; }
.nav__link {
    display: block;
    padding: 9px 10px;
    border-radius: var(--radius);
    color: rgba(231, 238, 252, 0.84);
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 650;
    font-size: 14px;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateX(2px);
}
.nav__link.is-active {
    background: linear-gradient(135deg, #ffffff, #eaf3ff);
    color: #132238;
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    font-weight: 850;
}
.supportCard {
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.supportCard p { margin: 6px 0 0; color: rgba(231, 238, 252, 0.78); font-size: 13px; }

.main { min-width: 0; padding: 26px 24px 60px; }
.content { max-width: 1060px; margin: 0 auto; }
.breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px;
}
.breadcrumbs a { color: var(--primary); text-decoration: none; font-weight: 800; }
.hero {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(37,99,235,0.09), rgba(15,118,110,0.08)),
        #fff;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: var(--shadow);
}
.hero--compact { margin-bottom: 22px; }
.hero__kicker, .eyebrow {
    display: inline-flex;
    color: var(--primary-2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}
h1, h2, h3 { color: var(--ink); line-height: 1.15; letter-spacing: 0; overflow-wrap: anywhere; }
h1 { margin: 10px 0 14px; font-size: clamp(34px, 5vw, 56px); }
h2 { margin: 34px 0 14px; font-size: clamp(24px, 3vw, 34px); }
h3 { margin: 6px 0 10px; font-size: clamp(20px, 2.2vw, 26px); }
.lead { color: #344054; font-size: 18px; max-width: 76ch; margin: 0; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.infoGrid, .linkGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}
.infoCard, .linkCard, .docPanel, .mediaFrame, .developerNote, .callout {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}
.infoCard, .linkCard { padding: 16px; min-width: 0; }
.infoCard span, .linkCard span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }
.infoCard strong, .linkCard strong { display: block; color: var(--ink); font-size: 18px; margin: 5px 0; overflow-wrap: anywhere; }
.infoCard p, .linkCard p { margin: 0; color: var(--muted); }
.linkCard { text-decoration: none; transition: transform .16s ease, box-shadow .16s ease; }
.linkCard:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.attendHero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(120deg, rgba(15, 118, 110, 0.12), transparent 36%),
        linear-gradient(68deg, transparent 0%, rgba(37, 99, 235, 0.075) 58%, rgba(180, 83, 9, 0.08) 100%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    background-size: 38px 38px, 38px 38px, auto, auto, auto;
    box-shadow: var(--shadow);
    padding: clamp(20px, 3vw, 32px);
}
.attendHero__copy,
.attendHero__visual {
    min-width: 0;
}
.attendHero__kicker,
.attendHero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.attendHero__kicker {
    margin-bottom: 10px;
}
.attendHero__kicker span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid #d9e2ef;
    border-radius: 999px;
    background: #fff;
    color: #344054;
    font-size: 11px;
    font-weight: 900;
    padding: 5px 9px;
}
.attendHero h1 {
    max-width: 620px;
    margin: 8px 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}
.attendHero .lead {
    max-width: 64ch;
    color: #344054;
    font-size: 16px;
    line-height: 1.58;
}
.attendHero__cue {
    width: min(100%, 680px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    padding: 11px 13px;
}
.attendHero__cue > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f766e, #2563eb);
}
.attendHero__cue > span::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 10px 10px 0 -6px #fff;
    transform: rotate(-12deg);
}
.attendHero__cue strong,
.attendHero__cue small {
    display: block;
    min-width: 0;
}
.attendHero__cue strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.2;
}
.attendHero__cue small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}
.attendHero__actions {
    margin-top: 14px;
}
.attendCommand {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16);
    padding: 14px;
}
.attendCommand::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    pointer-events: none;
}
.attendCommand__head,
.attendCommand__search,
.attendCommand__stage,
.attendCommand__footer {
    position: relative;
    z-index: 1;
}
.attendCommand__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.attendCommand__head span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 950;
}
.attendCommand__head strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid #a6f4c5;
    border-radius: 999px;
    background: #ecfdf3;
    color: #05603a;
    font-size: 12px;
    padding: 6px 10px;
}
.attendCommand__search {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 10px 12px;
}
.attendCommand__search > span {
    width: 26px;
    height: 26px;
    border: 3px solid #2563eb;
    border-radius: 50%;
    box-shadow: 10px 10px 0 -7px #0f766e;
}
.attendCommand__search strong {
    color: var(--ink);
    font-size: 13px;
}
.attendCommand__search em {
    min-width: 0;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-align: right;
}
.attendCommand__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.74fr);
    gap: 12px;
    margin-top: 12px;
}
.attendCommand__stage img {
    width: 100%;
    min-height: 226px;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #f8fafc;
}
.attendCommand__rail {
    display: grid;
    gap: 10px;
    align-content: center;
}
.attendCommand__rail a {
    display: grid;
    gap: 5px;
    border: 1px solid #d9e2ef;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    padding: 12px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.attendCommand__rail a:nth-child(1) { border-left-color: #0f766e; }
.attendCommand__rail a:nth-child(3) { border-left-color: #b45309; }
.attendCommand__rail small {
    color: var(--primary-2);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}
.attendCommand__rail strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.2;
}
.attendCommand__footer,
.attendStats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.attendCommand__footer {
    margin-top: 12px;
}
.attendCommand__footer span,
.attendStats article {
    min-width: 0;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    padding: 9px;
}
.attendCommand__footer strong,
.attendStats strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.08;
}
.attendStats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px 0 22px;
}
.attendStats article {
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
    padding: 14px;
}
.attendStats strong {
    font-size: 24px;
}
.attendStats span {
    display: block;
    margin-top: 3px;
}
.attendWorkflow,
.attendEvidence {
    margin: 22px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    padding: clamp(18px, 3vw, 26px);
}
.attendSectionHead {
    max-width: 820px;
    margin-bottom: 16px;
}
.attendSectionHead h2 {
    margin: 7px 0 8px;
    font-size: clamp(24px, 3vw, 32px);
}
.attendSectionHead p {
    margin: 0;
    color: var(--muted);
}
.attendFlow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.attendFlow article {
    min-width: 0;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(37, 99, 235, 0.05), transparent),
        #fff;
    padding: 14px;
}
.attendFlow span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 11px;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
}
.attendFlow strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
}
.attendFlow p {
    margin: 6px 0 0;
    color: var(--muted);
}
.attendPathGrid,
.attendScreenGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}
.attendPathCard,
.attendScreenGrid figure {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.07);
}
.attendPathCard {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.attendPathCard:hover {
    border-color: #94a3b8;
    box-shadow: 0 24px 48px rgba(16, 24, 40, 0.12);
    transform: translateY(-2px);
}
.attendPathCard__media {
    display: block;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        #101828;
    background-size: 24px 24px, 24px 24px, auto;
}
.attendPathCard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}
.attendPathCard__body {
    display: grid;
    gap: 8px;
    padding: 14px;
}
.attendPathCard__body small,
.attendLinkGrid .linkCard span {
    color: var(--primary-2);
}
.attendPathCard__body small {
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}
.attendPathCard__body strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.18;
}
.attendPathCard__body em {
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.48;
}
.attendScreenGrid figure {
    margin: 0;
    padding: 10px;
}
.attendScreenGrid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: left top;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #f8fafc;
}
.attendScreenGrid figcaption {
    margin: 10px 2px 2px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.docPanel {
    padding: clamp(18px, 3vw, 26px);
    margin: 22px 0;
    box-shadow: 0 8px 26px rgba(16, 24, 40, 0.05);
}
.docPanel--form { border-left: 4px solid var(--primary); }
.docPanel--table { border-left: 4px solid var(--primary-2); }
.workflowPanel { border-left: 4px solid #0f766e; }
.compactForm p,
.compactTable p { max-width: 82ch; }
.appendixLink a { color: #1849a9; font-weight: 900; }
.panelHeader {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}
.miniGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}
.miniGrid div {
    border: 1px solid var(--line);
    background: #f8fbff;
    border-radius: var(--radius);
    padding: 12px;
    min-width: 0;
}
.miniGrid strong { display: block; color: var(--ink); margin-bottom: 3px; }
.miniGrid span { color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.twoCol { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.callout {
    padding: 14px 16px;
    margin: 16px 0;
    color: #344054;
}
.callout p { margin: 6px 0 0; }
.callout ul { margin: 8px 0 0; padding-left: 20px; }
.callout--tip { border-color: #a6f4c5; background: #ecfdf3; color: #054f31; }
.callout--success { border-color: #a6f4c5; background: #f6fef9; color: #05603a; }
.callout--warning { border-color: #fedf89; background: #fffaeb; color: #7a2e0e; }
.callout--info { border-color: #bfd7ff; background: #eff6ff; color: #1849a9; }

.tableBox {
    width: 100%;
    overflow: visible;
    margin: 16px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.docTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.docTable th, .docTable td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    overflow-wrap: anywhere;
}
.docTable th {
    color: #344054;
    background: #f2f6fc;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.docTable tr:last-child td { border-bottom: 0; }

.mediaFrame {
    max-width: 720px;
    margin: 16px 0;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}
.mediaFrame img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: #f8fafc;
}
.mediaFrame figcaption {
    color: var(--muted);
    font-size: 14px;
    margin: 10px 4px 2px;
}

.stepList {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    counter-reset: step;
    display: grid;
    gap: 12px;
}
.stepList li {
    counter-increment: step;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.stepList li:before {
    content: counter(step);
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    background: #e6f4f1;
    color: #0f766e;
    font-weight: 900;
}
.stepList strong { grid-column: 2; display: block; color: var(--ink); }
.stepList span { grid-column: 2; color: var(--muted); overflow-wrap: anywhere; }
.checklist { padding-left: 22px; }
.checklist li { margin: 7px 0; }

.attendanceIssueHero {
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}
.attendanceIssuePage {
    display: grid;
    gap: 22px;
    margin-top: 22px;
}
.issueFlowPath {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.issueFlowNode,
.issuePanel,
.issueLane,
.issueStateGrid article,
.issueMailpit article {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}
.issueFlowNode {
    position: relative;
    padding: 16px;
    overflow: hidden;
}
.issueFlowNode:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: #155eef;
}
.issueFlowNode--employee:before { background: #0f766e; }
.issueFlowNode--hr:before { background: #b45309; }
.issueFlowNode--manager:before { background: #1849a9; }
.issueFlowNode--admin:before { background: #027a48; }
.issueFlowNode__number {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #eef4ff;
    color: #155eef;
    font-weight: 900;
    margin-bottom: 12px;
}
.issueFlowNode strong,
.issuePanel h3,
.issueLane h3,
.issueMailpit strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    margin: 0 0 8px;
    overflow-wrap: anywhere;
}
.issueFlowNode p,
.issuePanel p,
.issueLane p,
.issueStateGrid p,
.issueMailpit p {
    color: var(--muted);
    margin: 0;
    overflow-wrap: anywhere;
}
.issueStatusChip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid #d0d5dd;
    background: #f8fafc;
    color: #344054;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
}
.issueStatusChip--info { border-color: #bfd7ff; background: #eff6ff; color: #1849a9; }
.issueStatusChip--warning { border-color: #fedf89; background: #fffaeb; color: #7a2e0e; }
.issueStatusChip--success { border-color: #a6f4c5; background: #ecfdf3; color: #05603a; }
.issueStatusChip--danger { border-color: #fecaca; background: #fef2f2; color: #991b1b; }
.issueSection {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbff;
}
.issueSection__head {
    max-width: 860px;
}
.issueSection__head p {
    color: var(--muted);
    margin: 0;
}
.issueScenario,
.issueSection--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.issuePanel {
    padding: 18px;
}
.issuePanel--portal { border-top: 4px solid #0f766e; }
.issuePanel--queue { border-top: 4px solid #1849a9; }
.issuePanel__topline {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.issuePanel__icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #101828;
    color: #fff;
    font-weight: 900;
}
.issueMockForm,
.issueQueueCard__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}
.issueMockForm div,
.issueQueueCard__metrics div {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    padding: 11px;
}
.issueMockForm span,
.issueQueueCard span,
.issueStateGrid span,
.issueMailpit span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.issueMockForm strong,
.issueQueueCard strong,
.issueStateGrid strong {
    display: block;
    color: var(--ink);
    margin-top: 4px;
    overflow-wrap: anywhere;
}
.issueQueueCard {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
}
.issueQueueCard__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.issueQueueCard__head em {
    display: block;
    color: var(--muted);
    font-style: normal;
    margin-top: 3px;
}
.issueQueueCard__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.issueQueueCard__actions span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 8px;
    padding: 7px 10px;
    background: #101828;
    color: #fff;
    font-size: 12px;
}
.issueStateGrid,
.issueLaneGrid,
.issueMailpit {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.issueStateGrid article,
.issueLane,
.issueMailpit article {
    padding: 15px;
}
.issueLane {
    border-top: 4px solid #155eef;
}
.issueLane:nth-child(1) { border-top-color: #0f766e; }
.issueLane:nth-child(2) { border-top-color: #b45309; }
.issueLane:nth-child(3) { border-top-color: #1849a9; }
.issueLane:nth-child(4) { border-top-color: #027a48; }
.issueLane__marker {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef4ff;
    color: #1849a9;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.issueRules,
.issueTimeline {
    min-width: 0;
}
.issueRules ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #344054;
}
.issueRules li {
    margin: 8px 0;
    overflow-wrap: anywhere;
}
.issueTimeline {
    display: grid;
    gap: 10px;
}
.issueTimeline div {
    position: relative;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 13px 13px 13px 18px;
}
.issueTimeline div:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    bottom: 13px;
    width: 4px;
    border-radius: 4px;
    background: #155eef;
}
.issueTimeline strong {
    display: block;
    color: var(--ink);
    margin: 8px 0 3px;
}
.issueTimeline span:last-child {
    color: var(--muted);
}
.issueMailpit article > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #101828;
    color: #fff;
    margin-bottom: 10px;
}
.issueMediaStrip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.issueMediaStrip .mediaFrame {
    max-width: none;
    margin: 0;
    border-radius: 8px;
}

.sourceSummary { border-left: 4px solid var(--accent); }
.sourceScreen { border-left: 4px solid #475467; }
.sourceMeta {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 10px;
    margin: 14px 0;
}
.sourceMeta div {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #f8fbff;
}
.sourceMeta strong {
    display: block;
    color: var(--ink);
    margin-bottom: 4px;
}
.sourceMeta span,
.sourceMeta code {
    overflow-wrap: anywhere;
}
.sourceLists {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.sourceLists > div {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
}
.sourceLists strong {
    display: block;
    color: var(--ink);
    margin-bottom: 5px;
}
.sourceLists ul {
    margin: 0;
    padding-left: 18px;
}
.sourceLists li {
    margin: 4px 0;
    overflow-wrap: anywhere;
}
.sourceLists p {
    margin: 0;
    color: var(--muted);
}
.sourceDocTable th,
.sourceDocTable td {
    font-size: 13px;
}
.sourceDocTable th:nth-child(1) { width: 18%; }
.sourceDocTable th:nth-child(2) { width: 22%; }
.sourceDocTable th:nth-child(3) { width: 16%; }
.sourceDocTable th:nth-child(4) { width: 44%; }

.developerNote {
    margin: 26px 0;
    padding: 18px;
    background: #101828;
    border-color: #1d2939;
    color: #eef4ff;
}
.developerNote__title {
    display: inline-flex;
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    color: #b2ddff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.developerNote p { color: #d0d5dd; }
.developerNote__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.developerNote ul { margin: 8px 0 0; padding-left: 20px; }
.developerNote li { margin: 5px 0; color: #d0d5dd; overflow-wrap: anywhere; }
.developerNote code { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #d1e9ff; }

.toc {
    position: sticky;
    top: var(--topbar-h);
    height: calc(100vh - var(--topbar-h));
    overflow: auto;
    padding: 24px 18px;
    border-left: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(180deg, rgba(18, 32, 51, 0.86), rgba(13, 23, 38, 0.9)),
        radial-gradient(circle at 24% 0%, rgba(37, 99, 235, 0.2), transparent 38%),
        radial-gradient(circle at 80% 20%, rgba(22, 134, 106, 0.18), transparent 42%);
    box-shadow: -18px 0 46px rgba(15,23,42,0.09);
    backdrop-filter: blur(18px);
}
.toc__title { color: rgba(231,238,252,0.68); font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; margin-bottom: 8px; }
.toc__link {
    display: block;
    color: rgba(231,238,252,0.78);
    text-decoration: none;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    overflow-wrap: anywhere;
}
.toc__link--h3 { padding-left: 12px; font-size: 13px; }
.toc__link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.16);
}

@media (max-width: 1100px) {
    .issueFlowPath,
    .issueStateGrid,
    .issueLaneGrid,
    .issueMailpit {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 1450px) {
    .layout { grid-template-columns: var(--sidebar-w) minmax(0, 1fr); }
    .toc { display: none; }
}
@media (max-width: 900px) {
    .topbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        height: auto;
        min-height: var(--topbar-h);
        padding: 10px 12px;
    }
    .iconButton { display: grid; }
    .brand__text small { display: none; }
    .search { grid-column: 1 / -1; order: 5; }
    .topbar__right .pill { display: none; }
    .layout { display: block; }
    .sidebar {
        position: fixed;
        z-index: 70;
        inset: var(--topbar-h) auto 0 0;
        width: min(86vw, var(--sidebar-w));
        transform: translateX(-102%);
        transition: transform .18s ease;
        box-shadow: var(--shadow);
    }
    body.menu-open .sidebar { transform: translateX(0); }
    .main { padding: 20px 14px 44px; }
    .infoGrid, .linkGrid, .miniGrid, .twoCol, .developerNote__grid, .sourceMeta, .sourceLists, .issueScenario, .issueSection--split, .issueMediaStrip { grid-template-columns: 1fr; }
    .panelHeader { flex-direction: column; }
}
@media (max-width: 760px) {
    h1 { font-size: 34px; }
    .lead { font-size: 16px; }
    .issueFlowPath,
    .issueStateGrid,
    .issueLaneGrid,
    .issueMailpit,
    .issueMockForm,
    .issueQueueCard__metrics {
        grid-template-columns: 1fr;
    }
    .issueSection { padding: 14px; }
    .issueQueueCard__head { flex-direction: column; }
    .docTable thead { display: none; }
    .docTable, .docTable tbody, .docTable tr, .docTable td { display: block; width: 100%; }
    .docTable tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
    .docTable tr:last-child { border-bottom: 0; }
    .docTable td { border: 0; padding: 8px 12px; }
    .docTable td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 2px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}
@media (max-width: 1180px) {
    .attendHero {
        grid-template-columns: 1fr;
    }
    .attendHero__visual {
        max-width: 780px;
    }
}
@media (max-width: 980px) {
    .attendStats,
    .attendFlow,
    .attendPathGrid,
    .attendScreenGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .attendHero__visual {
        display: none;
    }
}
@media (max-width: 760px) {
    .attendHero {
        padding: 18px;
    }
    .attendHero h1 {
        font-size: 31px;
    }
    .attendHero__cue {
        grid-template-columns: 1fr;
    }
    .attendHero__cue > span {
        width: 34px;
        height: 34px;
    }
    .attendCommand__stage,
    .attendCommand__footer,
    .attendStats,
    .attendFlow,
    .attendPathGrid,
    .attendScreenGrid {
        grid-template-columns: 1fr;
    }
    .attendCommand__search {
        grid-template-columns: auto minmax(0, 1fr);
    }
    .attendCommand__search em {
        grid-column: 1 / -1;
        text-align: left;
    }
    .attendCommand__stage img {
        min-height: 180px;
    }
    .attendPathCard__media {
        aspect-ratio: 16 / 7;
    }
}
@media (max-width: 640px) {
    .attendHero__cue,
    .attendHero .hero__meta {
        display: none;
    }
    .attendHero .lead {
        font-size: 15px;
    }
}
@media print {
    .topbar, .sidebar, .toc { display: none; }
    .layout { display: block; }
    .main { padding: 0; }
    .docPanel, .mediaFrame, .developerNote, .callout { break-inside: avoid; box-shadow: none; }
}
