@keyframes wc-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes wc-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes wc-scan-move { from { background-position: 0 0; } to { background-position: 0 4px; } }
@keyframes wc-flicker { 0%, 100% { opacity: 1; } 4% { opacity: 0.96; } 5% { opacity: 1; } 41% { opacity: 0.98; } 42% { opacity: 1; } 89% { opacity: 0.95; } 90% { opacity: 1; } }

:root {
  --bg: #0a0d12;
  --panel: #12161d;
  --panel2: #171d26;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(52, 217, 255, 0.55);
  --text: #eef2f6;
  --muted: #8b97a7;
  --accent: #34d9ff;
  --accent-dim: rgba(52, 217, 255, 0.14);
  --ok: #56ff6b;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; overflow: hidden; background: var(--bg); }
body { font-family: 'Inter', sans-serif; color: var(--text); }
button, input, a { font: inherit; }
a { color: inherit; text-decoration: none; }

.wo7fi-os {
  position: relative; width: 100%; height: 100%; overflow: hidden; display: flex; flex-direction: column; user-select: auto;
  background:
    linear-gradient(rgba(52, 217, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 217, 255, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: inset 0 0 130px rgba(0, 0, 0, 0.6), inset 0 0 46px rgba(52, 217, 255, 0.06);
  text-shadow: 0 0 1px rgba(52, 217, 255, 0.15);
  animation: wc-flicker 7s infinite;
}

[data-only="mobile"] { display: none; }
[data-only="desktop"] { display: flex; }
.accent { color: var(--accent); }
.dot { width: 6px; height: 6px; display: inline-block; border-radius: 999px; }
.dot-ok { background: var(--ok); }
.pulse { animation: wc-pulse 2s ease-in-out infinite; }

.menubar {
  flex-shrink: 0; align-items: center; justify-content: space-between; height: 34px; padding: 0 14px;
  background: rgba(10, 13, 18, 0.92); border-bottom: 1px solid var(--line); font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.menubar-left, .menubar-right { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.menubar-left strong { color: var(--text); }
.menubar-right { gap: 10px; }

.statusbar {
  flex-shrink: 0; align-items: center; justify-content: space-between; height: 38px; padding: 0 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--muted); border-bottom: 1px solid var(--line);
}
.statusbar strong { color: var(--text); }
.statusbar-right { display: flex; align-items: center; gap: 6px; }

.workspace { position: relative; flex: 1; min-height: 0; overflow: hidden; }
.desktop-icons { position: absolute; left: 18px; top: 18px; flex-direction: column; gap: 18px; z-index: 1; }
.app-icon-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px; width: 76px; padding: 8px 4px;
  background: transparent; border: 0; color: var(--text); cursor: pointer;
}
.app-icon-btn:hover { background: rgba(255, 255, 255, 0.05); border-radius: 8px; }
.app-icon-glyph {
  width: 44px; height: 44px; display: grid; place-items: center; background: var(--panel); border: 1px solid; border-radius: 10px; font-size: 18px;
}
.app-icon-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; line-height: 1.3; text-align: center; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(4, 7, 11, 0.7); backdrop-filter: blur(6px); }
.overlay[hidden] { display: none; }
.launcher-overlay { z-index: 60; }
.launcher-panel { display: flex; flex-direction: column; gap: 16px; padding: 24px; background: var(--panel); border: 1px solid var(--line-strong); border-radius: 14px; }
.launcher-title { font-family: 'JetBrains Mono', monospace; color: var(--text); font-size: 13px; }
.launcher-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.launcher-app-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px; width: 88px; padding: 10px;
  background: transparent; border: 0; color: var(--text); cursor: pointer;
}
.launcher-app-btn:hover { background: var(--accent-dim); border-radius: 10px; }
.launcher-app-glyph {
  width: 48px; height: 48px; display: grid; place-items: center; background: var(--panel2); border: 1px solid; border-radius: 12px; font-size: 19px;
}
.launcher-app-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.launcher-footer { display: flex; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 38px; padding: 0 14px;
  border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; cursor: pointer;
}
.btn-ghost { background: var(--panel2); border: 1px solid var(--line); color: var(--text); }
.btn-danger { background: rgba(255, 111, 176, 0.12); border: 1px solid rgba(255, 111, 176, 0.4); color: #ff6fb0; }
.btn-danger-solid { background: #ff6fb0; border: 1px solid #ff6fb0; color: #180812; }
.btn-primary { background: var(--accent); border: 1px solid var(--accent); color: #04141a; font-weight: 700; }

.mobile-home { position: absolute; inset: 0; flex-direction: column; }
.mobile-home.app-active { display: none; }
.mobile-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 14px; align-content: start; padding: 36px 20px; }
.mobile-app-btn { display: flex; flex-direction: column; align-items: center; gap: 7px; background: transparent; border: 0; color: var(--text); cursor: pointer; }
.mobile-app-glyph {
  width: 54px; height: 54px; display: grid; place-items: center; background: var(--panel); border: 1px solid; border-radius: 14px; font-size: 20px;
}
.mobile-app-label { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; text-align: center; }
.mobile-dock { flex-shrink: 0; display: flex; justify-content: center; gap: 18px; padding: 14px 20px 20px; }
.mobile-dock-btn { width: 52px; height: 52px; display: grid; place-items: center; background: var(--panel2); border: 1px solid; border-radius: 14px; font-size: 19px; cursor: pointer; }

#windowsLayer { position: absolute; inset: 0; pointer-events: none; }
.win {
  position: absolute; display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line-strong);
  border-radius: 10px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); overflow: hidden; pointer-events: auto;
}
.win.win-mobile { position: absolute; inset: 0; border-radius: 0; box-shadow: none; z-index: 50; }

.win-titlebar {
  flex-shrink: 0; touch-action: none; display: flex; align-items: center; justify-content: space-between;
  height: 38px; padding: 0 10px 0 14px; background: var(--panel2); border-bottom: 1px solid var(--line);
  border-top: 3px solid; cursor: grab;
}
.win-titlebar.dragging { cursor: grabbing; }
.win-titlebar-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; display: flex; align-items: center; gap: 8px; pointer-events: none; }
.win-titlebar-actions { display: flex; gap: 4px; }
.icon-btn {
  width: 24px; height: 24px; display: grid; place-items: center; background: transparent;
  border: 1px solid var(--line); border-radius: 5px; color: var(--muted); cursor: pointer;
}

.win-mobile-header {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 12px;
  background: var(--panel2); border-bottom: 1px solid var(--line); border-top: 3px solid;
}
.win-mobile-back { width: 30px; height: 30px; display: grid; place-items: center; background: transparent; border: 0; font-size: 16px; cursor: pointer; }
.win-mobile-title { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text); }
.win-body { flex: 1; min-height: 0; overflow-y: auto; }
.win-resize-handle { position: absolute; right: 0; bottom: 0; width: 22px; height: 22px; cursor: nwse-resize; touch-action: none; opacity: 0.85; }

.terminal-wrap { display: flex; flex-direction: column; height: 100%; }
.terminal-lines { flex: 1; overflow-y: auto; padding: 14px 16px; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; line-height: 1.6; }
.terminal-line-cmd { margin: 0 0 5px; color: var(--muted); }
.terminal-line-cmd .prompt { color: var(--ok); }
.terminal-line-output { margin: 0 0 9px; color: var(--text); white-space: pre-wrap; }
.terminal-form { flex-shrink: 0; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--line); background: var(--panel2); }
.terminal-prompt { color: var(--ok); font-family: 'JetBrains Mono', monospace; font-size: 12.5px; }
.terminal-input { flex: 1; background: transparent; border: 0; outline: 0; color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 12.5px; }

.identity-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; font-family: 'JetBrains Mono', monospace; color: var(--muted); background: radial-gradient(circle at 8% 0%, rgba(86, 255, 107, 0.08), transparent 34%), radial-gradient(circle at 90% 12%, rgba(52, 217, 255, 0.06), transparent 32%); }
.identity-hero { position: relative; display: grid; grid-template-columns: 164px minmax(0, 1fr); gap: 18px; padding: 16px; border: 1px solid rgba(86, 230, 160, 0.32); border-radius: 14px; background: linear-gradient(150deg, rgba(23, 29, 38, 0.96), rgba(10, 13, 18, 0.88)); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34); overflow: hidden; }
.identity-hero::after { content: ""; position: absolute; inset: auto 18px 0 210px; height: 1px; background: linear-gradient(90deg, transparent, rgba(86, 255, 107, 0.7), transparent); }
.identity-photo-frame { position: relative; min-height: 164px; border-radius: 14px; padding: 6px; background: linear-gradient(145deg, rgba(86, 255, 107, 0.75), rgba(52, 217, 255, 0.24), rgba(164, 139, 255, 0.36)); box-shadow: 0 0 0 1px rgba(86, 255, 107, 0.28), 0 16px 34px rgba(0, 0, 0, 0.45); overflow: hidden; }
.identity-photo { width: 100%; height: 100%; min-height: 152px; display: block; object-fit: cover; object-position: 58% 34%; border-radius: 10px; filter: saturate(0.86) contrast(1.08) brightness(0.88); }
.identity-photo-scan { position: absolute; inset: 6px; border-radius: 10px; pointer-events: none; background: repeating-linear-gradient(to bottom, rgba(10, 13, 18, 0.14), rgba(10, 13, 18, 0.14) 1px, transparent 2px, transparent 5px); mix-blend-mode: overlay; }
.identity-photo-label { position: absolute; left: 14px; bottom: 13px; padding: 4px 8px; border-radius: 999px; background: rgba(10, 13, 18, 0.78); border: 1px solid rgba(86, 255, 107, 0.42); color: #56ff6b; font-size: 10px; }
.identity-hero-main { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.identity-kicker { margin: 0 0 5px; color: #56ff6b; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.identity-hero h2 { margin: 0; color: var(--text); font-family: 'Inter', sans-serif; font-size: clamp(25px, 4vw, 42px); line-height: 1.05; font-weight: 800; }
.identity-hero h2 span { color: #56ff6b; font-family: 'JetBrains Mono', monospace; font-size: 0.72em; }
.about-cursor { display: inline-block; width: 8px; height: 25px; margin-left: 8px; background: var(--ok); vertical-align: -3px; animation: wc-blink 1s steps(2, start) infinite; }
.identity-role { margin: 8px 0 10px; color: var(--accent); font-size: 14px; font-weight: 700; }
.identity-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.identity-meta-row span { display: inline-flex; align-items: center; gap: 6px; min-height: 28px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(10, 13, 18, 0.42); color: var(--muted); font-size: 10.5px; }
.identity-meta-row i { color: #56ff6b; font-size: 9px; }
.identity-chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.identity-chip { padding: 5px 9px; border-radius: 8px; color: #c7ffe1; background: rgba(86, 230, 160, 0.12); border: 1px solid rgba(86, 230, 160, 0.24); font-size: 10.5px; }
.identity-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.identity-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); gap: 12px; align-items: start; }
.identity-panel { border: 1px solid var(--line); border-radius: 12px; background: rgba(18, 22, 29, 0.78); box-shadow: inset 0 1px 0 rgba(255,255,255,0.035); }
.identity-timeline-panel { padding: 14px; }
.identity-section-title { margin: 0 0 12px; color: var(--text); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.identity-section-title span { color: #56ff6b; margin-right: 6px; }
.identity-timeline { position: relative; display: flex; flex-direction: column; gap: 12px; }
.identity-timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(#56ff6b, rgba(52, 217, 255, 0.18)); }
.identity-timeline-item { position: relative; padding: 0 0 0 26px; }
.identity-node { position: absolute; left: 2px; top: 4px; width: 11px; height: 11px; border-radius: 999px; background: #56ff6b; box-shadow: 0 0 15px rgba(86, 255, 107, 0.55); }
.identity-period { margin: 0 0 3px; color: #56ff6b; font-size: 10.5px; font-weight: 800; }
.identity-timeline-item h3 { margin: 0 0 4px; color: var(--text); font-size: 13px; line-height: 1.25; }
.identity-place { margin: 0 0 5px; color: var(--accent); font-size: 10.5px; }
.identity-text { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.identity-side-stack { display: flex; flex-direction: column; gap: 12px; }
.identity-side-stack .identity-panel { padding: 14px; }
.identity-skill-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.identity-skill-card { min-width: 0; padding: 11px; border-radius: 10px; background: rgba(10, 13, 18, 0.42); border: 1px solid var(--line); }
.identity-skill-card strong { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; color: var(--text); font-size: 11px; }
.identity-skill-card strong i { color: #56ff6b; }
.identity-skill-card div { display: flex; flex-wrap: wrap; gap: 6px; }
.identity-skill-card span { padding: 4px 7px; border-radius: 7px; background: rgba(52, 217, 255, 0.09); color: #b8eefd; font-size: 9.5px; }
.identity-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.identity-stat { padding: 12px 10px; border-radius: 12px; border: 1px solid rgba(86, 230, 160, 0.22); background: linear-gradient(160deg, rgba(86, 230, 160, 0.13), rgba(18, 22, 29, 0.8)); }
.identity-stat strong { display: block; color: #56ff6b; font-size: 18px; line-height: 1; }
.identity-stat span { display: block; margin-top: 5px; color: var(--muted); font-size: 9.5px; }

.contact-body.contact-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact-to { margin: 0; font-family: 'JetBrains Mono', monospace; color: var(--muted); font-size: 12.5px; }
.contact-to span { color: var(--text); }
.contact-desc { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-mail-btn, .contact-copy-btn {
  display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 8px; font-weight: 700; font-size: 13px;
}
.contact-mail-btn { background: var(--accent); color: #04141a; }
.contact-copy-btn { background: transparent; color: var(--text); border: 1px solid var(--line); cursor: pointer; }

.projects-body { padding: 14px 16px; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; }
.projects-path { margin: 0 0 12px; color: var(--muted); }
.projects-list { display: flex; flex-direction: column; gap: 4px; }
.projects-row { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 7px; }
.projects-row:hover { background: var(--panel2); }
.projects-row i { color: var(--accent); font-size: 14px; }
.projects-row .name { flex: 1; color: var(--text); }
.projects-badge { padding: 2px 9px; border-radius: 999px; background: rgba(255, 203, 87, 0.16); color: #ffcb57; font-size: 10px; font-weight: 700; }

.socials-body { display: flex; flex-direction: column; gap: 14px; padding: 16px; background: radial-gradient(circle at 12% 0%, rgba(164, 139, 255, 0.12), transparent 36%), radial-gradient(circle at 88% 6%, rgba(52, 217, 255, 0.08), transparent 35%); }
.socials-command { font-family: 'JetBrains Mono', monospace; }
.social-command-hero { position: relative; display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 14px; padding: 15px; overflow: hidden; border: 1px solid rgba(164, 139, 255, 0.32); border-radius: 14px; background: linear-gradient(145deg, rgba(23, 29, 38, 0.95), rgba(10, 13, 18, 0.78)); box-shadow: 0 12px 28px rgba(0,0,0,0.32); }
.social-map { position: absolute; inset: 0; opacity: 0.38; pointer-events: none; background: linear-gradient(115deg, transparent 18%, rgba(164,139,255,0.18) 18.2%, transparent 18.7%), linear-gradient(35deg, transparent 45%, rgba(52,217,255,0.14) 45.2%, transparent 45.7%); }
.social-map span { position: absolute; width: 7px; height: 7px; border-radius: 999px; background: #a48bff; box-shadow: 0 0 16px rgba(164,139,255,0.8); }
.social-map span:nth-child(1) { left: 16%; top: 26%; }
.social-map span:nth-child(2) { right: 19%; top: 22%; background: #34d9ff; }
.social-map span:nth-child(3) { left: 58%; bottom: 22%; background: #56ff6b; }
.social-map span:nth-child(4) { right: 8%; bottom: 16%; }
.social-avatar { flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(140deg, #a48bff, #34d9ff); color: #0a0d12; font-weight: 800; font-size: 16px; font-family: 'JetBrains Mono', monospace; box-shadow: 0 6px 18px rgba(164, 139, 255, 0.35); }
.social-avatar-photo { position: relative; overflow: hidden; border: 1px solid rgba(164,139,255,0.52); background: rgba(10,13,18,0.7); }
.social-avatar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 34%; filter: saturate(0.9) contrast(1.08) brightness(0.88); }
.social-avatar-photo::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, rgba(10,13,18,0.16), rgba(10,13,18,0.16) 1px, transparent 2px, transparent 5px); }
.social-command-info { position: relative; min-width: 0; }
.social-command-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.social-handle { margin: 0 0 3px; color: #a48bff; font-size: 11px; font-weight: 800; }
.social-command-info h2 { margin: 0; color: var(--text); font-family: 'Inter', sans-serif; font-size: 21px; line-height: 1.1; }
.social-live { display: inline-flex; align-items: center; gap: 6px; min-height: 26px; padding: 0 9px; border-radius: 999px; background: rgba(86, 255, 107, 0.12); border: 1px solid rgba(86, 255, 107, 0.24); color: #56ff6b; font-size: 10px; white-space: nowrap; }
.social-live i { font-size: 6px; }
.social-tagline { margin: 6px 0 12px; color: var(--accent); font-size: 11.5px; }
.social-profile-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.pill-btn { height: 30px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 11px; background: rgba(10,13,18,0.52); border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 10.5px; cursor: pointer; }
.pill-btn:hover { border-color: rgba(164,139,255,0.75); color: #dcd3ff; box-shadow: 0 0 18px rgba(164,139,255,0.12); }
.social-copy-msg { margin: 8px 0 0; font-size: 10.5px; color: var(--ok); }
.social-search-wrap { position: relative; }
.social-search-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 11px; pointer-events: none; }
.social-search-input { width: 100%; height: 34px; padding: 0 12px 0 32px; background: rgba(10, 13, 18, 0.5); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 11px; outline: 0; }
.social-search-input:focus { border-color: rgba(164,139,255,0.72); box-shadow: 0 0 0 3px rgba(164,139,255,0.12); }
.social-search-compact { max-width: 420px; }
.social-section-label { margin: 0 0 9px; font-size: 10px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.social-featured-rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.social-featured-card { display: grid; grid-template-columns: 36px minmax(0, 1fr) 14px; align-items: center; gap: 10px; min-height: 76px; padding: 11px; background: linear-gradient(160deg, rgba(23,29,38,0.92), rgba(10,13,18,0.64)); border: 1px solid var(--line); border-radius: 12px; color: var(--text); box-shadow: inset 0 1px 0 rgba(255,255,255,0.035); transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.social-featured-card:hover { transform: translateY(-2px); border-color: rgba(52,217,255,0.58); box-shadow: 0 12px 22px rgba(0,0,0,0.28), 0 0 22px rgba(52,217,255,0.08); }
.social-featured-card.is-pending { opacity: 0.74; }
.social-icon-badge { width: 36px; height: 36px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px; font-size: 14px; }
.social-featured-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.social-featured-copy strong { color: var(--text); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-featured-copy small { color: var(--muted); font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-featured-copy em { color: rgba(238,242,246,0.72); font-size: 10px; font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-featured-card > i { color: var(--muted); font-size: 10px; }
.social-channel-stack { display: flex; flex-direction: column; gap: 12px; }
.social-group-label { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.social-group-label span { width: 7px; height: 7px; border-radius: 999px; background: var(--group-accent); box-shadow: 0 0 13px var(--group-accent); }
.social-channel-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 8px; }
.social-channel-row { display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: center; gap: 9px; min-height: 50px; padding: 9px 10px; background: rgba(23,29,38,0.76); border: 1px solid var(--line); border-radius: 11px; color: var(--text); transition: border-color 160ms ease, transform 160ms ease, background 160ms ease; }
.social-channel-row:hover { transform: translateY(-1px); border-color: rgba(164,139,255,0.64); background: rgba(23,29,38,0.96); }
.social-channel-row.is-pending { opacity: 0.78; }
.social-item-glyph { width: 32px; height: 32px; flex-shrink: 0; display: grid; place-items: center; border-radius: 9px; font-size: 13px; }
.social-channel-copy { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.social-channel-copy strong { min-width: 0; font-size: 11.5px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-channel-copy small { min-width: 0; color: var(--muted); font-size: 9.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-item-status { flex-shrink: 0; padding: 3px 8px; border-radius: 999px; font-size: 9px; font-weight: 800; }
.social-empty { display: grid; place-items: center; gap: 7px; min-height: 150px; color: var(--muted); border: 1px dashed var(--line); border-radius: 12px; background: rgba(10,13,18,0.34); text-align: center; }
.social-empty i { color: #a48bff; font-size: 20px; }
.social-empty strong { color: var(--text); }
.social-empty span { font-size: 11px; }
.social-footer { margin: 0; display: flex; align-items: center; gap: 7px; padding-top: 11px; border-top: 1px solid var(--line); font-size: 10px; color: var(--muted); }

.deploy-body.deploy-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; font-family: 'JetBrains Mono', monospace; }
.deploy-hero { display: flex; gap: 14px; padding: 16px; background: linear-gradient(150deg, rgba(255, 143, 87, 0.16), rgba(18, 22, 29, 0.92)); border: 1px solid rgba(255, 143, 87, 0.35); border-radius: 12px; }
.deploy-icon { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 143, 87, 0.16); color: #ff8f57; box-shadow: 0 0 0 1px rgba(255, 143, 87, 0.45) inset; }
.deploy-kicker { margin: 0 0 5px; color: #ff8f57; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; }
.deploy-hero h2 { margin: 0 0 8px; font-size: 18px; line-height: 1.25; font-family: 'Inter', sans-serif; }
.deploy-hero p:last-child { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.deploy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.deploy-card { display: flex; flex-direction: column; gap: 7px; padding: 13px; background: var(--panel2); border: 1px solid var(--line); border-radius: 10px; }
.deploy-card strong { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 12px; }
.deploy-card strong i { color: #ff8f57; }
.deploy-card span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.deploy-card code { color: var(--accent); }
.deploy-checklist { padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: rgba(10, 13, 18, 0.38); }
.deploy-section-title { margin: 0 0 10px; color: var(--text); font-size: 11px; font-weight: 700; }
.deploy-check { display: flex; align-items: flex-start; gap: 9px; margin: 8px 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.deploy-check input { width: 13px; height: 13px; margin: 1px 0 0; accent-color: #ff8f57; }
.deploy-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.deploy-config { margin: 0; padding: 12px 13px; overflow-x: auto; color: var(--text); background: #080b10; border: 1px solid var(--line); border-radius: 10px; font-size: 11px; line-height: 1.6; }

.welcome-overlay { z-index: 70; }
.welcome-card { width: min(440px, calc(100% - 28px)); background: var(--panel); border: 1px solid var(--line-strong); border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); overflow: hidden; }
.welcome-titlebar { display: flex; align-items: center; justify-content: space-between; height: 38px; padding: 0 14px; background: var(--panel2); border-bottom: 1px solid var(--line); }
.welcome-titlebar strong { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); }
.welcome-body { padding: 22px 24px; }
.welcome-eyebrow { margin: 0 0 6px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.welcome-body h2 { margin: 0 0 12px; font-size: 19px; font-weight: 800; }
.welcome-text { margin: 0 0 20px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.welcome-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.welcome-actions .btn { flex: none; }

.shutdown-overlay { z-index: 90; }
.shutdown-card { width: min(360px, calc(100% - 28px)); background: var(--panel); border: 1px solid rgba(255, 111, 176, 0.5); border-radius: 12px; padding: 22px; text-align: center; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); }
.shutdown-icon { font-size: 22px; color: #ff6fb0; margin-bottom: 12px; }
.shutdown-text { margin: 0 0 18px; font-size: 14px; font-weight: 600; }
.shutdown-actions { display: flex; gap: 8px; justify-content: center; }
.shutdown-actions .btn { flex: none; height: 38px; padding: 0 16px; font-size: 12.5px; }

.taskbar { flex-shrink: 0; align-items: center; gap: 8px; height: 46px; padding: 0 12px; background: rgba(10, 13, 18, 0.94); border-top: 1px solid var(--line); }
.taskbar-launcher { display: grid; place-items: center; width: 34px; height: 34px; background: var(--accent-dim); border: 1px solid var(--line-strong); border-radius: 8px; color: var(--accent); cursor: pointer; }
.taskbar-apps { display: flex; gap: 6px; flex: 1; min-width: 0; }
.taskbar-pill { display: flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px; border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; cursor: pointer; background: var(--panel2); color: var(--muted); border: 1px solid var(--line); }
.taskbar-pill i { font-size: 12px; }
.taskbar-location { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--muted); }

.crt-scanlines { position: absolute; inset: 0; z-index: 500; pointer-events: none; mix-blend-mode: multiply; opacity: 0.55; background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.32) 0px, rgba(0, 0, 0, 0.32) 1px, transparent 2px, transparent 4px); animation: wc-scan-move 0.25s linear infinite; }
.crt-vignette { position: absolute; inset: 0; z-index: 501; pointer-events: none; background: radial-gradient(ellipse at center, transparent 58%, rgba(0, 0, 0, 0.55) 100%); }

@media (max-width: 720px) {
  [data-only="desktop"] { display: none; }
  [data-only="mobile"] { display: flex; }
  .wo7fi-os { min-width: 0; }
  .workspace { flex: 1; }
  .win-body { overflow-y: auto; }
  .identity-body, .socials-body { padding: 14px; }
  .identity-hero, .social-command-hero { grid-template-columns: 1fr; }
  .identity-photo-frame { width: min(220px, 100%); min-height: 220px; }
  .identity-grid, .identity-skill-grid, .identity-stat-grid, .social-featured-rail, .deploy-grid { grid-template-columns: 1fr; }
  .identity-actions, .contact-actions, .welcome-actions, .shutdown-actions, .deploy-actions { width: 100%; }
  .identity-actions .btn, .contact-mail-btn, .contact-copy-btn, .welcome-actions .btn, .shutdown-actions .btn, .deploy-actions .btn { flex: 1; min-width: 0; }
  .social-command-topline { flex-direction: column; }
  .social-search-compact { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wo7fi-os, .pulse, .about-cursor, .crt-scanlines { animation: none; }
}
