:root {
    --bg: #f6f1e8;
    --bg-soft: #fbf7ef;
    --panel: rgba(255, 251, 245, 0.96);
    --panel-strong: #fffaf3;
    --text: #0f172a;
    --muted: #4b5563;
    --sidebar: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(245, 239, 230, 0.98) 100%);
    --line: rgba(26, 54, 93, 0.14);
    --orange: #1e3a5f;
    --orange-deep: #102844;
    --orange-soft: rgba(30, 58, 95, 0.08);
    --shadow: 0 22px 48px rgba(32, 41, 57, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top right, rgba(30, 58, 95, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f3eb 0%, #f3ede3 100%);
    color: var(--text);
    font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
}

.is-hidden {
    display: none !important;
}

button,
input,
select {
    font: inherit;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.shell {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(30, 58, 95, 0.035) 0, rgba(30, 58, 95, 0.035) 96px, transparent 96px),
        linear-gradient(180deg, #f8f3eb 0%, #f3ede3 100%);
    transition: grid-template-columns 220ms ease;
}

.shell:has(.sidebar:hover),
.shell:has(.sidebar:focus-within) {
    grid-template-columns: 288px minmax(0, 1fr);
    background:
        linear-gradient(90deg, rgba(30, 58, 95, 0.035) 0, rgba(30, 58, 95, 0.035) 288px, transparent 288px),
        linear-gradient(180deg, #f8f3eb 0%, #f3ede3 100%);
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.auth-card {
    width: min(520px, 100%);
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--panel);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.auth-card__brand {
    margin-bottom: 20px;
}

.auth-card__brand h1 {
    margin: 8px 0 10px;
    font-size: 2rem;
}

.auth-card__brand p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.auth-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 100vh;
    padding: 24px 16px;
    background: var(--sidebar);
    border-right: 1px solid rgba(30, 58, 95, 0.10);
    overflow: hidden;
    transition: width 220ms ease, grid-column 220ms ease;
    width: 96px;
    z-index: 20;
}

.sidebar:hover,
.sidebar:focus-within {
    width: 288px;
}

.sidebar__brand,
.sidebar__footer,
.nav-item__text {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.sidebar:hover .sidebar__brand,
.sidebar:hover .sidebar__footer,
.sidebar:hover .nav-item__text,
.sidebar:focus-within .sidebar__brand,
.sidebar:focus-within .sidebar__footer,
.sidebar:focus-within .nav-item__text {
    opacity: 1;
    transform: translateX(0);
}

.sidebar__brand {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 14px;
    min-width: 240px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
    box-shadow: 0 12px 28px rgba(30, 58, 95, 0.24);
}

.brand-mark__flame {
    position: relative;
    width: 22px;
    height: 22px;
    border: 3px solid #f8f3eb;
    border-radius: 8px;
    background: transparent;
}

.brand-mark__flame::before,
.brand-mark__flame::after {
    content: "";
    position: absolute;
    background: #f8f3eb;
    border-radius: 999px;
}

.brand-mark__flame::before {
    inset: 50% auto auto 50%;
    width: 10px;
    height: 3px;
    transform: translate(-50%, -50%);
}

.brand-mark__flame::after {
    inset: auto auto 4px 4px;
    width: 8px;
    height: 3px;
}

.brand-copy {
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-copy strong {
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.brand-copy__eyebrow,
.panel__eyebrow,
.hero__eyebrow,
.status-card__label {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-copy__eyebrow {
    color: rgba(17, 17, 17, 0.56);
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 256px;
    padding: 12px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item.is-active {
    background: rgba(30, 58, 95, 0.08);
    transform: translateX(2px);
    outline: none;
}

.nav-item.is-active {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.14), rgba(30, 58, 95, 0.05));
    box-shadow: inset 0 0 0 1px rgba(30, 58, 95, 0.16);
}

.nav-item__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(30, 58, 95, 0.08);
    flex: 0 0 auto;
}

.nav-item__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-item__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-item__label {
    font-weight: 700;
}

.nav-item__hint {
    color: rgba(17, 17, 17, 0.54);
    font-size: 0.88rem;
}

.sidebar__footer {
    margin-top: auto;
    min-width: 240px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
    background: rgba(30, 58, 95, 0.08);
    color: rgba(17, 17, 17, 0.68);
    line-height: 1.5;
}

.sidebar__footer strong {
    color: var(--text);
}

.workspace {
    padding: 28px;
    background: transparent;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 24px;
    margin-bottom: 24px;
}

.hero__meta,
.hero__status,
.panel {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero__meta {
    padding: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 239, 0.98)),
        radial-gradient(circle at top right, rgba(30, 58, 95, 0.12), transparent 32%);
}

.hero__eyebrow,
.panel__eyebrow {
    color: var(--orange-deep);
    font-weight: 700;
}

.hero__meta h1 {
    margin: 10px 0 12px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.hero__meta p,
.panel p,
.feature-list,
.roadmap p {
    color: var(--muted);
    line-height: 1.7;
}

.hero__status {
    display: grid;
    gap: 16px;
    align-self: stretch;
}

.status-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 241, 0.96));
    color: var(--text);
    border: 1px solid rgba(30, 58, 95, 0.14);
}

.status-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
}

.status-card__label {
    color: rgba(203, 67, 22, 0.82);
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 24px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.panel {
    padding: 28px;
    background: var(--panel);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.panel__header {
    margin-bottom: 18px;
}

.panel__header h2 {
    margin: 8px 0 0;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
    font-size: 1.55rem;
}

.feature-list {
    margin: 0;
    padding-left: 18px;
}

.feature-list li + li {
    margin-top: 10px;
}

.metric-grid {
    display: grid;
    gap: 14px;
}

.project-form {
    display: grid;
    gap: 18px;
}

.project-summary-card {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.02));
    border: 1px solid rgba(30, 58, 95, 0.12);
    margin-bottom: 18px;
}

.project-summary-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
    font-size: 1.1rem;
}

.dashboard-actions {
    display: grid;
    gap: 14px;
}

.projects-list {
    display: grid;
    gap: 14px;
}

.artifacts-list {
    display: grid;
    gap: 14px;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.files-group h3 {
    margin: 0 0 14px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
}

.project-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf3, #f7f0e6);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.artifact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf3, #f7f0e6);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.artifact-item--empty {
    display: block;
}

.project-item.is-active {
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.10), rgba(30, 58, 95, 0.03));
    border-color: rgba(30, 58, 95, 0.18);
}

.project-item--empty {
    display: block;
}

.project-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
}

.project-item__meta {
    display: grid;
    gap: 4px;
}

.artifact-item__meta {
    display: grid;
    gap: 4px;
}

.project-item__meta span,
.project-item__stats span,
.artifact-item__meta span {
    color: var(--muted);
    font-size: 0.95rem;
}

.project-item__stats {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.project-item__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.project-checklist {
    width: 100%;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 58, 95, 0.10);
}

.checklist-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(220, 38, 38, 0.06);
    color: #7f1d1d;
    border: 1px solid rgba(220, 38, 38, 0.10);
}

.checklist-item.is-done {
    background: rgba(34, 197, 94, 0.10);
    color: #14532d;
    border-color: rgba(34, 197, 94, 0.16);
}

.checklist-item__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
    font-weight: 700;
    flex: 0 0 auto;
}

.checklist-item.is-done .checklist-item__mark {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.secondary-action {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 95, 0.18);
    background: rgba(30, 58, 95, 0.08);
    color: var(--orange-deep);
    font-weight: 700;
    cursor: pointer;
}

.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 95, 0.18);
    background: rgba(30, 58, 95, 0.08);
    color: var(--orange-deep);
    font-weight: 700;
    text-decoration: none;
}

.danger-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(220, 38, 38, 0.18);
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.danger-icon-btn:hover,
.danger-icon-btn:focus-visible {
    background: rgba(220, 38, 38, 0.14);
    outline: none;
}

.metric-tile {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.03));
    border: 1px solid rgba(30, 58, 95, 0.12);
}

.metric-tile__label {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.metric-tile strong {
    font-size: 1.2rem;
}

.panel--form,
.panel--roadmap {
    margin-bottom: 24px;
}

.module-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.module-stage__col {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fffaf3, #f7f1e8);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.module-stage__col h3 {
    margin-top: 0;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
}

.is-hidden {
    display: none !important;
}

.input-shell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--muted);
}

.input-shell input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(30, 58, 95, 0.14);
    background: rgba(30, 58, 95, 0.04);
    color: var(--text);
}

.input-shell select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(30, 58, 95, 0.14);
    background: rgba(30, 58, 95, 0.04);
    color: var(--text);
}

.primary-action {
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff8f5;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(30, 58, 95, 0.24);
}

.action-copy {
    margin-top: 16px;
}

.live-panel {
    display: grid;
    gap: 18px;
}

.live-panel__form {
    display: grid;
    gap: 18px;
}

.live-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.live-panel__grid--xml {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-panel__grid--zois-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live-panel__grid--zois-primary .input-shell:first-child:last-child {
    grid-column: 1 / -1;
}

.live-panel__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.live-panel__actions--stack {
    align-items: flex-start;
    flex-direction: column;
}

.live-panel__actions .action-copy {
    margin: 0;
}

.rr-zois-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rr-zois-filters {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 241, 0.92));
    border: 1px solid rgba(30, 58, 95, 0.10);
}

.filter-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.rr-zois-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 241, 0.92));
    border: 1px solid rgba(30, 58, 95, 0.10);
}

.source-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.source-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 95, 0.14);
    background: rgba(30, 58, 95, 0.05);
    color: var(--orange-deep);
    font-weight: 700;
    cursor: pointer;
}

.source-pill.is-active {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.18), rgba(30, 58, 95, 0.07));
    border-color: rgba(30, 58, 95, 0.22);
}

.filter-preset-btn.is-active {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.18), rgba(30, 58, 95, 0.07));
    border-color: rgba(30, 58, 95, 0.22);
}

.source-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.source-panel {
    display: block;
}

.result-box {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.02));
    border: 1px solid rgba(30, 58, 95, 0.12);
}

.result-box strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
}

.result-box p {
    margin: 0 0 10px;
}

.result-box ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.xml-result-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.xml-result-item {
    padding: 16px;
    border-radius: 16px;
    background: rgba(30, 58, 95, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.10);
}

.zois-calendar-panel {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 241, 0.92));
    border: 1px solid rgba(30, 58, 95, 0.10);
}

.panel__header--compact {
    margin-bottom: 14px;
}

.panel__header--compact h3 {
    margin: 8px 0 0;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
    font-size: 1.25rem;
}

.zois-calendar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.zois-month-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 180px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 241, 0.88));
    border: 1px solid rgba(30, 58, 95, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.zois-month-card:hover,
.zois-month-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(30, 58, 95, 0.22);
    box-shadow: 0 16px 30px rgba(30, 58, 95, 0.10);
}

.zois-month-card__index {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(203, 67, 22, 0.78);
}

.zois-month-card__name {
    margin-top: 18px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
    font-size: 1.05rem;
    color: var(--text);
}

.zois-month-card__meta {
    color: rgba(17, 17, 17, 0.52);
    font-size: 0.88rem;
}

.zois-month-card input[type="file"] {
    margin-top: auto;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(30, 58, 95, 0.14);
    background: rgba(30, 58, 95, 0.05);
    color: var(--text);
}

.trend-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trend-project-card {
    display: grid;
    gap: 8px;
    min-height: 120px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 241, 0.88));
    border: 1px solid rgba(30, 58, 95, 0.12);
}

.trend-project-card strong {
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
}

.trend-project-card span {
    color: rgba(17, 17, 17, 0.58);
    font-size: 0.9rem;
    word-break: break-word;
}

.trend-project-card.is-ready {
    border-color: rgba(34, 197, 94, 0.28);
    background: linear-gradient(180deg, rgba(240, 253, 244, 1), rgba(226, 251, 234, 0.92));
}

.trend-project-card.is-missing {
    border-color: rgba(30, 58, 95, 0.16);
}

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff7f4;
    text-decoration: none;
    font-weight: 700;
}

.rr-zois-html {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 58, 95, 0.10);
    overflow-x: auto;
}

.rr-zois-html table {
    width: 100%;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.roadmap article {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf3, #f6efe5);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.roadmap strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Bahnschrift SemiBold", "Aptos Display", sans-serif;
}

@media (max-width: 1180px) {
    .hero,
    .workspace-grid,
    .dashboard-grid,
    .files-grid,
    .module-stage,
    .roadmap,
    .live-panel__grid,
    .rr-zois-grid,
    .zois-calendar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .shell {
        grid-template-columns: 1fr;
    }

    .sidebar,
    .sidebar:hover,
    .sidebar:focus-within {
        position: static;
        width: 100%;
        min-height: auto;
    }

    .sidebar__brand,
    .sidebar__footer,
    .nav-item__text {
        opacity: 1;
        transform: none;
    }

    .sidebar__nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav-item {
        min-width: 210px;
    }

    .workspace {
        padding: 18px;
    }

    .hero__meta,
    .panel {
        padding: 22px;
    }

    .live-panel__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .artifact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-item__stats {
        justify-items: start;
    }

    .project-item__buttons,
    .checklist-list {
        width: 100%;
        justify-content: flex-start;
        grid-template-columns: 1fr;
    }
}
