:root {
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: light dark;
    --taskbar-height: 54px;
    --hurozo-primary: #f15a24;
    --hurozo-primary-700: #d94f1f;
    --hurozo-text: #121826;
    --hurozo-muted: #4b5563;
    --hurozo-muted-strong: #1f2933;
    --hurozo-surface: rgba(255, 255, 255, 0.92);
    --taskbar-bg: rgba(255, 245, 238, 0.88);
    --taskbar-border: rgba(241, 90, 36, 0.18);
    --taskbar-text: var(--hurozo-muted-strong);
    --window-bg: var(--hurozo-surface);
    --window-border: rgba(241, 90, 36, 0.18);
    --window-shadow: 0 28px 60px rgba(18, 24, 38, 0.18);
    --desktop-text-bg: rgba(255, 236, 228, 0.82);
    --desktop-text-color: var(--hurozo-text);
    --window-control-bg: rgba(241, 90, 36, 0.18);
    --window-control-symbol: var(--hurozo-primary-700);
    --desktop-overlay: linear-gradient(rgba(255, 247, 242, 0.82), rgba(255, 236, 227, 0.82));
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
    color: var(--taskbar-text);
    background:
        radial-gradient(1200px 600px at 20% -15%, rgba(241, 90, 36, 0.12), transparent 60%),
        radial-gradient(800px 400px at 85% -20%, rgba(255, 171, 106, 0.16), transparent 45%),
        linear-gradient(#fff7f2, #ffece3);
}

main.desktop {
    position: fixed;
    top: var(--taskbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--taskbar-height));
    padding: 16px;
    box-sizing: border-box;
    user-select: none;
    overflow: hidden;
}

.taskbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--taskbar-height);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 18px;
    background: var(--taskbar-bg);
    border-bottom: 1px solid var(--taskbar-border);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-sizing: border-box;
}

.taskbar .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--taskbar-text);
}

.brand-logo {
    display: block;
}

.brand-name {
    letter-spacing: 0.2px;
}

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

.theme-toggle {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: transform 120ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: scale(1.08);
}

.taskbar-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    margin-left: auto;
}

.taskbar-session {
    display: flex;
    align-items: center;
    gap: 12px;
}

.session-link {
    font-size: 13px;
    line-height: 1;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    background: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 120ms ease, color 120ms ease, opacity 120ms ease;
}

.session-link:hover,
.session-link:focus-visible {
    background: rgba(241, 90, 36, 0.18);
    color: var(--hurozo-primary-700);
}

.session-link[hidden] {
    display: none !important;
}

.session-profile {
    position: relative;
    display: flex;
    align-items: center;
}

.session-profile[hidden] {
    display: none !important;
}

.session-profile__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    transition: background 120ms ease, color 120ms ease;
}

.session-profile__trigger:hover,
.session-profile__trigger:focus-visible {
    background: rgba(241, 90, 36, 0.18);
    color: var(--hurozo-primary-700);
}

.session-profile__avatar {
    font-size: 16px;
    line-height: 1;
}

.session-profile__email {
    font-size: 13px;
    font-weight: 500;
}

.session-profile__caret {
    font-size: 12px;
    margin-left: 2px;
}

.session-profile__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 12px;
    background: var(--window-bg);
    box-shadow: 0 18px 40px rgba(18, 24, 38, 0.15);
    border: 1px solid rgba(18, 24, 38, 0.08);
    z-index: 999;
}

.session-profile__menu[hidden] {
    display: none !important;
}

.session-profile__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    background: none;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font: inherit;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 120ms ease, color 120ms ease;
}

.session-profile__item:hover,
.session-profile__item:focus-visible {
    background: rgba(241, 90, 36, 0.12);
    color: var(--hurozo-primary-700);
}

.session-profile__item--danger {
    color: #ad1f20;
}

.session-profile__item--danger:hover,
.session-profile__item--danger:focus-visible {
    background: rgba(199, 43, 45, 0.14);
    color: #8a1415;
}

.session-profile__item[aria-disabled="true"] {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}

.session-link[disabled],
.session-link[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.session-link--plain {
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: inherit;
    line-height: inherit;
}

.session-link--plain:hover,
.session-link--plain:focus-visible {
    background: none;
    color: inherit;
    text-decoration: underline;
}

.reserve-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.reserve-button img {
    display: block;
    height: 100%;
}

.menu-bar {
    display: flex;
    height: 100%;
    align-items: center;
}

.menu-root {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-trigger {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(45, 28, 21, 0.86);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: color 120ms ease;
    border-radius: 0;
}

.menu-trigger:hover,
.menu-trigger:focus-visible,
.menu-item.open .menu-trigger {
    color: var(--hurozo-primary);
}

.menu-caret {
    font-size: 11px;
    opacity: 0.5;
    transition: transform 120ms ease, color 120ms ease;
}

.menu-item.open .menu-caret {
    transform: rotate(180deg);
    color: currentColor;
}

.menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 420px;
    max-width: 660px;
    padding: 18px 20px;
    background: var(--window-bg);
    border: 1px solid var(--window-border);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px rgba(18, 24, 38, 0.24);
    display: none;
    color: inherit;
    z-index: 1200;
}

.menu-item.open .menu-panel {
    display: grid;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.menu-panel section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-panel h4 {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(42, 28, 24, 0.6);
}

.menu-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-panel a[role="menuitem"] {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid transparent;
    transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.menu-panel a[role="menuitem"] strong {
    font-size: 14px;
    display: block;
}

.menu-panel a[role="menuitem"] p {
    margin: 4px 0 0;
    font-size: 12px;
    color: rgba(42, 28, 24, 0.7);
}

.menu-panel a[role="menuitem"]:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 90, 36, 0.35);
    background: rgba(255, 255, 255, 0.9);
}

.menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.18), rgba(255, 193, 80, 0.25));
    color: var(--hurozo-primary);
    box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.25);
}

.menu-icon::before {
    font-size: 16px;
}

.menu-icon-overview::before {
    content: "🧠";
}

.menu-icon-flow::before {
    content: "⚙️";
}

.menu-icon-proof::before {
    content: "📊";
}

.menu-icon-support::before {
    content: "💬";
}

.menu-icon-revops::before {
    content: "📈";
}

.menu-icon-ops::before {
    content: "🛰️";
}

.menu-icon-docs::before {
    content: "📚";
}

.menu-icon-github::before {
    content: "🐙";
}

.menu-icon-waitlist::before {
    content: "🚀";
}

.taskbar button:not(.menu-trigger):not(.theme-toggle),
.taskbar select {
    background: rgba(0, 0, 0, 0.08);
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 120ms ease, background 120ms ease;
}

.taskbar button:not(.menu-trigger):not(.theme-toggle):hover,
.taskbar select:hover {
    background: rgba(0, 0, 0, 0.14);
}

.taskbar button:not(.menu-trigger):not(.theme-toggle):active {
    transform: translateY(1px);
}

.icon-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.desktop-icon {
    position: absolute;
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: grab;
    transition: transform 120ms ease;
}

.desktop-icon:active {
    cursor: grabbing;
}

.desktop-icon figure {
    margin: 0;
}

.desktop-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
    transition: transform 120ms ease;
}

.desktop-icon:hover img {
    transform: translateY(-2px) scale(1.03);
}

.desktop-icon figcaption {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    background: var(--desktop-text-bg);
    color: var(--desktop-text-color);
    padding: 3px 6px;
    border-radius: 4px;
    backdrop-filter: blur(16px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.desktop-icon.open figcaption {
    outline: 2px solid rgba(241, 90, 36, 0.35);
}

.desktop-window {
    position: absolute;
    width: 380px;
    min-width: 380px;
    max-width: calc(100vw - 48px);
    min-height: 280px;
    height: min(640px, calc(100vh - var(--taskbar-height) - 48px));
    max-height: calc(100vh - var(--taskbar-height) - 48px);
    display: none;
    flex-direction: column;
    background: var(--window-bg);
    border: 1px solid var(--window-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: var(--window-shadow);
    overflow: hidden;
    z-index: 10;
}

.desktop-window .window-resize-handle {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    border-radius: 8px;
    cursor: se-resize;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.35), rgba(241, 90, 36, 0.15));
    opacity: 0;
    transition: opacity 140ms ease;
    pointer-events: none;
    touch-action: none;
}

.desktop-window:hover .window-resize-handle,
.desktop-window.is-front .window-resize-handle {
    opacity: 0.85;
    pointer-events: auto;
}

.desktop-window.is-resizing,
.desktop-window.is-resizing * {
    cursor: se-resize;
}

.desktop-window.active {
    display: flex;
}

.desktop-window.is-front {
    box-shadow: var(--window-shadow), 0 0 0 1.5px rgba(241, 90, 36, 0.28);
}

.window-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 232, 220, 0.95));
    border-bottom: 1px solid rgba(241, 90, 36, 0.15);
    cursor: grab;
}

.window-titlebar h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.window-buttons button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: var(--window-control-bg);
    cursor: pointer;
    transition: opacity 120ms ease, transform 120ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.window-buttons button:hover {
    opacity: 0.85;
}

.window-buttons button:active {
    transform: translateY(1px);
}

.window-buttons button::before,
.window-buttons button::after {
    content: "";
    position: absolute;
    display: block;
    background: var(--window-control-symbol);
    border-radius: 1px;
    pointer-events: none;
    transition: background 120ms ease;
}

.window-buttons button::after {
    display: none;
}

.window-buttons button[data-action="minimize"]::before {
    width: 11px;
    height: 2px;
}

.window-buttons button[data-action="maximize"]::before {
    width: 11px;
    height: 11px;
    background: transparent;
    border: 1.5px solid var(--window-control-symbol);
    border-radius: 3px;
}

.window-buttons button[data-action="close"]::before,
.window-buttons button[data-action="close"]::after {
    width: 11px;
    height: 2px;
    display: block;
}

.window-buttons button[data-action="close"]::before {
    transform: rotate(45deg);
}

.window-buttons button[data-action="close"]::after {
    transform: rotate(-45deg);
}

.window-content {
    padding: 18px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    font-size: 14px;
    line-height: 1.6;
}

.window-content a {
    color: #e6e4e4;
    text-decoration: none;
    font-weight: 600;
}

.window-content a.btn-ghost {
    color: var(--hurozo-primary);
}

.window-content a:hover,
.window-content a:focus {
    text-decoration: underline;
}


.desktop {
    background-image: var(--desktop-overlay), url("assets/img/hurozo-desktop.jpg");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
}

body.dark {
    --taskbar-bg: rgba(21, 23, 32, 0.84);
    --taskbar-border: rgba(241, 90, 36, 0.35);
    --taskbar-text: #f7f7fb;
    --window-bg: rgba(21, 23, 32, 0.94);
    --window-border: rgba(241, 90, 36, 0.35);
    --window-shadow: 0 24px 64px rgba(0, 0, 0, 0.68);
    --desktop-text-bg: rgba(24, 26, 34, 0.82);
    --desktop-text-color: #f7f7fb;
    background: #121826;
    color: #f7f7fb;
    --window-control-bg: rgba(241, 90, 36, 0.32);
    --window-control-symbol: #ffd6b8;
    --desktop-overlay: linear-gradient(rgba(18, 24, 38, 0.65), rgba(9, 7, 7, 0.85));
}

body.dark .menu-trigger {
    color: rgba(247, 247, 251, 0.82);
}

body.dark .session-link:hover,
body.dark .session-link:focus-visible {
    background: rgba(241, 90, 36, 0.32);
    color: #ffe1d5;
}

body.dark .menu-panel a[role="menuitem"] {
    background: rgba(30, 32, 41, 0.85);
}

body.dark .menu-panel a[role="menuitem"] p {
    color: rgba(247, 247, 251, 0.65);
}

body.dark .menu-panel a[role="menuitem"]:hover {
    background: rgba(241, 90, 36, 0.16);
}

body.dark .menu-panel h4 {
    color: rgba(247, 247, 251, 0.6);
}

body.dark .menu-icon {
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.26), rgba(255, 193, 80, 0.18));
}

body.dark .window-titlebar {
    background: linear-gradient(180deg, rgba(32, 34, 46, 0.95), rgba(24, 26, 36, 0.95));
    border-bottom-color: rgba(241, 90, 36, 0.35);
}

.hurozo-window .hurozo-content {
    color: var(--hurozo-text);
}

body.dark .hurozo-window .hurozo-content {
    color: #f7f7fb;
}

.hurozo-window .hero {
    text-align: left;
    padding: 8px 0 24px;
}

.hurozo-window .hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    color: var(--hurozo-text);
}

.hurozo-window .hero .tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--hurozo-muted-strong);
    margin: 0 0 20px;
}

.hurozo-window .availability-note {
    margin: 0 0 28px;
    color: var(--hurozo-muted);
    font-size: clamp(0.95rem, 1.9vw, 1.12rem);
}

.hurozo-window .cta-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 0.15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--hurozo-primary);
    color: #fff;
    box-shadow: 0 18px 40px rgba(241, 90, 36, 0.25);
}

.btn-primary:hover {
    background: var(--hurozo-primary-700);
}

.btn-ghost {
    background: rgba(241, 90, 36, 0.08);
    color: var(--hurozo-primary);
    border-color: rgba(241, 90, 36, 0.25);
}

.btn-ghost:hover {
    background: rgba(241, 90, 36, 0.14);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--hurozo-muted);
    margin-bottom: 8px;
    display: block;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.pill-list li {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(241, 90, 36, 0.08);
    color: var(--hurozo-text);
    font-weight: 600;
}

.section {
    padding: 56px 0;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: var(--hurozo-muted);
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: block;
}

.section h2 {
    margin: 0 0 18px;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    letter-spacing: -0.5px;
    color: var(--hurozo-text);
}

.section p.lead {
    margin: 0 0 28px;
    color: var(--hurozo-muted-strong);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.container {
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(241, 90, 36, 0.18);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(18, 24, 38, 0.1);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 90, 36, 0.4);
}

.card h3 {
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.card p {
    margin: 0;
    color: var(--hurozo-muted);
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.column-card {
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(241, 90, 36, 0.18);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(18, 24, 38, 0.1);
}

.column-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.3rem;
    letter-spacing: -0.2px;
    color: var(--hurozo-text);
}

.callout {
    margin: 40px 0 0;
    padding: 48px 28px;
    background: linear-gradient(180deg, rgba(241, 90, 36, 0.12), rgba(241, 90, 36, 0.04));
    border-radius: 24px;
    border: 1px solid rgba(241, 90, 36, 0.25);
    box-shadow: 0 18px 40px rgba(241, 90, 36, 0.18);
    text-align: center;
}

.callout h2 {
    margin: 0 0 12px;
    letter-spacing: -0.3px;
    color: var(--hurozo-text);
}

.callout p {
    margin: 0 0 20px;
    color: var(--hurozo-muted-strong);
}

.tabs {
    text-align: left;
    margin-top: 24px;
}

.tab-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 16px;
}

.tab {
    appearance: none;
    border: 1px solid rgba(241, 90, 36, 0.3);
    background: rgba(241, 90, 36, 0.08);
    color: var(--hurozo-primary);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.tab:hover {
    background: rgba(241, 90, 36, 0.14);
}

.tab.active {
    background: var(--hurozo-primary);
    color: #fff;
    border-color: var(--hurozo-primary);
    box-shadow: 0 18px 40px rgba(241, 90, 36, 0.25);
}

.tab-descs {
    margin: 0 0 18px;
    color: var(--hurozo-muted-strong);
}

.tab-desc {
    display: none;
}

.tab-desc.active {
    display: block;
}

.tab-panels {
    display: grid;
}

.tab-panel {
    display: none;
    padding: 18px;
    background: #111726;
    color: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.4);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    margin: 0;
    overflow-x: auto;
}

.tab-panel.active {
    display: block;
}

.tab-panel code {
    font-size: 0.9rem;
    line-height: 1.55;
    display: block;
    white-space: pre;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.panel-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.3);
}

.section.dark {
    background: linear-gradient(180deg, #101520, #0c111b);
    color: #f8fafc;
    border-radius: 24px;
    padding: 56px 32px;
}

.section.dark .section-title {
    color: rgba(248, 250, 252, 0.72);
}

.section.dark h2 {
    color: #ffffff;
}

.section.dark p,
.section.dark .card p {
    color: rgba(248, 250, 252, 0.78);
}

.section.dark .card {
    background: rgba(16, 21, 32, 0.85);
    border-color: rgba(241, 90, 36, 0.35);
    box-shadow: none;
}

.section.dark .card:hover {
    border-color: rgba(241, 90, 36, 0.6);
}

.section.dark .card h3 {
    color: #fff;
}

.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.comparison-card {
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(241, 90, 36, 0.2);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(18, 24, 38, 0.12);
}

.comparison-card h3 {
    margin: 0 0 12px;
}

.comparison-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--hurozo-muted);
}

.outro {
    padding: 48px 0;
}

.outro h2 {
    margin: 0 0 16px;
    color: var(--hurozo-text);
}

.outro p {
    margin: 0 0 20px;
    color: var(--hurozo-muted-strong);
}

.footer-note {
    margin-top: 24px;
    color: var(--hurozo-muted);
    font-size: 0.9rem;
}

.docs-frame {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 360px;
}

.docs-browser {
    display: flex;
    border: 1px solid rgba(241, 90, 36, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    min-height: 320px;
}

.docs-sidebar {
    width: 240px;
    border-right: 1px solid rgba(241, 90, 36, 0.15);
    background: rgba(251, 245, 241, 0.9);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.docs-search {
    padding: 14px 16px 0;
}

.docs-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(241, 90, 36, 0.22);
    transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.docs-search-field.has-query {
    border-color: rgba(241, 90, 36, 0.42);
    background: rgba(255, 255, 255, 0.94);
}

.docs-search-field:focus-within {
    border-color: rgba(241, 90, 36, 0.6);
    box-shadow: 0 0 0 2px rgba(241, 90, 36, 0.12);
    background: rgba(255, 255, 255, 0.94);
}

.docs-search-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(241, 90, 36, 0.7);
}

.docs-search-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.docs-search-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    font: inherit;
    color: var(--hurozo-text);
    outline: none;
    padding: 0;
    min-width: 0;
}

.docs-search-input::placeholder {
    color: rgba(241, 90, 36, 0.55);
}

.docs-search-clear {
    appearance: none;
    border: none;
    background: none;
    padding: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(241, 90, 36, 0.5);
    transition: color 120ms ease;
}

.docs-search-clear:hover,
.docs-search-clear:focus-visible {
    color: rgba(241, 90, 36, 0.8);
    outline: none;
}

.docs-search-clear svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.docs-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 8px 16px 4px;
    font-size: 13px;
    color: var(--hurozo-muted);
}

.docs-breadcrumb-sep {
    color: inherit;
    margin: 0 2px;
}

.docs-breadcrumbs button {
    appearance: none;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.docs-breadcrumbs button:hover,
.docs-breadcrumbs button:focus {
    color: var(--hurozo-primary);
    text-decoration: underline;
}

.docs-breadcrumbs .docs-breadcrumb-current {
    font-weight: 600;
    color: var(--hurozo-text);
}

.docs-items {
    list-style: none;
    margin: 0;
    padding: 4px 0 8px;
    flex: 1 1 auto;
    overflow: auto;
}

.docs-item {
    margin: 0;
}

.docs-item-button {
    width: 100%;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    text-align: left;
    font: inherit;
    color: var(--hurozo-text);
    cursor: pointer;
    transition: background-color 120ms ease, color 120ms ease;
}

.docs-item-button:hover,
.docs-item-button:focus-visible {
    background: rgba(241, 90, 36, 0.08);
    outline: none;
}

.docs-item-button.active {
    background: rgba(241, 90, 36, 0.16);
    font-weight: 600;
}

.docs-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.docs-item-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.docs-item-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(241, 90, 36, 0.85);
    stroke-width: 1.4;
}

.docs-item-file .docs-item-icon svg {
    stroke-width: 1.2;
}

.docs-item-meta {
    font-size: 12px;
    color: var(--hurozo-muted);
}

.docs-items.is-searching {
    padding-top: 0;
}

.docs-items[data-mode="search"] .docs-item-button {
    align-items: flex-start;
}

.docs-items[data-mode="search"] .docs-item-label {
    font-weight: 600;
}

.docs-empty {
    padding: 12px 16px;
    color: var(--hurozo-muted);
    font-size: 13px;
}

.docs-viewer {
    flex: 1 1 auto;
    min-width: 0;
    padding: 20px 24px;
    overflow: auto;
    color: var(--hurozo-text);
}

.docs-article h1,
.docs-article h2,
.docs-article h3,
.docs-article h4 {
    color: var(--hurozo-text);
}

.docs-article p,
.docs-article li {
    color: var(--hurozo-muted-strong);
}

.docs-article .card {
    background: rgba(255, 255, 255, 0.92);
}

.docs-hint {
    margin: 0;
    font-size: 13px;
    color: var(--hurozo-muted);
}

.scrum-window .window-content {
    background: transparent;
}

.scrum-app {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 18px;
    background:
        radial-gradient(220% 140% at 15% 0%, rgba(241, 90, 36, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(255, 247, 242, 0.92), rgba(255, 236, 228, 0.88));
    color: var(--hurozo-text);
    box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.08);
}

body.dark .scrum-app {
    background:
        radial-gradient(180% 120% at 10% -20%, rgba(241, 90, 36, 0.32), transparent 55%),
        linear-gradient(180deg, rgba(26, 30, 46, 0.98), rgba(18, 20, 32, 0.94));
    color: #f7f7fb;
    box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.22);
}

.scrum-app__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(241, 90, 36, 0.12), rgba(255, 193, 80, 0.08));
    border: 1px solid rgba(241, 90, 36, 0.14);
}

body.dark .scrum-app__hero {
    background: linear-gradient(120deg, rgba(241, 90, 36, 0.28), rgba(255, 193, 80, 0.12));
    border-color: rgba(241, 90, 36, 0.28);
}

.scrum-app__hero-copy h2 {
    margin: 4px 0 8px;
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    letter-spacing: -0.6px;
    color: inherit;
}

.scrum-app__hero-copy p {
    margin: 0;
    color: var(--hurozo-muted-strong);
}

body.dark .scrum-app__hero-copy p {
    color: rgba(247, 247, 251, 0.72);
}

.scrum-app__eyebrow {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--hurozo-muted);
    margin: 0;
}

body.dark .scrum-app__eyebrow {
    color: rgba(247, 247, 251, 0.56);
}

.scrum-app__badge {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(241, 90, 36, 0.12);
    color: var(--hurozo-primary-700);
    box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.18);
}

body.dark .scrum-app__badge {
    background: rgba(241, 90, 36, 0.28);
    color: #ffe1d5;
}

.scrum-app__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(340px, 1.35fr);
    gap: 24px;
}

@media (max-width: 1180px) {
    .scrum-app__grid {
        grid-template-columns: 1fr;
    }
}

.scrum-app__panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(241, 90, 36, 0.1);
    box-shadow: 0 20px 45px rgba(18, 24, 38, 0.08);
}

body.dark .scrum-app__panel {
    background: rgba(24, 28, 42, 0.92);
    border-color: rgba(241, 90, 36, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.scrum-app__section-heading h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
}

.scrum-app__subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--hurozo-muted);
}

body.dark .scrum-app__subtitle {
    color: rgba(247, 247, 251, 0.65);
}

.scrum-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.scrum-form--prompt {
    margin-top: 4px;
}

.scrum-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scrum-field__label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--hurozo-muted-strong);
}

body.dark .scrum-field__label {
    color: rgba(247, 247, 251, 0.8);
}

.scrum-field input,
.scrum-field textarea {
    width: 100%;
    font: inherit;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(18, 24, 38, 0.12);
    background: rgba(255, 255, 255, 0.95);
    transition: border-color 160ms ease, box-shadow 160ms ease;
    color: inherit;
}

.scrum-field textarea {
    resize: vertical;
    min-height: 120px;
}

.scrum-field input:focus,
.scrum-field textarea:focus {
    outline: none;
    border-color: rgba(241, 90, 36, 0.45);
    box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.18);
}

body.dark .scrum-field input,
body.dark .scrum-field textarea {
    background: rgba(26, 28, 40, 0.92);
    border-color: rgba(241, 90, 36, 0.28);
    color: #f7f7fb;
}

.scrum-workspace__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.scrum-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scrum-chip {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font: inherit;
    cursor: pointer;
    background: rgba(241, 90, 36, 0.08);
    color: var(--hurozo-primary-700);
    font-weight: 600;
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.scrum-chip:hover,
.scrum-chip:focus-visible {
    outline: none;
    background: rgba(241, 90, 36, 0.16);
    transform: translateY(-1px);
}

body.dark .scrum-chip {
    background: rgba(241, 90, 36, 0.26);
    color: #ffe1d5;
}

.scrum-button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.scrum-button--primary {
    background: var(--hurozo-primary);
    color: #fff;
    box-shadow: 0 18px 40px rgba(241, 90, 36, 0.24);
}

.scrum-button--primary:hover,
.scrum-button--primary:focus-visible {
    background: var(--hurozo-primary-700);
}

.scrum-button--ghost {
    background: rgba(241, 90, 36, 0.08);
    color: var(--hurozo-primary-700);
    border-color: rgba(241, 90, 36, 0.16);
}

.scrum-button--ghost:hover,
.scrum-button--ghost:focus-visible {
    background: rgba(241, 90, 36, 0.14);
}

body.dark .scrum-button--ghost {
    background: rgba(241, 90, 36, 0.28);
    color: #ffe1d5;
    border-color: rgba(241, 90, 36, 0.35);
}

.scrum-button__spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    animation: scrum-spin 800ms linear infinite;
    display: none;
}

.scrum-button.is-loading {
    pointer-events: none;
    opacity: 0.82;
}

.scrum-button.is-loading .scrum-button__text {
    opacity: 0;
}

.scrum-button.is-loading .scrum-button__spinner {
    display: inline-block;
}

@keyframes scrum-spin {
    to {
        transform: rotate(360deg);
    }
}

.scrum-results {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.scrum-status {
    min-height: 1.1em;
    margin: 0;
    font-size: 0.92rem;
    color: var(--hurozo-muted);
}

.scrum-status[data-state="success"] {
    color: #1f7a3f;
}

.scrum-status[data-state="warning"] {
    color: #8a4f0f;
}

.scrum-status[data-state="error"] {
    color: #b42318;
}

body.dark .scrum-status {
    color: rgba(247, 247, 251, 0.7);
}

.scrum-response {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(241, 90, 36, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.1);
}

body.dark .scrum-response {
    background: rgba(26, 28, 42, 0.92);
    border-color: rgba(241, 90, 36, 0.28);
    box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.28);
}

.scrum-response.hidden {
    display: none;
}

.scrum-response__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.scrum-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    background: rgba(241, 90, 36, 0.12);
    color: var(--hurozo-primary-700);
}

.scrum-badge[data-state="completed"] {
    background: rgba(46, 204, 113, 0.18);
    color: #176437;
}

.scrum-badge[data-state="error"],
.scrum-badge[data-state="failed"] {
    background: rgba(229, 57, 53, 0.18);
    color: #b42318;
}

.scrum-badge[data-state="pending"] {
    background: rgba(241, 90, 36, 0.16);
}

body.dark .scrum-badge {
    background: rgba(241, 90, 36, 0.28);
    color: #ffe1d5;
}

.scrum-response pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: inherit;
}

.scrum-app__footer {
    text-align: right;
    font-size: 0.8rem;
    color: var(--hurozo-muted);
}

body.dark .scrum-app__footer {
    color: rgba(247, 247, 251, 0.55);
}

@media (max-width: 960px) {
    .docs-browser {
        flex-direction: column;
    }

    .docs-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(241, 90, 36, 0.15);
    }

    .docs-viewer {
        padding: 16px;
    }
}

body.dark .docs-browser {
    background: rgba(24, 26, 36, 0.92);
    border-color: rgba(241, 90, 36, 0.35);
}

body.dark .docs-sidebar {
    background: rgba(24, 26, 36, 0.88);
    border-color: rgba(241, 90, 36, 0.28);
}

body.dark .docs-search-field {
    background: rgba(35, 37, 46, 0.92);
    border-color: rgba(241, 90, 36, 0.28);
}

body.dark .docs-search-field.has-query {
    border-color: rgba(241, 90, 36, 0.52);
    background: rgba(35, 37, 46, 0.98);
}

body.dark .docs-search-field:focus-within {
    border-color: rgba(241, 90, 36, 0.6);
    box-shadow: 0 0 0 2px rgba(241, 90, 36, 0.2);
    background: rgba(35, 37, 46, 0.98);
}

body.dark .docs-search-icon {
    color: rgba(253, 242, 236, 0.75);
}

body.dark .docs-search-input {
    color: rgba(247, 247, 251, 0.92);
}

body.dark .docs-search-input::placeholder {
    color: rgba(253, 242, 236, 0.5);
}

body.dark .docs-search-clear {
    color: rgba(253, 242, 236, 0.55);
}

body.dark .docs-search-clear:hover,
body.dark .docs-search-clear:focus-visible {
    color: rgba(253, 242, 236, 0.85);
}

body.dark .docs-breadcrumbs {
    color: rgba(247, 247, 251, 0.65);
}

body.dark .docs-breadcrumb-sep {
    color: rgba(247, 247, 251, 0.45);
}

body.dark .docs-breadcrumbs .docs-breadcrumb-current {
    color: #fdf2ec;
}

body.dark .docs-item-button {
    color: rgba(247, 247, 251, 0.9);
}

body.dark .docs-item-button:hover,
body.dark .docs-item-button:focus-visible {
    background: rgba(241, 90, 36, 0.24);
}

body.dark .docs-item-button.active {
    background: rgba(241, 90, 36, 0.32);
}

body.dark .docs-item-icon svg {
    stroke: rgba(253, 242, 236, 0.9);
}

body.dark .docs-item-meta {
    color: rgba(247, 247, 251, 0.62);
}

body.dark .docs-empty {
    color: rgba(247, 247, 251, 0.65);
}

body.dark .docs-viewer {
    color: rgba(247, 247, 251, 0.9);
}

body.dark .docs-article h1,
body.dark .docs-article h2,
body.dark .docs-article h3,
body.dark .docs-article h4 {
    color: #fdf2ec;
}

body.dark .docs-article p,
body.dark .docs-article li {
    color: rgba(247, 247, 251, 0.78);
}

body.dark .docs-article .card {
    background: rgba(24, 26, 36, 0.92);
    border-color: rgba(241, 90, 36, 0.35);
}

body.dark .docs-hint {
    color: rgba(247, 247, 251, 0.72);
}

body.dark .card,
body.dark .column-card,
body.dark .comparison-card {
    background: rgba(24, 26, 36, 0.92);
    border-color: rgba(241, 90, 36, 0.35);
    box-shadow: none;
}

body.dark .card p,
body.dark .column-card,
body.dark .comparison-card {
    color: rgba(247, 247, 251, 0.78);
}

body.dark .btn-ghost {
    color: #ffd6b8;
    border-color: rgba(241, 90, 36, 0.35);
}

body.dark .pill-list li {
    background: rgba(241, 90, 36, 0.22);
    color: #fff4ed;
}

body.dark .section-title {
    color: rgba(247, 247, 251, 0.6);
}

body.dark .section h2 {
    color: #fdf2ec;
}

body.dark .section p.lead {
    color: rgba(247, 247, 251, 0.8);
}

body.dark .tab-panel {
    background: rgba(11, 12, 18, 0.85);
    border-color: rgba(241, 90, 36, 0.35);
}

body.dark .tab {
    background: rgba(241, 90, 36, 0.18);
}

body.dark .tab.active {
    color: #fff;
}

body.dark .tab-descs {
    color: rgba(247, 247, 251, 0.8);
}

body.dark .callout {
    background: linear-gradient(180deg, rgba(241, 90, 36, 0.24), rgba(241, 90, 36, 0.12));
    border-color: rgba(241, 90, 36, 0.45);
    box-shadow: none;
}

body.dark .outro p {
    color: rgba(247, 247, 251, 0.8);
}

body.dark .footer-note {
    color: rgba(247, 247, 251, 0.6);
}

@media (max-width: 1024px) {
    :root {
        --taskbar-height: 60px;
    }

    .taskbar {
        gap: 12px;
        padding: 8px 16px;
    }

    .menu-panel {
        max-width: min(560px, 90vw);
    }

    .desktop-window {
        max-width: calc(100vw - 32px);
    }
}

@media (max-width: 768px) {
    :root {
        --taskbar-height: 68px;
    }

    body {
        overflow-y: auto;
    }

    .taskbar {
        position: sticky;
        top: 0;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        height: auto;
        padding: 12px 16px;
        gap: 10px;
    }

    .taskbar .brand {
        order: 1;
    }

    .taskbar-meta {
        order: 2;
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .controls {
        gap: 12px;
    }

    .menu-bar {
        order: 3;
        width: 100%;
    }

    .menu-root {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 6px;
    }

    .menu-panel {
        position: static;
        min-width: unset;
        max-width: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 16px;
        box-shadow: 0 18px 36px rgba(18, 24, 38, 0.18);
    }

    .menu-item.open .menu-panel {
        display: block;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    main.desktop {
        position: relative;
        top: 0;
        height: auto;
        min-height: calc(100vh - var(--taskbar-height));
        padding: 20px 16px 96px;
        overflow: visible;
    }

    .icon-grid {
        position: static;
        display: grid;
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        justify-items: center;
        gap: 16px;
    }

    .desktop-icon {
        position: relative;
        width: 100%;
        max-width: 128px;
        left: auto !important;
        top: auto !important;
        cursor: pointer;
    }

    .desktop-icon img {
        width: 56px;
        height: 56px;
    }

    .desktop-window {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: none;
        margin: 24px 0 0;
        height: auto;
        max-height: none;
    }

    .desktop-window + .desktop-window {
        margin-top: 28px;
    }

    .window-titlebar {
        cursor: default;
        padding: 12px 16px;
    }

    .window-content {
        padding: 16px;
        overflow: visible;
    }

    .cta-row {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --taskbar-height: 76px;
    }

    .taskbar {
        padding: 12px;
    }

    .brand-name {
        font-size: 14px;
    }

    .taskbar-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .controls {
        width: 100%;
        justify-content: flex-start;
    }

    .theme-toggle {
        font-size: 16px;
    }

    .icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desktop-icon {
        max-width: 110px;
    }

    .desktop-icon img {
        width: 52px;
        height: 52px;
    }

    .desktop-icon figcaption {
        font-size: 12px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
