/* ==========================================================================
   LINUX DESKTOP SERVER WEB UI - CATPPUCCIN MOCHA / UBUNTU MODERN THEME
   DMLAI SaaS • HostHive Flagship • Kingdom Prospects Inc Subsidiary
   ========================================================================== */

:root {
    --bg-base: #1e1e2e;
    --bg-mantle: #181825;
    --bg-crust: #11111b;
    --bg-surface0: #313244;
    --bg-surface1: #45475a;
    --bg-surface2: #585b70;
    
    --text-primary: #cdd6f4;
    --text-subtext: #a6adc8;
    --text-overlay: #7f849c;
    --text-muted: #6c7086;

    --accent-blue: #89b4fa;
    --accent-sapphire: #74c7ec;
    --accent-sky: #89dceb;
    --accent-teal: #94e2d5;
    --accent-green: #a6e3a1;
    --accent-yellow: #f9e2af;
    --accent-peach: #fab387;
    --accent-maroon: #eba0ac;
    --accent-red: #f38ba8;
    --accent-mauve: #cba6f7;
    --accent-pink: #f5c2e7;
    --accent-flamingo: #f2cdcd;
    --accent-rosewater: #f5e0dc;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-active: rgba(137, 180, 250, 0.4);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-window: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
    --shadow-window-focused: 0 16px 50px rgba(0, 0, 0, 0.65), 0 0 0 1px var(--accent-blue);

    --top-bar-height: 38px;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', "Fira Code", monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
}

body, html {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: var(--font-ui);
    background-color: var(--bg-crust);
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.4;
}

/* ==========================================================================
   DESKTOP ENVIRONMENT & WALLPAPER
   ========================================================================== */
.desktop-environment {
    position: relative;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(203, 166, 247, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(137, 180, 250, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(166, 227, 161, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #181825 0%, #11111b 100%);
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   TOP SYSTEM BAR (GNOME STYLE)
   ========================================================================== */
.top-bar {
    height: var(--top-bar-height);
    background: rgba(17, 17, 27, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 9000;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s ease, color 0.15s ease;
}

.top-bar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-landing-btn {
    background: rgba(203, 166, 247, 0.15);
    border: 1px solid rgba(203, 166, 247, 0.3);
    color: var(--accent-mauve);
}

.top-bar-landing-btn:hover {
    background: rgba(203, 166, 247, 0.25);
}

.top-bar-director-btn {
    background: rgba(250, 179, 135, 0.15);
    border: 1px solid rgba(250, 179, 135, 0.35);
    color: var(--accent-peach);
    font-weight: 600;
}

.top-bar-director-btn:hover {
    background: rgba(250, 179, 135, 0.3);
}

.activities-btn i {
    color: var(--accent-peach);
    font-size: 14px;
}

.active-app-title {
    font-weight: 600;
    color: var(--text-subtext);
    font-size: 12px;
    padding-left: 6px;
    border-left: 1px solid var(--border-subtle);
}

.clock-widget {
    cursor: pointer;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2px;
    display: flex;
    gap: 8px;
    transition: background 0.15s ease;
}

.clock-widget:hover {
    background: rgba(255, 255, 255, 0.1);
}

#clock-date {
    color: var(--text-subtext);
}

.status-indicators {
    display: flex;
    align-items: center;
    gap: 6px;
}

.indicator-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-subtext);
}

.vpn-chip {
    background: rgba(137, 180, 250, 0.15);
    border-color: rgba(137, 180, 250, 0.3);
    color: var(--accent-blue);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.quick-settings-trigger {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    display: flex;
    gap: 8px;
}

/* ==========================================================================
   ACTIVITIES OVERLAY MENU
   ========================================================================== */
.activities-menu {
    position: absolute;
    top: calc(var(--top-bar-height) + 8px);
    left: 12px;
    width: 680px;
    max-height: 520px;
    background: rgba(24, 24, 37, 0.95);
    backdrop-filter: blur(28px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    padding: 16px;
    z-index: 9100;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInDown 0.18s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.activities-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 14px;
}

.activities-search-box i {
    color: var(--accent-blue);
    font-size: 15px;
}

.activities-search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-ui);
    width: 100%;
}

.activities-categories {
    display: flex;
    gap: 6px;
}

.cat-pill {
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-subtext);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cat-pill:hover, .cat-pill.active {
    background: var(--accent-blue);
    color: var(--bg-crust);
    font-weight: 600;
    border-color: var(--accent-blue);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 4px;
}

.activity-card {
    background: rgba(49, 50, 68, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
}

.activity-card:hover {
    background: var(--bg-surface1);
    transform: translateY(-2px);
    border-color: var(--accent-blue);
}

.activity-card i {
    font-size: 26px;
    color: var(--accent-blue);
}

.activity-card span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.activity-card small {
    font-size: 10px;
    color: var(--text-muted);
}

/* ==========================================================================
   QUICK SETTINGS MENU
   ========================================================================== */
.quick-settings-menu {
    position: absolute;
    top: calc(var(--top-bar-height) + 8px);
    right: 12px;
    width: 320px;
    background: rgba(24, 24, 37, 0.95);
    backdrop-filter: blur(28px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    padding: 16px;
    z-index: 9100;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInDown 0.18s ease-out;
}

.qs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
}

.qs-node-info {
    display: flex;
    flex-direction: column;
}

.qs-node-info strong {
    color: var(--text-primary);
    font-size: 13px;
}

.qs-node-info small {
    color: var(--text-muted);
    font-size: 11px;
}

.qs-status-badge {
    background: rgba(166, 227, 161, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(166, 227, 161, 0.3);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 600;
}

.qs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.qs-toggle {
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    padding: 10px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.qs-toggle.active {
    background: rgba(137, 180, 250, 0.2);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.qs-footer {
    display: flex;
    gap: 6px;
}

.qs-action-btn {
    flex: 1;
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.qs-action-btn:hover {
    background: var(--bg-surface1);
}

.qs-action-btn.danger {
    color: var(--accent-red);
}

.qs-action-btn.danger:hover {
    background: rgba(243, 139, 168, 0.15);
}

/* ==========================================================================
   DESKTOP CANVAS & ICONS
   ========================================================================== */
.desktop-canvas {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.desktop-icons-container {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 18px 24px;
    height: calc(100% - 100px);
    z-index: 10;
}

.desktop-item {
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 4px;
    border-radius: var(--radius-md);
    transition: background 0.15s ease;
}

.desktop-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.desktop-item.selected {
    background: rgba(137, 180, 250, 0.25);
    outline: 1px solid var(--accent-blue);
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease;
}

.desktop-item:hover .icon-wrapper {
    transform: scale(1.06);
}

/* Glowing accents for desktop icons */
.folder-glow { background: linear-gradient(135deg, #313244, #45475a); color: var(--accent-peach); border-color: rgba(250, 179, 135, 0.4); }
.app-hub-glow { color: var(--accent-blue); }
.mailcow-glow { color: var(--accent-mauve); }
.files-glow { color: var(--accent-teal); }
.terminal-glow { color: var(--accent-green); background: #11111b; }
.network-glow { color: var(--accent-sky); }
.monitor-glow { color: var(--accent-yellow); }
.editor-glow { color: var(--accent-pink); }
.browser-glow { color: var(--accent-sapphire); }
.db-glow { color: var(--accent-maroon); }

.folder-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--accent-peach);
    color: var(--bg-crust);
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: var(--radius-sm);
}

.item-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    word-break: break-word;
    line-height: 1.2;
}

/* ==========================================================================
   ENHANCED FLOATING WINDOWS & 8-DIRECTION RESIZING
   ========================================================================== */
.windows-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.sys-window {
    pointer-events: auto;
    position: absolute;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window);
    display: flex;
    flex-direction: column;
    min-width: 420px;
    min-height: 260px;
    animation: windowPop 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    touch-action: none;
}

@keyframes windowPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes windowMinimize {
    to { opacity: 0; transform: scale(0.7) translateY(80px); }
}

@keyframes windowClose {
    to { opacity: 0; transform: scale(0.9); }
}

.sys-window.focused {
    box-shadow: var(--shadow-window-focused);
    z-index: 500 !important;
}

.sys-window.maximized {
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.window-titlebar {
    height: 38px;
    background: var(--bg-mantle);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    cursor: grab;
    touch-action: none;
}

.sys-window.maximized .window-titlebar {
    cursor: default;
}

.titlebar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.titlebar-icon {
    font-size: 14px;
    color: var(--accent-blue);
}

.titlebar-title {
    font-weight: 600;
    font-size: 12px;
    color: var(--text-primary);
}

.titlebar-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

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

.win-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: var(--bg-surface0);
    color: var(--text-subtext);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.win-btn:hover {
    background: var(--bg-surface1);
    color: var(--text-primary);
}

.win-btn.close:hover {
    background: var(--accent-red);
    color: var(--bg-crust);
}

.window-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: var(--bg-base);
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   8-DIRECTION RESIZE HANDLERS (STRETCHING)
   ========================================================================== */
.resize-handle {
    position: absolute;
    z-index: 100;
    touch-action: none;
}

.rh-n  { top: 0; left: 8px; right: 8px; height: 6px; cursor: n-resize; }
.rh-s  { bottom: 0; left: 8px; right: 8px; height: 6px; cursor: s-resize; }
.rh-e  { right: 0; top: 8px; bottom: 8px; width: 6px; cursor: e-resize; }
.rh-w  { left: 0; top: 8px; bottom: 8px; width: 6px; cursor: w-resize; }

.rh-ne { top: 0; right: 0; width: 14px; height: 14px; cursor: ne-resize; }
.rh-nw { top: 0; left: 0; width: 14px; height: 14px; cursor: nw-resize; }
.rh-se { bottom: 0; right: 0; width: 14px; height: 14px; cursor: se-resize; }
.rh-sw { bottom: 0; left: 0; width: 14px; height: 14px; cursor: sw-resize; }

.sys-window.maximized .resize-handle {
    display: none !important;
}

/* ==========================================================================
   BOTTOM DOCK (Ubuntu / macOS Glassy Style)
   ========================================================================== */
.desktop-dock {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8000;
}

.dock-inner {
    background: rgba(17, 17, 27, 0.8);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dock-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-primary);
    position: relative;
    transition: transform 0.15s ease, background 0.15s ease;
}

.dock-btn:hover {
    transform: scale(1.15) translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.dock-btn.active .dock-indicator {
    opacity: 1;
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--accent-blue);
}

.dock-btn.minimized-dock .dock-indicator {
    opacity: 1;
    background: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
}

.dock-indicator {
    position: absolute;
    bottom: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transition: all 0.15s ease;
}

.dock-separator {
    width: 1px;
    height: 28px;
    background: var(--border-subtle);
    margin: 0 4px;
}

/* ==========================================================================
   APP HUB & SERVICE CARDS (Web Apps, Mailcow, Infrastructure)
   ========================================================================== */
.hub-view {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hub-toolbar {
    padding: 12px 16px;
    background: var(--bg-mantle);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.hub-tabs {
    display: flex;
    gap: 6px;
}

.hub-tab {
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-subtext);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.hub-tab.active {
    background: var(--accent-blue);
    color: var(--bg-crust);
    font-weight: 600;
}

.hub-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 14px;
}

.service-card {
    background: var(--bg-mantle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.15s ease;
}

.service-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-title-area {
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-blue);
}

.service-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.service-tech {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.status-badge {
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-badge.online {
    background: rgba(166, 227, 161, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(166, 227, 161, 0.3);
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-surface0);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    color: var(--text-muted);
    font-size: 10px;
}

.detail-value {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.domain-tag {
    background: rgba(137, 180, 250, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(137, 180, 250, 0.25);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-family: var(--font-mono);
}

.service-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.svc-btn {
    flex: 1;
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.15s ease;
}

.svc-btn:hover {
    background: var(--bg-surface1);
}

.svc-btn.primary {
    background: var(--accent-blue);
    color: var(--bg-crust);
    font-weight: 600;
    border-color: var(--accent-blue);
}

.svc-btn.primary:hover {
    background: var(--accent-sapphire);
}

/* ==========================================================================
   FILE MANAGER & URL PINGER VIEW
   ========================================================================== */
.fm-container {
    display: flex;
    height: 100%;
}

.fm-sidebar {
    width: 200px;
    background: var(--bg-mantle);
    border-right: 1px solid var(--border-subtle);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fm-section-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.fm-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-subtext);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.12s ease;
}

.fm-nav-item:hover, .fm-nav-item.active {
    background: var(--bg-surface0);
    color: var(--text-primary);
}

.fm-nav-item.active {
    border-left: 3px solid var(--accent-blue);
}

.fm-main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fm-header-bar {
    padding: 10px 14px;
    background: var(--bg-mantle);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fm-path-bar {
    flex: 1;
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fm-files-grid {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 16px;
}

.file-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.12s ease;
    text-align: center;
}

.file-card:hover {
    background: var(--bg-surface0);
}

.file-card.selected {
    background: rgba(137, 180, 250, 0.2);
    outline: 1px solid var(--accent-blue);
}

.file-card-icon {
    font-size: 32px;
}

.file-card-icon.folder { color: var(--accent-peach); }
.file-card-icon.json { color: var(--accent-yellow); }
.file-card-icon.md { color: var(--accent-sky); }
.file-card-icon.yaml { color: var(--accent-mauve); }
.file-card-icon.sh { color: var(--accent-green); }
.file-card-icon.py { color: var(--accent-sapphire); }

.file-card-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-word;
    max-width: 100%;
}

.file-card-meta {
    font-size: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ==========================================================================
   TERMINAL CONSOLE (Interactive Shell)
   ========================================================================== */
.terminal-view {
    background: #11111b;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
    color: #a6e3a1;
    font-size: 12px;
}

.terminal-output {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.5;
}

.terminal-input-row {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    background: #181825;
    border-top: 1px solid var(--border-subtle);
}

.terminal-prompt {
    color: var(--accent-peach);
    font-weight: 600;
    margin-right: 8px;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 12px;
}

/* ==========================================================================
   CONFIG & CODE EDITOR
   ========================================================================== */
.editor-view {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.editor-toolbar {
    padding: 8px 14px;
    background: var(--bg-mantle);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.editor-textarea {
    flex: 1;
    background: #11111b;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 14px;
    border: none;
    outline: none;
    resize: none;
    line-height: 1.5;
}

/* ==========================================================================
   IN-APP WEB BROWSER / URL PING TESTER
   ========================================================================== */
.browser-view {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.browser-nav-bar {
    padding: 8px 12px;
    background: var(--bg-mantle);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url-input {
    flex: 1;
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 11px;
    outline: none;
}

.browser-simulated-preview {
    flex: 1;
    padding: 24px;
    background: var(--bg-base);
    overflow-y: auto;
}

/* ==========================================================================
   SYSTEM MODALS, TOASTS & CONTEXT MENUS
   ========================================================================== */
.system-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card {
    width: 580px;
    max-width: 90vw;
    background: var(--bg-mantle);
    border: 1px solid var(--border-active);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-window-focused);
    overflow: hidden;
    animation: modalScale 0.18s ease-out;
}

@keyframes modalScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 14px 18px;
    background: var(--bg-surface0);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-blue);
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--accent-red);
}

.modal-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ping-stat-box {
    background: var(--bg-surface0);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    justify-content: space-around;
}

.code-box {
    background: #11111b;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-green);
    overflow-x: auto;
}

.context-menu {
    position: fixed;
    background: rgba(24, 24, 37, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-window);
    padding: 6px;
    min-width: 220px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.menu-item:hover {
    background: var(--accent-blue);
    color: var(--bg-crust);
    font-weight: 500;
}

.menu-separator {
    height: 1px;
    background: var(--border-subtle);
    margin: 4px 0;
}

.toast-rack {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-item {
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--accent-blue);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-window);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 12px;
    animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   AGENTIC OS LANDING PAGE STYLES (DMLAI SaaS / HostHive)
   ========================================================================== */
.landing-page-root {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    background: 
        radial-gradient(circle at 10% 10%, rgba(137, 180, 250, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(203, 166, 247, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(250, 179, 135, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #11111b 0%, #181825 50%, #11111b 100%);
    color: var(--text-primary);
    z-index: 9500;
    display: flex;
    flex-direction: column;
}

.landing-nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    background: rgba(17, 17, 27, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-badge {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmlai-hex {
    width: 100%;
    height: 100%;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-dmlai {
    color: var(--accent-blue);
}

.brand-saas {
    color: var(--accent-mauve);
}

.brand-divider {
    color: var(--text-muted);
}

.brand-hosthive {
    color: var(--accent-peach);
    letter-spacing: 1px;
}

.brand-subsidiary {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.node-status-pill {
    background: rgba(166, 227, 161, 0.1);
    border: 1px solid rgba(166, 227, 161, 0.25);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-cta-btn {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.18s ease;
    border: none;
}

.nav-cta-btn.secondary {
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.nav-cta-btn.secondary:hover {
    background: var(--bg-surface1);
}

.nav-cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-peach), var(--accent-mauve));
    color: #11111b;
    box-shadow: 0 4px 16px rgba(250, 179, 135, 0.3);
}

.nav-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 179, 135, 0.45);
}

/* Hero Section */
.landing-hero {
    padding: 80px 36px 60px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-badge {
    background: rgba(137, 180, 250, 0.12);
    border: 1px solid rgba(137, 180, 250, 0.3);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-headline {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-peach) 0%, var(--accent-mauve) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 16px;
    color: var(--text-subtext);
    max-width: 780px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent-peach), var(--accent-mauve));
    color: #11111b;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(250, 179, 135, 0.35);
    transition: all 0.18s ease;
}

.hero-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(250, 179, 135, 0.5);
}

.hero-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-btn-secondary {
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.18s ease;
}

.hero-btn-secondary:hover {
    background: var(--bg-surface1);
}

.hero-btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-subtext);
    font-weight: 500;
    font-size: 13px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--accent-blue);
}

.hero-telemetry-bar {
    width: 100%;
    margin-top: 24px;
    background: rgba(24, 24, 37, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    backdrop-filter: blur(16px);
}

.telem-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.telem-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.6px;
}

.telem-val {
    font-size: 13px;
    font-family: var(--font-mono);
}

/* Showcase Apps Section */
.landing-apps-section {
    padding: 40px 36px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-tag {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
}

.section-desc {
    font-size: 14px;
    color: var(--text-subtext);
    max-width: 600px;
}

.apps-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.showcase-card {
    background: rgba(24, 24, 37, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: all 0.2s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 180, 250, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.flagship-card {
    border-color: rgba(250, 179, 135, 0.45);
    background: linear-gradient(180deg, rgba(49, 50, 68, 0.5) 0%, rgba(24, 24, 37, 0.9) 100%);
}

.flagship-badge {
    display: inline-block;
    background: var(--accent-peach);
    color: #11111b;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.card-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
}

.card-tech {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.card-desc {
    font-size: 12px;
    color: var(--text-subtext);
    line-height: 1.5;
    flex: 1;
}

.card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.card-metrics span {
    background: var(--bg-surface0);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.card-btn {
    flex: 1;
    background: var(--bg-surface0);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.15s ease;
}

.card-btn:hover {
    background: var(--bg-surface1);
}

.card-btn.primary {
    background: var(--accent-blue);
    color: #11111b;
    border-color: var(--accent-blue);
}

.card-btn.primary:hover {
    background: var(--accent-sapphire);
}

/* Footer */
.landing-footer {
    border-top: 1px solid var(--border-subtle);
    background: #11111b;
    padding: 30px 36px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left strong {
    font-size: 13px;
    color: var(--text-primary);
}

.footer-left p {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-right {
    display: flex;
    gap: 12px;
}

.footer-link-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-subtext);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-link-btn:hover {
    background: var(--bg-surface0);
    color: var(--text-primary);
}

/* ==========================================================================
   DIRECTORS ACCESS SECURITY MODAL (12-14 Character Password Gate)
   ========================================================================== */
.director-security-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.director-modal-card {
    width: 540px;
    background: var(--bg-mantle);
    border: 1px solid rgba(250, 179, 135, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(250, 179, 135, 0.25);
    overflow: hidden;
    animation: modalScale 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-modal-header {
    padding: 18px 22px;
    background: var(--bg-surface0);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 12px;
}

.director-shield-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(250, 179, 135, 0.15);
    color: var(--accent-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.director-modal-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.director-modal-subtitle {
    font-size: 11px;
    color: var(--text-muted);
}

.director-modal-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.security-notice-box {
    background: rgba(250, 179, 135, 0.08);
    border: 1px solid rgba(250, 179, 135, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-subtext);
    line-height: 1.4;
}

.security-notice-box i {
    color: var(--accent-peach);
    font-size: 16px;
    margin-top: 2px;
}

.security-notice-box strong {
    color: var(--accent-peach);
    display: block;
    margin-bottom: 2px;
}

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

.input-field-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-subtext);
}

.passkey-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.passkey-input-wrapper .input-icon {
    position: absolute;
    left: 12px;
    color: var(--accent-peach);
    font-size: 14px;
}

.passkey-input-wrapper input {
    width: 100%;
    background: #11111b;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 40px 10px 36px;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 13px;
    outline: none;
    letter-spacing: 0.5px;
    transition: border-color 0.15s ease;
}

.passkey-input-wrapper input:focus {
    border-color: var(--accent-peach);
    box-shadow: 0 0 0 2px rgba(250, 179, 135, 0.2);
}

.pw-toggle-btn {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}

.pw-toggle-btn:hover {
    color: var(--text-primary);
}

/* Length & Progress Meter */
.passkey-meter-container {
    background: #11111b;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meter-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-subtext);
}

.meter-status.valid {
    color: var(--accent-green);
    font-weight: 600;
}

.meter-status.invalid {
    color: var(--accent-peach);
}

.meter-progress-track {
    width: 100%;
    height: 6px;
    background: var(--bg-surface0);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.meter-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-red);
    transition: width 0.2s ease, background-color 0.2s ease;
}

.meter-helper-note {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
}

.passkey-hint {
    color: var(--accent-blue);
    cursor: pointer;
    text-decoration: underline;
}

.passkey-hint code {
    background: var(--bg-surface0);
    padding: 1px 4px;
    border-radius: 3px;
}

.auth-error-box {
    background: rgba(243, 139, 168, 0.12);
    border: 1px solid rgba(243, 139, 168, 0.3);
    color: var(--accent-red);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.director-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.hidden {
    display: none !important;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface1);
    border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--bg-surface2);
}
